HomeSort by relevance Sort by last modified time
    Searched defs:time_str (Results 1 - 2 of 2) sorted by null

  /external/e2fsprogs/e2fsck/
message.c 245 const char * time_str; local
287 time_str = getenv("TZ");
288 if (!time_str)
289 time_str = "";
290 do_gmt = !strcmp(time_str, "GMT");
293 time_str = asctime(do_gmt ? gmtime(&t) : localtime(&t));
294 printf("%.24s", time_str);
  /external/clearsilver/python/
neo_cgi.c 260 char *name, *value, *path = NULL, *domain = NULL, *time_str = NULL; local
264 static char *kwlist[] = {"name", "value", "path", "domain", "time_str", "persist", "secure", NULL};
266 if (!PyArg_ParseTupleAndKeywords(args, keywds, "ss|sssii:cookieSet()", kwlist, &name, &value, &path, &domain, &time_str, &persist, &secure))
269 err = cgi_cookie_set (cgi, name, value, path, domain, time_str, persist, secure);

Completed in 32 milliseconds