Home
last modified time | relevance | path

Searched refs:uId (Results 1 – 18 of 18) sorted by relevance

/ohos5.0/foundation/ability/form_fwk/services/include/
H A Dform_timer.h65 FormTimer(int64_t id, bool countTimer, int32_t uId = 0)
68 userId = uId;
78 FormTimer(int64_t id, long repeatTime, int32_t uId = 0)
81 userId = uId;
91 FormTimer(int64_t id, int hourTime, int minTime, int32_t uId = 0)
94 userId = uId;
127 DynamicRefreshItem(int64_t id, int64_t time, int32_t uId = 0)
131 userId = uId;
H A Dform_db_info.h63 bool Contains(const int uId) const in Contains()
65 return std::find(formUserUids.begin(), formUserUids.end(), uId) != formUserUids.end(); in Contains()
67 void Remove(const int uId) in Remove()
69 auto itUId = std::find(formUserUids.begin(), formUserUids.end(), uId); in Remove()
H A Dform_data_mgr.h369 void ClearHostDataByUId(const int uId);
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_launch_data_test/
H A Dapp_launch_data_test.cpp93 int32_t uId = 0; variable
96 launchData_->uId_ = uId;
109 EXPECT_EQ(parcel.ReadInt32(), uId);
128 int32_t uId = 0; variable
137 parcel.WriteInt32(uId);
144 EXPECT_EQ(launchData_->uId_, uId);
/ohos5.0/foundation/ability/form_fwk/services/src/
H A Dform_dump_mgr.cpp46 for (const auto &uId : info.formUserUids) { in DumpStorageFormInfos() local
47 formInfos += " Uid[" + std::to_string(uId) + "] "; in DumpStorageFormInfos()
71 for (const auto &uId : info.formUserUids) { in DumpTemporaryFormInfos() local
72 formInfos += " Uid[" + std::to_string(uId) + "] "; in DumpTemporaryFormInfos()
187 for (const auto &uId : formRecordInfo.formUserUids) { in DumpFormInfo() local
188 formInfo += " Uid[" + std::to_string(uId) + "] "; in DumpFormInfo()
H A Dform_data_mgr.cpp1328 void FormDataMgr::ClearHostDataByUId(const int uId) in ClearHostDataByUId() argument
1333 if (itHostRecord->GetCallerUid() == uId) { in ClearHostDataByUId()
/ohos5.0/foundation/ability/form_fwk/test/fuzztest/formdatamgrthree_fuzzer/
H A Dformdatamgrthree_fuzzer.cpp58 int uId = static_cast<int>(GetU32Data(data)); in DoSomethingInterestingWithMyAPI() local
59 formDataMgr.ClearHostDataByUId(uId); in DoSomethingInterestingWithMyAPI()
69 formDataMgr.GetNoHostTempForms(uId, noHostTempFormsMap, foundFormsMap); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/communication/netmanager_base/test/netsysbpfstats/unittest/netsys_bpf_stats_test/
H A Dnetsys_bpf_stats_test.cpp253 key1.uId = TEST_UID1;
259 key2.uId = TEST_UID2;
312 key1.uId = TEST_UID1;
332 key1.uId = TEST_UID1;
338 key2.uId = TEST_UID2;
359 key1.uId = TEST_UID1;
365 key2.uId = TEST_UID2;
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/bpf/src/
H A Dbpf_stats.cpp113 tempStats.uid_ = k.uId; in GetAllSimStatsInfo()
161 tempStats.uid_ = k.uId; in GetAllStatsInfo()
192 if (k.uId == uid) { in DeleteStatsInfo()
H A Dnetsys.c316 app_uid_sim_stats_key key_sim = {.uId = sock_uid, .ifIndex = skb->ifindex, in bpf_cgroup_skb_uid_ingress()
330 app_uid_if_stats_key key = {.uId = sock_uid, .ifIndex = skb->ifindex}; in bpf_cgroup_skb_uid_ingress()
407 app_uid_sim_stats_key key_sim = {.uId = sock_uid, .ifIndex = skb->ifindex, in bpf_cgroup_skb_uid_egress()
421 app_uid_if_stats_key key = {.uId = sock_uid, .ifIndex = skb->ifindex}; in bpf_cgroup_skb_uid_egress()
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/
H A Dapp_launch_data.cpp42 void AppLaunchData::SetUId(const int32_t uId) in SetUId() argument
44 uId_ = uId; in SetUId()
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/bpf/include/
H A Dbpf_def.h52 __u32 uId; member
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/
H A Dapp_launch_data.h79 void SetUId(const int32_t uId);
/ohos5.0/foundation/window/window_manager/window_scene/test/unittest/
H A Dscene_session_manager_test3.cpp1114 const int32_t uId = 32; variable
1121 ssm_->QueryAbilityInfoFromBMS(uId,
1125 ssm_->QueryAbilityInfoFromBMS(uId,
/ohos5.0/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/
H A Dnetsys_native_service_stub_test.cpp1434 uint32_t uId = 2020; variable
1442 if (!data.WriteInt32(uId)) {
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/src/
H A Dnetsys_native_service_stub.cpp1272 uint32_t uId = data.ReadUint32(); in CmdGetUidStats() local
1274 int32_t result = GetUidStats(stats, type, uId); in CmdGetUidStats()
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/include/
H A Dscene_session_manager.h522 …std::shared_ptr<AppExecFwk::AbilityInfo> QueryAbilityInfoFromBMS(const int32_t uId, const std::str…
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/
H A Dscene_session_manager.cpp3781 …shared_ptr<AppExecFwk::AbilityInfo> SceneSessionManager::QueryAbilityInfoFromBMS(const int32_t uId, in QueryAbilityInfoFromBMS() argument
3798 bool ret = bundleMgr_->QueryAbilityInfo(want, abilityInfoFlag, uId, *abilityInfo); in QueryAbilityInfoFromBMS()