Lines Matching refs:perboot
44 mod perboot; module
739 perboot: Arc<perboot::PerbootDB>, field
848 let mut db = Self { conn, gc, perboot: perboot::PERBOOT_DB.clone() }; in new()
1108 size: (self.perboot.auth_tokens_len() * std::mem::size_of::<AuthTokenEntry>()) in get_storage_stat()
3158 self.perboot.insert_auth_token_entry(AuthTokenEntry::new( in insert_auth_token()
3169 self.perboot.find_auth_token_entry(p).map(|entry| (entry, self.get_last_off_body())) in find_auth_token_entry()
3174 self.perboot.set_last_off_body(last_off_body) in insert_last_off_body()
3179 self.perboot.set_last_off_body(last_off_body) in update_last_off_body()
3184 self.perboot.get_last_off_body() in get_last_off_body()
3246 let mut db = KeystoreDB { conn, gc: None, perboot: Arc::new(perboot::PerbootDB::new()) }; in new_test_db()
3389 db.perboot.get_all_auth_token_entries() in get_auth_tokens()
5721 assert_eq!(db.perboot.auth_tokens_len(), 3); in find_auth_token_entry_returns_latest()