HomeSort by relevance Sort by last modified time
    Searched defs:gettid (Results 1 - 15 of 15) sorted by null

  /bionic/libc/arch-arm/syscalls/
gettid.S 6 ENTRY(gettid) function
15 END(gettid)
  /bionic/libc/arch-mips/syscalls/
gettid.S 4 .globl gettid
6 .ent gettid
8 gettid: label
22 .end gettid
  /bionic/libc/arch-x86/syscalls/
gettid.S 6 ENTRY(gettid) function
18 END(gettid)
  /bionic/tests/
stack_protector_test.cpp 32 // glibc doesn't expose gettid(2).
33 pid_t gettid() { return syscall(__NR_gettid); } function
52 pid_t tid = gettid();
57 // Duplicate tid. gettid(2) bug? Seeing this would be very upsetting.
103 ASSERT_NE(0, gettid());
  /external/libselinux/src/
procattr.c 12 static pid_t gettid(void) function
31 tid = gettid();
88 tid = gettid();
  /hardware/libhardware/modules/gralloc/
mapper.cpp 36 /* desktop Linux needs a little help with gettid() */
40 pid_t gettid() { return syscall(__NR_gettid);} function
  /hardware/msm7k/libgralloc/
mapper.cpp 43 /* desktop Linux needs a little help with gettid() */
47 pid_t gettid() { return syscall(__NR_gettid);} function
  /hardware/msm7k/libgralloc-qsd8k/
mapper.cpp 43 /* desktop Linux needs a little help with gettid() */
47 pid_t gettid() { return syscall(__NR_gettid);} function
236 hnd->writeOwner = gettid();
299 if (hnd->writeOwner == gettid()) {
  /external/valgrind/main/gdbserver_tests/
sleepers.c 17 static pid_t gettid() function
29 fprintf(stderr, "pid %d Thread %d %s\n", getpid(), gettid(), msg);
t.c 19 static pid_t gettid() function
29 printf("pid %d Thread %d %s\n", getpid(), gettid(), msg); fflush(stdout);
  /frameworks/rs/cpu_ref/
rsCpuCore.cpp 37 // Android exposes gettid(), standard Linux does not
38 static pid_t gettid() { function
124 dc->mWorkers.mNativeThreadId[idx] = gettid();
  /system/core/libcorkscrew/
backtrace.c 43 // Bionic implements and exports gettid but only implements tgkill.
48 // glibc doesn't implement or export either gettid or tgkill.
53 static pid_t gettid() { function
88 ALOGV("Unwinding current thread %d.", gettid());
126 if (!android_atomic_acquire_cas(gettid(), STATE_DUMPING, &g_unwind_signal_state.tid_state)) {
136 gettid(), android_atomic_acquire_load(&g_unwind_signal_state.tid_state));
143 if (tid == gettid()) {
147 ALOGV("Unwinding thread %d from thread %d.", tid, gettid());
  /external/valgrind/main/coregrind/
m_libcproc.c 439 Int VG_(gettid)(void) function
447 * The gettid system call does not exist. The obvious assumption
454 * leader but where the gettid system call has not yet been added.
477 // Darwin's gettid syscall is something else.
  /frameworks/rs/
rsContext.cpp 42 // Android exposes gettid(), standard Linux does not
43 static pid_t gettid() { function
285 rsc->mNativeThreadId = gettid();
  /external/stressapptest/src/
worker.cc 41 #include <linux/unistd.h> // for gettid
67 // Why ubuntu, do you hate gettid so bad?
72 #define gettid() syscall(__NR_gettid) macro
451 return (sched_setaffinity(gettid(), sizeof(*thread_mask), thread_mask) == 0);
    [all...]

Completed in 1019 milliseconds