Home
last modified time | relevance | path

Searched refs:profileStream (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dbundle_extractor.cpp27 …t BundleExtractor::ExtractHapProfile(const std::string &hapFile, std::ostringstream &profileStream) in ExtractHapProfile() argument
35 if (!extractorUtil.ExtractFileByName(PROFILE_NAME, profileStream)) { in ExtractHapProfile()
H A Dbundle_parser.cpp190 std::ostringstream profileStream; in ParseBundleParam() local
191 if (BundleExtractor::ExtractHapProfile(path, profileStream) != ERR_OK) { in ParseBundleParam()
194 cJSON *root = cJSON_Parse(profileStream.str().c_str()); in ParseBundleParam()
281 std::ostringstream profileStream; in ParseHapProfile() local
282 uint8_t errorCode = BundleExtractor::ExtractHapProfile(path, profileStream); in ParseHapProfile()
285 cJSON *root = cJSON_Parse(profileStream.str().c_str()); in ParseHapProfile()
/ohos5.0/foundation/resourceschedule/memmgr/common/src/
H A Dxml_helper.cpp38 std::ifstream profileStream(path); in CheckPathExist() local
39 return profileStream.good(); in CheckPathExist()
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/include/
H A Dbundle_extractor.h25 static uint8_t ExtractHapProfile(const std::string &hapFile, std::ostringstream &profileStream);
/ohos5.0/foundation/systemabilitymgr/samgr/services/common/src/
H A Dparse_util.cpp602 std::ifstream profileStream(profilePath.c_str()); in CheckPathExist() local
603 return profileStream.good(); in CheckPathExist()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dmodule_profile.cpp2025 std::stringstream profileStream; in ToInnerProfileConfiguration() local
2026 if (!bundleExtractor.ExtractByName(profilePath, profileStream)) { in ToInnerProfileConfiguration()
2030 result = profileStream.str(); in ToInnerProfileConfiguration()
H A Dbundle_data_mgr.cpp7191 std::stringstream profileStream; in GetJsonProfileByExtractor() local
7192 if (!bundleExtractor.ExtractByName(profilePath, profileStream)) { in GetJsonProfileByExtractor()
7196 profile = profileStream.str(); in GetJsonProfileByExtractor()