Home
last modified time | relevance | path

Searched refs:subType (Results 1 – 16 of 16) sorted by relevance

/developtools/smartperf_host/ide/test/trace/bean/
DNativeHook.test.ts38 subType: 'subType',
54 subType: expect.any(String),
85 subType: 'subType',
96 subType: expect.any(String),
201 subType: 'subType',
217 subType: expect.any(String),
294 subType: 'subType',
309 subType: expect.any(String),
/developtools/smartperf_host/ide/src/trace/bean/
DNativeHook.ts22 subType: string = ''; property in NativeHookStatistics
38 subType: string = ''; property in NativeHookMalloc
81 subType: string = ''; property in NativeMemory
126 subType: string = ''; property in NativeHookSampleQueryInfo
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMStatisticAnalysis.ts755 if (item.subType) {
757 if (subTypeMap.has(item.subType)) {
759 subTypeMap.get(item.subType)?.push(item);
763 subTypeMap.set(item.subType, dataArray);
776 subTypeMap.forEach((arr: Array<number | string>, subType: string) => {
777 let mapType = this.setTypeMap(this.typeMap, TYPE_MAP, subType);
843 if (itemData.subType) {
845 return !types.includes(itemData.subType) || !types.includes(itemData.type);
851 if (!itemData.subType) {
860 if (itemData.subType) {
[all …]
DTabPaneNMSampleList.ts139 copyType.subType = type.subType;
158 if (item.subType === null) {
165 return type.subType === item.subType;
212 childSample.snapshot = child.subType || child.eventType; // @ts-ignore
DTabPaneNMStatstics.ts138 let subType = SpSystemTrace.DATA_DICT.get(sub.subTypeId);
139 if (subType !== null && subType !== undefined) {
141 data.memoryTap = subType;
DTabPaneNMCallTree.ts347 secondFilterList.push(data.subType);
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerNativeNemory.ts357 if (memory.subTypeId !== null && memory.subType === undefined) {
358 memory.subType = this.dataCache.dataDict.get(memory.subTypeId) || '-';
608 return item.subType === selectionElement.memoryTap;
712 let subType: string | undefined; variable
714 subType = this.dataCache.dataDict.get(sample.subTypeId);
720 analysisSample.subType = subType;
747 analysisSample.subType = 'MmapEvent';
750 analysisSample.subType = 'FILE_PAGE_MSG';
753 analysisSample.subType = 'MEMORY_USING_MSG';
756 analysisSample.subType = this.dataCache.dataDict.get(sample.subTypeId);
[all …]
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/native-memory/
DTabPaneNMemory.test.ts68 subType: '',
DTabPaneNMStatstics.test.ts66 subType: '',
DTabPaneNMSampleList.test.ts79 subType: '',
227 subType: 1,
/developtools/smartperf_host/ide/test/trace/database/logic-worker/
DProcedureLogicWorkerNativeNemory.test.ts45 subType: '',
86 subType: '',
/developtools/smartperf_host/trace_streamer/src/filter/hook_filter/
Dnative_hook_filter.cpp403 DataIndex subType = INVALID_UINT64; in ParseMmapEvent() local
407 subType = traceDataCache_->dataDict_.GetStringIndex(mMapEventReader.type().ToStdString()); in ParseMmapEvent()
409 addrToMmapTag_[mMapAddr] = subType; // update addr to MemMapSubType in ParseMmapEvent()
411 …NativeHookRow nativeHookRow = {callChainId, ipid, itid, "MmapEvent", subType, timeStamp, 0, 0, mMa… in ParseMmapEvent()
413 if (subType == INVALID_UINT64) { in ParseMmapEvent()
/developtools/smartperf_host/trace_streamer/src/trace_data/trace_stdtype/htrace/
Dnative_memory_stdtype.h54 DataIndex subType = INVALID_DATAINDEX; member
Dnative_memory_stdtype.cpp77 subTypes_.emplace_back(context.subType); in AppendNewNativeHookData()
/developtools/smartperf_host/trace_streamer/test/unittest/table/
Dtable_test.cpp741 DataIndex subType = stream_.traceDataCache_->GetDataIndex("subType"); variable
761 NativeHookRow nativeHookRow = {CALLCHAIN_ID, IPID, ITID, eventType, subType,
/developtools/smartperf_host/trace_streamer/test/unittest/pbreader_parser/native_memory/
Dnative_hook_parser_test.cpp361 const uint64_t subType, in NativeHookCache() argument
373 subType_(subType), in NativeHookCache()