Home
last modified time | relevance | path

Searched refs:time_t (Results 1 – 25 of 405) sorted by relevance

12345678910>>...17

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/
H A Dtime.h75 extern time_t time (time_t *__timer) __THROW;
78 extern double difftime (time_t __time1, time_t __time0)
82 extern time_t mktime (struct tm *__tp) __THROW;
119 extern struct tm *gmtime (const time_t *__timer) __THROW;
123 extern struct tm *localtime (const time_t *__timer) __THROW;
128 extern struct tm *gmtime_r (const time_t *__restrict __timer,
133 extern struct tm *localtime_r (const time_t *__restrict __timer,
142 extern char *ctime (const time_t *__timer) __THROW;
153 extern char *ctime_r (const time_t *__restrict __timer,
190 extern time_t timegm (struct tm *__tp) __THROW;
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/
H A Dtime.h75 extern time_t time (time_t *__timer) __THROW;
78 extern double difftime (time_t __time1, time_t __time0)
82 extern time_t mktime (struct tm *__tp) __THROW;
119 extern struct tm *gmtime (const time_t *__timer) __THROW;
123 extern struct tm *localtime (const time_t *__timer) __THROW;
128 extern struct tm *gmtime_r (const time_t *__restrict __timer,
133 extern struct tm *localtime_r (const time_t *__restrict __timer,
142 extern char *ctime (const time_t *__timer) __THROW;
153 extern char *ctime_r (const time_t *__restrict __timer,
190 extern time_t timegm (struct tm *__tp) __THROW;
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dctime30 time_t
35 double difftime(time_t time1, time_t time0);
36 time_t mktime(tm* timeptr);
37 time_t time(time_t* timer);
39 char* ctime(const time_t* timer);
40 tm* gmtime(const time_t* timer);
41 tm* localtime(const time_t* timer);
60 using ::time_t;
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dctime30 time_t
35 double difftime(time_t time1, time_t time0);
36 time_t mktime(tm* timeptr);
37 time_t time(time_t* timer);
39 char* ctime(const time_t* timer);
40 tm* gmtime(const time_t* timer);
41 tm* localtime(const time_t* timer);
60 using ::time_t;
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/timezone/tzcode/
H A D0001-Fix-C23-related-conformance-bug.patch34 @@ -42,7 +42,7 @@ static void display(const char *, time_t);
71 char *ctime(time_t const *);
72 char *ctime_r(time_t const *, char *);
73 -double difftime(time_t, time_t) ATTRIBUTE_UNSEQUENCED;
74 +ATTRIBUTE_UNSEQUENCED double difftime(time_t, time_t);
82 -time_t posix2time_z(timezone_t, time_t) ATTRIBUTE_REPRODUCIBLE;
83 +ATTRIBUTE_REPRODUCIBLE time_t posix2time_z(timezone_t, time_t);
86 -time_t time2posix_z(timezone_t, time_t) ATTRIBUTE_REPRODUCIBLE;
87 +ATTRIBUTE_REPRODUCIBLE time_t time2posix_z(timezone_t, time_t);
102 static time_t hunt(timezone_t, time_t, time_t, bool);
[all …]
/OK3568_Linux_fs/kernel/tools/laptop/dslm/
H A Ddslm.c58 static char *myctime(time_t time) in myctime()
68 time_t start_time; in measure()
70 time_t last_time; in measure()
72 time_t curr_time = 0; in measure()
73 time_t time_diff; in measure()
74 time_t active_time = 0; in measure()
75 time_t sleep_time = 0; in measure()
76 time_t unknown_time = 0; in measure()
77 time_t total_time = 0; in measure()
/OK3568_Linux_fs/buildroot/package/libopenssl/
H A D0006-Add-support-for-io_pgetevents_time64-syscall.patch7 32-bit time_t. Instead these architectures have suffixed syscalls that
8 always use a 64-bit time_t. In the case of the io_getevents syscall the
12 syscall based on the avaliable syscalls and the time_t size. We will
13 only use the new 64-bit time_t syscall if the architecture is using a
14 64-bit time_t. This is to avoid having to deal with 32/64-bit
15 conversions and relying on a 64-bit timespec struct on 32-bit time_t
16 platforms. As of Linux 5.3 there are no 32-bit time_t architectures
17 without __NR_io_getevents. In the future if a 32-bit time_t architecture
42 + /* Let's only support the 64 suffix syscalls for 64-bit time_t.
44 + * version of timespec with a 32-bit time_t and handle converting
H A D0007-Fixup-support-for-io_pgetevents_time64-syscall.patch8 work for 32-bit architecutres with a 64-bit time_t that aren't RISC-V.
30 +/* A version of 'struct timespec' with 32-bit time_t and nanoseconds. */
42 + /* Check if we are a 32-bit architecture with a 64-bit time_t */
54 - /* Let's only support the 64 suffix syscalls for 64-bit time_t.
56 - * version of timespec with a 32-bit time_t and handle converting
63 + * time_t matches our architecture length, we can just use
72 + * 64-bit time_t on a 32-bit architecture. If we can fit the
73 + * timeout value in a 32-bit time_t, then let's do that
/OK3568_Linux_fs/buildroot/package/mtp/
H A D0009-MtpServer-Support-creation-time.patch39 - time_t modified) = 0;
40 + time_t modified,
41 + time_t created) = 0;
52 std::time_t last_modified;
53 + std::time_t creation;
93 - time_t modified)
94 + time_t modified,
95 + time_t created)
125 + time_t createdTime;
149 - time_t modified)
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-webserver/recipes-httpd/cherokee/cherokee/
H A D0001-common-internal.h-Define-LLONG_MAX-if-undefined.patch6 time_t can also be long long type, therefore check for that as fallback
7 Fixes build on 32bit hosts where time_t is fixed for Y2K38
33 /* time_t limit
37 # define TIME_MAX ((time_t)INT_MAX)
39 # define TIME_MAX ((time_t)LONG_MAX)
41 +# define TIME_MAX ((time_t)LLONG_MAX)
/OK3568_Linux_fs/kernel/arch/mips/include/uapi/asm/
H A Dsocket.h148 #define SO_TIMESTAMP (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMP_OLD : SO_TIMESTAMP_N…
149 #define SO_TIMESTAMPNS (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPNS_OLD : SO_TIMESTA…
150 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES…
152 #define SO_RCVTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_RCVTIMEO_OLD : SO_RCVTIMEO_NEW)
153 #define SO_SNDTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_SNDTIMEO_OLD : SO_SNDTIMEO_NEW)
/OK3568_Linux_fs/kernel/arch/alpha/include/uapi/asm/
H A Dsocket.h137 #define SO_TIMESTAMP (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMP_OLD : SO_TIMESTAMP_N…
138 #define SO_TIMESTAMPNS (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPNS_OLD : SO_TIMESTA…
139 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES…
141 #define SO_RCVTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_RCVTIMEO_OLD : SO_RCVTIMEO_NEW)
142 #define SO_SNDTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_SNDTIMEO_OLD : SO_SNDTIMEO_NEW)
/OK3568_Linux_fs/kernel/include/uapi/asm-generic/
H A Dsocket.h133 #define SO_TIMESTAMP (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMP_OLD : SO_TIMESTAMP_N…
134 #define SO_TIMESTAMPNS (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPNS_OLD : SO_TIMESTA…
135 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES…
137 #define SO_RCVTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_RCVTIMEO_OLD : SO_RCVTIMEO_NEW)
138 #define SO_SNDTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_SNDTIMEO_OLD : SO_SNDTIMEO_NEW)
/OK3568_Linux_fs/kernel/tools/include/uapi/asm-generic/
H A Dsocket.h133 #define SO_TIMESTAMP (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMP_OLD : SO_TIMESTAMP_N…
134 #define SO_TIMESTAMPNS (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPNS_OLD : SO_TIMESTA…
135 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES…
137 #define SO_RCVTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_RCVTIMEO_OLD : SO_RCVTIMEO_NEW)
138 #define SO_SNDTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_SNDTIMEO_OLD : SO_SNDTIMEO_NEW)
/OK3568_Linux_fs/kernel/arch/sparc/include/uapi/asm/
H A Dsocket.h131 #define SO_TIMESTAMP (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMP_OLD : SO_TIMESTAMP_N…
132 #define SO_TIMESTAMPNS (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPNS_OLD : SO_TIMESTA…
133 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES…
135 #define SO_RCVTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_RCVTIMEO_OLD : SO_RCVTIMEO_NEW)
136 #define SO_SNDTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_SNDTIMEO_OLD : SO_SNDTIMEO_NEW)
/OK3568_Linux_fs/kernel/arch/parisc/include/uapi/asm/
H A Dsocket.h128 #define SO_TIMESTAMP (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMP_OLD : SO_TIMESTAMP_N…
129 #define SO_TIMESTAMPNS (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPNS_OLD : SO_TIMESTA…
130 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES…
132 #define SO_RCVTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_RCVTIMEO_OLD : SO_RCVTIMEO_NEW)
133 #define SO_SNDTIMEO (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_SNDTIMEO_OLD : SO_SNDTIMEO_NEW)
/OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/startup-notification/startup-notification-0.12/
H A Dtime_t.patch7 Subject: [PATCH 1/3] Fix crash on 32bit architectures where time_t is 64 bit
9 This is an ABI change on platforms where sizeof(time_t) doesn't equal
11 at present. OpenBSD recently switched to 64bit time_t on all architectures
12 to avoid time_t overflow in 2038 on 32bit machines.
36 + time_t *tv_sec,
47 + time_t *tv_sec,
62 + time_t *tv_sec,
67 + time_t *tv_sec,
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/at/at/
H A Dposixtm.c45 time_t mktime ();
90 time_t now; in year()
188 posixtime (time_t *p, const char *s, unsigned int syntax_bits) in posixtime()
201 time_t t; in posixtime()
210 if (t != (time_t) -1) in posixtime()
307 time_t t; in main()
/OK3568_Linux_fs/buildroot/package/nfs-utils/
H A D0003-nfsdcltrack-Use-uint64_t-instead-of-time_t.patch4 Subject: [PATCH] nfsdcltrack: Use uint64_t instead of time_t
10 The variable type that was being used was a time_t,
33 - time_t gracetime;
46 -sqlite_remove_unreclaimed(time_t grace_start)
59 -int sqlite_remove_unreclaimed(const time_t grace_start);
61 int sqlite_query_reclaiming(const time_t grace_start);
/OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/
H A Dtime.h30 typedef unsigned long time_t; typedef
32 time_t time(time_t *t);
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/
H A Dtime.h11 typedef int64_t time_t; typedef
12 time_t time(time_t *t);
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/
H A Dtime.h11 typedef int64_t time_t; typedef
12 time_t time(time_t *t);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/parsedate/
H A Dparsedate.cpp240 static int parsedate(const char *date, time_t *output);
417 static time_t my_timegm(struct my_tm *tm) in my_timegm()
443 return ((((time_t) (year - 1970) * 365 in my_timegm()
459 static int parsedate(const char *date, time_t *output) in parsedate()
461 time_t t = 0; in parsedate()
672 time_t parse_date(const char *p) in parse_date()
674 time_t parsed = -1; in parse_date()
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/elfutils/files/
H A D0001-debuginfod-debuginfod-client.c-use-long-for-cache-ti.patch7 time_t is platform dependent and some of architectures e.g.
8 x32, riscv32, arc use 64bit time_t even while they are 32bit
29 -static const time_t cache_clean_default_interval_s = 86400; /* 1 day */
34 -static const time_t cache_miss_default_s = 600; /* 10 min */
41 -static const time_t cache_default_max_unused_age_s = 604800; /* 1 week */
/OK3568_Linux_fs/buildroot/package/linux-zigbee/
H A D0002-addrdb-coord-config-parse.y-add-missing-time.h-inclu.patch9 The %union definition uses the time_t structure. In order to use this
14 coord-config-parse.y:107:2: error: unknown type name ‘time_t
15 time_t timestamp;
40 time_t timestamp;

12345678910>>...17