Home
last modified time | relevance | path

Searched refs:uid (Results 1926 - 1950 of 4716) sorted by relevance

1...<<71727374757677787980>>...189

/base/hiviewdfx/hiview/base/utility/include/
H A Dfreeze_json_util.h59 "uid",
82 long uid = 0; member
104 std::string GetFilePath(long pid, long uid, unsigned long long timestamp);
/base/location/interfaces/inner_api/include/
H A Dcommon_utils.h171 static bool GetBundleNameByUid(int32_t uid, std::string& bundleName);
182 static bool CheckAppForUser(int32_t uid);
/base/hiviewdfx/hiview/plugins/freeze_detector/
H A Dwatch_point.cpp70 WatchPoint::Builder& WatchPoint::Builder::InitUid(long uid) in InitUid() argument
72 uid_ = uid; in InitUid()
/base/account/os_account/interfaces/kits/cj/osaccount/src/
H A Dcj_osaccount_ffi.cpp144 int32_t FfiOHOSOsAccountGetOsAccountLocalIdForUid(int32_t uid, int32_t *errCode) in FfiOHOSOsAccountGetOsAccountLocalIdForUid() argument
147 int32_t ret = OsAccountManagerImpl::GetOsAccountLocalIdForUid(uid, errCode); in FfiOHOSOsAccountGetOsAccountLocalIdForUid()
/base/account/os_account/services/accountmgr/test/mock/common/
H A Dbundle_manager_adapter.cpp62 ErrCode BundleManagerAdapter::GetNameForUid(const int uid, std::string &bundleName) in GetNameForUid() argument
64 ACCOUNT_LOGI("mock enter, uid = %{public}d", uid); in GetNameForUid()
/base/powermgr/thermal_manager/services/native/src/thermal_action/
H A Dthermal_action_manager.cpp129 if (!iter->uid.empty()) { in DumpAction()
131 result.append("uid: "); in DumpAction()
132 result.append(iter->uid); in DumpAction()
/base/notification/distributed_notification_service/services/ans/src/
H A Dsystem_event_observer.cpp65 int32_t uid = want.GetIntParam(AppExecFwk::Constants::UID, -1); in GetBundleOption() local
66 sptr<NotificationBundleOption> bundleOption = new (std::nothrow) NotificationBundleOption(bundleName, uid); in GetBundleOption()
/base/security/access_token/services/el5filekeymanager/test/src/
H A Del5_filekey_manager_service_unittest.cpp115 * @tc.desc: Generate app key by uid and bundle name without permission.
121 int32_t uid = 12345; in HWTEST_F() local
124 ASSERT_EQ(el5FilekeyManagerService_->GenerateAppKey(uid, bundleName, keyId), EFM_ERR_NO_PERMISSION); in HWTEST_F()
/base/sensors/sensor/services/src/
H A Dstream_server.cpp81 int32_t StreamServer::AddSocketPairInfo(int32_t uid, int32_t pid, int32_t tokenType, in AddSocketPairInfo() argument
114 sess = std::make_shared<StreamSession>("", serverFd, uid, pid); in AddSocketPairInfo()
/drivers/peripheral/wlan/test/unittest/chip/
H A Dwifi_hal_fn.cpp110 WifiError WifiSetDpiMarkRule(int32_t uid, int32_t protocol, int32_t enable) in WifiSetDpiMarkRule() argument
112 if (uid == 0) { in WifiSetDpiMarkRule()
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/app/
H A Dfa_context.h251 * @param uid Indicates the UID of the unauth to check.
254 virtual void UnauthUriPermission(const std::string &permission, const Uri &uri, int uid) in UnauthUriPermission() argument
287 * @param uid
291 virtual int VerifyPermission(const std::string &permission, int pid, int uid) in VerifyPermission() argument
/foundation/ability/ability_runtime/test/moduletest/mock/include/
H A Dmock_context.h50 virtual void UnauthUriPermission(const std::string& permission, const Uri& uri, int uid) = 0;
56 virtual int VerifyPermission(const std::string& permission, int pid, int uid) = 0;
/foundation/ability/ability_lite/services/abilitymgr_lite/src/
H A Dapp_record.cpp60 int ret = LoadPermissions(bundleInfo_.bundleName, bundleInfo_.uid); in LoadPermission()
71 UnLoadPermissions(bundleInfo_.uid); in UnloadPermission()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/quick_fix/
H A Dquick_fix_deployer.h114 const std::string &oldSoPath, const std::string &patchPath, int32_t uid = Constants::INVALID_UID);
117 int32_t uid, std::string &tmpSoPath);
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/bundlemgr_extension/include/
H A Dbundle_mgr_ext.h78 virtual ErrCode GetUidByBundleName(const std::string &bundleName, int32_t userId, int32_t &uid) in GetUidByBundleName() argument
82 virtual ErrCode GetBundleNameByUid(int32_t uid, std::string &bundleName) in GetBundleNameByUid() argument
H A Dbms_extension_data_mgr.h54 ErrCode GetUidByBundleName(const std::string &bundleName, int32_t userId, int32_t &uid);
55 ErrCode GetBundleNameByUid(int32_t uid, std::string &bundleName);
/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_avrcp_ct_server.h56 virtual int32_t PlayItem(const RawAddress &device, int32_t scope, int64_t uid, int32_t uidCounter) override;
64 virtual int32_t GetItemAttributes(const RawAddress &device, int64_t uid, int32_t uidCounter,
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/bundle_daemon/src/
H A Dbundle_file_utils.cpp147 bool BundleFileUtils::ChownFile(const char *file, int32_t uid, int32_t gid) in ChownFile() argument
152 return chown(file, uid, gid) == 0; in ChownFile()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/sandbox_app/
H A Dbundle_sandbox_app_helper.cpp147 ErrCode BundleSandboxAppHelper::GetInnerBundleInfoByUid(const int32_t &uid, InnerBundleInfo &innerBundleInfo) const in GetInnerBundleInfoByUid() argument
155 return sandboxDataMgr_->GetInnerBundleInfoByUid(uid, innerBundleInfo); in GetInnerBundleInfoByUid()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dbundle_permission_mgr.cpp34 bool BundlePermissionMgr::IsCallingUidValid(int32_t uid) in IsCallingUidValid() argument
80 bool BundlePermissionMgr::IsCallingUidValid(int32_t uid)
/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_avrcp_ct_proxy.h56 int32_t PlayItem(const RawAddress &device, int32_t scope, int64_t uid, int32_t uidCounter) override;
64 int32_t GetItemAttributes(const RawAddress &device, int64_t uid, int32_t uidCounter,
/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
H A Dpicking.h68 const IInterface* GetInterface(const BASE_NS::Uid& uid) const override;
69 IInterface* GetInterface(const BASE_NS::Uid& uid) override;
/foundation/graphic/graphic_3d/lume/metaobject/test/src/interface/
H A DIntfClassRegistryTest.cpp58 MATCHER_P(ContainsClass, uid, "") in MATCHER_P()
61 if (info && info->GetClassInfo().Id() == uid) { in MATCHER_P()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/
H A Ddata.h125 const IInterface* GetInterface(const BASE_NS::Uid& uid) const override;
126 IInterface* GetInterface(const BASE_NS::Uid& uid) override;
/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dobject.cpp114 for (const auto& uid : uids) { in CheckRequiredInterfaces()
115 if (std::find(reqs.begin(), reqs.end(), uid) != reqs.end()) { in CheckRequiredInterfaces()

Completed in 12 milliseconds

1...<<71727374757677787980>>...189