Home
last modified time | relevance | path

Searched refs:gatekeeper_message (Results 1 – 3 of 3) sorted by relevance

/system/core/trusty/gatekeeper/
Dtrusty_gatekeeper_ipc.c52 size_t msg_size = in_size + sizeof(struct gatekeeper_message); in trusty_gatekeeper_call()
53 struct gatekeeper_message *msg = malloc(msg_size); in trusty_gatekeeper_call()
73 if ((size_t) rc < sizeof(struct gatekeeper_message)) { in trusty_gatekeeper_call()
78 msg = (struct gatekeeper_message *) out; in trusty_gatekeeper_call()
85 *out_size = ((size_t) rc) - sizeof(struct gatekeeper_message); in trusty_gatekeeper_call()
Dgatekeeper_ipc.h36 struct gatekeeper_message { struct
Dtrusty_gatekeeper.cpp163 const gatekeeper_message *msg = reinterpret_cast<gatekeeper_message *>(recv_buf); in Send()