Searched refs:seconds (Results 1 - 12 of 12) sorted by relevance
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 13290 ** 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 D | server.inc | 38 //listen for 3 seconds 3 seconds
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_execute.h | 348 ZEND_API void zend_set_timeout(long seconds, int reset_signals);
|
| H A D | zend.c | 64 void (*zend_on_timeout)(int seconds TSRMLS_DC);
|
| H A D | zend.h | 552 void (*on_timeout)(int seconds TSRMLS_DC); 696 extern ZEND_API void (*zend_on_timeout)(int seconds TSRMLS_DC);
|
| H A D | zend_execute_API.c | 1345 /* 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 D | unixtime2tm.c | 45 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 D | pcntl.c | 87 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 D | fpm_conf.c | 270 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 D | streamsfuncs.c | 816 /* 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, µseconds) == FAILURE) { 1388 t.tv_sec = seconds;
|
| H A D | basic_functions.c | 138 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 D | main.c | 1258 /* {{{ proto bool set_time_limit(int seconds) 1466 void php_on_timeout(int seconds TSRMLS_DC)
|
Completed in 129 milliseconds