Home
last modified time | relevance | path

Searched refs:uidSize (Results 1 - 7 of 7) sorted by relevance

/foundation/graphic/graphic_3d/lume/metaobject/include/meta/base/
H A Dref_uri.h422 static constexpr size_t uidSize = 36; in ParseUid() local
423 if (path.size() < uidSize) { in ParseUid()
426 baseUid_ = BASE_NS::StringToUid(path.substr(0, uidSize)); in ParseUid()
427 path.remove_prefix(uidSize); in ParseUid()
/foundation/communication/netmanager_base/services/netmanagernative/src/
H A Dnetsys_native_service_stub.cpp1252 uint32_t uidSize = data.ReadUint32(); in CmdFirewallSetUidsAllowedListChain() local
1253 uidSize = (uidSize > UIDS_LIST_MAX_SIZE) ? UIDS_LIST_MAX_SIZE : uidSize; in CmdFirewallSetUidsAllowedListChain()
1254 for (uint32_t i = 0; i < uidSize; i++) { in CmdFirewallSetUidsAllowedListChain()
1268 uint32_t uidSize = data.ReadUint32(); in CmdFirewallSetUidsDeniedListChain() local
1269 uidSize = (uidSize > UIDS_LIST_MAX_SIZE) ? UIDS_LIST_MAX_SIZE : uidSize; in CmdFirewallSetUidsDeniedListChain()
1270 for (uint32_t i = 0; i < uidSize; in CmdFirewallSetUidsDeniedListChain()
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/
H A Dinstalld_host.cpp467 auto uidSize = data.ReadInt32(); in HandleGetAllBundleStats() local
468 if (uidSize == 0 || uidSize > Constants::CAPACITY_SIZE) { in HandleGetAllBundleStats()
473 for (int32_t index = 0; index < uidSize; ++index) { in HandleGetAllBundleStats()
H A Dinstalld_proxy.cpp316 uint32_t uidSize = uids.size(); in GetAllBundleStats() local
317 INSTALLD_PARCEL_WRITE(data, Uint32, uidSize); in GetAllBundleStats()
/foundation/communication/netmanager_base/test/fuzztest/netsysclient_fuzzer/
H A Dnet_sys_client_fuzzer.cpp546 auto uidSize = static_cast<uint32_t>(NetSysGetData<uint8_t>()); in FirewallSetUidsAllowedListChainFuzzTest() local
549 dataParcel.WriteUint32(uidSize); in FirewallSetUidsAllowedListChainFuzzTest()
550 for (uint32_t index = 0; index < uidSize; index++) { in FirewallSetUidsAllowedListChainFuzzTest()
566 auto uidSize = static_cast<uint32_t>(NetSysGetData<uint8_t>()); in FirewallSetUidsDeniedListChainFuzzTest() local
569 dataParcel.WriteUint32(uidSize); in FirewallSetUidsDeniedListChainFuzzTest()
570 for (uint32_t index = 0; index < uidSize; index++) { in FirewallSetUidsDeniedListChainFuzzTest()
/foundation/communication/netmanager_base/frameworks/native/netmanagernative/
H A Dnetsys_native_service_proxy.cpp1608 uint32_t uidSize = uids.size(); in FirewallSetUidsAllowedListChain() local
1609 if (uidSize > UIDS_LIST_MAX_SIZE) { in FirewallSetUidsAllowedListChain()
1610 NETNATIVE_LOGE("Uids size err [%{public}d]", uidSize); in FirewallSetUidsAllowedListChain()
1621 if (!data.WriteUint32(uidSize)) { in FirewallSetUidsAllowedListChain()
1648 uint32_t uidSize = uids.size(); in FirewallSetUidsDeniedListChain() local
1649 if (uidSize > UIDS_LIST_MAX_SIZE) { in FirewallSetUidsDeniedListChain()
1650 NETNATIVE_LOGE("Uids size err [%{public}d]", uidSize); in FirewallSetUidsDeniedListChain()
1661 if (!data.WriteUint32(uidSize)) { in FirewallSetUidsDeniedListChain()
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/
H A Dnetsys_native_service_stub_test.cpp1307 uint32_t uidSize = 1; in HWTEST_F() local
1314 if (!data.WriteUint32(uidSize)) { in HWTEST_F()

Completed in 18 milliseconds