Home
last modified time | relevance | path

Searched refs:parentName (Results 1 – 19 of 19) sorted by relevance

/ohos5.0/drivers/hdf_core/framework/support/platform/src/regulator/
H A Dregulator_core.c82 … if ((pos->regulatorInfo.parentName != NULL) && (strlen(pos->regulatorInfo.parentName) > 0)) { in RegulatorNodeListPrint()
104 if ((node->regulatorInfo.parentName != NULL) in RegulatorNodeSetParent()
105 && (strlen(node->regulatorInfo.parentName) > 0)) { in RegulatorNodeSetParent()
122 node->regulatorInfo.name, node->regulatorInfo.parentName); in RegulatorNodeSetParent()
146 if ((pos->regulatorInfo.parentName != NULL) && in RegulatorNodeSetChild()
369 if ((node->regulatorInfo.parentName != NULL) && (strlen(node->regulatorInfo.parentName) > 0)) { in RegulatorNodeEnable()
427 if ((node->regulatorInfo.parentName != NULL) && (strlen(node->regulatorInfo.parentName) > 0)) { in RegulatorNodeDisable()
482 if ((node->regulatorInfo.parentName != NULL) && (strlen(node->regulatorInfo.parentName) > 0)) { in RegulatorNodeForceDisable()
647 if ((node->regulatorInfo.parentName != NULL) in RegulatorTreeInfoInit()
648 && (strlen(node->regulatorInfo.parentName) > 0)) { in RegulatorTreeInfoInit()
[all …]
H A Dregulator_tree_mgr.c115 if ((node->regulatorInfo.parentName == NULL) || (strlen(node->regulatorInfo.parentName) == 0)) { in RegulatorTreeIsUpNodeComplete()
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/appkit/app_startup/
H A Dstartup_topologysort.cpp92 for (auto &parentName : dependencies) { in SortZeroDeque() local
93 if (startupMap.find(parentName) == startupMap.end()) { in SortZeroDeque()
95 "%{public}s, failed to find dep: %{public}s", key.c_str(), parentName.c_str()); in SortZeroDeque()
98 auto &childStartVector = startupSortResult->startupChildrenMap_[parentName]; in SortZeroDeque()
/ohos5.0/base/customization/enterprise_device_management/services/edm/include/
H A Dadmin_manager.h52 ErrCode GetPoliciesByVirtualAdmin(const std::string &bundleName, const std::string &parentName,
54 void GetVirtualAdminsByPolicy(const std::string &policyName, const std::string &parentName,
57 …ErrCode GetSubSuperAdminsByParentName(const std::string &parentName, std::vector<std::string> &sub…
/ohos5.0/base/customization/enterprise_device_management/services/edm/src/
H A Dadmin_manager.cpp266 ErrCode AdminManager::GetSubSuperAdminsByParentName(const std::string &parentName, std::vector<std:… in GetSubSuperAdminsByParentName() argument
279 admin->GetParentAdminName() == parentName) { in GetSubSuperAdminsByParentName()
386 …minManager::GetPoliciesByVirtualAdmin(const std::string &bundleName, const std::string &parentName, in GetPoliciesByVirtualAdmin() argument
394 …->GetAdminType() != AdminType::VIRTUAL_ADMIN || virtualAdmin->GetParentAdminName() != parentName) { in GetPoliciesByVirtualAdmin()
402 …dminManager::GetVirtualAdminsByPolicy(const std::string &policyName, const std::string &parentName, in GetVirtualAdminsByPolicy() argument
409 …tem->GetAdminType() != AdminType::VIRTUAL_ADMIN || adminItem->GetParentAdminName() != parentName) { in GetVirtualAdminsByPolicy()
/ohos5.0/drivers/hdf_core/framework/test/unittest/platform/virtual/
H A Dregulator_virtual.c198 ret = drsOps->GetString(node, "parentName", &(regNode->regulatorInfo.parentName), "ERROR"); in VirtualRegulatorReadHcs()
203 if (regNode->regulatorInfo.parentName != NULL) { in VirtualRegulatorReadHcs()
204 HDF_LOGD("VirtualRegulatorReadHcs:parentName[%s]", regNode->regulatorInfo.parentName); in VirtualRegulatorReadHcs()
/ohos5.0/base/customization/enterprise_device_management/test/fuzztest/adminmanager_fuzzer/
H A Dadmin_manager_fuzzer.cpp69 std::string parentName(reinterpret_cast<const char*>(data), size); in DoSomethingInterestingWithMyAPI()
82 adminManager->GetSubSuperAdminsByParentName(parentName, subAdmins); in DoSomethingInterestingWithMyAPI()
/ohos5.0/commonlibrary/ets_utils/js_api_module/convertxml/
H A Djs_convertxml.h128 const std::string parentName = "") const;
131 int flag = 0, const std::string parentName = "");
H A Djs_convertxml.cpp183 const std::string parentName) const in SetNodeInfo()
199 if (!parentName.empty()) { in SetNodeInfo()
200 SetKeyValue(env, elementsObject, options_.parent, parentName); in SetNodeInfo()
245 int flag, const std::string parentName) in GetXMLInfo() argument
263 SetNodeInfo(env, pNode, elementsObject, parentName); in GetXMLInfo()
/ohos5.0/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/fuse_manager/
H A Dfuse_manager.cpp422 FuseData *data, string& parentName) in CloudDoLookupHelper() argument
426 string childName = (parent == FUSE_ROOT_ID) ? parentName + name : parentName + "/" + name; in CloudDoLookupHelper()
429 …LOGD("parent: %{private}s, name: %s", GetAnonyString(parentName).c_str(), GetAnonyString(name).c_s… in CloudDoLookupHelper()
432 int err = MetaFile(data->userId, parentName).DoLookup(mBase); in CloudDoLookupHelper()
476 string parentName = CloudPath(data, parent); in CloudDoLookup() local
477 if (parentName == "") { in CloudDoLookup()
483 return CloudDoLookupHelper(parent, name, e, data, parentName); in CloudDoLookup()
/ohos5.0/drivers/hdf_core/framework/support/platform/include/regulator/
H A Dregulator_core.h79 const char *parentName; /* regulator parent name */ member
/ohos5.0/base/global/i18n/frameworks/intl/include/
H A Di18n_timezone.h100 std::string &parentName);
/ohos5.0/docs/zh-cn/device-dev/driver/
H A Ddriver-platform-regulator-develop.md230 const char *parentName; // regulator父节点名称
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/
H A Dnavigation_group_node.h302 bool FindNavigationParent(const std::string& parentName);
H A Dnavigation_group_node.cpp1054 bool NavigationGroupNode::FindNavigationParent(const std::string& parentName) in FindNavigationParent() argument
1058 if (parent->GetTag() == parentName) { in FindNavigationParent()
/ohos5.0/base/global/i18n/frameworks/intl/src/
H A Di18n_timezone.cpp802 std::string &parentName) in GetTimezoneIDFromZoneInfo() argument
814 std::string finalZoneName = parentName + "/" + zoneName; in GetTimezoneIDFromZoneInfo()
/ohos5.0/drivers/hdf_core/adapter/khdf/linux/platform/regulator/
H A Dregulator_adapter.c348 regNode->regulatorInfo.parentName = NULL; in LinuxRegulatorReadHcs()
/ohos5.0/docs/en/device-dev/driver/
H A Ddriver-platform-regulator-develop.md223 const char *parentName; /* Regulator parent node name. */
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dfocus_hub.cpp1967 auto parentName = parent->GetFrameName(); in IsOnRootTree() local
1968 if (parentName == V2::ROOT_ETS_TAG) { in IsOnRootTree()