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

/art/tools/dmtracedump/
H A Dcreatetesttrace.cc63 int32_t threadId; member in struct:dataRecord
134 int32_t threadId = strtoul(cp, &cp, 0); local
135 if (maxThreadId < threadId) maxThreadId = threadId;
159 uint32_t threadId; local
174 * default values for the time and threadId.
177 threadId = 1;
181 threadId = strtoul(cp, &cp, 0);
186 if (callStack[threadId].frames == nullptr) {
188 callStack[threadId]
329 writeDataRecord(FILE* dataFp, int32_t threadId, uint32_t methodVal, uint32_t elapsedTime) argument
[all...]
H A Dtracedump.cc133 int32_t threadId; member in struct:ThreadEntry
667 pKeys->threads[i].threadId = atoi(data);
796 return ((const ThreadEntry*) thread1)->threadId -
797 ((const ThreadEntry*) thread2)->threadId;
883 printf("%2d %s\n", pKeys->threads[i].threadId, pKeys->threads[i].threadName);
990 * Reads the next data record, and assigns the data values to threadId,
991 * methodVal and elapsedTime. On end-of-file, the threadId, methodVal,
995 int32_t readDataRecord(FILE* dataFp, DataHeader* dataHeader, int32_t* threadId, argument
1007 *threadId = id;
1067 int32_t threadId; local
2056 int32_t threadId; local
[all...]
/art/runtime/jdwp/
H A Djdwp_event.h45 ObjectId threadId; member in struct:art::JDWP::JdwpEventMod::__anon102
76 ObjectId threadId; member in struct:art::JDWP::JdwpEventMod::__anon109
H A Djdwp_event.cc212 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth);
290 Dbg::UnconfigureStep(pMod->step.threadId);
466 if (!Dbg::MatchThread(pMod->threadOnly.threadId, basket.thread)) {
506 if (!Dbg::MatchThread(pMod->step.threadId, basket.thread)) {
620 ObjectId threadId) {
628 AcquireJdwpTokenForEvent(threadId);
660 void JdwpState::AcquireJdwpTokenForEvent(ObjectId threadId) { argument
662 CHECK_NE(debug_thread_id_, threadId) << "Not expected debug thread";
663 SetWaitForJdwpToken(threadId);
678 void JdwpState::SetWaitForJdwpToken(ObjectId threadId) { argument
619 SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy, ObjectId threadId) argument
766 ObjectId threadId = Dbg::GetThreadSelfId(); local
[all...]
H A Djdwp.h168 void AcquireJdwpTokenForEvent(ObjectId threadId) REQUIRES(!jdwp_token_lock_);
305 ObjectId threadId)
349 void SetWaitForJdwpToken(ObjectId threadId) REQUIRES(!jdwp_token_lock_);
H A Djdwp_handler.cc1250 mod.threadOnly.threadId = thread_id;
1311 mod.step.threadId = thread_id;
/art/tools/
H A Dstream-trace-converter.py139 threadId = ReadShortLE(input)
140 if threadId == 0:
144 WriteShortLE(body, threadId)

Completed in 162 milliseconds