Searched refs:seconds (Results 1 - 12 of 12) sorted by relevance

/PHP_TRUNK/ext/sqlite3/libsqlite/
H A Dsqlite3.c13290 ** fractional seconds FFFF can be one or more digits.
13434 ** seconds extension (the ".FFF") is optional. The seconds portion
13643 ** NNN.NNNN seconds
13691 ** seconds since 1970. Convert to a real julian day number.
13784 ** specified number of hours, minutes, seconds, and fractional seconds
13981 ** %f ** fractional seconds SS.SSS
13987 ** %s seconds since 1970-01-01
13988 ** %S seconds 0
[all...]
/PHP_TRUNK/ext/ftp/tests/
H A Dserver.inc38 //listen for 3 seconds 3 seconds
/PHP_TRUNK/Zend/
H A Dzend_execute.h348 ZEND_API void zend_set_timeout(long seconds, int reset_signals);
H A Dzend.c64 void (*zend_on_timeout)(int seconds TSRMLS_DC);
H A Dzend.h552 void (*on_timeout)(int seconds TSRMLS_DC);
696 extern ZEND_API void (*zend_on_timeout)(int seconds TSRMLS_DC);
H A Dzend_execute_API.c1345 /* wParam is the thread id pointer, lParam is the timeout amount in seconds */
1450 void zend_set_timeout(long seconds, int reset_signals) /* {{{ */ argument
1454 EG(timeout_seconds) = seconds;
1457 if(!seconds) {
1466 PostThreadMessage(timeout_thread_id, WM_REGISTER_ZEND_TIMEOUT, (WPARAM) GetCurrentThreadId(), (LPARAM) seconds);
1473 if(seconds) {
1474 t_r.it_value.tv_sec = seconds;
/PHP_TRUNK/ext/date/lib/
H A Dunixtime2tm.c45 timelib_sll hours, minutes, seconds; local
120 seconds = remainder % 60;
121 TIMELIB_DEBUG(printf(" hour=%lld, minute=%lld, second=%lld\n", hours, minutes, seconds););
128 tm->s = seconds;
/PHP_TRUNK/ext/pcntl/
H A Dpcntl.c87 ZEND_ARG_INFO(0, seconds)
122 ZEND_ARG_INFO(0, seconds)
555 /* {{{ proto int pcntl_alarm(int seconds)
559 long seconds; local
561 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &seconds) == FAILURE)
564 RETURN_LONG ((long) alarm(seconds));
1093 /* {{{ proto int pcntl_sigtimedwait(array set[, array &siginfo[, int seconds[, int nanoseconds]]])
/PHP_TRUNK/sapi/fpm/fpm/
H A Dfpm_conf.c270 int seconds; local
279 seconds = 60 * atoi(val);
283 seconds = 60 * 60 * atoi(val);
287 seconds = 24 * 60 * 60 * atoi(val);
296 seconds = atoi(val);
300 * (int *) ((char *) *config + offset) = seconds;
/PHP_TRUNK/ext/standard/
H A Dstreamsfuncs.c816 /* If seconds is not set to null, build the timeval, else we wait indefinitely */
821 php_error_docref(NULL TSRMLS_CC, E_WARNING, "The seconds parameter must be greater than 0");
1371 /* {{{ proto bool stream_set_timeout(resource stream, int seconds [, int microseconds])
1372 Set timeout on stream read to seconds + microseonds */
1377 long seconds, microseconds = 0; local
1382 if (zend_parse_parameters(argc TSRMLS_CC, "rl|l", &socket, &seconds, &microseconds) == FAILURE) {
1388 t.tv_sec = seconds;
H A Dbasic_functions.c138 ZEND_ARG_INFO(0, seconds)
676 ZEND_ARG_INFO(0, seconds)
685 ZEND_ARG_INFO(0, seconds)
2117 ZEND_ARG_INFO(0, seconds)
4437 /* {{{ proto void sleep(int seconds)
4438 Delay for a given number of seconds */
4447 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Number of seconds must be greater than or equal to 0");
4460 Delay for a given number of micro seconds */
4479 /* {{{ proto mixed time_nanosleep(long seconds, long nanoseconds)
4480 Delay for a number of seconds an
[all...]
/PHP_TRUNK/main/
H A Dmain.c1258 /* {{{ proto bool set_time_limit(int seconds)
1466 void php_on_timeout(int seconds TSRMLS_DC)

Completed in 129 milliseconds