Home
last modified time | relevance | path

Searched refs:timebuf (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/
H A Dsiglongjmp.patch10 -static jmp_buf timebuf;
11 +static sigjmp_buf timebuf;
19 - longjmp(timebuf, sig);
20 + siglongjmp(timebuf, sig);
28 - if (setjmp(timebuf) == 0) {
29 + if (sigsetjmp(timebuf, 0) == 0) {
H A Drestore_sigalarm.patch18 if (setjmp(timebuf) == 0) {
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/
H A Dnettest.c111 static char *timestamp(char *timebuf, int buflen) in timestamp() argument
116 if (strftime(timebuf, buflen, "%T", localtime(&now)) == 0) { in timestamp()
117 memset(timebuf, 0, buflen); in timestamp()
118 strncpy(timebuf, "00:00:00", buflen-1); in timestamp()
121 return timebuf; in timestamp()
126 char timebuf[64]; in log_msg() local
133 timestamp(timebuf, sizeof(timebuf)), in log_msg()
144 char timebuf[64]; in log_error() local
151 timestamp(timebuf, sizeof(timebuf)), in log_error()
162 char timebuf[64]; in log_err_errno() local
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/seccomp/
H A Dseccomp_bpf.c695 struct tms timebuf; in TEST_SIGNAL() local
696 clock_t clock = times(&timebuf); in TEST_SIGNAL()
705 EXPECT_LE(clock, syscall(__NR_times, &timebuf)); in TEST_SIGNAL()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/
H A Ddhd_linux.c26220 static char timebuf[DEBUG_DUMP_TIME_BUF_LEN]; in dhd_dbg_get_system_timestamp() local
26225 memset_s(timebuf, DEBUG_DUMP_TIME_BUF_LEN, 0, DEBUG_DUMP_TIME_BUF_LEN); in dhd_dbg_get_system_timestamp()
26229 scnprintf(timebuf, DEBUG_DUMP_TIME_BUF_LEN, in dhd_dbg_get_system_timestamp()
26232 return timebuf; in dhd_dbg_get_system_timestamp()
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/
H A Ddhd_linux.c26109 static char timebuf[DEBUG_DUMP_TIME_BUF_LEN]; in dhd_dbg_get_system_timestamp() local
26114 memset_s(timebuf, DEBUG_DUMP_TIME_BUF_LEN, 0, DEBUG_DUMP_TIME_BUF_LEN); in dhd_dbg_get_system_timestamp()
26118 scnprintf(timebuf, DEBUG_DUMP_TIME_BUF_LEN, in dhd_dbg_get_system_timestamp()
26121 return timebuf; in dhd_dbg_get_system_timestamp()