HomeSort by relevance Sort by last modified time
    Searched refs:ThreadInfo (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/llvm/lib/Support/
Threading.cpp 34 struct ThreadInfo {
39 ThreadInfo *TI = reinterpret_cast<ThreadInfo*>(Arg);
46 ThreadInfo Info = { Fn, UserData };
74 struct ThreadInfo {
80 struct ThreadInfo *info = reinterpret_cast<struct ThreadInfo *>(param);
88 struct ThreadInfo param = { Fn, UserData };
  /external/gemmlowp/profiling/
instrumentation.h 162 struct ThreadInfo;
165 inline std::set<ThreadInfo*>& ThreadsUnderProfiling() {
166 static std::set<ThreadInfo*> v;
170 struct ThreadInfo {
174 ThreadInfo() {
181 ThreadInfo* self = static_cast<ThreadInfo*>(ptr);
187 inline ThreadInfo& ThreadLocalThreadInfo() {
189 // We're leaking this ThreadInfo structure, because Apple doesn't support
191 GEMMLOWP_THREAD_LOCAL ThreadInfo* i = nullptr
    [all...]
profiler.h 309 inline void RecordStack(const ThreadInfo* thread, ProfilingStack* dst) {
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_core_dumper.h 79 virtual bool GetThreadInfoByIndex(size_t index, ThreadInfo* info);
118 wasteful_vector<ThreadInfo> thread_infos_;
linux_ptrace_dumper.h 65 virtual bool GetThreadInfoByIndex(size_t index, ThreadInfo* info);
linux_core_dumper.cc 92 bool LinuxCoreDumper::GetThreadInfoByIndex(size_t index, ThreadInfo* info) {
189 ThreadInfo info;
190 memset(&info, 0, sizeof(ThreadInfo));
220 ThreadInfo* info = &thread_infos_.back();
235 ThreadInfo* info = &thread_infos_.back();
linux_core_dumper_unittest.cc 111 ThreadInfo info;
linux_dumper.h 88 virtual bool GetThreadInfoByIndex(size_t index, ThreadInfo* info) = 0;
linux_ptrace_dumper.cc 156 bool LinuxPtraceDumper::GetThreadInfoByIndex(size_t index, ThreadInfo* info) {
231 for (unsigned i = 0; i < ThreadInfo::kNumDebugRegisters; ++i) {
  /hardware/ti/omap4-aah/libtiutils/
DebugUtils.cpp 72 newData->threads.add(new ThreadInfo);
79 Debug::ThreadInfo * Debug::registerThread(Data * const data, const int32_t threadId)
84 ThreadInfo * const threadInfo = data->threads.itemAt(i);
85 if ( android_atomic_acquire_cas(0, threadId, &threadInfo->threadId) == 0 )
86 return threadInfo;
DebugUtils.h 65 class ThreadInfo
68 ThreadInfo() :
79 android::Vector<ThreadInfo*> threads;
91 ThreadInfo * registerThread(Data * data, int32_t threadId);
92 ThreadInfo * findCurrentThreadInfo();
253 inline Debug::ThreadInfo * Debug::findCurrentThreadInfo()
260 // is able to modify only his own ThreadInfo structure
265 ThreadInfo * const threadInfo = data->threads.itemAt(i);
266 if ( threadInfo->threadId == threadId
    [all...]
  /system/core/libmemunreachable/
ThreadCapture.h 24 struct ThreadInfo {
31 using ThreadInfoList = allocator::vector<ThreadInfo>;
ThreadCapture.cpp 87 bool PtraceThreadInfo(pid_t tid, ThreadInfo& thread_info);
212 bool ThreadCaptureImpl::PtraceThreadInfo(pid_t tid, ThreadInfo& thread_info) {
331 ThreadInfo t{0, allocator::vector<uintptr_t>(allocator_), std::pair<uintptr_t, uintptr_t>(0, 0)};
  /external/valgrind/include/
pub_tool_addrinfo.h 91 /* Note about ThreadInfo tid and tnr in various parts of _Addrinfo:
112 } ThreadInfo;
115 extern void VG_(initThreadInfo) (ThreadInfo *tinfo);
137 ThreadInfo tinfo;
155 ThreadInfo alloc_tinfo; // which thread did alloc this block.
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ResumeTest.java 75 ThreadInfo[] threadInfos = createThreadInfos();
123 ThreadInfo[] threadInfos = createThreadInfos();
187 ThreadInfo[] threadInfos = createThreadInfos();
223 private static class ThreadInfo {
227 public ThreadInfo(String threadName) {
277 * Creates ThreadInfo array containing information about each tested thread:
280 private ThreadInfo[] createThreadInfos() {
284 ThreadInfo[] threadInfos = new ThreadInfo[testedThreadsNumber];
289 threadInfos[i] = new ThreadInfo(ResumeDebuggee.THREAD_NAME_PATTERN + i)
    [all...]
  /device/generic/goldfish/opengl/system/OpenglSystemCommon/
Android.mk 9 ThreadInfo.cpp
  /system/core/include/utils/
ProcessCallStack.h 66 struct ThreadInfo {
71 // tid -> ThreadInfo
72 KeyedVector<pid_t, ThreadInfo> mThreadMap;
  /external/google-breakpad/src/client/linux/dump_writer_common/
thread_info.cc 61 uintptr_t ThreadInfo::GetInstructionPointer() const {
65 void ThreadInfo::FillCPUContext(RawContextCPU* out) const {
124 uintptr_t ThreadInfo::GetInstructionPointer() const {
128 void ThreadInfo::FillCPUContext(RawContextCPU* out) const {
189 uintptr_t ThreadInfo::GetInstructionPointer() const {
193 void ThreadInfo::FillCPUContext(RawContextCPU* out) const {
198 // No CPSR register in ThreadInfo(it's not accessible via ptrace)
211 uintptr_t ThreadInfo::GetInstructionPointer() const {
215 void ThreadInfo::FillCPUContext(RawContextCPU* out) const {
232 uintptr_t ThreadInfo::GetInstructionPointer() const
    [all...]
thread_info.h 47 struct ThreadInfo {
82 // Fills a RawContextCPU using the context in the ThreadInfo object.
  /external/libchrome/base/message_loop/
message_pump_glib.cc 128 struct ThreadInfo {
141 ThreadInfo* thread_info = NULL;
146 thread_info = new ThreadInfo;
  /system/core/libutils/
ProcessCallStack.cpp 173 ssize_t idx = mThreadMap.add(tid, ThreadInfo());
175 ALOGE("%s: Failed to add new ThreadInfo: %s",
180 ThreadInfo& threadInfo = mThreadMap.editValueAt(static_cast<size_t>(idx));
189 threadInfo.callStack.update(ignoreDepth, tid);
192 threadInfo.threadName = getThreadName(tid);
195 __FUNCTION__, tid, threadInfo.callStack.size());
226 const ThreadInfo& threadInfo = mThreadMap.valueAt(i);
227 const String8& threadName = threadInfo.threadName
    [all...]
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
Android.mk 41 ThreadInfo.cpp
  /external/valgrind/drd/
drd_thread.h 110 } ThreadInfo;
125 extern ThreadInfo* DRD_(g_threadinfo);
  /system/core/libmemunreachable/tests/
ThreadCapture_test.cpp 237 auto thread_info = allocator::vector<ThreadInfo>(heap);
334 auto thread_info = allocator::vector<ThreadInfo>(heap);
  /external/valgrind/coregrind/
m_addrinfo.c 312 void VG_(initThreadInfo) (ThreadInfo *tinfo)
383 static const HChar* opt_tnr_prefix (ThreadInfo tinfo)
391 static UInt tnr_else_tid (ThreadInfo tinfo)

Completed in 638 milliseconds

1 2 3 4 5 6