/developtools/integration_verification/tools/startup_guard/startup_checker/ |
H A D | user_group_rule.py | 40 for uid in passwd_id._uid_list: 41 if passwd_id._uid_list.count(uid) > 1: 42 repeat_uid.append(uid) 49 self.error("repeat uid name list: %s" % repeat_name) 53 self.error("repeat uid value list: %s" % repeat_uid) 57 self.error("%s has different passwd and group values" % value["uid"])
|
/developtools/smartperf_host/trace_streamer/src/filter/ |
H A D | cpu_filter.h | 78 uint64_t RemberInternalTidInStateTable(uint32_t uid, uint64_t row, uint64_t state = TASK_INVALID); 79 uint64_t RowOfInternalTidInStateTable(uint32_t uid) const; 80 void ClearInternalTidInStateTable(uint32_t uid); 81 uint64_t StateOfInternalTidInStateTable(uint32_t uid) const;
|
H A D | cpu_filter.cpp | 235 uint64_t CpuFilter::RemberInternalTidInStateTable(uint32_t uid, uint64_t row, uint64_t state) in RemberInternalTidInStateTable() argument 237 if (internalTidToRowThreadState_.find(uid) != internalTidToRowThreadState_.end()) { in RemberInternalTidInStateTable() 238 internalTidToRowThreadState_.at(uid) = TPthread{row, state}; in RemberInternalTidInStateTable() 240 internalTidToRowThreadState_.insert(std::make_pair(uid, TPthread{row, state})); in RemberInternalTidInStateTable() 244 uint64_t CpuFilter::RowOfInternalTidInStateTable(uint32_t uid) const in RowOfInternalTidInStateTable() 246 auto itor = internalTidToRowThreadState_.find(uid); in RowOfInternalTidInStateTable() 252 void CpuFilter::ClearInternalTidInStateTable(uint32_t uid) in ClearInternalTidInStateTable() argument 254 auto itor = internalTidToRowThreadState_.find(uid); in ClearInternalTidInStateTable() 259 uint64_t CpuFilter::StateOfInternalTidInStateTable(uint32_t uid) const in StateOfInternalTidInStateTable() 261 auto itor = internalTidToRowThreadState_.find(uid); in StateOfInternalTidInStateTable() [all...] |
/developtools/smartperf_host/trace_streamer/src/parser/pbreader_parser/process_parser/ |
H A D | pbreader_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
|
H A D | pbreader_process_parser.cpp | 47 processInfoParser.ppid(), processInfoParser.uid()); in Parse() 91 row.uid = (*itor)->processInfo_->uid; in Finish() 92 row.userName = std::to_string((*itor)->processInfo_->uid); in Finish()
|
/developtools/smartperf_host/trace_streamer/test/unittest/pbreader_parser/ |
H A D | pbreader_process_parser_test.cpp | 60 void SetProcessesinfo(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; in HWTEST_F() local 105 SetProcessesinfo(processData.get(), pid, name, ppid, uid); in HWTEST_F()
|
/developtools/profiler/device/plugins/xpower_plugin/src/ |
H A D | xpower_plugin.cpp | 79 int32_t uid = COMMON::GetPackageUid(bundleName); in Start() local 80 if (uid < AID_HAP_START || uid > AID_HAP_END) { in Start()
|
/developtools/integration_verification/tools/startup_guard/config_parser_mgr/user_group/ |
H A D | user_group_parser.py | 104 uid = int(passwd_info[2], 10) 109 "passwdId" : uid
|
/developtools/profiler/hiebpf/include/ |
H A D | hiebpf_types.h | 21 __u32 uid; member 55 __u32 uid; member
|
/developtools/profiler/device/plugins/process_plugin/test/unittest/ |
H A D | process_plugin_unittest.cpp | 59 int32_t uid; member 199 EXPECT_EQ(processesinfo.uid(), g_processStatus[i].uid); in HWTEST_F() 321 EXPECT_EQ(processesinfo.uid(), g_processStatus[i].uid); in HWTEST_F()
|
/developtools/hdc/src/common/ |
H A D | header.h | 70 uint8_t uid[8]; member 71 /// 组ID。和uid一样,预留
|
H A D | channel.cpp | 367 uint32_t uid = 0; in GetChannelPseudoUid() local 369 uid = Base::GetSecureRandom(); in GetChannelPseudoUid() 370 } while (AdminChannel(OP_QUERY, uid, nullptr) != nullptr); in GetChannelPseudoUid() 371 return uid; in GetChannelPseudoUid()
|
H A D | session.cpp | 409 uint32_t uid = 0; in GetSessionPseudoUid() local 411 uid = Base::GetSecureRandom(); in GetSessionPseudoUid() 412 } while (AdminSession(OP_QUERY, uid, nullptr) != nullptr); in GetSessionPseudoUid() 413 return uid; in GetSessionPseudoUid()
|
/developtools/profiler/device/plugins/network_plugin/test/unittest/ |
H A D | network_plugin_test.cpp | 39 int32_t uid; member 157 EXPECT_EQ(g_expectBegin.uid, plugin.GetUid(pidList[i])); in HWTEST_F() 185 EXPECT_EQ(g_expectEnd.uid, plugin.GetUid(pidList[i])); in HWTEST_F()
|
/developtools/hdc/hdc_rust/src/tar/ |
H A D | header.rs | 75 uid: [u8; 8], 76 /// 组ID。和uid一样,预留 128 uid: [0u8; 8], in new() 151 uid: data[108..116].try_into().unwrap(), 276 check_sum(&self.uid); in updata_check_sum() 307 copy_data(&self.uid);
|
/developtools/smartperf_host/trace_streamer/src/filter/hi_sysevent_filter/ |
H A D | hi_sysevent_measure_filter.h | 52 uint32_t uid = INVALID_UINT32; member
|
H A D | hi_sysevent_measure_filter.cpp | 120 jsMessage.uid = item.value(); in FillJsMessage() 156 jsMessage.pid, jsMessage.tid, jsMessage.uid, jsMessage.level, jsMessage.tag, in UpdataAllHiSysEvent()
|
/developtools/profiler/device/plugins/network_plugin/src/ |
H A D | network_plugin.cpp | 218 int32_t uid = pidUid_.at(pid); in ReadTxRxBytes() local 245 if ((index == UID_INDEX) && (uid != static_cast<int32_t>(value))) { in ReadTxRxBytes()
|
/developtools/profiler/device/base/src/ |
H A D | common.cpp | 710 int32_t uid = mgr->GetUidByBundleName(name, userId); in GetPackageUid() local 711 PROFILER_LOG_INFO(LOG_CORE, "pkgname is: %s, uid is : %d", name.c_str(), uid); in GetPackageUid() 712 return uid; in GetPackageUid()
|
/developtools/hdc/src/host/ |
H A D | server_for_client.cpp | 52 uint32_t uid = thisClass->MallocChannel(&hChannel); in AcceptClient() local 59 WRITE_LOG(LOG_FATAL, "AcceptClient uv_accept error rc:%d uid:%u", rc, uid); in AcceptClient() 60 thisClass->FreeChannel(uid); in AcceptClient() 63 WRITE_LOG(LOG_DEBUG, "AcceptClient uid:%u", uid); in AcceptClient()
|
/developtools/profiler/device/plugins/xpower_plugin/test/ |
H A D | xpower_decoder.cpp | 285 for (int i = 0; i < topCpu.uid().size(); i++) {
in CreateComponentTopCpu() 286 cJSON_AddItemToArray(userIdArr, cJSON_CreateNumber(topCpu.uid(i)));
in CreateComponentTopCpu() 288 cJSON_AddItemToObject(cjsonTopCommon, "uid", userIdArr);
in CreateComponentTopCpu()
|
/developtools/smartperf_host/trace_streamer/src/trace_data/trace_stdtype/hisysevent/ |
H A D | hisysevent_stdtype.h | 187 uint32_t uid = INVALID_UINT32; member
|
H A D | hisysevent_stdtype.cpp | 190 uids_.emplace_back(hiSysEventAllEventDataRow.uid); in AppendHiSysEventData()
|
/developtools/profiler/hiebpf/src/ |
H A D | hiebpf.bpf.c | 137 cmplt_event->uid = bpf_get_current_uid_gid(); in emit_fstrace_event() 299 cmplt_event->uid = bpf_get_current_uid_gid(); in emit_pftrace_event()
|
/developtools/smartperf_host/trace_streamer/src/trace_data/trace_stdtype/htrace/ |
H A D | activity_monitor_stdtype.h | 77 int32_t uid = INVALID_INT32; member
|