Home
last modified time | relevance | path

Searched refs:pthread_self (Results 1 – 25 of 50) sorted by relevance

12

/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/spice/spice/
H A D0001-Convert-pthread_t-to-be-numeric.patch29 "pthread_self (0x%" G_GSIZE_MODIFIER "x)."
32 - channel->priv->thread_id, pthread_self());
34 + (unsigned long)pthread_self());
41 "pthread_self (0x%" G_GSIZE_MODIFIER "x)."
44 - client->thread_id, pthread_self());
45 + (unsigned long)client->thread_id, (unsigned long)pthread_self());
50 "pthread_self (0x%" G_GSIZE_MODIFIER "x)."
54 - pthread_self());
56 + (unsigned long)pthread_self());
H A D0001-Fix-compile-errors-on-Linux-32bit-system.patch46 if (!pthread_equal(pthread_self(), channel->priv->thread_id)) {
49 - "pthread_self (0x%" G_GSIZE_MODIFIER "x)."
51 + "pthread_self (0x%lx)."
62 if (!pthread_equal(pthread_self(), client->thread_id)) {
64 - "pthread_self (0x%" G_GSIZE_MODIFIER "x)."
66 + "pthread_self (0x%lx)."
69 (unsigned long)client->thread_id, (unsigned long)pthread_self());
73 if (!pthread_equal(pthread_self(), client->thread_id)) {
75 - "pthread_self (0x%" G_GSIZE_MODIFIER "x)."
77 + "pthread_self (0x%lx)."
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Dthread.cpp14 pthread_getname_np(pthread_self(), name, sizeof(name)); in getCurrentThreadName()
21 pthread_setname_np(pthread_self(), name.substr(0, 15).c_str()); in setCurrentThreadName()
23 pthread_setname_np(pthread_self(), name.c_str()); in setCurrentThreadName()
/OK3568_Linux_fs/kernel/tools/testing/selftests/filesystems/epoll/
H A Depoll_wakeup_test.c473 ctx.main = pthread_self(); in TEST()
516 ctx.main = pthread_self(); in TEST()
563 ctx.main = pthread_self(); in TEST()
612 ctx.main = pthread_self(); in TEST()
657 ctx.main = pthread_self(); in TEST()
700 ctx.main = pthread_self(); in TEST()
747 ctx.main = pthread_self(); in TEST()
796 ctx.main = pthread_self(); in TEST()
1201 ctx.main = pthread_self(); in TEST()
1253 ctx.main = pthread_self(); in TEST()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/
H A Dpyperf.h204 uint64_t pthread_self; in __on_event() local
205 bpf_probe_read_user(&pthread_self, sizeof(pthread_self), in __on_event()
212 event->pthread_match = pthread_created == pthread_self; in __on_event()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/aarch64-none-linux-gnu/bits/
H A Dgthr-default.h109 __gthrw(pthread_self)
392 pthread_t thread_id = __gthrw_(pthread_self) (); in __gthread_objc_thread_set_priority()
436 if (__gthrw_(pthread_getschedparam) (__gthrw_(pthread_self) (), &policy, &params) == 0) in __gthread_objc_thread_get_priority()
472 return (objc_thread_t) __gthrw_(pthread_self) (); in __gthread_objc_thread_id()
687 return __gthrw_(pthread_self) (); in __gthread_self()
H A Dgthr-posix.h109 __gthrw(pthread_self)
392 pthread_t thread_id = __gthrw_(pthread_self) (); in __gthread_objc_thread_set_priority()
436 if (__gthrw_(pthread_getschedparam) (__gthrw_(pthread_self) (), &policy, &params) == 0) in __gthread_objc_thread_get_priority()
472 return (objc_thread_t) __gthrw_(pthread_self) (); in __gthread_objc_thread_id()
687 return __gthrw_(pthread_self) (); in __gthread_self()
H A Dos_defines.h54 # define _GLIBCXX_NATIVE_THREAD_ID pthread_self()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/arm-none-linux-gnueabihf/bits/
H A Dgthr-default.h109 __gthrw(pthread_self)
392 pthread_t thread_id = __gthrw_(pthread_self) (); in __gthread_objc_thread_set_priority()
436 if (__gthrw_(pthread_getschedparam) (__gthrw_(pthread_self) (), &policy, &params) == 0) in __gthread_objc_thread_get_priority()
472 return (objc_thread_t) __gthrw_(pthread_self) (); in __gthread_objc_thread_id()
687 return __gthrw_(pthread_self) (); in __gthread_self()
H A Dgthr-posix.h109 __gthrw(pthread_self)
392 pthread_t thread_id = __gthrw_(pthread_self) (); in __gthread_objc_thread_set_priority()
436 if (__gthrw_(pthread_getschedparam) (__gthrw_(pthread_self) (), &policy, &params) == 0) in __gthread_objc_thread_get_priority()
472 return (objc_thread_t) __gthrw_(pthread_self) (); in __gthread_objc_thread_id()
687 return __gthrw_(pthread_self) (); in __gthread_self()
H A Dos_defines.h54 # define _GLIBCXX_NATIVE_THREAD_ID pthread_self()
/OK3568_Linux_fs/buildroot/package/qt5/qt5location/
H A D0001-3rdparty-mapbox-gl-native-fix-musl-compile-pthread_g.patch17 14 | pthread_getname_np(pthread_self(), name, sizeof(name));
39 pthread_getname_np(pthread_self(), name, sizeof(name));
/OK3568_Linux_fs/kernel/tools/testing/selftests/mqueue/
H A Dmq_perf_tests.c215 if (pthread_self() != main_thread) in sig_action_SIGUSR1()
228 if (pthread_self() != main_thread) in sig_action()
315 if (cpu_threads[i] == pthread_self()) in fake_cont_thread()
329 if (cpu_threads[i] == pthread_self()) in cont_thread()
550 main_thread = pthread_self(); in main()
/OK3568_Linux_fs/external/xserver/os/
H A Dinputthread.c97 pthread_equal(pthread_self(), inputThreadInfo->thread); in in_input_thread()
326 pthread_setname_np (pthread_self(), "InputThread"); in InputThreadDoWork()
447 pthread_setname_np (pthread_self(), "MainThread"); in InputThreadPreInit()
/OK3568_Linux_fs/external/xserver/hw/xwin/winclipboard/
H A Dthread.c150 g_winClipboardProcThread = pthread_self(); in winClipboardProc()
488 if (pthread_equal(pthread_self(), g_winClipboardProcThread)) { in winClipboardIOErrorHandler()
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/math/
H A Dfpu_preempt.c45 srand(pthread_self()); in preempt_fpu_c()
H A Dvmx_preempt.c45 srand(pthread_self()); in preempt_vmx_c()
H A Dfpu_signal.c66 srand(pthread_self()); in signal_fpu_c()
H A Dvsx_preempt.c76 srand(pthread_self()); in preempt_vsx_c()
H A Dvmx_signal.c83 srand(pthread_self()); in signal_vmx_c()
/OK3568_Linux_fs/yocto/meta-browser/meta-chromium/recipes-browser/chromium/files/musl/
H A D0021-pthread_getname_np.patch23 if (pthread_getname_np(pthread_self(), buf, sizeof(buf)) != 0)
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-kernel/libpfm/libpfm4/
H A D0002-perf_examples-Remove-unused-sum-variable.patch40 pthread_kill(pthread_self(), SIGUSR1);
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/
H A Dperf_event_stackmap.c85 err = pthread_setaffinity_np(pthread_self(), sizeof(cpu_set), &cpu_set); in test_perf_event_stackmap()
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/
H A Dtest_tcpnotify_user.c87 pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &cpuset); in main()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/xcore/
H A Dxcam_thread.cpp59 pthread_detach (pthread_self()); in thread_func()

12