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

<<11121314151617181920>>

  /external/valgrind/coregrind/m_syswrap/
priv_types_n_macros.h 236 ( ThreadId tid, \
245 ( ThreadId tid, \
258 ( ThreadId tid, \
266 ( ThreadId tid, \
449 VG_(tdict).track_pre_reg_read(Vg_CoreSysCall, tid, "(syscallno)", \
471 Vg_CoreSysCall, tid, s"("#a")", \
489 Vg_CoreSysCall, tid, s"("#a")", \
518 Addr here = layout->s_arg##n + VG_(get_SP)(tid); \
521 Vg_CoreSysCallArgInMem, tid, s"("#a")", \
536 VG_(get_SP)(tid); \
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 68 static ThreadContextBase *CreateThreadContext(u32 tid) {
71 internal_snprintf(name, sizeof(name), "trace %u", tid);
72 MapThreadTrace(GetThreadTrace(tid), TraceSize() * sizeof(Event), name);
73 const uptr hdr = GetThreadTraceHeader(tid);
74 internal_snprintf(name, sizeof(name), "trace header %u", tid);
86 return new(mem) ThreadContext(tid);
110 ThreadState::ThreadState(Context *ctx, int tid, int unique_id, u64 epoch,
114 : fast_state(tid, epoch)
119 , clock(tid, reuse_count)
123 , tid(tid
361 int tid = ThreadCreate(thr, 0, 0, true); local
    [all...]
tsan_platform.h 698 uptr GetThreadTraceImpl(int tid) {
699 uptr p = Mapping::kTraceMemBeg + (uptr)tid * kTotalTraceSize;
705 uptr GetThreadTrace(int tid) {
708 return GetThreadTraceImpl<Mapping39>(tid);
710 return GetThreadTraceImpl<Mapping42>(tid);
714 return GetThreadTraceImpl<Mapping44>(tid);
716 return GetThreadTraceImpl<Mapping46>(tid);
719 return GetThreadTraceImpl<Mapping>(tid);
725 uptr GetThreadTraceHeaderImpl(int tid) {
726 uptr p = Mapping::kTraceMemBeg + (uptr)tid * kTotalTraceSiz
    [all...]
tsan_report.cc 30 : type(type), global(), heap_chunk_start(0), heap_chunk_size(0), tid(0),
77 const char *thread_name(char *buf, int tid) {
78 if (tid == 0)
80 internal_snprintf(buf, kThreadBufSize, "thread T%d", tid);
160 thread_name(thrbuf, mop->tid));
186 thread_name(thrbuf, loc->tid));
189 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
191 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
194 loc->fd, thread_name(thrbuf, loc->tid));
236 Printf(" (tid=%zu, %s) created by %s"
    [all...]
  /device/google/contexthub/firmware/inc/
cpu.h 41 bool cpuAppInit(const struct AppHdr *appHdr, struct PlatAppInfo *platInfo, uint32_t tid);
sensors.h 149 uint32_t tid; member in struct:SensorSendDirectEventEvent
172 bool (*sensorSendOneDirectEvt)(void *, uint32_t tid); //resend last state (if known), only for onchange-supporting sensors, to bring on a new client
254 uint32_t sensorRegisterAsApp(const struct SensorInfo *si, uint32_t tid, void *callData, bool initComplete); /* returns handle, copy is not made */
279 int sensorUnregisterAll(uint32_t tid);
  /device/google/contexthub/firmware/inc/platform/stm32f4xx/
dma.h 61 int dmaStopAll(uint32_t tid);
  /device/google/contexthub/firmware/src/
heap.c 205 int heapFreeAll(uint32_t tid)
211 if (!tid)
220 tid &= TIDX_MASK;
222 if (node->tidx == tid) {
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
mtb_unittest.py 155 for tid, expected_len in expected_numbers.items():
156 self.assertEqual(len(finger_paths[tid].tid_packets), expected_len)
205 def _test_finger_path(self, filename, tid, expected_slot, expected_data,
213 # Derive the actual finger_path for the specified tid
216 actual_finger_path = finger_paths[tid]
222 # Assert that all tid data (including syn_time, point, pressure, etc.)
223 # in the tid packets are the same.
238 tid = 95
267 self._test_finger_path(filename, tid, expected_slot, expected_data)
278 tid = 10
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
process.py 57 def GetOrCreateThread(self, tid):
58 thread = self.threads.get(tid, None)
61 thread = tracing_thread.Thread(self, tid)
62 self._threads[tid] = thread
  /external/libchrome/sandbox/linux/seccomp-bpf-helpers/
syscall_parameters_restrictions_unittests.cc 132 const pid_t tid = sys_gettid(); local
133 BPF_ASSERT_NE(pid, tid);
142 CheckSchedGetParam(tid, &tid_param);
148 BPF_ASSERT_EQ(-1, sched_getparam(tid, NULL));
158 // Run the actual test in a new thread so that the current pid and tid are