HomeSort by relevance Sort by last modified time
    Searched refs:asctime (Results 51 - 75 of 103) sorted by null

1 23 4 5

  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
Time.c 599 /** The asctime function converts the broken-down time in the structure pointed
604 char *asctime(const struct tm *timeptr)
622 @return The asctime function returns a pointer to the string.
625 asctime(const struct tm *timeptr) function
656 return asctime(localtime(timer));
  /external/e2fsprogs/debugfs/
util.c 215 return asctime((do_gmt) ? gmtime(&t) : localtime(&t));
  /external/e2fsprogs/e2fsck/
message.c 233 time_str = asctime((do_gmt > 0) ? gmtime(&t) : localtime(&t));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
time.h 112 char *__cdecl asctime(const struct tm *_Tm) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
pthread.h 494 #define asctime(...) (pthread_testcancel(), asctime(__VA_ARGS__)) macro
    [all...]
  /bionic/tests/
time_test.cpp 849 TEST(time, asctime) {
851 ASSERT_STREQ("Sun Jan 0 00:00:00 1900\n", asctime(&tm));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xos_r.h 34 * <time.h> for asctime(), ctime(), localtime(), or gmtime()
845 # define _XAsctime(t,p) asctime((t))
869 (((p).result = asctime((t))) ? \
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
timemodule.c 234 " accepted by asctime(), mktime() and strftime(). May be considered as a\n"
567 if (!PyArg_UnpackTuple(args, "asctime", 0, 1, &tup))
574 p = asctime(&buf);
585 "asctime([tuple]) -> string\n\
624 This is equivalent to asctime(localtime(seconds)). When the time tuple is\n\
787 {"asctime", time_asctime, METH_VARARGS, asctime_doc},
841 asctime() -- convert time tuple to string\n\
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
timemodule.c 234 " accepted by asctime(), mktime() and strftime(). May be considered as a\n"
567 if (!PyArg_UnpackTuple(args, "asctime", 0, 1, &tup))
574 p = asctime(&buf);
585 "asctime([tuple]) -> string\n\
624 This is equivalent to asctime(localtime(seconds)). When the time tuple is\n\
787 {"asctime", time_asctime, METH_VARARGS, asctime_doc},
841 asctime() -- convert time tuple to string\n\
    [all...]
  /external/python/cpython2/Modules/
timemodule.c 234 " accepted by asctime(), mktime() and strftime(). May be considered as a\n"
567 if (!PyArg_UnpackTuple(args, "asctime", 0, 1, &tup))
574 p = asctime(&buf);
585 "asctime([tuple]) -> string\n\
624 This is equivalent to asctime(localtime(seconds)). When the time tuple is\n\
787 {"asctime", time_asctime, METH_VARARGS, asctime_doc},
841 asctime() -- convert time tuple to string\n\
  /external/nanopb-c/generator/
nanopb_generator.py 713 yield '/* Generated by %s at %s. */\n\n' % (nanopb_version, time.asctime())
789 yield '/* Generated by %s at %s. */\n\n' % (nanopb_version, time.asctime())
    [all...]
  /device/generic/goldfish/gps/
gps_qemu.c 535 p += snprintf(p, end-p, " time=%s", asctime( &utc ) );
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
rfc822.py     [all...]
mailbox.py 770 from_line = 'From MAILER-DAEMON %s' % time.asctime(time.gmtime())
    [all...]
  /external/iproute2/lib/
utils.c 1083 char *tstr = asctime(tm);
1194 tstr = asctime(localtime(&secs));
  /external/python/cpython2/Lib/
rfc822.py     [all...]
mailbox.py 812 from_line = 'From MAILER-DAEMON %s' % time.asctime(time.gmtime())
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 781 return time.asctime()
  /prebuilts/gdb/darwin-x86/lib/python2.7/
rfc822.py     [all...]
mailbox.py 802 from_line = 'From MAILER-DAEMON %s' % time.asctime(time.gmtime())
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
rfc822.py     [all...]
mailbox.py 802 from_line = 'From MAILER-DAEMON %s' % time.asctime(time.gmtime())
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rfc822.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rfc822.py     [all...]
  /external/python/cpython3/Lib/
mailbox.py 827 from_line = b'From MAILER-DAEMON ' + time.asctime(time.gmtime()).encode()
    [all...]

Completed in 2134 milliseconds

1 23 4 5