Lines Matching refs:KeystoreAtom
41 KeystoreAtom::KeystoreAtom, KeystoreAtomPayload::KeystoreAtomPayload,
89 pub fn get_atoms(&self, atom_id: AtomID) -> Result<Vec<KeystoreAtom>> { in get_atoms() argument
103 return Ok(vec![KeystoreAtom { in get_atoms()
114 metrics_store_guard.get(&atom_id).map_or(Ok(Vec::<KeystoreAtom>::new()), |atom_count_map| { in get_atoms()
117 .map(|(atom, count)| KeystoreAtom { payload: atom.clone(), count: *count }) in get_atoms()
527 fn pull_storage_stats() -> Result<Vec<KeystoreAtom>> { in pull_storage_stats()
528 let mut atom_vec: Vec<KeystoreAtom> = Vec::new(); in pull_storage_stats()
531 Ok(s) => atom_vec.push(KeystoreAtom { in pull_storage_stats()
560 fn pull_attestation_pool_stats() -> Result<Vec<KeystoreAtom>> { in pull_attestation_pool_stats()
561 let mut atoms = Vec::<KeystoreAtom>::new(); in pull_attestation_pool_stats()
578 atoms.push(KeystoreAtom { in pull_attestation_pool_stats()