/base/global/resource_management/frameworks/resmgr/include/ |
H A D | hap_parser.h | 121 static RState GetRawFileList(const std::string &hapPath, const std::string &rawDirPath,
|
H A D | hap_manager.h | 251 RState GetRawFileList(const std::string &rawDirPath, std::vector<std::string> &rawfileList);
|
H A D | resource_manager_impl.h | 501 virtual RState GetRawFileList(const std::string &rawDirPath, std::vector<std::string>& rawfileList);
|
/base/global/resource_management/interfaces/js/innerkits/core/include/ |
H A D | resource_manager_napi_async_impl.h | 98 static napi_value GetRawFileList(napi_env env, napi_callback_info info);
|
H A D | resource_manager_addon.h | 151 static napi_value GetRawFileList(napi_env env, napi_callback_info info);
|
/base/global/resource_management/interfaces/cj/src/ |
H A D | resource_manager_interface.h | 38 virtual int32_t GetRawFileList(const std::string &rawDirPath, std::vector<std::string>& rawfileList) = 0;
|
H A D | resource_manager_impl.h | 47 int32_t GetRawFileList(const std::string &rawDirPath, std::vector<std::string>& rawfileList) override;
|
H A D | resource_manager_impl.cpp | 95 int32_t ResourceManagerImpl::GetRawFileList(const std::string &rawDirPath, std::vector<std::string>& rawfileList) in GetRawFileList() function in OHOS::Resource::ResourceManagerImpl 97 RState state = resMgr_->GetRawFileList(rawDirPath, rawfileList); in GetRawFileList() 99 LOGE("ResourceManagerImpl::GetRawFileList failed %{public}" PRIu32, state); in GetRawFileList() 101 LOGI("ResourceManagerImpl::GetRawFileList success, list size %{public}" PRIu64, in GetRawFileList()
|
H A D | resource_manager_ffi.cpp | 145 ret.code = instance->GetRawFileList(path, value); in CJ_GetRawFileList()
|
/base/global/resource_management/interfaces/js/innerkits/core/src/ |
H A D | resource_manager_addon.cpp | 155 DECLARE_NAPI_FUNCTION("getRawFileList", GetRawFileList), 356 napi_value ResourceManagerAddon::GetRawFileList(napi_env env, napi_callback_info info) in GetRawFileList() function in OHOS::Global::Resource::ResourceManagerAddon 358 return AddonGetResource(env, info, "GetRawFileList", FunctionType::ASYNC); in GetRawFileList()
|
H A D | resource_manager_napi_async_impl.cpp | 85 {"GetRawFileList", [](napi_env& env, napi_callback_info& info) -> napi_value { 86 return ResourceManagerNapiAsyncImpl::GetRawFileList(env, info);}}, 796 RState state = dataContext->addon_->GetResMgr()->GetRawFileList(dataContext->path_, dataContext->arrayValue_); 798 dataContext->SetErrorMsg("GetRawFileList failed state", false, state); 804 napi_value ResourceManagerNapiAsyncImpl::GetRawFileList(napi_env env, napi_callback_info info) in GetRawFileList() function in OHOS::Global::Resource::ResourceManagerNapiAsyncImpl
|
H A D | resource_manager_napi_sync_impl.cpp | 150 RState state = dataContext->addon_->GetResMgr()->GetRawFileList(dataContext->path_.c_str(), in GetRawFileListSync()
|
/base/global/resource_management/interfaces/inner_api/include/ |
H A D | resource_manager.h | 171 virtual RState GetRawFileList(const std::string &rawDirPath, std::vector<std::string> &rawfileList) = 0;
|
/base/global/resource_management/frameworks/resmgr/src/ |
H A D | hap_manager.cpp | 859 RState HapManager::GetRawFileList(const std::string &rawDirPath, std::vector<std::string> &fileList) in GetRawFileList() function in OHOS::Global::Resource::HapManager 876 RState hapState = HapParser::GetRawFileList(hapOrIndexPath, rawDirPath, fileSet); in GetRawFileList() 877 RState hqfState = HapParser::GetRawFileList(temPatchPath, rawDirPath, fileSet); in GetRawFileList()
|
H A D | raw_file_manager.cpp | 131 RState state = mgr->resManager->GetRawFileList(dirName, result->fileNameCache.names);
in LoadRawDirFromHap()
|
H A D | resource_manager_impl.cpp | 1372 RState ResourceManagerImpl::GetRawFileList(const std::string &rawDirPath, std::vector<std::string>& rawfileList) in GetRawFileList() function in OHOS::Global::Resource::ResourceManagerImpl 1374 return hapManager_->GetRawFileList(rawDirPath, rawfileList); in GetRawFileList()
|
/base/global/resource_management/test/fuzztest/resmgr_fuzzer/ |
H A D | resmgr_fuzzer.cpp | 446 result = rm->GetRawFileList(testName.c_str(), outValue); in GetRawFileListFuzzTest()
|
/base/global/resource_management/frameworks/resmgr/test/unittest/common/ |
H A D | resource_manager_test.cpp | 2026 RState state = rm->GetRawFileList("", rawfileList); in HWTEST_F() 2040 RState state = rm->GetRawFileList("no_exist_dir", rawfileList); in HWTEST_F()
|
/base/global/resource_management/frameworks/resmgr/src/utils/ |
H A D | hap_parser.cpp | 373 RState HapParser::GetRawFileList(const std::string &hapPath, const std::string &rawDirPath, in GetRawFileList() function in OHOS::Global::Resource::HapParser 382 "failed to get extractor from ability in GetRawFileList hapPath, %{public}s", hapPath.c_str()); in GetRawFileList()
|