Home
last modified time | relevance | path

Searched refs:Load (Results 1 - 25 of 168) sorted by relevance

1234567

/foundation/arkui/ace_engine_lite/frameworks/src/core/context/
H A Djs_app_environment.cpp55 ConsoleModule::Load(); in LoadAceBuiltInModules()
56 RenderModule::Load(); in LoadAceBuiltInModules()
57 RequireModule::Load(); in LoadAceBuiltInModules()
58 FeaAbilityModule::Load(); in LoadAceBuiltInModules()
59 JsTestModule::Load(); in LoadAceBuiltInModules()
60 TimersModule::Load(); in LoadAceBuiltInModules()
62 SyscapsModule::Load(); in LoadAceBuiltInModules()
64 PerformaceProfilerModule::Load(); in LoadAceBuiltInModules()
65 AceVersionModule::Load(); in LoadAceBuiltInModules()
66 IntlControlModule::Load(); in LoadAceBuiltInModules()
[all...]
/foundation/multimedia/player_framework/test/fuzztest/soundpool_fuzztest/soundpoolloadunload_fuzzer/
H A Dsoundpoolloadunload_fuzzer.cpp61 TestSoundPool::Load(url); in FuzzSoundPoolLoad()
68 TestSoundPool::Load(fd, 0, filesize); in FuzzSoundPoolLoad()
77 TestSoundPool::Load(url); in FuzzSoundPoolLoad()
79 TestSoundPool::Load(fd, 0, filesize); in FuzzSoundPoolLoad()
107 urlSoundid = TestSoundPool::Load(url); in FuzzSoundPoolUnload()
114 fdSoundid = TestSoundPool::Load(fd, 0, filesize); in FuzzSoundPoolUnload()
/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/test/unittest/
H A Degl_wrapper_loader_test.cpp55 EglWrapperLoader::GetInstance().Load(&dispatchTable); in HWTEST_F()
72 auto result = EglWrapperLoader::GetInstance().Load(&dispatchTable); in HWTEST_F()
83 auto result = EglWrapperLoader::GetInstance().Load(nullptr); in HWTEST_F()
96 auto result = EglWrapperLoader::GetInstance().Load(&dispatchTable); in HWTEST_F()
98 result = EglWrapperLoader::GetInstance().Load(&dispatchTable); in HWTEST_F()
110 EglWrapperLoader::GetInstance().Load(&dispatchTable); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/render_context/
H A Dshader_cache_test.cpp68 EXPECT_EQ(nullptr, cache.Load(*fakeData)); in HWTEST_F()
97 EXPECT_EQ(nullptr, cache.Load(*fakeData)); in HWTEST_F()
131 EXPECT_EQ(nullptr, cache.Load(*fakeData)); in HWTEST_F()
164 EXPECT_EQ(nullptr, cache.Load(*fakeKey)); in HWTEST_F()
197 EXPECT_EQ(nullptr, cache.Load(*fakeKey)); in HWTEST_F()
233 EXPECT_EQ(fakeData->GetSize(), cache.Load(*fakeKey)->GetSize()); in HWTEST_F()
270 EXPECT_EQ(fakeData->GetSize(), cache.Load(*fakeKey)->GetSize()); in HWTEST_F()
285 EXPECT_EQ(nullptr, cache.Load(*fakeData)); in HWTEST_F()
337 EXPECT_EQ(nullptr, cache.Load(*fakeKey)); in HWTEST_F()
340 cache.Load(*fakeKe in HWTEST_F()
[all...]
/foundation/graphic/graphic_3d/lume/LumeRender/src/loader/
H A Dvertex_input_declaration_loader.cpp92 VertexInputDeclarationLoader::LoadResult Load( in Load() function
132 VertexInputDeclarationLoader::LoadResult VertexInputDeclarationLoader::Load(const string_view jsonString) in Load() function in VertexInputDeclarationLoader
137 result = RENDER_NS::Load(json, uri_, vertexInputDeclarationData_); in Load()
146 VertexInputDeclarationLoader::LoadResult VertexInputDeclarationLoader::Load( in Load() function in VertexInputDeclarationLoader
168 return Load(string_view(raw)); in Load()
H A Dvertex_input_declaration_loader.h60 LoadResult Load(BASE_NS::string_view jsonString);
67 LoadResult Load(CORE_NS::IFileManager& fileManager, BASE_NS::string_view uri);
H A Dpipeline_layout_loader.h60 LoadResult Load(BASE_NS::string_view jsonString);
67 LoadResult Load(CORE_NS::IFileManager& fileManager, BASE_NS::string_view uri);
H A Dpipeline_layout_loader.cpp76 PipelineLayoutLoader::LoadResult Load(const json::value& jsonData, const string_view uri, PipelineLayout& pl) in Load() function
153 PipelineLayoutLoader::LoadResult PipelineLayoutLoader::Load(const string_view jsonString) in Load() function in PipelineLayoutLoader
156 return RENDER_NS::Load(jsonData, uri_, pipelineLayout_); in Load()
161 PipelineLayoutLoader::LoadResult PipelineLayoutLoader::Load(IFileManager& fileManager, const string_view uri) in Load() function in PipelineLayoutLoader
181 return Load(string_view(raw)); in Load()
H A Dshader_data_loader.h95 LoadResult Load(CORE_NS::IFileManager& fileManager, BASE_NS::string_view uri);
98 LoadResult Load(BASE_NS::string&& jsonData);
/foundation/multimedia/player_framework/test/unittest/soundpool_test/src/
H A Dsoundpool_mock.cpp46 int32_t SoundPoolMock::Load(std::string url) in Load() function in SoundPoolMock
49 return soundPool_->Load(url); in Load()
52 int32_t SoundPoolMock::Load(int32_t fd, int64_t offset, int64_t length) in Load() function in SoundPoolMock
55 return soundPool_->Load(fd, offset, length); in Load()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/common/
H A Dadapter_config.cpp43 bool AdapterConfig::Load() in Load() function in OHOS::bluetooth::AdapterConfig
45 if (pimpl->parse_.Load(pimpl->filePath_)) { in Load()
51 return pimpl->parse_.Load(pimpl->filePath_); in Load()
H A Dadapter_device_info.cpp49 bool AdapterDeviceInfo::Load() in Load() function in OHOS::bluetooth::AdapterDeviceInfo
52 if (pimpl->parse_.Load(pimpl->filePath_)) { in Load()
58 return pimpl->parse_.Load(pimpl->filePath_); in Load()
H A Dadapter_device_info.h57 * @brief Load XML Document from specified path.
58 * @return true Success Load XML Document.
59 * @return false Failed Load XML Document.
61 virtual bool Load() = 0;
110 * @brief Load XML Document from specified path.
111 * @return true Success Load XML Document.
112 * @return false Failed Load XML Document.
114 virtual bool Load() override;
H A Dprofile_config.cpp43 bool ProfileConfig::Load() in Load() function in OHOS::bluetooth::ProfileConfig
46 if (pimpl->parse_.Load(pimpl->filePath_)) { in Load()
52 return pimpl->parse_.Load(pimpl->filePath_); in Load()
/foundation/bundlemanager/app_domain_verify/frameworks/common/src/config/
H A Dwhite_list_config_mgr.cpp31 Load(); in WhiteListConfigMgr()
41 APP_DOMAIN_VERIFY_HILOGE(APP_DOMAIN_VERIFY_MODULE_COMMON, "WhiteListConfigMgr::Load failed."); in LoadDefault()
48 APP_DOMAIN_VERIFY_HILOGW(APP_DOMAIN_VERIFY_MODULE_COMMON, "WhiteListConfigMgr::Load defaultWhiteUrl empty."); in LoadDefault()
56 APP_DOMAIN_VERIFY_HILOGE(APP_DOMAIN_VERIFY_MODULE_COMMON, "WhiteListConfigMgr::Load failed."); in LoadDynamic()
63 void WhiteListConfigMgr::Load() in Load() function in OHOS::AppDomainVerify::WhiteListConfigMgr
133 Load(); in IsInWhiteList()
150 Load(); in UpdateWhiteList()
/foundation/multimedia/player_framework/frameworks/native/soundpool/
H A Dsound_id_manager.h33 int32_t Load(std::string url);
35 int32_t Load(int32_t fd, int64_t offset, int64_t length);
H A Dsoundpool.h35 int32_t Load(const std::string url) override;
37 int32_t Load(int32_t fd, int64_t offset, int64_t length) override;
/foundation/multimedia/player_framework/interfaces/inner_api/native/soundpool/include/
H A Disoundpool.h42 * @brief Load the sound from the specified path.
49 virtual int32_t Load(std::string url) = 0;
52 * @brief Load the sound from a FileDescriptor..
61 virtual int32_t Load(int32_t fd, int64_t offset, int64_t length) = 0;
/foundation/resourceschedule/ffrt/src/util/
H A Dcpu_boost_ohos.h32 Load(); in CPUBoostAdapter()
54 bool Load() in Load() function in ffrt::CPUBoostAdapter
/foundation/graphic/graphic_3d/lume/LumeEngine/src/image/loaders/
H A Dimage_loader_libjpeg.cpp179 static ImageLoaderManager::LoadResult Load(array_view<const uint8_t> imageFileBytes, uint32_t loadFlags) in Load() function in __anon9613::final
181 CORE_LOG_D("ImageLoaderManager Load jpeg start"); in Load()
197 // Load the image info without decoding the image data in Load()
246 ImageLoaderManager::LoadResult Load(IFile &file, uint32_t loadFlags) const override
261 return LibJPEGImage::Load(array_view<const uint8_t>(buffer.get(), static_cast<size_t>(byteLength)), loadFlags);
264 ImageLoaderManager::LoadResult Load(array_view<const uint8_t> imageFileBytes, uint32_t loadFlags) const override
272 return LibJPEGImage::Load(imageFileBytes, loadFlags);
H A Dimage_loader_libpng.cpp147 static ImageLoaderManager::LoadResult Load(array_view<const uint8_t> imageFileBytes, uint32_t loadFlags) in Load() function in __anon9614::final
149 CORE_LOG_D("ImageLoaderManager Load png start"); in Load()
173 // Load the image info without decoding the image data in Load()
221 ImageLoaderManager::LoadResult Load(IFile &file, uint32_t loadFlags) const override
236 return LibPNGImage::Load(array_view<const uint8_t>(buffer.get(), static_cast<size_t>(byteLength)), loadFlags);
239 ImageLoaderManager::LoadResult Load(array_view<const uint8_t> imageFileBytes, uint32_t loadFlags) const override
247 return LibPNGImage::Load(imageFileBytes, loadFlags);
/foundation/arkui/ace_engine/adapter/preview/osal/
H A Dstylus_detector_loader.cpp19 std::shared_ptr<StylusDetectorLoader> StylusDetectorLoader::Load() in Load() function in OHOS::Ace::StylusDetectorLoader
/foundation/arkui/ace_engine/test/mock/core/common/
H A Dmock_stylus_detector_loader.cpp19 std::shared_ptr<StylusDetectorLoader> StylusDetectorLoader::Load() in Load() function in OHOS::Ace::StylusDetectorLoader
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/
H A Drequire_module.h42 static void Load() in Load() function in OHOS::ACELite::final
H A Dapp_data_module.h44 static void Load() in Load() function in OHOS::ACELite::final

Completed in 8 milliseconds

1234567