Home
last modified time | relevance | path

Searched refs:timeoutVal (Results 1 – 23 of 23) sorted by relevance

/dports/graphics/dcmtk/dcmtk-DCMTK-3.6.6/dcmnet/libsrc/
H A Ddcmtrans.cc91 int timeoutVal = sendTimeout * 1000; in DcmTransportConnection() local
92 … if (setsockopt(theSocket, SOL_SOCKET, SO_SNDTIMEO, (char *) &timeoutVal, sizeof(timeoutVal)) < 0) in DcmTransportConnection()
95 struct timeval timeoutVal; in DcmTransportConnection()
96 timeoutVal.tv_sec = sendTimeout; in DcmTransportConnection()
97 timeoutVal.tv_usec = 0; in DcmTransportConnection()
98 if (setsockopt(theSocket, SOL_SOCKET, SO_SNDTIMEO, &timeoutVal, sizeof(timeoutVal)) < 0) in DcmTransportConnection()
121 … if (setsockopt(theSocket, SOL_SOCKET, SO_RCVTIMEO, (char *) &timeoutVal, sizeof(timeoutVal)) < 0) in DcmTransportConnection()
124 struct timeval timeoutVal; in DcmTransportConnection()
125 timeoutVal.tv_sec = recvTimeout; in DcmTransportConnection()
126 timeoutVal.tv_usec = 0; in DcmTransportConnection()
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/apps/
H A Dgsmsmsd.cc615 ::timeval timeoutVal; in main()
616 timeoutVal.tv_sec = 5; in main()
617 timeoutVal.tv_usec = 0; in main()
618 me->waitEvent((gsmlib::timeval *)&timeoutVal); in main()
620 struct timeval timeoutVal; in main()
621 timeoutVal.tv_sec = 5; in main()
622 timeoutVal.tv_usec = 0; in main()
623 me->waitEvent(&timeoutVal); in main()
/dports/mail/cone/cone-1.1/libmail/
H A Dimaphandler.H32 imapHandlerStructured(int timeoutVal=60)
33 : imapHandler(timeoutVal), errormode(0), in imapHandler() argument
H A Dimap.H460 virtual void setTimeout(int timeoutVal);
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/gsmlib/
H A Dgsm_win32_serial.cc31 static long int timeoutVal = TIMEOUT_SECS; variable
131 if (timeElapsed >= timeoutVal) in readByte()
382 if (timeElapsed >= timeoutVal) in putLine()
473 timeoutVal = timeout; in setTimeOut()
/dports/net-im/kopete/kopete-21.12.3/protocols/sms/services/
H A Dgsmlib.cpp206 struct timeval timeoutVal; in pollForMessages() local
207 timeoutVal.tv_sec = 1; in pollForMessages()
208 timeoutVal.tv_usec = 0; in pollForMessages()
209 m_MeTa->waitEvent(&timeoutVal); in pollForMessages()
/dports/databases/mongodb42-tools/mongo-tools-r4.2.17/vendor/github.com/mongodb/mongo-tools-common/db/
H A Dwrite_concern.go128 timeoutVal, err := util.ToInt(wtimeout)
133 opts = append(opts, writeconcern.WTimeout(time.Duration(timeoutVal)*time.Millisecond))
/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/open-policy-agent/opa/topdown/
H A Dhttp.go544 func parseTimeout(timeoutVal ast.Value) (time.Duration, error) {
546 switch t := timeoutVal.(type) {
550 return timeout, fmt.Errorf("invalid timeout number value %v, must be int64", timeoutVal)
564 return timeout, fmt.Errorf("invalid timeout value %v: %s", timeoutVal, err)
/dports/devel/php-ice37/ice-3.7.2/cpp/src/Ice/
H A DACM.cpp43 …int timeoutVal = p->getPropertyAsIntWithDefault(timeoutProperty, static_cast<int>(dflt.timeout.toS… in ACMConfig() local
44 if(timeoutVal >= 0) in ACMConfig()
46 timeout = IceUtil::Time::seconds(timeoutVal); in ACMConfig()
/dports/devel/ice37/ice-3.7.2/cpp/src/Ice/
H A DACM.cpp43 …int timeoutVal = p->getPropertyAsIntWithDefault(timeoutProperty, static_cast<int>(dflt.timeout.toS… in ACMConfig() local
44 if(timeoutVal >= 0) in ACMConfig()
46 timeout = IceUtil::Time::seconds(timeoutVal); in ACMConfig()
/dports/devel/py-ice37/ice-3.7.2/cpp/src/Ice/
H A DACM.cpp43 …int timeoutVal = p->getPropertyAsIntWithDefault(timeoutProperty, static_cast<int>(dflt.timeout.toS… in ACMConfig() local
44 if(timeoutVal >= 0) in ACMConfig()
46 timeout = IceUtil::Time::seconds(timeoutVal); in ACMConfig()
/dports/x11-toolkits/open-motif/motif-2.3.8/lib/Xm/
H A DXmos.c1279 struct timeval timeoutVal; in XmeMicroSleep() local
1282 timeoutVal.tv_sec = usecs/1000000; in XmeMicroSleep()
1283 timeoutVal.tv_usec = usecs - timeoutVal.tv_sec*1000000; in XmeMicroSleep()
1285 return Select(0, NULL, NULL, NULL, &timeoutVal); in XmeMicroSleep()
/dports/sysutils/rsyslog8/rsyslog-8.2112.0/runtime/
H A DsrUtils.h90 long timeoutVal(struct timespec *pt);
H A Dsrutils.c487 timeoutVal(struct timespec *pt) in timeoutVal() function
H A Dwtp.c284 wtpGetDbgHdr(pThis), timeoutVal(ptTimeout), in ATTR_NONNULL()
H A Ddynstats.c274 timeout = timeoutVal(&b->metricCleanupTimeout); in dynstats_resetIfExpired()
/dports/www/mattermost-server/mattermost-server-6.0.2/api4/
H A Dconfig_test.go460 timeoutVal := *cfg.ServiceSettings.ReadTimeout
461 cfg.ServiceSettings.ReadTimeout = model.NewInt(timeoutVal + 1)
465 cfg.ServiceSettings.ReadTimeout = model.NewInt(timeoutVal)
467 require.Equal(t, timeoutVal+1, *cfg.ServiceSettings.ReadTimeout)
480 timeoutVal, timeoutVal+1))
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/
H A DJavaElement.java866 int timeoutVal = 10000; in getURLContents() local
867 connection.setConnectTimeout(timeoutVal); in getURLContents()
868 connection.setReadTimeout(timeoutVal); in getURLContents()
/dports/editors/nedit/nedit-5.7/util/
H A Dmisc.c2230 static struct timeval timeoutVal; in microsleep() local
2231 timeoutVal.tv_sec = usecs/1000000; in microsleep()
2232 timeoutVal.tv_usec = usecs - timeoutVal.tv_sec*1000000; in microsleep()
2233 select(0, NULL, NULL, NULL, &timeoutVal); in microsleep()
/dports/graphics/sane-backends/sane-backends-1.0.32/backend/
H A Dmustek_pp_cis.c1093 static struct timeval timeoutVal; in cis_wait_motor_stable() local
1100 timeoutVal.tv_sec = 0; in cis_wait_motor_stable()
1101 timeoutVal.tv_usec = dev->engine_delay*1000; in cis_wait_motor_stable()
1102 select(0, NULL, NULL, NULL, &timeoutVal); in cis_wait_motor_stable()
/dports/net/liveMedia/live/liveMedia/
H A DRTSPClient.cpp1232 int timeoutVal; in handleSETUPResponse() local
1233 if (sscanf(afterSessionId, "; timeout = %d", &timeoutVal) == 1) { in handleSETUPResponse()
1234 fSessionTimeoutParameter = timeoutVal; in handleSETUPResponse()
/dports/sysutils/rsyslog8/rsyslog-8.2112.0/plugins/omkafka/
H A Domkafka.c1114 while (timeoutVal(&tOut) > 0) {
/dports/net/mDNSResponder/mDNSResponder-1310.140.1/mDNSMacOSX/
H A DmDNSMacOSX.c8627 double timeoutVal = (double)timeout; in mDNSPlatformPreventSleep() local
8629 CFNumberRef Timeout_num = CFNumberCreate(NULL, kCFNumberDoubleType, &timeoutVal); in mDNSPlatformPreventSleep()