Home
last modified time | relevance | path

Searched refs:tbuf (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libcxx/src/filesystem/
H A Doperations.cpp1236 array<TimeSpec, 2> tbuf; in __last_write_time() local
1245 tbuf[0] = detail::extract_atime(st); in __last_write_time()
1247 tbuf[0].tv_sec = 0; in __last_write_time()
1248 tbuf[0].tv_nsec = UTIME_OMIT; in __last_write_time()
1250 if (!fs_time::convert_to_timespec(tbuf[1], new_time)) in __last_write_time()
1253 detail::set_file_times(p, tbuf, m_ec); in __last_write_time()
/llvm-project-15.0.7/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h43 #define __sanitizer_syscall_pre_times(tbuf) \ argument
44 __sanitizer_syscall_pre_impl_times((long)(tbuf))
45 #define __sanitizer_syscall_post_times(res, tbuf) \ argument
46 __sanitizer_syscall_post_impl_times(res, (long)(tbuf))
2034 void __sanitizer_syscall_pre_impl_times(long tbuf);
2035 void __sanitizer_syscall_post_impl_times(long res, long tbuf);
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_syscalls.inc257 PRE_SYSCALL(times)(void *tbuf) {}
259 POST_SYSCALL(times)(long res, void *tbuf) {
261 if (tbuf)
262 POST_WRITE(tbuf, struct_tms_sz);