Home
last modified time | relevance | path

Searched refs:getAvbPublicKey (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/base/core/java/android/os/image/
H A DDynamicSystemManager.java98 public boolean getAvbPublicKey(AvbPublicKey dst) { in getAvbPublicKey() method in DynamicSystemManager.Session
100 return mService.getAvbPublicKey(dst); in getAvbPublicKey()
H A DIDynamicSystemService.aidl127 boolean getAvbPublicKey(out AvbPublicKey dst); in getAvbPublicKey() method
/aosp12/frameworks/base/services/core/java/com/android/server/
H A DDynamicSystemService.java241 public boolean getAvbPublicKey(AvbPublicKey dst) { in getAvbPublicKey() method in DynamicSystemService
243 return getGsiService().getAvbPublicKey(dst) == 0; in getAvbPublicKey()
/aosp12/system/gsid/aidl/android/gsi/
H A DIImageService.aidl105 int getAvbPublicKey(@utf8InCpp String name, out AvbPublicKey dst); in getAvbPublicKey() method
H A DIGsiService.aidl233 int getAvbPublicKey(out AvbPublicKey dst); in getAvbPublicKey() method
/aosp12/system/gsid/
H A Dgsi_service.h70 binder::Status getAvbPublicKey(AvbPublicKey* dst, int32_t* _aidl_return) override;
H A Dgsi_service.cpp489 binder::Status GsiService::getAvbPublicKey(AvbPublicKey* dst, int32_t* _aidl_return) { in getAvbPublicKey() function in android::gsi::GsiService
575 binder::Status getAvbPublicKey(const std::string& name, AvbPublicKey* dst,
676 binder::Status ImageService::getAvbPublicKey(const std::string& name, AvbPublicKey* dst, in getAvbPublicKey() function in android::gsi::ImageService
H A Dgsi_tool.cpp586 status = image_service->getAvbPublicKey(image, &public_key, &err); in Status()
/aosp12/frameworks/base/packages/DynamicSystemInstallationService/src/com/android/dynsystem/
H A DInstallationAsyncTask.java526 if (!mInstallationSession.getAvbPublicKey(avbPublicKey)) { in installImage()