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/opencore/oscl/oscl/osclbase/src/
Doscl_time.cpp189 char *time_str) in get_rfc822_gmtime_str() argument
196 int length = snprintf(time_str, max_time_strlen, in get_rfc822_gmtime_str()
203 time_str[0] = NULL_TERM_CHAR; in get_rfc822_gmtime_str()
205 return time_str; in get_rfc822_gmtime_str()
Doscl_time.h283 char *time_str);
/external/webkit/WebKitTools/CodeCoverage/
Dregenerate-coverage-display363 id, time_str = row
365 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()