Searched defs:seconds (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_5/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_5_5/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_5_5/Zend/ |
| H A D | zend_execute_API.c | 1343 /* wParam is the thread id pointer, lParam is the timeout amount in seconds */ 1448 void zend_set_timeout(long seconds, int reset_signals) /* {{{ */ argument 1452 EG(timeout_seconds) = seconds; 1455 if(!seconds) { 1464 PostThreadMessage(timeout_thread_id, WM_REGISTER_ZEND_TIMEOUT, (WPARAM) GetCurrentThreadId(), (LPARAM) seconds); 1471 if(seconds) { 1472 t_r.it_value.tv_sec = seconds;
|
| /PHP_5_5/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;
|
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_conf.c | 281 int seconds; local 290 seconds = 60 * atoi(val); 294 seconds = 60 * 60 * atoi(val); 298 seconds = 24 * 60 * 60 * atoi(val); 307 seconds = atoi(val); 311 * (int *) ((char *) *config + offset) = seconds;
|
Completed in 18 milliseconds