Home
last modified time | relevance | path

Searched refs:GetFileList (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/ability/ability_base/test/unittest/extractor/
H A Dextractor_test.cpp221 extractor->GetFileList("b", fileList);
226 extractor->GetFileList("a/", fileList);
232 extractor->GetFileList("/", fileList);
238 extractor->GetFileList("b", fileList);
243 extractor->GetFileList("a/", fileList);
250 extractor->GetFileList("/", fileList);
278 extractor->GetFileList("b", fileList);
284 extractor->GetFileList("/", fileList);
293 extractor->GetFileList("a/", fileList);
301 extractor->GetFileList("b", fileList);
[all …]
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/extractortool/include/
H A Dextractor.h73 bool GetFileList(const std::string& srcPath, std::vector<std::string>& assetList);
74 bool GetFileList(const std::string &srcPath, std::set<std::string> &fileSet);
/ohos5.0/docs/zh-cn/application-dev/napi/
H A Drawfile-guidelines.md61 …,这里定义对外接口为getFileList、getRawFileContent、getRawFileDescriptor,映射C++接口分别为GetFileList、GetRawFileConte…
68 … { "getFileList", nullptr, GetFileList, nullptr, nullptr, nullptr, napi_default, nullptr },
83 static napi_value GetFileList(napi_env env, napi_callback_info info)
96 // 示例一:获取rawfile文件列表 GetFileList
97 static napi_value GetFileList(napi_env env, napi_callback_info info)
/ohos5.0/commonlibrary/utils_lite/js/builtin/filekit/include/
H A Dnativeapi_fs.h32 static JSIValue GetFileList(const JSIValue thisVal, const JSIValue* args, uint8_t argsNum);
/ohos5.0/foundation/filemanagement/dfs_service/services/distributedfiledaemon/include/ipc/
H A Ddaemon_execute.h49 std::vector<std::string> GetFileList(const std::vector<std::string> &uris,
/ohos5.0/docs/en/application-dev/napi/
H A Drawfile-guidelines.md62 …getRawFileContent**, and **getRawFileDescriptor** to C++ native APIs **GetFileList**, **GetRawFile…
69 … { "getFileList", nullptr, GetFileList, nullptr, nullptr, nullptr, napi_default, nullptr },
84 static napi_value GetFileList(napi_env env, napi_callback_info info)
97 // Example 1: Use GetFileList to obtain the raw file list.
98 static napi_value GetFileList(napi_env env, napi_callback_info info)
/ohos5.0/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/ipc/
H A Ddaemon_execute.cpp97 auto fileList = GetFileList(assetObj->uris_, userId, assetObj->srcBundleName_); in ExecutePushAsset()
239 std::vector<std::string> DaemonExecute::GetFileList(const std::vector<std::string> &uris, in GetFileList() function in OHOS::Storage::DistributedFile::DaemonExecute
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/
H A Dextractor.cpp72 bool Extractor::GetFileList(const std::string& srcPath, std::vector<std::string>& assetList) in GetFileList() function in OHOS::AbilityBase::Extractor
241 bool Extractor::GetFileList(const std::string &srcPath, std::set<std::string> &fileSet) in GetFileList() function in OHOS::AbilityBase::Extractor
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/plugin/
H A Dhap_asset_provider.cpp91 res = runtimeExtractor_->GetFileList(assetPath, assetList); in GetAssetList()
H A Dhap_asset_provider_impl.cpp92 res = runtimeExtractor_->GetFileList(assetPath, assetList); in GetAssetList()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/crypto/
H A Dkey_backup.h76 int32_t GetFileList(const std::string &origDir, const std::string &backDir,
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/entrance/
H A Dhap_asset_provider_impl.cpp140 res = runtimeExtractor_->GetFileList(assetPath, assetList); in GetAssetList()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/src/
H A Dkey_backup.cpp213 int32_t ret = GetFileList(origKeyDir, backupKeyDir, fileList, diffNum); in DoResotreKeyMix()
250 int32_t KeyBackup::GetFileList(const std::string &origDir, const std::string &backDir, in GetFileList() function in OHOS::StorageDaemon::KeyBackup
/ohos5.0/commonlibrary/utils_lite/js/builtin/filekit/src/
H A Dnativeapi_fs.cpp518 JSI::SetModuleAPI(exports, "list", NativeapiFs::GetFileList); in InitNativeApiFs()
547 JSIValue NativeapiFs::GetFileList(const JSIValue thisVal, const JSIValue* args, uint8_t argsNum) in GetFileList() function in OHOS::ACELite::NativeapiFs
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/runtime/
H A Djs_worker.cpp483 res = extractor->GetFileList(assetPath, files); in GetAmi()
/ohos5.0/base/global/resource_management/frameworks/resmgr/src/utils/
H A Dhap_parser.cpp369 bool ret = extractor->GetFileList(rawfilePath, fileSet); in GetRawFileList()
/ohos5.0/docs/zh-cn/application-dev/
H A DSamples.md1899 …代码中定义对外接口为getFileList、getRawFileContent、getRawFileDescriptor,映射C++接口分别为GetFileList、GetRawFileConte…