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

  /system/core/trusty/gatekeeper/
module.cpp 25 using gatekeeper::TrustyGateKeeperDevice;
34 TrustyGateKeeperDevice *gatekeeper = new TrustyGateKeeperDevice(module);
trusty_gatekeeper.cpp 36 TrustyGateKeeperDevice::TrustyGateKeeperDevice(const hw_module_t *module) {
38 static_assert(std::is_standard_layout<TrustyGateKeeperDevice>::value,
39 "TrustyGateKeeperDevice must be standard layout");
40 static_assert(offsetof(TrustyGateKeeperDevice, device_) == 0,
41 "device_ must be the first member of TrustyGateKeeperDevice");
42 static_assert(offsetof(TrustyGateKeeperDevice, device_.common) == 0,
69 hw_device_t* TrustyGateKeeperDevice::hw_device() {
73 int TrustyGateKeeperDevice::close_device(hw_device_t* dev) {
74 delete reinterpret_cast<TrustyGateKeeperDevice *>(dev)
    [all...]
trusty_gatekeeper.h 27 class TrustyGateKeeperDevice {
30 explicit TrustyGateKeeperDevice(const hw_module_t* module);
31 ~TrustyGateKeeperDevice();

Completed in 281 milliseconds