/PHP-7.0/sapi/fpm/fpm/ |
H A D | fpm_clock.c | 34 int fpm_clock_get(struct timeval *tv) /* {{{ */ in fpm_clock_get() argument 44 tv->tv_sec = ts.tv_sec; in fpm_clock_get() 45 tv->tv_usec = ts.tv_nsec / 1000; in fpm_clock_get() 49 return gettimeofday(tv, 0); in fpm_clock_get() 88 int fpm_clock_get(struct timeval *tv) /* {{{ */ in fpm_clock_get() argument 100 tv->tv_sec = aTime.tv_sec; in fpm_clock_get() 101 tv->tv_usec = aTime.tv_nsec / 1000; in fpm_clock_get() 115 int fpm_clock_get(struct timeval *tv) /* {{{ */ in fpm_clock_get() argument 117 return gettimeofday(tv, 0); in fpm_clock_get()
|
H A D | fpm_request.c | 53 proc->tv = now; in fpm_request_accepting() 84 proc->tv = now; in fpm_request_reading_headers() 124 proc->tv = now; in fpm_request_info() 168 proc->tv = now; in fpm_request_executing() 193 proc->tv = now; in fpm_request_end() 221 proc->tv = now; in fpm_request_finished() 250 struct timeval tv; in fpm_request_check_timed_out() local 268 (int) tv.tv_sec, (int) tv.tv_usec); in fpm_request_check_timed_out() 279 (int) tv.tv_sec, (int) tv.tv_usec); in fpm_request_check_timed_out() 303 if (!tv) return -1; in fpm_request_last_activity() [all …]
|
H A D | zlog.c | 68 size_t zlog_print_time(struct timeval *tv, char *timebuf, size_t timebuf_len) /* {{{ */ in zlog_print_time() argument 73 …len = strftime(timebuf, timebuf_len, "[%d-%b-%Y %H:%M:%S", localtime_r((const time_t *) &tv->tv_se… in zlog_print_time() 75 len += snprintf(timebuf + len, timebuf_len - len, ".%06d", (int) tv->tv_usec); in zlog_print_time() 104 struct timeval tv; in vzlog() local 142 gettimeofday(&tv, 0); in vzlog() 143 len = zlog_print_time(&tv, buf, buf_size); in vzlog()
|
H A D | fpm_request.h | 18 void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *tv, int terminate_timeo… 21 int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
|
H A D | fpm_clock.h | 11 int fpm_clock_get(struct timeval *tv);
|
H A D | fpm_php_trace.c | 47 struct timeval tv; in fpm_php_trace_dump() local 54 gettimeofday(&tv, 0); in fpm_php_trace_dump() 56 zlog_print_time(&tv, buf, buf_size); in fpm_php_trace_dump()
|
H A D | zlog.h | 20 size_t zlog_print_time(struct timeval *tv, char *timebuf, size_t timebuf_len);
|
H A D | fpm_scoreboard.h | 33 struct timeval tv; member
|
H A D | fpm_unix.c | 485 struct timeval tv; in fpm_unix_init_main() local 517 tv.tv_sec = 10; in fpm_unix_init_main() 518 tv.tv_usec = 0; in fpm_unix_init_main() 521 ret = select(fpm_globals.send_config_pipe[0] + 1, &rfds, NULL, NULL, &tv); in fpm_unix_init_main()
|
/PHP-7.0/ext/standard/ |
H A D | lcg.c | 78 struct timeval tv; in lcg_seed() local 80 if (gettimeofday(&tv, NULL) == 0) { in lcg_seed() 81 LCG(s1) = tv.tv_sec ^ (tv.tv_usec<<11); in lcg_seed() 92 if (gettimeofday(&tv, NULL) == 0) { in lcg_seed() 93 LCG(s2) ^= (tv.tv_usec<<11); in lcg_seed()
|
H A D | uniqid.c | 55 struct timeval tv; in PHP_FUNCTION() local 72 gettimeofday((struct timeval *) &tv, (struct timezone *) NULL); in PHP_FUNCTION() 73 sec = (int) tv.tv_sec; in PHP_FUNCTION() 74 usec = (int) (tv.tv_usec % 0x100000); in PHP_FUNCTION()
|
H A D | fsock.c | 44 struct timeval tv; in php_fsockopen_stream() local 72 tv.tv_sec = conv / 1000000; in php_fsockopen_stream() 75 tv.tv_sec = conv / 1000000; in php_fsockopen_stream() 77 tv.tv_usec = conv % 1000000; in php_fsockopen_stream() 89 STREAM_XPORT_CLIENT | STREAM_XPORT_CONNECT, hashkey, &tv, NULL, &errstr, &err); in php_fsockopen_stream()
|
H A D | streamsfuncs.c | 94 struct timeval tv; in PHP_FUNCTION() local 117 tv.tv_sec = (long)(conv / 1000000); in PHP_FUNCTION() 118 tv.tv_usec =(long)(conv % 1000000); in PHP_FUNCTION() 120 tv.tv_sec = conv / 1000000; in PHP_FUNCTION() 121 tv.tv_usec = conv % 1000000; in PHP_FUNCTION() 245 struct timeval tv; in PHP_FUNCTION() local 265 tv.tv_sec = conv / 1000000; in PHP_FUNCTION() 266 tv.tv_usec = conv % 1000000; in PHP_FUNCTION() 276 &tv, &errstr in PHP_FUNCTION() 728 struct timeval tv, *tv_p = NULL; in PHP_FUNCTION() local [all …]
|
/PHP-7.0/win32/ |
H A D | select.c | 37 PHPAPI int php_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv) in php_select() argument 52 if (tv == NULL) { in php_select() 55 ms_total = tv->tv_sec * 1000; in php_select() 56 ms_total += tv->tv_usec / 1000; in php_select() 90 return select(max_fd, rfds, wfds, efds, tv); in php_select()
|
H A D | getrusage.c | 29 static void usage_to_timeval(FILETIME *ft, struct timeval *tv) in usage_to_timeval() argument 36 tv->tv_sec = (zend_long) (time.QuadPart / 10000000); in usage_to_timeval() 37 tv->tv_usec = (zend_long) ((time.QuadPart % 10000000) / 10); in usage_to_timeval()
|
H A D | time.c | 59 static zend_always_inline int getfilesystemtime(struct timeval *tv) in getfilesystemtime() argument 79 tv->tv_sec = (long)(ff / 1000000Ui64); in getfilesystemtime() 80 tv->tv_usec = (long)(ff % 1000000Ui64); in getfilesystemtime()
|
H A D | select.h | 21 PHPAPI int php_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv);
|
/PHP-7.0/ext/opcache/Optimizer/ |
H A D | pass1_5.c | 75 uint32_t tv = ZEND_RESULT(opline).var; /* temporary variable */ in zend_optimizer_pass1() local 114 uint32_t tv = ZEND_RESULT(opline).var; /* temporary variable */ in zend_optimizer_pass1() local 136 if (zend_optimizer_replace_by_const(op_array, opline + 1, type, tv, &res)) { in zend_optimizer_pass1() 153 uint32_t tv = ZEND_RESULT(opline).var; /* temporary variable */ in zend_optimizer_pass1() local 259 uint32_t tv = ZEND_RESULT(opline).var; in zend_optimizer_pass1() local 274 uint32_t tv = ZEND_RESULT(opline).var; in zend_optimizer_pass1() local 285 if (zend_optimizer_replace_by_const(op_array, opline, IS_TMP_VAR, tv, &c)) { in zend_optimizer_pass1() 326 uint32_t tv = ZEND_RESULT(opline).var; in zend_optimizer_pass1() local 350 if (zend_optimizer_replace_by_const(op_array, opline, IS_TMP_VAR, tv, &t)) { in zend_optimizer_pass1() 606 uint32_t tv = ZEND_RESULT(opline).var; in zend_optimizer_pass1() local [all …]
|
/PHP-7.0/ext/mysqlnd/ |
H A D | mysqlnd_debug.c | 94 struct timeval tv; in MYSQLND_METHOD() 96 if (gettimeofday(&tv, NULL) != -1) { in MYSQLND_METHOD() 97 if ((tm_p= localtime((const time_t *)&tv.tv_sec))) { in MYSQLND_METHOD() 103 (int) (tv.tv_usec)); in MYSQLND_METHOD() 191 struct timeval tv; in MYSQLND_METHOD() 193 if (gettimeofday(&tv, NULL) != -1) { in MYSQLND_METHOD() 194 if ((tm_p= localtime((const time_t *)&tv.tv_sec))) { in MYSQLND_METHOD() 200 (int) (tv.tv_usec)); in MYSQLND_METHOD()
|
H A D | mysqlnd_net.c | 185 struct timeval tv; in MYSQLND_METHOD() local 199 tv.tv_sec = net->data->options.timeout_connect; in MYSQLND_METHOD() 200 tv.tv_usec = 0; in MYSQLND_METHOD() 205 hashed_details, (net->data->options.timeout_connect) ? &tv : NULL, in MYSQLND_METHOD() 275 struct timeval tv; in MYSQLND_METHOD() local 277 tv.tv_sec = net->data->options.timeout_read; in MYSQLND_METHOD() 278 tv.tv_usec = 0; in MYSQLND_METHOD() 279 php_stream_set_option(net_stream, PHP_STREAM_OPTION_READ_TIMEOUT, 0, &tv); in MYSQLND_METHOD() 1012 struct timeval tv; in MYSQLND_METHOD() local 1014 tv.tv_sec = net->data->options.timeout_read; in MYSQLND_METHOD() [all …]
|
/PHP-7.0/ext/mbstring/libmbfl/ |
H A D | AUTHORS | 12 Maksym Veremeyenko <verem@m1stereo.tv>
|
/PHP-7.0/ext/sockets/ |
H A D | sockets.c | 853 struct timeval tv; local 893 tv.tv_usec = usec % 1000000; 895 tv.tv_sec = Z_LVAL_P(sec); 896 tv.tv_usec = usec; 899 tv_p = &tv; 1885 struct timeval tv; local 1949 optlen = sizeof(tv); 2000 struct timeval tv; local 2090 tv.tv_sec = Z_LVAL_P(sec); 2092 optlen = sizeof(tv); [all …]
|
/PHP-7.0/main/streams/ |
H A D | xp_socket.c | 310 struct timeval tv; in php_sockop_set_option() local 316 tv.tv_sec = FG(default_socket_timeout); in php_sockop_set_option() 317 tv.tv_usec = 0; in php_sockop_set_option() 319 tv = sock->timeout; in php_sockop_set_option() 322 tv.tv_sec = value; in php_sockop_set_option() 323 tv.tv_usec = 0; in php_sockop_set_option() 328 } else if (php_pollfd_for(sock->socket, PHP_POLLREADABLE|POLLPRI, &tv) > 0) { in php_sockop_set_option()
|
/PHP-7.0/ext/ftp/ |
H A D | ftp.c | 128 struct timeval tv; in ftp_open() local 134 tv.tv_sec = timeout_sec; in ftp_open() 135 tv.tv_usec = 0; in ftp_open() 139 0, &tv, NULL, NULL, NULL, 0, STREAM_SOCKOP_NONE); in ftp_open() 1523 struct timeval tv; in ftp_getdata() local 1551 tv.tv_sec = ftp->timeout_sec; in ftp_getdata() 1552 tv.tv_usec = 0; in ftp_getdata() 1553 if (php_connect_nonb(fd, (struct sockaddr*) &ftp->pasvaddr, size, &tv) == -1) { in ftp_getdata()
|
/PHP-7.0/ext/session/ |
H A D | session.c | 311 struct timeval tv; in php_session_create_id() local 317 gettimeofday(&tv, NULL); in php_session_create_id() 1270 struct timeval tv; 1273 gettimeofday(&tv, NULL); 1274 now = tv.tv_sec + PS(cache_expire) * 60; 1433 struct timeval tv; 1436 gettimeofday(&tv, NULL); 1437 t = tv.tv_sec + PS(cookie_lifetime); 2917 struct timeval tv = {0}; 2919 gettimeofday(&tv, NULL); [all …]
|