Lines Matching refs:prop_info
19 use keystore2_system_property_bindgen::prop_info as PropInfo;
65 prop_info: *const PropInfo, field
72 Ok(Self { prop_name: CString::new(name)?, prop_info: null(), serial: 0 }) in new()
77 if self.prop_info.is_null() { in get_prop_info()
80 self.prop_info = unsafe { in get_prop_info()
84 if self.prop_info.is_null() { in get_prop_info()
87 Some(self.prop_info) in get_prop_info()
91 fn read_raw(prop_info: *const PropInfo, mut f: impl FnOnce(Option<&CStr>, Option<&CStr>)) { in read_raw()
113 prop_info, in read_raw()
128 let prop_info = self.get_prop_info().ok_or(PropertyWatcherError::SystemPropertyAbsent)?; in read() localVariable
130 Self::read_raw(prop_info, |name, value| { in read()
174 if self.prop_info.is_null() { in wait()
184 self.prop_info, in wait()