Home
last modified time | relevance | path

Searched refs:lwpid (Results 1 – 5 of 5) sorted by relevance

/external/google-breakpad/src/client/solaris/handler/
Dsolaris_lwp.cc113 int lwpid = 0; in IterateLwpAll() local
115 if (LocalAtoi(entry->d_name, &lwpid) && last_pid != lwpid) { in IterateLwpAll()
116 last_pid = lwpid; in IterateLwpAll()
119 !(callback_param->call_back)(lwpid, callback_param->context)) { in IterateLwpAll()
162 static bool ControlLwp(int lwpid, void *context) { in ControlLwp() argument
164 if (lwpid != pthread_self()) { in ControlLwp()
170 snprintf(procname, sizeof (procname), "/proc/self/lwp/%d/lwpctl", lwpid); in ControlLwp()
183 print_message2(2, "failed in lwp %d\n", lwpid); in ControlLwp()
Dsolaris_lwp.h83 typedef bool (*LwpidCallback)(int lwpid, void *context);
/external/llvm-project/compiler-rt/include/sanitizer/
Dnetbsd_syscall_hooks.h875 #define __sanitizer_syscall_pre___futex_get_robust_list(lwpid, headp, lenp) \ argument
877 (long long)(lwpid), (long long)(headp), (long long)(lenp))
878 #define __sanitizer_syscall_post___futex_get_robust_list(res, lwpid, headp, \ argument
881 res, (long long)(lwpid), (long long)(headp), (long long)(lenp))
3503 void __sanitizer_syscall_pre_impl___futex_get_robust_list(long long lwpid,
3507 long long lwpid,
/external/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/
Dmod.rs1088 lwpid: lwpid_t, in lwp_rtprio()
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/
Dmod.rs1421 pub fn rtprio_thread(function: ::c_int, lwpid: ::lwpid_t, rtp: *mut super::rtprio) -> ::c_int; in rtprio_thread()