Home
last modified time | relevance | path

Searched refs:time_str (Results 1 – 7 of 7) sorted by relevance

/external/e2fsprogs/e2fsck/
Dmessage.c245 const char * time_str; in expand_inode_expression() local
287 time_str = getenv("TZ"); in expand_inode_expression()
288 if (!time_str) in expand_inode_expression()
289 time_str = ""; in expand_inode_expression()
290 do_gmt = !strcmp(time_str, "GMT"); in expand_inode_expression()
293 time_str = asctime(do_gmt ? gmtime(&t) : localtime(&t)); in expand_inode_expression()
294 printf("%.24s", time_str); in expand_inode_expression()
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
Dhttp_server.py103 time_str = time.strftime("%d%b%Y-%H%M%S")
104 access_file_name = "access.log-" + time_str + ".txt"
106 log_file_name = "error.log-" + time_str + ".txt"
Dwebsocket_server.py135 time_str = time.strftime('%d%b%Y-%H%M%S')
140 log_file_name = log_prefix + time_str
/external/webkit/WebKitTools/CodeCoverage/
Dregenerate-coverage-display353 id, time_str = row
355 time = int(float(time_str))
/external/clearsilver/cgi/
Dcgi.h448 const char *time_str, int persistent, int secure);
Dcgi.c1533 const char *time_str, int persistent, int secure) in cgi_cookie_set() argument
1548 if (time_str == NULL) in cgi_cookie_set()
1555 time_str = my_time; in cgi_cookie_set()
1557 err = string_appendf(&str, "; expires=%s", time_str); in cgi_cookie_set()
/external/clearsilver/python/
Dneo_cgi.c260 char *name, *value, *path = NULL, *domain = NULL, *time_str = NULL; in p_cgi_cookie_set() local
266 …keywds, "ss|sssii:cookieSet()", kwlist, &name, &value, &path, &domain, &time_str, &persist, &secur… in p_cgi_cookie_set()
269 err = cgi_cookie_set (cgi, name, value, path, domain, time_str, persist, secure); in p_cgi_cookie_set()