Home
last modified time | relevance | path

Searched defs:WatchPoint (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/system/security/keystore2/src/
H A Dwatchdog_helper.rs34 pub fn watch_millis(id: &'static str, millis: u64) -> Option<WatchPoint> { in watch_millis()
39 pub fn watch(id: &'static str) -> Option<WatchPoint> { in watch()
49 ) -> Option<WatchPoint> { in watch_millis_with()
58 pub struct WatchPoint(); struct
60 fn watch_millis(_: &'static str, _: u64) -> Option<WatchPoint> { in watch_millis()
64 fn watch(_: &'static str) -> Option<WatchPoint> { in watch()
72 ) -> Option<WatchPoint> { in watch_millis_with()
H A Dsecurity_level.rs113 fn watch_millis(&self, id: &'static str, millis: u64) -> Option<wd::WatchPoint> { in watch_millis()
118 fn watch(&self, id: &'static str) -> Option<wd::WatchPoint> { in watch()
/aosp_15_r20/system/security/keystore2/watchdog/src/
H A Dlib.rs37 pub struct WatchPoint { struct
40 not_send: PhantomData<*mut ()>, // WatchPoint must not be Send. argument
43 impl Drop for WatchPoint { implementation
261 ) -> Option<WatchPoint> { in watch_with_optional()
279 ) -> Option<WatchPoint> { in watch_with()
284 pub fn watch(wd: &Arc<Self>, id: &'static str, timeout: Duration) -> Option<WatchPoint> { in watch()