Home
last modified time | relevance | path

Searched refs:UnloadHandler (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/security/asset/services/core_service/src/
H A Dunload_handler.rs23 pub(crate) struct UnloadHandler { struct
30 impl UnloadHandler { implementation
36 pub(crate) fn get_instance() -> Arc<Mutex<UnloadHandler>> { in get_instance()
37 static mut INSTANCE: Option<Arc<Mutex<UnloadHandler>>> = None; in get_instance()
38 … unsafe { INSTANCE.get_or_insert_with(|| Arc::new(Mutex::new(UnloadHandler::new()))).clone() } in get_instance()
H A Dlib.rs49 use crate::unload_handler::{UnloadHandler, DELAYED_UNLOAD_TIME_IN_SEC, SEC_TO_MILLISEC};
54 let unload_handler = UnloadHandler::get_instance(); in unload_sa()