Searched refs:stackConext (Results 1 – 5 of 5) sorted by relevance
| /developtools/profiler/device/plugins/native_daemon/src/ |
| D | stack_preprocess.cpp | 180 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 …]
|
| D | stack_data_repeater.cpp | 75 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()
|
| D | hook_manager.cpp | 285 … 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/ |
| D | stack_data_repeater.h | 34 BaseStackRawData* stackConext; // points to the foundation type data member
|
| D | hook_common.h | 141 BaseStackRawData* stackConext; // points to the foundation type data member
|