OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TrustyGateKeeperDevice
(Results
1 - 2
of
2
) sorted by null
/system/core/trusty/gatekeeper/
trusty_gatekeeper.h
27
class
TrustyGateKeeperDevice
{
30
explicit
TrustyGateKeeperDevice
(const hw_module_t* module);
31
~
TrustyGateKeeperDevice
();
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
...]
Completed in 536 milliseconds