HomeSort by relevance Sort by last modified time
    Searched full:threadinfo (Results 1 - 25 of 537) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/gemmlowp/profiling/
instrumentation.h 152 struct ThreadInfo;
155 inline std::set<ThreadInfo*>& ThreadsUnderProfiling() {
156 static std::set<ThreadInfo*> v;
160 struct ThreadInfo {
164 ThreadInfo() {
172 ThreadInfo* self = static_cast<ThreadInfo*>(ptr);
179 inline ThreadInfo& ThreadLocalThreadInfo() {
182 ThreadInfo* threadInfo = static_cast<ThreadInfo*>(threadInfoPtr)
    [all...]
  /external/chromium-trace/catapult/systrace/atrace_helper/jni/
process_info.h 12 struct ThreadInfo {
23 std::map<int, ThreadInfo> threads;
  /external/llvm/lib/Support/
Threading.cpp 35 struct ThreadInfo {
40 ThreadInfo *TI = reinterpret_cast<ThreadInfo*>(Arg);
47 ThreadInfo Info = { Fn, UserData };
80 struct ThreadInfo {
86 struct ThreadInfo *info = reinterpret_cast<struct ThreadInfo *>(param);
94 struct ThreadInfo param = { Fn, UserData };
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Threading.cpp 36 struct ThreadInfo {
41 ThreadInfo *TI = reinterpret_cast<ThreadInfo*>(Arg);
48 ThreadInfo Info = { Fn, UserData };
81 struct ThreadInfo {
87 struct ThreadInfo *info = reinterpret_cast<struct ThreadInfo *>(param);
95 struct ThreadInfo param = { Fn, UserData };
  /hardware/interfaces/audio/common/2.0/
Android.bp 42 "ThreadInfo",
  /hardware/interfaces/audio/common/4.0/
Android.bp 42 "ThreadInfo",
  /development/tools/bugreport/src/com/android/bugreport/bugreport/
ThreadInfo.java 22 public class ThreadInfo {
39 * Construct a ThreadInfo.
41 public ThreadInfo(ProcessInfo pi, int tid, String name) {
ProcessInfo.java 38 public HashMap<Integer,ThreadInfo> threads = new HashMap<Integer,ThreadInfo>();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ResumeTest.java 76 ThreadInfo[] threadInfos = createThreadInfos();
124 ThreadInfo[] threadInfos = createThreadInfos();
188 ThreadInfo[] threadInfos = createThreadInfos();
224 private static class ThreadInfo {
228 public ThreadInfo(String threadName) {
278 * Creates ThreadInfo array containing information about each tested thread:
281 private ThreadInfo[] createThreadInfos() {
285 ThreadInfo[] threadInfos = new ThreadInfo[testedThreadsNumber];
290 threadInfos[i] = new ThreadInfo(ResumeDebuggee.THREAD_NAME_PATTERN + i)
    [all...]
  /system/core/libutils/
ProcessCallStack.cpp 166 ssize_t idx = mThreadMap.add(tid, ThreadInfo());
168 ALOGE("%s: Failed to add new ThreadInfo: %s",
173 ThreadInfo& threadInfo = mThreadMap.editValueAt(static_cast<size_t>(idx));
182 threadInfo.callStack.update(ignoreDepth, tid);
185 threadInfo.threadName = getThreadName(tid);
188 __FUNCTION__, tid, threadInfo.callStack.size());
213 const ThreadInfo& threadInfo = mThreadMap.valueAt(i);
214 const String8& threadName = threadInfo.threadName
    [all...]
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
Android.mk 12 ThreadInfo.cpp
EGLClientIface.h 20 struct EGLThreadInfo; // defined in ThreadInfo.h
ThreadInfo.cpp 16 #include "ThreadInfo.h"
  /external/valgrind/drd/tests/
pth_barrier.c 25 struct threadinfo struct
47 static void* threadfunc(struct threadinfo* p)
71 struct threadinfo* t;
75 t = malloc(nthread * sizeof(struct threadinfo));
annotate_barrier.c 40 struct threadinfo struct
105 static void* threadfunc(struct threadinfo* p)
129 struct threadinfo* t;
133 t = malloc(nthread * sizeof(struct threadinfo));
  /external/swiftshader/third_party/LLVM/lib/Support/
Threading.cpp 69 struct ThreadInfo {
74 ThreadInfo *TI = reinterpret_cast<ThreadInfo*>(Arg);
81 ThreadInfo Info = { Fn, UserData };
109 struct ThreadInfo {
115 struct ThreadInfo *info = reinterpret_cast<struct ThreadInfo *>(param);
123 struct ThreadInfo param = { Fn, UserData };
  /system/core/debuggerd/libdebuggerd/include/libdebuggerd/
backtrace.h 36 const std::map<pid_t, ThreadInfo>& thread_info, pid_t target_thread);
39 void dump_backtrace_thread(int output_fd, BacktraceMap* map, const ThreadInfo& thread);
types.h 24 struct ThreadInfo {
  /system/core/libmemunreachable/
ThreadCapture.h 26 struct ThreadInfo {
33 using ThreadInfoList = allocator::vector<ThreadInfo>;
  /system/core/libutils/include/utils/
ProcessCallStack.h 66 struct ThreadInfo {
71 // tid -> ThreadInfo
72 KeyedVector<pid_t, ThreadInfo> mThreadMap;
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
ThreadInfo.cpp 16 #include "ThreadInfo.h"
  /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.
  /development/tools/bugreport/src/com/android/bugreport/logcat/
LogLine.java 20 import com.android.bugreport.bugreport.ThreadInfo;
95 public ThreadInfo thread;
  /art/test/924-threads/src/art/
Test924.java 425 Object[] threadInfo = getThreadInfo(t);
426 if (threadInfo == null || threadInfo.length != 5) {
427 System.out.println(Arrays.toString(threadInfo));
428 throw new RuntimeException("threadInfo length wrong");
431 System.out.println(threadInfo[0]); // Name
432 System.out.println(threadInfo[1]); // Priority
433 System.out.println(threadInfo[2]); // Daemon
434 System.out.println(threadInfo[3]); // Threadgroup
435 System.out.println(threadInfo[4] == null ? "null" : threadInfo[4].getClass()); // Context CL
    [all...]

Completed in 1045 milliseconds

1 2 3 4 5 6 7 8 91011>>