Home
last modified time | relevance | path

Searched refs:dataGroupInfoList (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/ability/ability_runtime/services/appmgr/src/
H A Dapp_spawn_msg_wrapper.cpp57 static std::string DumpToJson(const DataGroupInfoList &dataGroupInfoList) in DumpToJson() argument
60 for (auto& dataGroupInfo : dataGroupInfoList) { in DumpToJson()
100 msg_->gidCount = startMsg.gids.size() + startMsg.dataGroupInfoList.size(); in AssembleMsg()
113 msg_->gidTable[i] = startMsg.dataGroupInfoList[i - startMsg.gids.size()].gid; in AssembleMsg()
161 if (!startMsg.dataGroupInfoList.empty()) { in BuildExtraInfo()
162 extraInfoStr_ += DATA_GROUP_SOCKET_TYPE + DumpToJson(startMsg.dataGroupInfoList) + in BuildExtraInfo()
H A Dapp_spawn_client.cpp126 static std::string DumpDataGroupInfoListToJson(const DataGroupInfoList &dataGroupInfoList) in DumpDataGroupInfoListToJson() argument
129 for (auto& dataGroupInfo : dataGroupInfoList) { in DumpDataGroupInfoListToJson()
174 appDacInfo.gidCount = startMsg.gids.size() + startMsg.dataGroupInfoList.size(); in SetDacInfo()
179 appDacInfo.gidTable[i] = startMsg.dataGroupInfoList[i - startMsg.gids.size()].gid; in SetDacInfo()
274 if (!startMsg.dataGroupInfoList.empty()) { in AppspawnSetExtMsg()
276 DumpDataGroupInfoListToJson(startMsg.dataGroupInfoList).c_str()); in AppspawnSetExtMsg()
H A Dapp_mgr_service_inner.cpp3302 DataGroupInfoList dataGroupInfoList; in CreateStartMsg() local
3303 bool result = bundleMgrHelper->QueryDataGroupInfos(bundleInfo.name, userId, dataGroupInfoList); in CreateStartMsg()
3304 if (!result || dataGroupInfoList.empty()) { in CreateStartMsg()
3307 …QueryExtensionSandBox(moduleName, abilityName, bundleInfo, startMsg, dataGroupInfoList, strictMode… in CreateStartMsg()
3338 …const BundleInfo &bundleInfo, AppSpawnStartMsg &startMsg, DataGroupInfoList &dataGroupInfoList, bo… in QueryExtensionSandBox() argument
3365 for (auto dataGroupInfo : dataGroupInfoList) { in QueryExtensionSandBox()
3374 startMsg.dataGroupInfoList = extensionDataGroupInfoList; in QueryExtensionSandBox()
3376 startMsg.dataGroupInfoList = dataGroupInfoList; in QueryExtensionSandBox()
/ohos5.0/foundation/ability/ability_runtime/test/unittest/app_mgr_service_inner_tdd_test/
H A Dapp_mgr_service_inner_tdd_test.cpp643 DataGroupInfoList dataGroupInfoList; variable
646 dataGroupInfoList.emplace_back(dataGroupInfo);
648 …iceInner->QueryExtensionSandBox(moduleName, extensionName, bundleInfo, startMsg, dataGroupInfoList,
650 EXPECT_EQ(startMsg.dataGroupInfoList.size(), 1);
677 DataGroupInfoList dataGroupInfoList; variable
680 dataGroupInfoList.emplace_back(dataGroupInfo);
684 EXPECT_EQ(startMsg.dataGroupInfoList.size(), 0);
708 DataGroupInfoList dataGroupInfoList; variable
712 EXPECT_EQ(startMsg.dataGroupInfoList.size(), 0);
736 DataGroupInfoList dataGroupInfoList; variable
[all …]
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/include/
H A Dapp_spawn_client.h65 DataGroupInfoList dataGroupInfoList; // list of harmony shared package member
H A Dapp_mgr_service_inner.h1574 … const BundleInfo &bundleInfo, AppSpawnStartMsg &startMsg, DataGroupInfoList& dataGroupInfoList,