Home
last modified time | relevance | path

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

/system/security/keystore2/src/
Dkeystore2_main.rs30 static KS2_SERVICE_NAME: &str = "android.system.keystore2.IKeystoreService/default"; constant
101 panic!("Failed to create service {} because of {:?}.", KS2_SERVICE_NAME, e); in main()
103 binder::add_service(KS2_SERVICE_NAME, ks_service.as_binder()).unwrap_or_else(|e| { in main()
104 panic!("Failed to register service {} because of {:?}.", KS2_SERVICE_NAME, e); in main()
/system/security/keystore2/test_utils/
Dlib.rs28 static KS2_SERVICE_NAME: &str = "android.system.keystore2.IKeystoreService/default"; constant
116 binder::get_interface(KS2_SERVICE_NAME).unwrap() in get_keystore_service()