Home
last modified time | relevance | path

Searched refs:names (Results 1 – 25 of 43) sorted by relevance

12

/developtools/smartperf_host/ide/src/trace/component/metrics/
DMemAggStrategy.ts41 let names = metricData[sqlIndex].name.split(splitChar); variable
45 for (let indexScore = 0; indexScore < names.length; indexScore++) {
46 if ('oom_score_adj' === names[indexScore]) {
51 for (let index = 0; index < names.length; index++) {
60 if ('mem.rss.anon' === names[index]) {
63 if ('mem.swap' === names[index]) {
66 if ('mem.rss.file' === names[index]) {
69 if ('oom_score_adj' === names[index]) {
DTraceStatsStrategy.ts28 let names = metricData[sqlIndex].event_name;
33 name: names,
/developtools/profiler/host/smartperf/ide/src/trace/component/metrics/
DMemAggStrategy.ts41 let names = metricData[sqlIndex].name.split(splitChar); variable
45 for (let indexScore = 0; indexScore < names.length; indexScore++) {
46 if ('oom_score_adj' === names[indexScore]) {
51 for (let index = 0; index < names.length; index++) {
58 if ('mem.rss.anon' === names[index]) {
61 if ('mem.swap' === names[index]) {
64 if ('mem.rss.file' === names[index]) {
67 if ('oom_score_adj' === names[index]) {
DTraceStatsStrategy.ts28 let names = metricData[sqlIndex].event_name;
33 name: names,
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/
DTabPaneMemoryAbility.ts103 let names = item.name.split(','); variable
104 if (memorys.length != names.length) {
107 for (let i = 0; i < names.length; i++) {
108 switch (names[i]) {
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/ability/
DTabPaneMemoryAbility.ts103 let names = item.name.split(','); variable
104 if (memorys.length != names.length) {
107 for (let i = 0; i < names.length; i++) {
108 switch (names[i]) {
/developtools/profiler/host/smartperf/ide/src/trace/database/
DProcedure.ts73 names = [...this.cpusLen, ...this.processLen, ...this.freqLen]; property in ProcedurePool
87 this.maxThreadNumber = this.names.length;
104 newThread.name = this.names[this.works.length];
141 thread.name = this.logicDataHandles[this.works.length - this.names.length];
/developtools/smartperf_host/ide/src/trace/database/
DProcedure.ts73 names = [...this.cpusLen, ...this.processLen, ...this.freqLen]; property in ProcedurePool
87 this.maxThreadNumber = this.names.length;
104 newThread.name = this.names[this.works.length];
141 thread.name = this.logicDataHandles[this.works.length - this.names.length];
DSqlLite.ts4777 …const names = isPin ? " ('sys.mem.pined.purg')" : "('sys.mem.active.purg','sys.mem.inactive.purg')…
4794 AND f.name IN ${names}
4817 const names = isPin ? " ('mem.purg_pin')" : "('mem.purg_sum')";
4831 AND f.name = ${names}
4859 …const names = isPin ? " ('sys.mem.pined.purg')" : "('sys.mem.active.purg','sys.mem.inactive.purg')…
4889 f.name IN ${names}
4900 …const names = isPin ? " ('sys.mem.pined.purg')" : "('sys.mem.active.purg','sys.mem.inactive.purg')…
4911 f.name IN ${names}
/developtools/profiler/host/smartperf/ide/src/base-ui/utils/
DTemplate.ts91 const names = Object.keys(params); constant
95 return new Function(...names, `return \`${escape2Html(str)}\`;`)(...vals);
/developtools/smartperf_host/ide/src/base-ui/utils/
DTemplate.ts91 const names = Object.keys(params); constant
95 return new Function(...names, `return \`${escape2Html(str)}\`;`)(...vals);
/developtools/ace_ets2bundle/compiler/src/
Dcompile_info.ts139 let names: Array<string> = Array.from(map).flat();
141 sourcemapObj.nameMap = names;
/developtools/hiperf/src/
Dsubcommand_dump.cpp300 std::string names; in DumpSampleType() local
303 if (!names.empty()) { in DumpSampleType()
304 names.append(","); in DumpSampleType()
306 names.append(pair.second); in DumpSampleType()
309 PrintIndent(LEVEL1, "sample_type names: %s\n", names.c_str()); in DumpSampleType()
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/base/
DTraceSheet.ts78 displayTab<T>(...names: string[]): T {
83 .forEach((it) => (it.hidden = !names.some((k) => k === it.id)));
84 …let litTabpane = this.shadowRoot?.querySelector<LitTabpane>(`#tabs lit-tabpane[id='${names[0]}']`);
380 displayFuncData = (names: string[], data: FuncStruct, scrollCallback: Function) =>
381 this.displayTab<TabPaneCurrentSelection>(...names).setFunctionData(data, scrollCallback);
/developtools/profiler/host/smartperf/trace_streamer/src/parser/htrace_pbreader_parser/
Dhtrace_js_memory_parser.cpp111 std::vector<uint32_t> names; member
126 v.names.emplace_back(j[i * NODES_SINGLE_LENGTH + OFFSET_FIRST]); in from_json()
204 std::vector<uint32_t> names; member
215 v.names.emplace_back(j[i * TRACE_FUNC_INFO_SINGLE_LENGTH + OFFSET_FIRST]); in from_json()
417 for (int32_t i = 0; i < node.names.size(); ++i) { in ParseNodes()
419 auto name = node.names[i]; in ParseNodes()
482 auto name = traceFuncInfo.names[i]; in ParseTraceFuncInfo()
/developtools/smartperf_host/trace_streamer/src/parser/htrace_pbreader_parser/
Dhtrace_js_memory_parser.cpp111 std::vector<uint32_t> names; member
126 v.names.emplace_back(j[i * NODES_SINGLE_LENGTH + OFFSET_FIRST]); in from_json()
204 std::vector<uint32_t> names; member
215 v.names.emplace_back(j[i * TRACE_FUNC_INFO_SINGLE_LENGTH + OFFSET_FIRST]); in from_json()
454 for (int32_t i = 0; i < node.names.size(); ++i) { in ParseNodes()
456 auto name = node.names[i]; in ParseNodes()
519 auto name = traceFuncInfo.names[i]; in ParseTraceFuncInfo()
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DTraceSheet.ts110 displayTab<T>(...names: string[]): T {
115 .forEach((it) => (it.hidden = !names.some((k) => k === it.id)));
116 …let litTabpane = this.shadowRoot?.querySelector<LitTabpane>(`#tabs lit-tabpane[id='${names[0]}']`);
431 displayFuncData = (names: string[], data: FuncStruct, scrollCallback: Function): void =>
432 this.displayTab<TabPaneCurrentSelection>(...names).setFunctionData(data, scrollCallback);
/developtools/profiler/host/smartperf/trace_streamer/gn/
Dwasm.gni67 # "-g2", # Required for getting C++ symbol names.
/developtools/smartperf_host/trace_streamer/gn/
Dwasm.gni67 # "-g2", # Required for getting C++ symbol names.
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpHiPerf.ts120 let names = Reflect.ownKeys(this.group) variable
127 row.name = `HiPerf (${names})`;
/developtools/integration_verification/DeployDevice/src/func/liteOsUpgrade/
DliteOsUpgrade_L3_app.py195 names = filename.split('-')
196 link_1 = '/'.join(names[0:-1])
/developtools/profiler/host/smartperf/ide/src/trace/component/chart/
DSpHiPerf.ts123 let names = Reflect.ownKeys(this.group) variable
130 row.name = `HiPerf (${names})`;
/developtools/smartperf_host/ide/
Dtsconfig.json46 …/ "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
/developtools/profiler/host/smartperf/ide/
Dtsconfig.json46 …/ "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
/developtools/ace_js2bundle/
DLICENSE140 names, trademarks, service marks, or product names of the Licensor,

12