Home
last modified time | relevance | path

Searched refs:handle (Results 1 – 25 of 121) sorted by relevance

12345

/l4re-core-master/uclibc/lib/libpthread/src/
A Dl4.cc28 __pthread_lock(handle_to_lock(handle), self); in pthread_l4_cap()
29 if (nonexisting_handle(handle, thread_id)) { in pthread_l4_cap()
30 __pthread_unlock(handle_to_lock(handle)); in pthread_l4_cap()
34 th = handle_to_descr(handle); in pthread_l4_cap()
36 __pthread_unlock(handle_to_lock(handle)); in pthread_l4_cap()
116 th = handle_to_descr(handle); in __pthread_setschedparam()
132 __pthread_unlock(handle_to_lock(handle)); in __pthread_setschedparam()
155 __pthread_unlock(handle_to_lock(handle)); in strong_alias()
184 __pthread_unlock(handle_to_lock(handle)); in strong_alias()
199 __pthread_unlock(handle_to_lock(handle)); in pthread_getaffinity_np()
[all …]
A Djoin.c95 pthread_handle handle = obj; in join_extricate_func() local
100 jo = handle_to_descr(handle); in join_extricate_func()
103 __pthread_unlock(handle_to_lock(handle)); in join_extricate_func()
118 extr.pu_object = handle; in pthread_join()
123 __pthread_unlock(handle_to_lock(handle)); in pthread_join()
126 th = handle_to_descr(handle); in pthread_join()
128 __pthread_unlock(handle_to_lock(handle)); in pthread_join()
133 __pthread_unlock(handle_to_lock(handle)); in pthread_join()
166 __pthread_unlock(handle_to_lock(handle)); in pthread_join()
189 th = handle_to_descr(handle); in pthread_detach()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/
A Djoin.c101 pthread_handle handle = obj; in join_extricate_func() local
106 jo = handle->h_descr; in join_extricate_func()
109 __pthread_unlock(&handle->h_lock); in join_extricate_func()
124 extr.pu_object = handle; in pthread_join()
129 __pthread_unlock(&handle->h_lock); in pthread_join()
132 th = handle->h_descr; in pthread_join()
134 __pthread_unlock(&handle->h_lock); in pthread_join()
139 __pthread_unlock(&handle->h_lock); in pthread_join()
172 __pthread_unlock(&handle->h_lock); in pthread_join()
196 th = handle->h_descr; in pthread_detach()
[all …]
A Dptclock_settime.c38 pthread_handle handle = thread_handle (thread); in __pthread_clock_settime() local
39 __pthread_lock (&handle->h_lock, NULL); in __pthread_clock_settime()
40 th = handle->h_descr; in __pthread_clock_settime()
43 __pthread_unlock (&handle->h_lock); in __pthread_clock_settime()
48 __pthread_unlock (&handle->h_lock); in __pthread_clock_settime()
A Dptclock_gettime.c39 pthread_handle handle = thread_handle (thread); in __pthread_clock_gettime() local
40 __pthread_lock (&handle->h_lock, NULL); in __pthread_clock_gettime()
41 th = handle->h_descr; in __pthread_clock_gettime()
44 __pthread_unlock (&handle->h_lock); in __pthread_clock_gettime()
49 __pthread_unlock (&handle->h_lock); in __pthread_clock_gettime()
A Dsignals.c57 pthread_handle handle = thread_handle(thread); in pthread_kill() local
60 __pthread_lock(&handle->h_lock, NULL); in pthread_kill()
61 if (invalid_handle(handle, thread)) { in pthread_kill()
62 __pthread_unlock(&handle->h_lock); in pthread_kill()
65 pid = handle->h_descr->p_pid; in pthread_kill()
66 __pthread_unlock(&handle->h_lock); in pthread_kill()
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/
A Djoin.c109 pthread_handle handle = obj; in join_extricate_func() local
114 jo = handle->h_descr; in join_extricate_func()
117 __pthread_unlock(&handle->h_lock); in join_extricate_func()
133 extr.pu_object = handle; in pthread_join()
138 __pthread_unlock(&handle->h_lock); in pthread_join()
141 th = handle->h_descr; in pthread_join()
143 __pthread_unlock(&handle->h_lock); in pthread_join()
148 __pthread_unlock(&handle->h_lock); in pthread_join()
183 __pthread_unlock(&handle->h_lock); in pthread_join()
207 th = handle->h_descr; in pthread_detach()
[all …]
A Dcancel.c73 pthread_handle handle = thread_handle(thread); in libpthread_hidden_def() local
80 __pthread_lock(&handle->h_lock, NULL); in libpthread_hidden_def()
81 if (invalid_handle(handle, thread)) { in libpthread_hidden_def()
82 __pthread_unlock(&handle->h_lock); in libpthread_hidden_def()
86 th = handle->h_descr; in libpthread_hidden_def()
92 __pthread_unlock(&handle->h_lock); in libpthread_hidden_def()
111 __pthread_unlock(&handle->h_lock); in libpthread_hidden_def()
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/unix/sysv/linux/arm/
A Dunwind-forcedunwind.c42 void *handle; in pthread_cancel_init() local
51 handle = __libc_dlopen ("libgcc_s.so.1"); in pthread_cancel_init()
53 if (handle == NULL in pthread_cancel_init()
54 || (resume = __libc_dlsym (handle, "_Unwind_Resume")) == NULL in pthread_cancel_init()
56 || (forcedunwind = __libc_dlsym (handle, "_Unwind_ForcedUnwind")) in pthread_cancel_init()
58 || (getcfa = __libc_dlsym (handle, "_Unwind_GetCFA")) == NULL in pthread_cancel_init()
60 || ARCH_CANCEL_INIT (handle) in pthread_cancel_init()
73 libgcc_s_handle = handle; in pthread_cancel_init()
80 void *handle = libgcc_s_handle; in __unwind_freeres() local
81 if (handle != NULL) in __unwind_freeres()
[all …]
A Dunwind-resume.c38 void *handle; in init() local
40 handle = __libc_dlopen ("libgcc_s.so.1"); in init()
42 if (handle == NULL in init()
43 || (resume = __libc_dlsym (handle, "_Unwind_Resume")) == NULL in init()
44 || (personality = __libc_dlsym (handle, "__gcc_personality_v0")) == NULL) in init()
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/pthread/
A Dunwind-forcedunwind.c47 void *handle; in pthread_cancel_init() local
56 handle = __libc_dlopen (LIBGCC_S_SO); in pthread_cancel_init()
58 if (handle == NULL in pthread_cancel_init()
59 || (resume = __libc_dlsym (handle, "_Unwind_Resume")) == NULL in pthread_cancel_init()
61 || (forcedunwind = __libc_dlsym (handle, "_Unwind_ForcedUnwind")) in pthread_cancel_init()
63 || (getcfa = __libc_dlsym (handle, "_Unwind_GetCFA")) == NULL in pthread_cancel_init()
65 || ARCH_CANCEL_INIT (handle) in pthread_cancel_init()
85 libgcc_s_handle = handle; in pthread_cancel_init()
92 void *handle = libgcc_s_handle; in __unwind_freeres() local
93 if (handle != NULL) in __unwind_freeres()
[all …]
A Dunwind-resume.c41 void *handle; in init() local
43 handle = dlopen (LIBGCC_S_SO, (RTLD_LOCAL | RTLD_LAZY)); in init()
45 if (handle == NULL in init()
46 || (resume = dlsym (handle, "_Unwind_Resume")) == NULL in init()
47 || (personality = dlsym (handle, "__gcc_personality_v0")) == NULL) in init()
/l4re-core-master/uclibc/lib/contrib/uclibc/test/dlopen/
A Dtest2.c11 void *handle; in main() local
15 handle = dlopen ("./libtest2.so", RTLD_LAZY); in main()
16 if (!handle) { in main()
21 handle = dlopen ("./libtest1.so", RTLD_LAZY); in main()
22 if (!handle) { in main()
27 mydltest = dlsym(handle, "dltest"); in main()
35 dlclose(handle); in main()
A Ddlundef.c11 void *handle; in main() local
14 handle = dlopen(LIBNAME, RTLD_LAZY); in main()
15 if (!handle) { in main()
20 myundefined = dlsym(handle, "__booga_booga_you_cant_touch_this__"); in main()
26 dlclose(handle); in main()
A Dtest1.c11 void *handle; in main() local
15 handle = dlopen ("./libtest1.so", RTLD_LAZY); in main()
16 if (!handle) { in main()
21 mydltest = dlsym(handle, "dltest"); in main()
29 dlclose(handle); in main()
A Ddlstatic.c11 void *handle; in load_and_test() local
14 handle = dlopen(LIBNAME, RTLD_LAZY); in load_and_test()
15 if (!handle) { in load_and_test()
20 mystatic = dlsym(handle, "static_test"); in load_and_test()
31 dlclose(handle); in load_and_test()
A Ddltest.c10 void *handle; in main() local
15 handle = dlopen (LIBNAME, RTLD_LAZY); in main()
16 if (!handle) { in main()
21 mydltest = dlsym(handle, "dltest"); in main()
37 dlclose(handle); in main()
/l4re-core-master/uclibc/lib/contrib/uclibc/ldso/libdl/
A Dlibdl.c419 for (handle = _dl_handles->next_handle; handle; handle = handle->next_handle) { in do_dlopen()
696 struct dyn_elf *handle; in do_dlsym() local
722 if (handle == NULL) in do_dlsym()
724 else if (handle != RTLD_NEXT && handle != _dl_symbol_tables) { in do_dlsym()
726 if (rpnt == handle) in do_dlsym()
748 handle = rpnt->next; in do_dlsym()
760 handle = handle->next; in do_dlsym()
829 if (rpnt == handle) in do_dlclose()
843 handle->dyn->libname, handle->dyn->usage_count); in do_dlclose()
846 free(handle); in do_dlclose()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/sysdeps/pthread/
A Dgetcpuclockid.c40 pthread_handle handle = thread_handle(thread_id); in pthread_getcpuclockid() local
43 __pthread_lock (&handle->h_lock, NULL); in pthread_getcpuclockid()
44 if (nonexisting_handle (handle, thread_id)) in pthread_getcpuclockid()
46 __pthread_unlock (&handle->h_lock); in pthread_getcpuclockid()
49 pid = handle->h_descr->p_pid; in pthread_getcpuclockid()
50 __pthread_unlock (&handle->h_lock); in pthread_getcpuclockid()
/l4re-core-master/l4util/lib/src/ARCH-x86/
A Dbacktrace.c25 void *handle = dlopen ("libgcc_s.so.1", 0); in init() local
27 if (handle == NULL) in init()
30 uw_bt = dlsym (handle, "_Unwind_Backtrace"); in init()
31 uw_getpc = dlsym (handle, "_Unwind_GetIP"); in init()
32 uw_getcfa = dlsym (handle, "_Unwind_GetCFA"); in init()
33 uw_getgr = dlsym (handle, "_Unwind_GetGR"); in init()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/std/
A Dcoroutine82 /// [coroutine.handle]
90 // [coroutine.handle.con], construct/reset
115 // [coroutine.handle.observers], observers
123 // [coroutine.handle.resumption], resumption
184 // [coroutine.handle.con], construct/reset
216 // [coroutine.handle.conv], conversion
220 // [coroutine.handle.observers], observers
228 // [coroutine.handle.resumption], resumption
235 // [coroutine.handle.promise], promise access
259 // [coroutine.handle.noop.conv], conversion
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libubacktrace/
A Dbacktrace.c43 void *handle = dlopen (LIBGCC_S_SO, RTLD_LAZY); in backtrace_init() local
45 if (handle == NULL in backtrace_init()
46 || ((unwind_backtrace = dlsym (handle, "_Unwind_Backtrace")) == NULL) in backtrace_init()
47 || ((unwind_getip = dlsym (handle, "_Unwind_GetIP")) == NULL)) { in backtrace_init()
/l4re-core-master/l4util/lib/src/ARCH-amd64/
A Dbacktrace.c25 void *handle = dlopen ("libgcc_s.so.1", 0); in init() local
27 if (handle == NULL) in init()
30 uw_bt = dlsym (handle, "_Unwind_Backtrace"); in init()
31 uw_getpc = dlsym (handle, "_Unwind_GetIP"); in init()
/l4re-core-master/uclibc/lib/contrib/uclibc/libubacktrace/arm/
A Dbacktrace.c39 void *handle = dlopen (LIBGCC_S_SO, RTLD_LAZY); in backtrace_init() local
40 if (handle == NULL in backtrace_init()
41 || ((unwind_backtrace = dlsym (handle, "_Unwind_Backtrace")) == NULL) in backtrace_init()
42 || ((unwind_vrs_get = dlsym (handle, "_Unwind_VRS_Get")) == NULL)) { in backtrace_init()
/l4re-core-master/uclibc/lib/contrib/uclibc/include/arpa/
A Dnameser.h122 #define ns_msg_id(handle) ((handle)._id + 0) argument
123 #define ns_msg_base(handle) ((handle)._msg + 0) argument
124 #define ns_msg_end(handle) ((handle)._eom + 0) argument
125 #define ns_msg_size(handle) ((handle)._eom - (handle)._msg) argument
126 #define ns_msg_count(handle, section) ((handle)._counts[section] + 0) argument

Completed in 19 milliseconds

12345