Searched refs:tv (Results 1 - 25 of 33) sorted by relevance

12

/PHP_TRUNK/sapi/fpm/fpm/
H A Dfpm_clock.c34 int fpm_clock_get(struct timeval *tv) /* {{{ */ argument
44 tv->tv_sec = ts.tv_sec;
45 tv->tv_usec = ts.tv_nsec / 1000;
49 return gettimeofday(tv, 0);
88 int fpm_clock_get(struct timeval *tv) /* {{{ */ argument
100 tv->tv_sec = aTime.tv_sec;
101 tv->tv_usec = aTime.tv_nsec / 1000;
115 int fpm_clock_get(struct timeval *tv) /* {{{ */ argument
117 return gettimeofday(tv, 0);
H A Dfpm_clock.h11 int fpm_clock_get(struct timeval *tv);
H A Dfpm_php_trace.c47 struct timeval tv; local
53 gettimeofday(&tv, 0);
55 zlog_print_time(&tv, buf, buf_size);
H A Dfpm_request.c53 proc->tv = now;
84 proc->tv = now;
126 proc->tv = now;
170 proc->tv = now;
195 proc->tv = now;
198 timersub(&proc->tv, &proc->accepted, &proc->cpu_duration);
223 proc->tv = now;
254 struct timeval tv; local
256 timersub(now, &proc.accepted, &tv);
260 proc.request_stage == FPM_REQUEST_EXECUTING && tv
301 fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv) argument
[all...]
H A Dfpm_request.h18 void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *tv, int terminate_timeout, int slowlog_timeout);
21 int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
H A Dfpm_scoreboard.h33 struct timeval tv; member in struct:fpm_scoreboard_proc_s
H A Dfpm_unix.c270 struct timeval tv; local
302 tv.tv_sec = 10;
303 tv.tv_usec = 0;
306 ret = select(fpm_globals.send_config_pipe[0] + 1, &rfds, NULL, NULL, &tv);
H A Dzlog.c67 size_t zlog_print_time(struct timeval *tv, char *timebuf, size_t timebuf_len) /* {{{ */ argument
72 len = strftime(timebuf, timebuf_len, "[%d-%b-%Y %H:%M:%S", localtime_r((const time_t *) &tv->tv_sec, &t));
74 len += snprintf(timebuf + len, timebuf_len - len, ".%06d", (int) tv->tv_usec);
103 struct timeval tv; local
141 gettimeofday(&tv, 0);
142 len = zlog_print_time(&tv, buf, buf_size);
H A Dzlog.h18 size_t zlog_print_time(struct timeval *tv, char *timebuf, size_t timebuf_len);
/PHP_TRUNK/ext/ftp/
H A Dftp.c128 struct timeval tv; local
134 tv.tv_sec = timeout_sec;
135 tv.tv_usec = 0;
139 0, &tv, NULL, NULL, NULL, 0 TSRMLS_CC);
1382 struct timeval tv; local
1410 tv.tv_sec = ftp->timeout_sec;
1411 tv.tv_usec = 0;
1412 if (php_connect_nonb(fd, (struct sockaddr*) &ftp->pasvaddr, size, &tv) == -1) {
/PHP_TRUNK/ext/standard/
H A Dfsock.c40 struct timeval tv; local
67 tv.tv_sec = conv / 1000000;
68 tv.tv_usec = conv % 1000000;
80 STREAM_XPORT_CLIENT | STREAM_XPORT_CONNECT, hashkey, &tv, NULL, &errstr, &err);
H A Dlcg.c78 struct timeval tv; local
80 if (gettimeofday(&tv, NULL) == 0) {
81 LCG(s1) = tv.tv_sec ^ (tv.tv_usec<<11);
92 if (gettimeofday(&tv, NULL) == 0) {
93 LCG(s2) ^= (tv.tv_usec<<11);
H A Duniqid.c54 struct timeval tv; local
71 gettimeofday((struct timeval *) &tv, (struct timezone *) NULL);
72 sec = (int) tv.tv_sec;
73 usec = (int) (tv.tv_usec % 0x100000);
H A Dstreamsfuncs.c93 struct timeval tv; local
116 tv.tv_sec = (long)(conv / 1000000);
117 tv.tv_usec =(long)(conv % 1000000);
119 tv.tv_sec = conv / 1000000;
120 tv.tv_usec = conv % 1000000;
134 hashkey, &tv, context, &errstr, &err);
247 struct timeval tv; local
262 tv.tv_sec = (long)(conv / 1000000);
263 tv.tv_usec = (long)(conv % 1000000);
265 tv
773 struct timeval tv; local
[all...]
/PHP_TRUNK/main/streams/
H A Dxp_socket.c277 struct timeval tv; local
283 tv.tv_sec = FG(default_socket_timeout);
284 tv.tv_usec = 0;
286 tv = sock->timeout;
289 tv.tv_sec = value;
290 tv.tv_usec = 0;
295 } else if (php_pollfd_for(sock->socket, PHP_POLLREADABLE|POLLPRI, &tv) > 0) {
/PHP_TRUNK/win32/
H A Dselect.c37 PHPAPI int php_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv) argument
52 if (tv == NULL) {
55 ms_total = tv->tv_sec * 1000;
56 ms_total += tv->tv_usec / 1000;
90 return select(max_fd, rfds, wfds, efds, tv);
H A Dselect.h21 PHPAPI int php_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv);
H A Dtime.c48 int getfilesystemtime(struct timeval *tv) argument
74 tv->tv_sec = (long)(ff / 1000000Ui64);
75 tv->tv_usec = (long)(ff % 1000000Ui64);
/PHP_TRUNK/ext/mysqlnd/
H A Dmysqlnd_debug.c104 struct timeval tv;
106 if (gettimeofday(&tv, NULL) != -1) {
107 if ((tm_p= localtime((const time_t *)&tv.tv_sec))) {
113 (int) (tv.tv_usec));
202 struct timeval tv;
204 if (gettimeofday(&tv, NULL) != -1) {
205 if ((tm_p= localtime((const time_t *)&tv.tv_sec))) {
211 (int) (tv.tv_usec));
H A Dmysqlnd_net.c161 struct timeval tv; local
174 tv.tv_sec = net->data->options.timeout_connect;
175 tv.tv_usec = 0;
180 hashed_details, (net->data->options.timeout_connect) ? &tv : NULL,
244 struct timeval tv; local
246 tv.tv_sec = net->data->options.timeout_read;
247 tv.tv_usec = 0;
248 php_stream_set_option(net_stream, PHP_STREAM_OPTION_READ_TIMEOUT, 0, &tv);
922 struct timeval tv; local
924 tv
[all...]
/PHP_TRUNK/ext/session/
H A Dsession.c290 struct timeval tv; local
295 gettimeofday(&tv, NULL);
305 spprintf(&buf, 0, "%.15s%ld%ld%0.8F", remote_addr ? remote_addr : "", tv.tv_sec, (long int)tv.tv_usec, php_combined_lcg(TSRMLS_C) * 10);
1068 struct timeval tv; local
1071 gettimeofday(&tv, NULL);
1072 now = tv.tv_sec + PS(cache_expire) * 60;
1194 struct timeval tv; local
1197 gettimeofday(&tv, NULL);
1198 t = tv
2354 struct timeval tv = {0}; local
[all...]
/PHP_TRUNK/ext/openssl/
H A Dxp_ssl.c699 struct timeval tv; local
705 tv.tv_sec = FG(default_socket_timeout);
706 tv.tv_usec = 0;
708 tv = sslsock->connect_timeout;
711 tv.tv_sec = value;
712 tv.tv_usec = 0;
717 } else if (php_pollfd_for(sslsock->s.socket, PHP_POLLREADABLE|POLLPRI, &tv) > 0) {
/PHP_TRUNK/main/
H A Dnetwork.c1138 struct timeval tv; local
1165 tv.tv_sec = timeout / 1000;
1166 tv.tv_usec = (timeout - (tv.tv_sec * 1000)) * 1000;
1174 n = select(max_fd + 1, &rset, &wset, &eset, timeout >= 0 ? &tv : NULL);
/PHP_TRUNK/ext/opcache/Optimizer/
H A Dpass1_5.c38 zend_uint tv = ZEND_RESULT(opline).var; /* temporary variable */ variable
67 ZEND_OP1(tmp_opline).var == tv) {
92 ZEND_OP2(tmp_opline).var == tv) {
201 zend_uint tv = ZEND_RESULT(opline).var; /* temporary variable */ variable
224 ZEND_OP1(tmp_opline).var == tv) {
239 ZEND_OP2(tmp_opline).var == tv) {
/PHP_TRUNK/ext/sockets/
H A Dsockets.c843 struct timeval tv; local
882 tv.tv_sec = Z_LVAL_P(sec) + (usec / 1000000);
883 tv.tv_usec = usec % 1000000;
885 tv.tv_sec = Z_LVAL_P(sec);
886 tv.tv_usec = usec;
889 tv_p = &tv;
1829 struct timeval tv; local
1891 optlen = sizeof(tv);
1893 if (getsockopt(php_sock->bsd_socket, level, optname, (char*)&tv, &optlen) != 0) {
1905 tv
1942 struct timeval tv; local
[all...]

Completed in 83 milliseconds

12