Lines Matching refs:time
110 "time() -> floating point number\n\
112 Return the current time in seconds since the Epoch.\n\
128 Return the current time in nanoseconds since the Epoch.");
167 "the processor time used is not available "
216 Return the time of the specified clock clk_id.");
244 Return the time of the specified clock clk_id as nanoseconds.");
275 "clock_settime(clk_id, time)\n\
277 Set the time of the specified clock clk_id.");
308 "clock_settime_ns(clk_id, time)\n\
310 Set the time of the specified clock clk_id with nanoseconds.");
369 Return the clk_id of a thread's CPU time clock.");
404 {"tm_isdst", "1 if summer time is in effect, 0 if not, and -1 if unknown"},
411 "time.struct_time",
412 "The time value as returned by gmtime(), localtime(), and strptime(), and\n"
484 whent = time(NULL);
532 Convert seconds since the Epoch to a time tuple expressing UTC (a.k.a.\n\
533 GMT). When 'seconds' is not passed in, convert the current time instead.\n\
572 Convert seconds since the Epoch to a time tuple expressing local time.\n\
573 When 'seconds' is not passed in, convert the current time instead.");
713 /* wcsftime() doesn't format correctly time zones, see issue #10653 */
730 %c Locale's appropriate date and time representation.\n\
775 time_t tt = time(NULL);
780 "iiiiiiiii;strftime(): illegal time tuple argument") ||
853 * will be ahead of time...
904 Convert a time tuple to a string according to a format specification.\n\
905 See the library reference manual for formatting codes. When the time tuple\n\
906 is not present, current time as returned by localtime() is used.\n\
934 Parse a string to a time tuple according to a format specification.\n\
971 time_t tt = time(NULL);
976 "iiiiiiiii;asctime(): illegal time tuple argument") ||
987 Convert a time tuple to a string, e.g. 'Sat Jun 06 16:26:11 1998'.\n\
988 When the time tuple is not present, current time as returned by localtime()\n\
1006 Convert a time in seconds since the Epoch to a string in local time.\n\
1007 This is equivalent to asctime(localtime(seconds)). When the time tuple is\n\
1008 not present, current time as returned by localtime() is used.");
1019 "iiiiiiiii;mktime(): illegal time tuple argument"))
1084 Convert a time tuple in local time to seconds since the Epoch.\n\
1086 time zones; instead the returned value will either be equal to that\n\
1087 of the timezone or altzone attributes on the time module.");
1098 m = PyImport_ImportModule("time");
1124 timezone is set to the systems best guess of wallclock time.\n\
1382 Process time for profiling: sum of the kernel and user-space CPU time.");
1397 Process time for profiling as nanoseconds:\n\
1398 sum of the kernel and user-space CPU time.");
1549 Thread time for profiling: sum of the kernel and user-space CPU time.");
1564 Thread time for profiling as nanoseconds:\n\
1565 sum of the kernel and user-space CPU time.");
1598 if (strcmp(name, "time") == 0) {
1734 little as possible when introducing the time.tzset and time.tzsetwall
1789 t = (time((time_t *)0) / YEAR) * YEAR;
1839 {"time", time_time, METH_NOARGS, time_doc},
1886 "This module provides various functions to manipulate time values.\n\
1888 There are two standard representations of time. One is the number\n\
1894 The other representation is a tuple of 9 integers giving local time.\n\
1905 If the DST flag is 0, the time is given in the regular time zone;\n\
1906 if it is 1, the time is given in the DST time zone;\n\
1907 if it is -1, mktime() should guess based on the date and time.\n");
1954 /* Set, or reset, module variables like time.timezone */
2100 .m_name = "time",
2117 // time.sleep() implementation.
2205 // Maintain Windows Sleep() semantics for time.sleep(0)
2209 // time slice to any other thread that is ready to run. If there are no
2220 // SetWaitableTimer(): a negative due time indicates relative time