| /developtools/smartperf_host/ide/src/trace/database/data-trafic/ |
| D | HiSysEventDataReceiver.ts | 54 let uid = new Uint16Array(transfer ? res.length : data.params.sharedArrayBuffers.uid); 59 uid[index] = it.uid; 74 uid: uid.buffer, 87 …transfer ? [id.buffer, ts.buffer, pid.buffer, tid.buffer, uid.buffer, dur.buffer, seq.buffer, dept…
|
| D | HiSysEventDataSender.ts | 30 uid: new SharedArrayBuffer(Uint16Array.BYTES_PER_ELEMENT * MAX_COUNT), 61 let uid = new Uint16Array(res.uid); 71 uid: uid[index],
|
| /developtools/profiler/device/etc/ |
| D | hiprofiler_daemon.cfg | 8 "uid" : "hiprofiler", 16 "uid" : "hiprofiler", 27 "uid" : "hiprofiler", 35 "uid" : "hiprofiler",
|
| D | hiprofilerd.cfg | 7 "uid" : "hiprofiler", 15 "uid" : "hiprofiler",
|
| D | hiprofiler_plugins.cfg | 8 "uid" : "hiprofiler",
|
| /developtools/smartperf_host/trace_streamer/src/parser/htrace_pbreader_parser/ |
| D | htrace_process_parser.h | 72 ProcessInfo(int32_t pid, const std::string& name, int32_t ppid, int32_t uid) in ProcessInfo() 73 : pid(pid), name(name), ppid(ppid), uid(uid) in ProcessInfo() 79 int32_t uid; member
|
| D | htrace_process_parser.cpp | 52 processInfoParser.ppid(), processInfoParser.uid()); in Parse() 92 …(*itor)->processInfo_->uid, std::to_string((*itor)->processInfo_->uid), (*itor)->cpuUsageData_->cp… in Finish()
|
| /developtools/smartperf_host/trace_streamer/src/filter/ |
| D | cpu_filter.h | 71 … uint64_t RemberInternalTidInStateTable(uint32_t uid, uint64_t row, uint64_t state = TASK_INVALID); 72 uint64_t RowOfInternalTidInStateTable(uint32_t uid) const; 73 void ClearInternalTidInStateTable(uint32_t uid); 74 uint64_t StateOfInternalTidInStateTable(uint32_t uid) const;
|
| D | cpu_filter.cpp | 248 uint64_t CpuFilter::RemberInternalTidInStateTable(uint32_t uid, uint64_t row, uint64_t state) in RemberInternalTidInStateTable() argument 250 if (internalTidToRowThreadState_.find(uid) != internalTidToRowThreadState_.end()) { in RemberInternalTidInStateTable() 251 internalTidToRowThreadState_.at(uid) = TPthread{row, state}; in RemberInternalTidInStateTable() 253 internalTidToRowThreadState_.insert(std::make_pair(uid, TPthread{row, state})); in RemberInternalTidInStateTable() 257 uint64_t CpuFilter::RowOfInternalTidInStateTable(uint32_t uid) const in RowOfInternalTidInStateTable() 259 auto itor = internalTidToRowThreadState_.find(uid); in RowOfInternalTidInStateTable() 265 void CpuFilter::ClearInternalTidInStateTable(uint32_t uid) in ClearInternalTidInStateTable() argument 267 auto itor = internalTidToRowThreadState_.find(uid); in ClearInternalTidInStateTable() 272 uint64_t CpuFilter::StateOfInternalTidInStateTable(uint32_t uid) const in StateOfInternalTidInStateTable() 274 auto itor = internalTidToRowThreadState_.find(uid); in StateOfInternalTidInStateTable()
|
| /developtools/smartperf_host/ide/src/trace/bean/ |
| D | EnergyStruct.ts | 36 uid: number = 0; property in PowerDetailsEnergy 61 uid: number = -1; property in SystemDetailsEnergy
|
| /developtools/smartperf_host/ide/test/trace/bean/ |
| D | EnergyStruct.test.ts | 40 uid: expect.any(Number), 89 uid: expect.any(Number),
|
| /developtools/profiler/hiebpf/include/ |
| D | hiebpf_types.h | 28 __u32 uid; member 62 __u32 uid; member
|
| /developtools/smartperf_host/ide/test/trace/component/trace/sheet/energy/ |
| D | TabPaneSystemDetails.test.ts | 224 uid: 33, 249 uid: 11, 274 uid: 23, 298 uid: 337,
|
| /developtools/profiler/device/plugins/xpower_plugin/src/ |
| D | xpower_plugin.cpp | 74 int32_t uid = COMMON::GetPackageUid(bundleName); in Start() local 75 if (uid < AID_HAP_START || uid > AID_HAP_END) { in Start()
|
| /developtools/smartperf_host/trace_streamer/test/unittest/htrace/ |
| D | htrace_process_parser_test.cpp | 60 …rocessesinfo(ProcessData* processData, uint32_t pid, std::string name, uint32_t ppid, uint32_t uid) in SetProcessesinfo() argument 66 processInfo->set_uid(uid); in SetProcessesinfo() 103 const int32_t uid = 23; variable 105 SetProcessesinfo(processData.get(), pid, name, ppid, uid);
|
| /developtools/smartperf_host/ide/test/trace/component/chart/ |
| D | SpHiSysEventChart.test.ts | 36 uid: 1,
|
| /developtools/smartperf_host/ide/test/trace/component/trace/sheet/hi-sysevent/ |
| D | TabPaneHiSysEventSummary.test.ts | 36 uid: 5523,
|
| D | TabPaneHisysEvents.test.ts | 41 uid: 98, 70 uid: 5523,
|
| /developtools/hdc/src/daemon/etc/ |
| D | hdcd.cfg | 5 "uid" : "shell", 13 "uid" : "shell",
|
| D | hdcd.root.cfg | 5 "uid" : "root", 13 "uid" : "root",
|
| /developtools/profiler/device/base/src/ |
| D | common.cpp | 436 int uid = proxy->GetUidByDebugBundleName(bundleName, Constants::ANY_USERID); in CheckApplicationPermission() local 437 CHECK_TRUE(uid >= 0, false, "Get %s uid = %d", bundleName.c_str(), uid); in CheckApplicationPermission() 566 int32_t uid = mgr->GetUidByBundleName(name, userId); in GetPackageUid() local 567 PROFILER_LOG_INFO(LOG_CORE, "pkgname is: %s, uid is : %d", name.c_str(), uid); in GetPackageUid() 568 return uid; in GetPackageUid()
|
| /developtools/profiler/device/plugins/process_plugin/test/unittest/ |
| D | process_plugin_unittest.cpp | 64 int32_t uid; member 204 EXPECT_EQ(processesinfo.uid(), g_processStatus[i].uid); 326 EXPECT_EQ(processesinfo.uid(), g_processStatus[i].uid);
|
| /developtools/smartperf_host/ide/src/doc/md/ |
| D | quickstart_hisystemevent.md | 110 - uid:uid。
|
| /developtools/profiler/device/plugins/network_plugin/test/unittest/ |
| D | network_plugin_test.cpp | 45 int32_t uid; member 163 EXPECT_EQ(g_expectBegin.uid, plugin.GetUid(pidList[i])); 191 EXPECT_EQ(g_expectEnd.uid, plugin.GetUid(pidList[i]));
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/energy/ |
| D | TabPanePowerBattery.ts | 52 uid: [],
|