Searched refs:ts (Results 1 - 7 of 7) sorted by relevance
/httpd/test/ |
H A D | cls.c | 101 struct tm ts; local 157 ts = *gmtime(&date); 158 strftime(sdate, 30, time_format, &ts); 164 ts = *gmtime(&lmod); 165 strftime(slmod, 30, time_format, &ts); 171 ts = *gmtime(&expire); 172 strftime(sexpire, 30, time_format, &ts);
|
/httpd/modules/generators/ |
H A D | mod_status.c | 204 clock_t tu, ts, tcu, tcs; local 246 tu = ts = tcu = tcs = 0; 385 ts += proc_ts; 468 tu / tick, ts / tick, tcu / tick, tcs / tick); 470 if (ts || tu || tcu || tcs) 472 (tu + ts + tcu + tcs) / tick / up_time * 100.); 495 tu / tick, ts / tick, tcu / tick, tcs / tick); 497 if (ts || tu || tcu || tcs) 499 (tu + ts + tcu + tcs) / tick / up_time * 100.);
|
H A D | mod_autoindex.c | 1756 apr_time_exp_t ts; local 1757 apr_time_exp_lt(&ts, ar[x]->lm); 1760 &ts); 1844 apr_time_exp_t ts; local 1845 apr_time_exp_lt(&ts, ar[x]->lm); 1847 "%Y-%m-%d %H:%M ", &ts);
|
/httpd/modules/http/ |
H A D | byterange_filter.c | 526 char *ts; local 532 ts = apr_psprintf(r->pool, BYTERANGE_FMT CRLF CRLF, 534 ap_xlate_proto_to_ascii(ts, strlen(ts)); 535 e = apr_bucket_pool_create(ts, strlen(ts), r->pool,
|
/httpd/server/mpm/worker/ |
H A D | worker.c | 1016 static void create_listener_thread(thread_starter *ts) argument 1018 int my_child_num = ts->child_num_arg; 1019 apr_threadattr_t *thread_attr = ts->threadattr; 1027 rv = apr_thread_create(&ts->listener, thread_attr, listener_thread, 1035 apr_os_thread_get(&listener_os_thread, ts->listener); 1045 thread_starter *ts = dummy; local 1046 apr_thread_t **threads = ts->threads; 1047 apr_threadattr_t *thread_attr = ts->threadattr; 1048 int child_num_arg = ts->child_num_arg; 1112 create_listener_thread(ts); 1231 thread_starter *ts; local [all...] |
/httpd/server/mpm/event/ |
H A D | event.c | 2253 static void create_listener_thread(thread_starter * ts) argument 2255 int my_child_num = ts->child_num_arg; 2256 apr_threadattr_t *thread_attr = ts->threadattr; 2264 rv = apr_thread_create(&ts->listener, thread_attr, listener_thread, 2272 apr_os_thread_get(&listener_os_thread, ts->listener); 2282 thread_starter *ts = dummy; local 2283 apr_thread_t **threads = ts->threads; 2284 apr_threadattr_t *thread_attr = ts->threadattr; 2285 int child_num_arg = ts->child_num_arg; 2400 create_listener_thread(ts); 2504 thread_starter *ts; local [all...] |
/httpd/server/ |
H A D | util.c | 127 char ts[MAX_STRING_LEN]; local 171 apr_strftime(ts, &retcode, MAX_STRING_LEN, fmt, &xt); 172 ts[MAX_STRING_LEN - 1] = '\0'; 173 return apr_pstrdup(p, ts);
|
Completed in 3312 milliseconds