Home
last modified time | relevance | path

Searched refs:sp (Results 1 – 25 of 49) sorted by relevance

12

/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/file-system/
DTabPaneIOTierStatistics.ts180 let sp = ioTierFatherMap.get(ks);
181 sp!.children = [];
182 sp.avgDuration = sp.allDuration / sp.count;
183 let ioTierNode = this.getInitData(sp, 'tier', null);
208 sp!.children.push(data);
DTabPaneVirtualMemoryStatistics.ts185 let sp = vmMemoryStatFatherMap.get(ks);
186 sp!.children = [];
187 sp.avgDuration = sp.allDuration / sp.count;
189 sp,
223 sp!.children.push(data);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/
DTabPaneIOTierStatistics.ts180 let sp = ioTierFatherMap.get(ks);
181 sp!.children = [];
182 sp.avgDuration = sp.allDuration / sp.count;
183 let ioTierNode = this.getInitData(sp, 'tier', null);
208 sp!.children.push(data);
DTabPaneVirtualMemoryStatistics.ts185 let sp = vmMemoryStatFatherMap.get(ks);
186 sp!.children = [];
187 sp.avgDuration = sp.allDuration / sp.count;
189 sp,
223 sp!.children.push(data);
/developtools/profiler/host/smartperf/ide/src/trace/component/setting/
DSpRecordPerf.ts296 let sp = document.querySelector('sp-application') as SpApplication;
297 let recordPerfSearch = sp?.shadowRoot?.querySelector('#lit-record-search') as LitSearch;
310 if (sp.search) {
311 sp.search = false;
322 sp.search = true;
342 if (sp.search) {
343 sp.search = false;
370 sp.search = true;
414 if (sp.search) {
415 sp.search = false;
[all …]
DSpAllocations.ts113 let sp = document.querySelector('sp-application') as SpApplication;
114 let litSearch = sp?.shadowRoot?.querySelector('#lit-record-search') as LitSearch;
/developtools/profiler/device/plugins/native_daemon/src/
Dcall_stack.cpp360 unw_word_t sp = 0; in UnwindStep() local
362 unw_get_reg(&c, UNW_REG_SP, &sp); in UnwindStep()
380 ip, sp); in UnwindStep()
381 if (callStack.back().ip_ == ip && callStack.back().sp_ == sp) { in UnwindStep()
385 callStack.emplace_back(ip, sp); in UnwindStep()
394 bool CallStack::GetIpSP(uint64_t &ip, uint64_t &sp, const u64 *regs, size_t regNum) const in GetIpSP() argument
397 CHECK_TRUE(RegisterGetSPValue(sp, arch_, regs, regNum), false, "unable get sp"); in GetIpSP()
459 uint64_t sp = 0; in UnwindCallStack() local
460 if (!GetIpSP(ip, sp, regs_, regsNum_)) { in UnwindCallStack()
465 HLOGV("unwind:%zu: ip 0x%" PRIx64 " sp 0x%" PRIx64 "", callStack.size(), ip, sp); in UnwindCallStack()
[all …]
/developtools/smartperf_host/ide/src/trace/component/setting/
DSpRecordPerf.ts296 let sp = document.querySelector('sp-application') as SpApplication;
297 let recordPerfSearch = sp?.shadowRoot?.querySelector('#lit-record-search') as LitSearch;
305 if (sp.search) {
306 sp.search = false;
317 sp.search = true;
337 if (sp.search) {
338 sp.search = false;
366 sp.search = true;
409 if (sp.search) {
410 sp.search = false;
[all …]
DSpAllocations.ts122 let sp = document.querySelector('sp-application') as SpApplication;
123 let litSearch = sp?.shadowRoot?.querySelector('#lit-record-search') as LitSearch;
/developtools/hiperf/src/
Dcallstack.cpp381 unw_word_t sp; in UnwindStep() local
383 unw_get_reg(&c, UNW_REG_SP, &sp); in UnwindStep()
401 ip, sp); in UnwindStep()
402 if (callStack.back().ip_ == ip && callStack.back().sp_ == sp) { in UnwindStep()
406 callStack.emplace_back(ip, sp); in UnwindStep()
415 bool CallStack::GetIpSP(uint64_t &ip, uint64_t &sp, const u64 *regs, size_t regNum) const in GetIpSP() argument
418 if (!RegisterGetSPValue(sp, arch_, regs, regNum)) { in GetIpSP()
490 uint64_t sp; in UnwindCallStack() local
491 if (!GetIpSP(ip, sp, regs_, regsNum_)) { in UnwindCallStack()
496 HLOGV("unwind:%zu: ip 0x%" PRIx64 " sp 0x%" PRIx64 "", callStack.size(), ip, sp); in UnwindCallStack()
[all …]
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerSPT.ts232 let sp = ptMap.get(itemKey);
233 sp!.children = [];
237 sp!.children.push(spt!);
240 ptsValues!.children.push(sp!);
339 let sp = spMap.get(spKey);
340 sp!.children = [];
344 sp!.children.push(spt!);
347 stateValue!.children.push(sp!);
/developtools/profiler/host/smartperf/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerSPT.ts268 let sp = ptMap.get(itemKey);
269 sp!.children = [];
273 sp!.children.push(spt!);
276 ptsValues!.children.push(sp!);
375 let sp = spMap.get(spKey);
376 sp!.children = [];
380 sp!.children.push(spt!);
383 stateValue!.children.push(sp!);
/developtools/profiler/device/plugins/native_daemon/include/
Dperf_event_record.h58 CallFrame(uint64_t ip, uint64_t sp = 0) : ip_(ip), sp_(sp) {} in ip_()
/developtools/profiler/device/plugins/native_daemon/test/unittest/common/native/
Dregister_test.cpp149 size_t sp = RegisterGetSP(buildArchType); variable
150 registers[sp] = 0x1234;
152 EXPECT_EQ(RegisterGetValue(value, registers, sp, sizeof(registers)),
/developtools/hiperf/test/unittest/common/native/
Dregister_test.cpp149 size_t sp = RegisterGetSP(buildArchType); variable
150 registers[sp] = 0x1234;
152 EXPECT_EQ(RegisterGetValue(value, registers, sp, sizeof(registers)),
/developtools/smartperf_host/ide/src/trace/component/
DSpRecordTrace.ts374 private sp: SpApplication | undefined; property in SpRecordTrace
502 let mainMenu = this.sp!.shadowRoot?.querySelector('#main-menu') as LitMainMenu;
644 this.sp!.search = false;
653 this.sp = document.querySelector('sp-application') as SpApplication;
654 this.progressEL = this.sp.shadowRoot?.querySelector('.progress') as LitProgressBar;
655 this.litSearch = this.sp.shadowRoot?.querySelector('#lit-record-search') as LitSearch;
731 this.sp!.search = false;
746 this.sp!.search = false;
1003 this.sp!.search = true;
1021 this.sp!.search = true;
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/component/
DSpRecordTrace.ts374 private sp: SpApplication | undefined; property in SpRecordTrace
501 let mainMenu = this.sp!.shadowRoot?.querySelector('#main-menu') as LitMainMenu;
643 this.sp!.search = false;
652 this.sp = document.querySelector('sp-application') as SpApplication;
653 this.progressEL = this.sp.shadowRoot?.querySelector('.progress') as LitProgressBar;
654 this.litSearch = this.sp.shadowRoot?.querySelector('#lit-record-search') as LitSearch;
730 this.sp!.search = false;
745 this.sp!.search = false;
1002 this.sp!.search = true;
1020 this.sp!.search = true;
[all …]
/developtools/profiler/host/smartperf/client/client_command/include/
Dsp_utils.h79 void StrSplit(const std::string &content, const std::string &sp, std::vector<std::string> &out);
Dsp_parse_fps.h84 inline void StrSplit(const SpString &content, const SpString &sp, std::vector<SpString> &out);
/developtools/profiler/device/plugins/native_hook/test/
Dmalloc_test.cpp196 std::string* sp = new std::string("hello world"); in NewString() local
197 printf("string sp = %s\n", sp->c_str()); in NewString()
198 delete sp; in NewString()
/developtools/profiler/device/plugins/native_daemon/test/unittest/common/native/include/
Dcallstack_test.h100 uint64_t sp = 0; member
/developtools/hiperf/test/unittest/common/native/include/
Dcallstack_test.h44 uint64_t sp = 0; member
/developtools/smartperf_host/trace_streamer/src/filter/
Dnative_hook_filter.h37 uint64_t sp, in NativeHookFrameInfo() argument
43 sp_(sp), in NativeHookFrameInfo()
/developtools/profiler/host/smartperf/trace_streamer/src/filter/
Dnative_hook_filter.h37 uint64_t sp, in NativeHookFrameInfo() argument
43 sp_(sp), in NativeHookFrameInfo()
/developtools/profiler/host/smartperf/client/client_command/
Dsp_parse_fps.cpp24 void ParseFPS::StrSplit(const SpString &content, const SpString &sp, std::vector<SpString> &out) in StrSplit() argument
28 size_t tEnd = content.find_first_of(sp, index); in StrSplit()

12