HomeSort by relevance Sort by last modified time
    Searched refs:SoftKeymasterDevice (Results 1 - 4 of 4) sorted by null

  /system/keymaster/
soft_keymaster_device.cpp 33 #define LOG_TAG "SoftKeymasterDevice"
61 SoftKeymasterDevice::SoftKeymasterDevice(keymaster0_device_t* keymaster0_device)
67 SoftKeymasterDevice::SoftKeymasterDevice(KeymasterContext* context)
72 void SoftKeymasterDevice::initialize(keymaster0_device_t* keymaster0_device) {
73 static_assert(std::is_standard_layout<SoftKeymasterDevice>::value,
74 "SoftKeymasterDevice must be standard layout");
75 static_assert(offsetof(SoftKeymasterDevice, device_) == 0,
76 "device_ must be the first member of SoftKeymasterDevice");
    [all...]
android_keymaster_test.cpp 83 SoftKeymasterDevice* device = new SoftKeymasterDevice(new TestKeymasterContext);
113 SoftKeymasterDevice* keymaster =
114 new SoftKeymasterDevice(new TestKeymasterContext(counting_keymaster0_device_));
    [all...]
  /system/keymaster/include/keymaster/
soft_keymaster_device.h 46 class SoftKeymasterDevice {
49 * Create a SoftKeymasterDevice wrapping the specified HW keymaster0 device, which may be NULL.
53 SoftKeymasterDevice(keymaster0_device_t* keymaster0_device = nullptr);
56 * Create a SoftKeymasterDevice that uses the specified KeymasterContext.
58 * TODO(swillden): Refactor SoftKeymasterDevice construction to make all components injectable.
60 SoftKeymasterDevice(KeymasterContext* context);
  /system/security/keystore/
keystore.cpp 116 keymaster::SoftKeymasterDevice* softkeymaster = NULL;
135 new keymaster::SoftKeymasterDevice(reinterpret_cast<keymaster0_device_t*>(*dev));
145 // logger used by SoftKeymasterDevice.
149 keymaster::SoftKeymasterDevice* softkeymaster =
150 new keymaster::SoftKeymasterDevice();
    [all...]

Completed in 708 milliseconds