HomeSort by relevance Sort by last modified time
    Searched refs:tid (Results 226 - 250 of 931) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/coregrind/
pub_core_threadstate.h 126 ThreadId parent; // parent tid (if any)
138 void (*post_mach_trap_fn)(ThreadId tid,
329 ThreadId in this tid field, but be aware that it should
331 ThreadId tid; member in struct:__anon25353
436 extern ThreadState *VG_(get_ThreadState) ( ThreadId tid );
438 /* Check that tid is in range and denotes a non-Empty thread. */
439 extern Bool VG_(is_valid_tid) ( ThreadId tid );
442 extern Bool VG_(is_running_thread)(ThreadId tid);
445 extern Bool VG_(is_exiting)(ThreadId tid);
  /external/valgrind/drd/tests/
bar_bad_xml.stderr.exp 35 <tid>...</tid>
62 <tid>...</tid>
111 <tid>...</tid>
160 <tid>...</tid>
209 <tid>...</tid>
    [all...]
pth_barrier.c 28 pthread_t tid; member in struct:threadinfo
92 res = pthread_create(&t[i].tid, &attr, (void*(*)(void*))threadfunc, &t[i]);
104 pthread_join(t[i].tid, 0);
  /external/valgrind/memcheck/tests/
threadname_xml.stderr.exp 33 <tid>...</tid>
85 <tid>...</tid>
137 <tid>...</tid>
189 <tid>...</tid>
196 <tid>...</tid>
    [all...]
  /system/core/debuggerd/
tombstone.cpp 179 static void dump_signal_info(log_t* log, pid_t tid, int signal, int si_code) {
182 if (ptrace(PTRACE_GETSIGINFO, tid, 0, &si) == -1) {
201 static void dump_thread_info(log_t* log, pid_t pid, pid_t tid) {
207 snprintf(path, sizeof(path), "/proc/%d/comm", tid);
234 _LOG(log, logtype::HEADER, "pid: %d, tid: %d, name: %s >>> %s <<<\n", pid, tid,
359 static void dump_all_maps(Backtrace* backtrace, BacktraceMap* map, log_t* log, pid_t tid) {
364 if (ptrace(PTRACE_GETSIGINFO, tid, 0, &si) != -1) {
368 ALOGE("Cannot get siginfo for %d: %s\n", tid, strerror(errno));
448 static void dump_thread(log_t* log, pid_t pid, pid_t tid, BacktraceMap* map, int signal
    [all...]
  /system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/
event.h 25 u32 pid, tid; member in struct:mmap_event
35 u32 pid, tid; member in struct:mmap2_event
50 u32 pid, tid; member in struct:comm_event
57 u32 tid, ptid; member in struct:fork_event
70 u32 pid, tid; member in struct:read_event
116 u32 pid, tid; member in struct:perf_sample
  /external/curl/docs/examples/
threaded-ssl.c 136 pthread_t tid[NUMT]; local
148 error = pthread_create(&tid[i],
160 error = pthread_join(tid[i], NULL);
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
histogram.hpp 63 const int tid = threadIdx.y * blockDim.x + threadIdx.x; local
65 for (int i = tid; i < BIN_COUNT; i += BLOCK_SIZE)
84 for (int i = tid; i < BIN_COUNT; i += BLOCK_SIZE)
  /hardware/qcom/gps/msm8960/core/
MsgTask.cpp 76 pthread_t tid; local
79 if (!pthread_create(&tid, &attr, loopMain,
85 pthread_setname_np(tid, lname);
  /external/valgrind/coregrind/m_syswrap/
syswrap-generic.c 90 VG_(printf)("tid %u: guessed client stack range [%#lx-%#lx]\n",
91 tst->tid, seg->start, tst->client_stack_highest_byte);
95 tst->tid, sp);
105 Bool ML_(valid_client_addr)(Addr start, SizeT size, ThreadId tid,
125 VG_(get_and_pp_StackTrace)(tid, VG_(clo_backtrace_size));
277 UWord flags, ThreadId tid )
323 if (!ML_(valid_client_addr)(old_addr, old_len, tid, "mremap(old_addr)"))
578 tid is -1, this indicates an inherited fd. If the pathname is NULL,
583 void ML_(record_fd_open_with_given_name)(ThreadId tid, Int fd,
614 i->where = (tid == -1) ? NULL : VG_(record_ExeContext)(tid, 0/*first_ip_delta*/)
3702 ThreadId tid; local
    [all...]
  /development/ndk/platforms/android-3/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /device/google/contexthub/firmware/inc/
platform.h 41 // free all platform-specific resources for TID, and return non-zero status if some cleanup was done
42 uint32_t platFreeResources(uint32_t tid);
  /device/google/contexthub/firmware/src/platform/linux/
platform.c 63 uint32_t platFreeResources(uint32_t tid)
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
log.py 87 tid = threading.current_thread().ident
88 if not tid:
89 tid = os.getpid()
91 "pid": os.getpid(), "tid": threading.current_thread().ident,
155 tid = threading.current_thread().ident
156 if not tid:
157 tid = os.getpid()
158 _tls.tid = tid
163 "tid": _tls.tid
    [all...]
  /external/elfutils/tests/
run-stack-i-test.sh 46 TID 13654:
53 $STACKCMD: tid 13654: shown max number of frames (6, use -n 0 for unlimited)
60 TID 13654:
73 $STACKCMD: tid 13654: shown max number of frames (6, use -n 0 for unlimited)
  /external/opencv3/modules/core/include/opencv2/core/cuda/detail/
vec_distance_detail.hpp 103 static __device__ __forceinline__ void calc(const T1* vecCached, const T2* vecGlob, int len, Dist& dist, int tid)
105 UnrollVecDiffCached<THREAD_DIM, MAX_LEN / THREAD_DIM>::calcCheck(vecCached, vecGlob, len, dist, tid);
111 static __device__ __forceinline__ void calc(const T1* vecCached, const T2* vecGlob, int len, Dist& dist, int tid)
113 UnrollVecDiffCached<THREAD_DIM, MAX_LEN / THREAD_DIM>::calcWithoutCheck(vecCached, vecGlob + tid, dist);
  /external/opencv3/modules/cudaimgproc/src/cuda/
clahe.cu 65 const unsigned int tid = threadIdx.y * blockDim.x + threadIdx.x;
67 smem[tid] = 0;
82 int tHistVal = smem[tid];
99 reduce<256>(smem, clipped, tid, plus<int>());
105 if (tid == 0)
115 if (tid < residual)
119 const int lutVal = blockScanInclusive<256>(tHistVal, smem, tid);
121 lut(ty * tilesX + tx, tid) = saturate_cast<uchar>(__float2int_rn(lutScale * lutVal));
  /ndk/sources/android/libthread_db/
libthread_db.c 59 th->tid = lwpid;
87 handle.tid = atoi(entry->d_name);
104 info->ti_tid = handle->tid;
105 info->ti_lid = handle->tid; // Our pthreads uses kernel ids for tids
106 info->ti_state = TD_THR_SLEEP; /* XXX this needs to be read from /proc/<pid>/task/<tid>.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
smb.h 49 __u16 tid; member in struct:smb_conn_opt
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt

Completed in 1609 milliseconds

1 2 3 4 5 6 7 8 91011>>