Home
last modified time | relevance | path

Searched refs:stackConext (Results 1 – 5 of 5) sorted by relevance

/developtools/profiler/device/plugins/native_daemon/src/
Dstack_preprocess.cpp180 if (rawData->stackConext->type == MMAP_FILE_TYPE) { in TakeResults()
181 BaseStackRawData* mmapRawData = rawData->stackConext; in TakeResults()
183 COMMON::AdaptSandboxPath(filePath, rawData->stackConext->pid); in TakeResults()
192 } else if (rawData->stackConext->type == MUNMAP_MSG) { in TakeResults()
193 … runtime_instance->RemoveMaps(reinterpret_cast<uint64_t>(rawData->stackConext->addr)); in TakeResults()
195 if (rawData->stackConext->type == THREAD_NAME_MSG) { in TakeResults()
197 ReportThreadNameMap(rawData->stackConext->tid, threadName, stackData); in TakeResults()
244 rawData->stackConext->pid, rawData->stackConext->tid, callFrames_, stackDepth); in TakeResults()
264 curTimeCost, rawData->stackConext->type, realFrameDepth, callFrames_.size()); in TakeResults()
355 if ((rawStack->stackConext->type == FREE_MSG) && !hookConfig_.free_stack_report()) { in GetCallStackId()
[all …]
Dstack_data_repeater.cpp75 if (rawData->stackConext->type == FREE_MSG) { in PutRawStack()
76 auto temp = mallocMap_.find(rawData->stackConext->addr); in PutRawStack()
81 mallocMap_.erase(rawData->stackConext->addr); in PutRawStack()
84 } else if (rawData->stackConext->type == MALLOC_MSG) { in PutRawStack()
85 …mallocMap_.insert(std::pair<void*, std::shared_ptr<RawStack>>(rawData->stackConext->addr, rawData)… in PutRawStack()
118 if ((result != nullptr) && (result->stackConext->type == MALLOC_MSG)) { in TakeRawData()
119 mallocMap_.erase(result->stackConext->addr); in TakeRawData()
Dhook_manager.cpp285 … rawStack->stackConext = reinterpret_cast<BaseStackRawData*>(rawStack->baseStackData.get()); in ReadShareMemory()
288 … if (rawStack->stackConext->type == MEMORY_TAG || rawStack->stackConext->type == THREAD_NAME_MSG || in ReadShareMemory()
289 … rawStack->stackConext->type == MMAP_FILE_TYPE || rawStack->stackConext->type == PR_SET_VMA_MSG) { in ReadShareMemory()
309 if (rawStack->stackConext->type == MEMORY_TAG) { in ReadShareMemory()
311 stackPreprocess_->SaveMemTag(rawStack->stackConext->tagId, tagName); in ReadShareMemory()
/developtools/profiler/device/plugins/native_daemon/include/
Dstack_data_repeater.h34 BaseStackRawData* stackConext; // points to the foundation type data member
Dhook_common.h141 BaseStackRawData* stackConext; // points to the foundation type data member