Home
last modified time | relevance | path

Searched refs:initFunc_ (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/drivers/interface/display/composer/cache_manager/
H A Dcache_manager.h42 initFunc_ { nullptr }
93 if (initFunc_) { in InsertCache()
94 initFunc_(caches_[id]); in InsertCache()
141 initFunc_ = func; in SetInitFunc()
148 void (*initFunc_)(std::unique_ptr<CacheType>&); variable
/ohos5.0/foundation/graphic/graphic_surface/sync_fence/src/
H A Dframe_sched.cpp96 if (initFunc_ == nullptr) { in Init()
97 initFunc_ = (InitFunc)LoadSymbol("Init"); in Init()
99 if (initFunc_ != nullptr) { in Init()
100 initFunc_(); in Init()
/ohos5.0/foundation/graphic/graphic_surface/utils/rs_frame_report_ext/src/
H A Drs_frame_report_ext.cpp51 initFunc_ = (InitFunc)LoadSymbol("Init"); in Init()
52 if (initFunc_ != nullptr) { in Init()
53 initFunc_(); in Init()
/ohos5.0/foundation/graphic/graphic_2d/utils/rs_frame_report_ext/src/
H A Drs_frame_report_ext.cpp55 initFunc_ = reinterpret_cast<InitFunc>(LoadSymbol("Init")); in Init()
56 if (initFunc_ != nullptr) { in Init()
57 initFunc_(); in Init()
/ohos5.0/drivers/peripheral/display/hal/default_standard/src/utils/
H A Ddisplay_adapter.cpp46 initFunc_ = reinterpret_cast<AdapterInitFunc>(loader_->GetSymbol(INIT_FUNCTION_NAME)); in Init()
47 if (initFunc_ == nullptr) { in Init()
56 int ret = initFunc_(&funcs_); in Init()
H A Ddisplay_adapter.h49 AdapterInitFunc initFunc_ = nullptr; variable
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/frame_report/src/
H A Drs_frame_report.cpp58 initFunc_ = (InitFunc)LoadSymbol("Init"); in Init()
59 if (initFunc_ != nullptr) { in Init()
60 initFunc_(); in Init()
/ohos5.0/foundation/multimedia/image_effect/frameworks/native/effect/base/
H A Dexternal_loader.cpp46 initFunc_ = reinterpret_cast<InitModuleFunc>(dlsym(effectExtHandle, "Init")); in LoadExtSo()
65 return initFunc_; in GetInitFunc()
H A Dexternal_loader.h57 InitFunc initFunc_ = nullptr; variable
/ohos5.0/foundation/graphic/graphic_surface/utils/rs_frame_report_ext/include/
H A Drs_frame_report_ext.h43 InitFunc initFunc_ = nullptr; variable
/ohos5.0/foundation/graphic/graphic_surface/sync_fence/include/
H A Dframe_sched.h49 InitFunc initFunc_ = nullptr; variable
/ohos5.0/foundation/graphic/graphic_2d/utils/rs_frame_report_ext/include/
H A Drs_frame_report_ext.h48 InitFunc initFunc_ = nullptr; variable
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/frame_report/include/
H A Drs_frame_report.h58 InitFunc initFunc_ = nullptr; variable
/ohos5.0/foundation/graphic/graphic_surface/sync_fence/test/unittest/
H A Dframe_sched_test.cpp163 frameSched->initFunc_ = nullptr;