Home
last modified time | relevance | path

Searched refs:threadId (Results 1 – 7 of 7) sorted by relevance

/art/tools/dmtracedump/
Dcreatetesttrace.cc63 int32_t threadId; member
134 int32_t threadId = strtoul(cp, &cp, 0); in parseInputFile() local
135 if (maxThreadId < threadId) maxThreadId = threadId; in parseInputFile()
159 uint32_t threadId; in parseInputFile() local
177 threadId = 1; in parseInputFile()
181 threadId = strtoul(cp, &cp, 0); in parseInputFile()
186 if (callStack[threadId].frames == nullptr) { in parseInputFile()
188 callStack[threadId].frames = stk; in parseInputFile()
190 indentLevel = callStack[threadId].indentLevel; in parseInputFile()
198 records[nextRecord].threadId = threadId; in parseInputFile()
[all …]
Dtracedump.cc133 int32_t threadId; member
667 pKeys->threads[i].threadId = atoi(data); in parseThreads()
796 return ((const ThreadEntry*) thread1)->threadId - in compareThreads()
797 ((const ThreadEntry*) thread2)->threadId; in compareThreads()
887 printf("%2d %s\n", pKeys->threads[i].threadId, pKeys->threads[i].threadName); in parseKeys()
999 int32_t readDataRecord(FILE* dataFp, DataHeader* dataHeader, int32_t* threadId, in readDataRecord() argument
1011 *threadId = id; in readDataRecord()
1071 int32_t threadId; in dumpTrace() local
1074 if (readDataRecord(dataFp, &dataHeader, &threadId, &methodVal, &elapsedTime)) in dumpTrace()
1086 traceData.depth[threadId]++; in dumpTrace()
[all …]
/art/runtime/jdwp/
Djdwp_event.h45 ObjectId threadId; member
76 ObjectId threadId; member
Djdwp_event.cc215 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth); in RegisterEvent()
330 Dbg::UnconfigureStep(pMod->step.threadId); in UnregisterEvent()
506 if (!Dbg::MatchThread(pMod->threadOnly.threadId, basket.thread)) { in ModsMatch()
546 if (!Dbg::MatchThread(pMod->step.threadId, basket.thread)) { in ModsMatch()
660 ObjectId threadId) { in SendRequestAndPossiblySuspend() argument
664 CHECK_EQ(threadId, Dbg::GetThreadSelfId()) << "Only the current thread can suspend itself"; in SendRequestAndPossiblySuspend()
668 AcquireJdwpTokenForEvent(threadId); in SendRequestAndPossiblySuspend()
674 SuspendByPolicy(suspend_policy, threadId); in SendRequestAndPossiblySuspend()
700 void JdwpState::AcquireJdwpTokenForEvent(ObjectId threadId) { in AcquireJdwpTokenForEvent() argument
701 SetWaitForJdwpToken(threadId); in AcquireJdwpTokenForEvent()
[all …]
Djdwp.h173 void AcquireJdwpTokenForEvent(ObjectId threadId) REQUIRES(!jdwp_token_lock_);
314 ObjectId threadId)
358 void SetWaitForJdwpToken(ObjectId threadId) REQUIRES(!jdwp_token_lock_);
Djdwp_handler.cc1256 mod.threadOnly.threadId = thread_id; in ER_Set()
1317 mod.step.threadId = thread_id; in ER_Set()
/art/tools/
Dstream-trace-converter.py147 threadId = ReadShortLE(input)
148 if threadId == 0:
152 WriteShortLE(body, threadId)