Home
last modified time | relevance | path

Searched refs:stimeout (Results 1 – 25 of 100) sorted by relevance

1234

/dports/net/vde2/vde2-2.3.2/src/common/
H A Dpoll.c27 struct timeval *stimeout = *pstimeout; in prepare_select() local
69 if (stimeout == NULL) in prepare_select()
74 stimeout->tv_sec = 0; in prepare_select()
75 stimeout->tv_usec = 0; in prepare_select()
79 if (stimeout == NULL) in prepare_select()
84 stimeout->tv_sec = timeout / 1000; in prepare_select()
85 stimeout->tv_usec = (timeout % 1000) * 1000; in prepare_select()
123 struct timeval stimeout; in vde_poll() local
124 struct timeval *pstimeout = &stimeout; in vde_poll()
/dports/print/ghostscript9-x11/ghostscript-9.06/cups/libs/cups/
H A Dsidechannel.c124 struct timeval stimeout; /* Timeout value for select() */ in cupsSideChannelRead() local
156 stimeout.tv_sec = (int)timeout; in cupsSideChannelRead()
157 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000; in cupsSideChannelRead()
160 timeout < 0.0 ? NULL : &stimeout)) < 0 && in cupsSideChannelRead()
495 struct timeval stimeout; /* Timeout value for select() */ in cupsSideChannelWrite() local
534 stimeout.tv_sec = (int)timeout; in cupsSideChannelWrite()
535 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000; in cupsSideChannelWrite()
537 if (select(CUPS_SC_FD + 1, NULL, &output_set, NULL, &stimeout) < 1) in cupsSideChannelWrite()
H A Dsnmp.c437 struct timeval stimeout; /* select() timeout */ in _cupsSNMPRead() local
444 stimeout.tv_sec = (int)timeout; in _cupsSNMPRead()
445 stimeout.tv_usec = (int)((timeout - stimeout.tv_sec) * 1000000); in _cupsSNMPRead()
447 ready = select(fd + 1, &input_set, NULL, NULL, &stimeout); in _cupsSNMPRead()
/dports/print/ghostscript9-base/ghostscript-9.06/cups/libs/cups/
H A Dsidechannel.c124 struct timeval stimeout; /* Timeout value for select() */ in cupsSideChannelRead() local
156 stimeout.tv_sec = (int)timeout; in cupsSideChannelRead()
157 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000; in cupsSideChannelRead()
160 timeout < 0.0 ? NULL : &stimeout)) < 0 && in cupsSideChannelRead()
495 struct timeval stimeout; /* Timeout value for select() */ in cupsSideChannelWrite() local
534 stimeout.tv_sec = (int)timeout; in cupsSideChannelWrite()
535 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000; in cupsSideChannelWrite()
537 if (select(CUPS_SC_FD + 1, NULL, &output_set, NULL, &stimeout) < 1) in cupsSideChannelWrite()
H A Dsnmp.c437 struct timeval stimeout; /* select() timeout */ in _cupsSNMPRead() local
444 stimeout.tv_sec = (int)timeout; in _cupsSNMPRead()
445 stimeout.tv_usec = (int)((timeout - stimeout.tv_sec) * 1000000); in _cupsSNMPRead()
447 ready = select(fd + 1, &input_set, NULL, NULL, &stimeout); in _cupsSNMPRead()
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/cups/libs/cups/
H A Dsidechannel.c130 struct timeval stimeout; /* Timeout value for select() */ in cupsSideChannelRead() local
162 stimeout.tv_sec = (int)timeout; in cupsSideChannelRead()
163 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000; in cupsSideChannelRead()
166 timeout < 0.0 ? NULL : &stimeout)) < 0 && in cupsSideChannelRead()
553 struct timeval stimeout; /* Timeout value for select() */ in cupsSideChannelWrite() local
592 stimeout.tv_sec = (int)timeout; in cupsSideChannelWrite()
593 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000; in cupsSideChannelWrite()
595 if (select(CUPS_SC_FD + 1, NULL, &output_set, NULL, &stimeout) < 1) in cupsSideChannelWrite()
H A Dsnmp.c431 struct timeval stimeout; /* select() timeout */ in _cupsSNMPRead() local
438 stimeout.tv_sec = (int)timeout; in _cupsSNMPRead()
439 stimeout.tv_usec = (int)((timeout - stimeout.tv_sec) * 1000000); in _cupsSNMPRead()
441 ready = select(fd + 1, &input_set, NULL, NULL, &stimeout); in _cupsSNMPRead()
/dports/print/cups/cups-2.3.3op2/cups/
H A Dsidechannel.c109 struct timeval stimeout; /* Timeout value for select() */ in cupsSideChannelRead() local
141 stimeout.tv_sec = (int)timeout; in cupsSideChannelRead()
142 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000; in cupsSideChannelRead()
145 timeout < 0.0 ? NULL : &stimeout)) < 0 && in cupsSideChannelRead()
532 struct timeval stimeout; /* Timeout value for select() */ in cupsSideChannelWrite() local
571 stimeout.tv_sec = (int)timeout; in cupsSideChannelWrite()
572 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000; in cupsSideChannelWrite()
574 if (select(CUPS_SC_FD + 1, NULL, &output_set, NULL, &stimeout) < 1) in cupsSideChannelWrite()
H A Dsnmp.c386 struct timeval stimeout; /* select() timeout */ in _cupsSNMPRead() local
393 stimeout.tv_sec = (int)timeout; in _cupsSNMPRead()
394 stimeout.tv_usec = (int)((timeout - stimeout.tv_sec) * 1000000); in _cupsSNMPRead()
396 ready = select(fd + 1, &input_set, NULL, NULL, &stimeout); in _cupsSNMPRead()
/dports/net/fspd/fsp-2.8.1b29/clients/
H A Dfspprof.l30 %s stimeout
71 <shost>timeout BEGIN(stimeout);
72 <stimeout>{WHITESPACE}
73 <stimeout>{NUMBER} host->timeout=atoi(yytext);BEGIN(shost);
74 <stimeout>.|\n fprintf(stderr,"invalid timeout `%s`\n",yytext);BEGIN(shost);
/dports/audio/grip/grip-4.2.2/src/
H A Dcdpar.c122 static int stimeout=0; in CDPCallback() local
138 if(stimeout>=30) { in CDPCallback()
150 if(stimeout>=5) { in CDPCallback()
158 if(slevel<3 || stimeout>5)slevel=3; in CDPCallback()
173 if(slevel<4 || stimeout>5)slevel=4; in CDPCallback()
190 stimeout++; in CDPCallback()
193 stimeout=0; in CDPCallback()
/dports/net/kea/kea-2.0.1/src/lib/mysql/
H A Dmysql_connection.cc123 string stimeout; in openDatabase() local
125 stimeout = getParameter("connect-timeout"); in openDatabase()
128 stimeout = ""; in openDatabase()
131 if (stimeout.size() > 0) { in openDatabase()
135 connect_timeout = boost::lexical_cast<unsigned int>(stimeout); in openDatabase()
155 stimeout << ") must be an integer greater than 0"); in openDatabase()
/dports/net/kea/kea-2.0.1/src/lib/pgsql/
H A Dpgsql_connection.cc250 string stimeout; in openDatabase() local
252 stimeout = getParameter("connect-timeout"); in openDatabase()
255 stimeout = ""; in openDatabase()
258 if (stimeout.size() > 0) { in openDatabase()
262 connect_timeout = boost::lexical_cast<unsigned int>(stimeout); in openDatabase()
282 stimeout << ") must be an integer greater than 0"); in openDatabase()
/dports/www/e2guardian/e2guardian-5.3.4/src/
H A DDataBuffer.hpp59 stimeout = t / 1000; in setTimeout()
92 int stimeout = 20; // in secs member in DataBuffer
/dports/audio/cdparanoia/cdparanoia-III-alpha9.8/
H A Dmain.c391 static int stimeout=0; in callback() local
433 if(stimeout>=30){ in callback()
445 if(stimeout>=5){ in callback()
455 if(slevel<3 || stimeout>5)slevel=3; in callback()
476 if(slevel<4 || stimeout>5)slevel=4; in callback()
531 stimeout++; in callback()
554 stimeout=0; in callback()
/dports/print/cups/cups-2.3.3op2/scheduler/
H A Dselect.c582 struct timeval stimeout; /* Timeout for select() */ in cupsdDoSelect() local
604 stimeout.tv_sec = timeout; in cupsdDoSelect()
605 stimeout.tv_usec = 0; in cupsdDoSelect()
608 &stimeout); in cupsdDoSelect()
/dports/devel/spin/Spin-version-6.5.0/Examples/
H A Dcambridge.pml16 #define stimeout empty(sender)
19 #define stimeout timeout
93 :: stimeout ->
/dports/sysutils/libcdio-paranoia/libcdio-paranoia-10.2+2.0.1/src/
H A Dcd-paranoia.c349 static int stimeout=0; in callback() local
407 if(stimeout>=30){ in callback()
419 if(stimeout>=5){ in callback()
429 if(slevel<3 || stimeout>5)slevel=3; in callback()
455 if(slevel<4 || stimeout>5)slevel=4; in callback()
518 stimeout++; in callback()
541 stimeout=0; in callback()
/dports/devel/dmucs/dmucs/COSMIC/
H A DMakelib.5 +outofmem +smkskt +sputs +stimeout &
/dports/audio/liblo/liblo-0.31/src/
H A Dserver.c1374 struct timeval stimeout; local
1479 stimeout.tv_sec = to / 1000;
1480 stimeout.tv_usec = (to % 1000) * 1000;
1496 res = select(nfds + 1, &ps, NULL, NULL, &stimeout);
1531 stimeout.tv_sec = 0;
1532 stimeout.tv_usec = 0;
1535 stimeout = tvdiff;
1600 struct timeval stimeout; local
1663 stimeout.tv_sec = sched_time;
1664 stimeout.tv_usec = (sched_time - stimeout.tv_sec) * 1.e6;
[all …]
/dports/mail/milter-greylist/milter-greylist-4.6.4/
H A Dsync.c1321 sync_waitdata(fd, stimeout) in sync_waitdata() argument
1323 time_t stimeout;
1328 if (stimeout == 0)
1329 stimeout = INFTIM;
1331 stimeout = 1000 * stimeout;
1336 retval = poll(&fds, 1, stimeout);
/dports/security/proxycheck/proxycheck-0.49a/
H A Devent.h71 int stimeout, ev_tm_cbck_f *cb, void *data);
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/erts/emulator/test/esock_misc/
H A Dsocket_server.erl40 stimeout = 5000, rtimeout = 5000}).
909 send(#handler{socket = Sock, msg = true, type = stream, stimeout = Timeout},
918 send(#handler{socket = Sock, type = stream, stimeout = Timeout}, Msg, _) ->
920 send(#handler{socket = Sock, msg = true, type = dgram, stimeout = Timeout},
931 send(#handler{socket = Sock, type = dgram, stimeout = Timeout}, Msg, Dest) ->
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/kernel/test/esock_misc/
H A Dsocket_server.erl40 stimeout = 5000, rtimeout = 5000}).
909 send(#handler{socket = Sock, msg = true, type = stream, stimeout = Timeout},
918 send(#handler{socket = Sock, type = stream, stimeout = Timeout}, Msg, _) ->
920 send(#handler{socket = Sock, msg = true, type = dgram, stimeout = Timeout},
931 send(#handler{socket = Sock, type = dgram, stimeout = Timeout}, Msg, Dest) ->
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/kernel/test/esock_misc/
H A Dsocket_server.erl40 stimeout = 5000, rtimeout = 5000}).
909 send(#handler{socket = Sock, msg = true, type = stream, stimeout = Timeout},
918 send(#handler{socket = Sock, type = stream, stimeout = Timeout}, Msg, _) ->
920 send(#handler{socket = Sock, msg = true, type = dgram, stimeout = Timeout},
931 send(#handler{socket = Sock, type = dgram, stimeout = Timeout}, Msg, Dest) ->

1234