/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
H A D | pthread_getcpuclockid.c | 44 ret = pthread_getcpuclockid(pthread_self(), &cid); in pthread_getcpuclockid_0100() 48 ret = pthread_getcpuclockid(thread, &cid); in pthread_getcpuclockid_0100()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/ |
H A D | 22-1.c | 96 ret = pthread_getcpuclockid(pthread_self(), &clt); in main() 145 ret = pthread_getcpuclockid(pthread_self(), &clt); in main()
|
/third_party/ltp/testcases/kernel/syscalls/nice/ |
H A D | nice05.c | 121 TEST(pthread_getcpuclockid(thread[1], &nice_low_clockid)); in verify_nice() 125 TEST(pthread_getcpuclockid(thread[0], &nice_high_clockid)); in verify_nice()
|
/third_party/musl/src/thread/ |
H A D | pthread_getcpuclockid.c | 3 int pthread_getcpuclockid(pthread_t t, clockid_t *clockid) in pthread_getcpuclockid() function
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getcpuclockid/speculative/ |
H A D | 3-1.c | 8 * Test pthread_getcpuclockid() 28 #define FUNCTION "pthread_getcpuclockid" 55 rc = pthread_getcpuclockid(new_th, &cid); in main() 57 printf("pthread_getcpuclockid returns ESRCH " in main() 60 printf("pthread_getcpuclockid doesn't return " in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getcpuclockid/ |
H A D | 1-1.c | 8 * Test pthread_getcpuclockid() 27 #define FUNCTION "pthread_getcpuclockid" 35 rc = pthread_getcpuclockid(pthread_self(), &cid); in thread_func() 37 perror(ERROR_PREFIX "pthread_getcpuclockid"); in thread_func()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/ |
H A D | thread_pthrd_test.cpp | 392 EXPECT_EQ(0, pthread_getcpuclockid(thread, &realClock)); in HWTEST_F() 409 EXPECT_DEATH(pthread_getcpuclockid(deadThread, &realClock), ".*"); in HWTEST_F() 421 EXPECT_DEATH(pthread_getcpuclockid(nullThread, &c), ".*"); in HWTEST_F()
|
/third_party/FreeBSD/lib/libc/include/ |
H A D | namespace.h | 138 #define pthread_getcpuclockid _pthread_getcpuclockid
macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | pthread.h | 208 int pthread_getcpuclockid(pthread_t, clockid_t *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | pthread.h | 208 int pthread_getcpuclockid(pthread_t, clockid_t *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | pthread.h | 208 int pthread_getcpuclockid(pthread_t, clockid_t *);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | pthread.h | 201 int pthread_getcpuclockid(pthread_t, clockid_t *);
|
/third_party/mesa3d/src/util/ |
H A D | u_thread.h | 251 pthread_getcpuclockid(thread, &cid); in util_thread_get_time_nano()
|
/third_party/musl/libc-test/src/api/ |
H A D | pthread.c | 168 {int(*p)(pthread_t,clockid_t*) = pthread_getcpuclockid;} in g()
|
/third_party/musl/porting/linux/user/include/ |
H A D | pthread.h | 381 int pthread_getcpuclockid(pthread_t, clockid_t *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | pthread.h | 245 int pthread_getcpuclockid(pthread_t, clockid_t *);
|
/third_party/musl/include/ |
H A D | pthread.h | 356 int pthread_getcpuclockid(pthread_t, clockid_t *);
|
/third_party/python/Lib/test/ |
H A D | test_time.py | 112 @unittest.skipUnless(hasattr(time, 'pthread_getcpuclockid'), 113 'need time.pthread_getcpuclockid()') 117 clk_id = time.pthread_getcpuclockid(threading.get_ident())
|
/third_party/python/Modules/ |
H A D | timemodule.c | 351 if (!PyArg_ParseTuple(args, "k:pthread_getcpuclockid", &thread_id)) { 354 err = pthread_getcpuclockid((pthread_t)thread_id, &clk_id); 367 "pthread_getcpuclockid(thread_id) -> int\n\ 1853 {"pthread_getcpuclockid", time_pthread_getcpuclockid, METH_VARARGS, pthread_getcpuclockid_doc},
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/ |
H A D | mod.rs | 1473 pub fn pthread_getcpuclockid(thread: ::pthread_t, clk_id: *mut ::clockid_t) -> ::c_int; in pthread_getcpuclockid() functions
|
/third_party/rust/crates/libc/src/unix/nto/ |
H A D | mod.rs | 3056 pub fn pthread_getcpuclockid(thread: ::pthread_t, clk_id: *mut ::clockid_t) -> ::c_int; in pthread_getcpuclockid() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/android/ |
H A D | mod.rs | 3498 pub fn pthread_getcpuclockid(thread: ::pthread_t, clk_id: *mut ::clockid_t) -> ::c_int; in pthread_getcpuclockid() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 4467 pub fn pthread_getcpuclockid(thread: ::pthread_t, clk_id: *mut ::clockid_t) -> ::c_int; in pthread_getcpuclockid() functions
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 18484 extern int pthread_getcpuclockid (pthread_t __thread_id, [all...] |