Home
last modified time | relevance | path

Searched refs:memory (Results 1 – 25 of 59) sorted by relevance

123

/developtools/profiler/device/plugins/memory_plugin/test/utresources/proc/
Dmem_profile.txt2 Channel: Unnamed (Total memory: 630784)
6 Channel: Default Heap (Total memory: 13281584)
13 Channel: Framepool (Total memory: 0)
16 Channel: Frame Internal (Total memory: 0)
19 Channel: GPU Program (Total memory: 368640)
25 Channel: EGL Color Plane (Total memory: 0)
28 Channel: GLES Vertex Array Object (Total memory: 0)
31 Channel: Image Descriptor (Total memory: 3360)
36 Channel: Texture (Total memory: 80546816)
53 Channel: Buffer (Total memory: 273814)
[all …]
DdumpMem.txt92 Total CPU memory usage:
113 Total GPU memory usage:
122 Total GPU memory usage:
129 Total GPU memory usage:
136 Total GPU memory usage:
143 Total GPU memory usage:
150 Total GPU memory usage:
157 Total GPU memory usage:
166 Total GPU memory usage:
173 Total GPU memory usage:
[all …]
Dpurgeable_ashmem_trigger6 hiprofilerd,6746,27,1,dev/ashmem/memory-plugin,67108864,12,1287845167,0,0
7 hiprofiler_plug,6756,7,1,dev/ashmem/memory-plugin,67108864,15,1358999004,0,0
/developtools/profiler/device/services/shared_memory/test/unittest/
Dshared_memory_block_test.cpp377 uint8_t* memory = nullptr; variable
380 auto ret = shareMemoryBlock.GetMemory(fieldSize, &memory, &offset);
382 EXPECT_EQ(memory, nullptr);
385 memory = nullptr;
387 ret = shareMemoryBlock.GetMemory(NUM_FOUR, &memory, &offset);
389 EXPECT_NE(memory, nullptr);
414 uint8_t* memory = nullptr; variable
417 ret = shareMemoryBlock.GetMemory(len, &memory, &offset);
419 ASSERT_NE(memory, nullptr);
422 ret = memcpy_s(memory, len, data, len);
[all …]
/developtools/smartperf_host/trace_streamer/src/protos/types/plugins/memory_data/
Dmemory_plugin_config.proto25 // set true to report memory counter from /proc/meminfo
29 // set true to report memory counter from /proc/vmstat
35 …// set true to report application memory usage summary, eg:java heap memory, native heap, stack me…
37 // set true to report application memory by memory service, otherwise,
38 // application memory will count up by /proc/${pid}/smaps information
Dmemory_plugin_common.proto19 // Common define for memory plug-in, imported by memory data and config proto file.
/developtools/profiler/protos/types/plugins/memory_data/
Dmemory_plugin_config.proto25 // set true to report memory counter from /proc/meminfo
29 // set true to report memory counter from /proc/vmstat
35 …// set true to report application memory usage summary, eg:java heap memory, native heap, stack me…
37 // set true to report application memory by memory service, otherwise,
38 // application memory will count up by /proc/${pid}/smaps information
Dmemory_plugin_common.proto19 // Common define for memory plug-in, imported by memory data and config proto file.
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DCommonSql.ts82 const memory: Array<DebugSql> = [ constant
266 …return [...cpuSql, ...threadSql, ...memory, ...bioSql, ...frameTimeSql, ...appStartUpSql, ...anima…
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/ability/
DTabPaneLiveProcesses.test.ts47 memory:2,
70 memory: '',
/developtools/smartperf_host/trace_streamer/doc/
DarkTs.md88 1.js-memory相关数据携带js-memory_config和js-memory插件头,先通过接口ParseJSMemoryConfig获取对应的type和pid,其中type=0为snaps…
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/
DTabPaneLiveProcesses.ts77 array.push(liveProcess.memory);
90 liveProcess.memoryNumber = Number(liveProcess.memory);
91 liveProcess.memory = Utils.getBinaryByteWithUnit(liveProcess.memoryNumber);
/developtools/smartperf_host/trace_streamer/src/protos/types/plugins/ffrt_profiler/
Dffrt_profiler_config.proto40 // false: Discard data when there is no space in shared memory.
41 // true: Block waiting when there is no space in the shared memory.
/developtools/profiler/protos/types/plugins/network_profiler/
Dnetwork_profiler_config.proto39 // false: Discard data when there is no space in shared memory
40 // true: Block waiting when there is no space in the shared memory
/developtools/profiler/protos/types/plugins/ffrt_profiler/
Dffrt_profiler_config.proto40 // false: Discard data when there is no space in shared memory.
41 // true: Block waiting when there is no space in the shared memory.
/developtools/profiler/protos/types/plugins/arkts_plugin/
Darkts_plugin_config.proto21 INVALID = -1; // Disable capturing memory data.
26 …// When the 'snapshot' mode is enabled in memory, it denotes the data fetching interval, measured …
/developtools/smartperf_host/
DREADME.md3 …terms of CPU scheduling, frequency, process and thread time slices, heap memory, frame rate, and m…
42 With Ability Monitor in Smartperf_Host, you can learn the CPU, memory, disk I/O, and network usage …
44 …t, you can track the allocation and release of your application's native memory (specific to C and…
52 …, triggering process, triggering thread, event type, memory address, and memory size of page memor…
/developtools/integration_verification/tools/startup_guard/rules/NO-Config-SystemParameter-In-INIT/
DREADME.md24 [NOT ALLOWED]: DAC overallocated memory
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMCallTree.ts187 this.subTypeArr.map((memory): void => {
189 memoryTap: memory,
192 const typeName = SpSystemTrace.DATA_DICT.get(memory);
193 if ((data.type === 'MmapEvent' && memory === -1) || data.type === typeName) {
198 (data.type === 'MmapEvent' && memory === 1) ||
199 (data.type === 'FILE_PAGE_MSG' && memory === 2) ||
200 (data.type === 'MEMORY_USING_MSG' && memory === 3)
890 this.subTypeArr.map((memory): void => {
892 memoryTap: memory,
/developtools/smartperf_host/trace_streamer/prebuilts/patch_googletest/
Dgtest.patch5 #include <memory>
27 #include <memory>
/developtools/profiler/device/services/shared_memory/src/
Dshare_memory_block.cpp86 …smbCtx_.ctx.getMemory = [](RandomWriteCtx* ctx, uint32_t size, uint8_t** memory, uint32_t* offset)… in CreateBlockWithFd() argument
88 return smbCtx->block->GetMemory(size, memory, offset); in CreateBlockWithFd()
462 bool ShareMemoryBlock::GetMemory(uint32_t size, uint8_t** memory, uint32_t* offset) in GetMemory() argument
473 *memory = reinterpret_cast<uint8_t *>(&header_->data[wp + messageWriteOffset_]); in GetMemory()
484 *memory = reinterpret_cast<uint8_t *>(&header_->data[messageWriteOffset_]); in GetMemory()
491 *memory = reinterpret_cast<uint8_t *>(&header_->data[wp + messageWriteOffset_]); in GetMemory()
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerNativeNemory.ts356 fillNativeHook(memory: NativeMemory, index: number): void {
357 if (memory.subTypeId !== null && memory.subType === undefined) {
358 memory.subType = this.dataCache.dataDict.get(memory.subTypeId) || '-';
360 memory.index = index;
361 let arr = this.dataCache.nmHeapFrameMap.get(memory.eventId) || [];
374memory.symbol = this.groupCutFilePath(frame.symbolId, this.dataCache.dataDict.get(frame.symbolId) …
375memory.library = this.groupCutFilePath(frame.fileId, this.dataCache.dataDict.get(frame.fileId) || …
377 memory.symbol = '-';
378 memory.library = '-';
/developtools/smartperf_host/ide/src/doc/md/
Dquickstart_web_record.md27 - Virtual memory stats: 系统虚拟内存。
Dquickstart_device_record.md34 - sample_interval: 主动获取插件数据的间隔时间(ms,只针对轮询插件,例如 memory 插件,cpu 插件,dikio 插件等,对流式插件和独立插件无效)。
/developtools/profiler/interfaces/kits/
Dplugin_module_api.h70 typedef bool (*GetMemoryFunc)(RandomWriteCtx* ctx, uint32_t size, uint8_t** memory, uint32_t* offse…

123