Home
last modified time | relevance | path

Searched refs:LoadNanoappRequest (Results 1 – 5 of 5) sorted by relevance

/system/chre/platform/shared/include/chre/platform/shared/
Dhost_messages_generated.h24 struct LoadNanoappRequest;
41 LoadNanoappRequest = 6, enumerator
91 template<> struct ChreMessageTraits<LoadNanoappRequest> {
92 static const ChreMessage enum_value = ChreMessage::LoadNanoappRequest;
587 struct LoadNanoappRequest FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
626 fbb_.AddElement<uint32_t>(LoadNanoappRequest::VT_TRANSACTION_ID, transaction_id, 0);
629 fbb_.AddElement<uint64_t>(LoadNanoappRequest::VT_APP_ID, app_id, 0);
632 fbb_.AddElement<uint32_t>(LoadNanoappRequest::VT_APP_VERSION, app_version, 0);
635 fbb_.AddElement<uint32_t>(LoadNanoappRequest::VT_TARGET_API_VERSION, target_api_version, 0);
638 fbb_.AddOffset(LoadNanoappRequest::VT_APP_BINARY, app_binary);
[all …]
/system/chre/host/common/include/chre_host/
Dhost_messages_generated.h30 struct LoadNanoappRequest;
50 LoadNanoappRequest = 6, enumerator
100 template<> struct ChreMessageTraits<LoadNanoappRequest> {
101 static const ChreMessage enum_value = ChreMessage::LoadNanoappRequest;
154 return type == ChreMessage::LoadNanoappRequest ?
827 typedef LoadNanoappRequest TableType;
841 struct LoadNanoappRequest FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
892 …static flatbuffers::Offset<LoadNanoappRequest> Pack(flatbuffers::FlatBufferBuilder &_fbb, const Lo…
899 fbb_.AddElement<uint32_t>(LoadNanoappRequest::VT_TRANSACTION_ID, transaction_id, 0);
902 fbb_.AddElement<uint64_t>(LoadNanoappRequest::VT_APP_ID, app_id, 0);
[all …]
/system/chre/platform/shared/
Dhost_protocol_chre.cc62 case fbs::ChreMessage::LoadNanoappRequest: { in decodeMessageFromHost()
63 const auto *request = static_cast<const fbs::LoadNanoappRequest *>( in decodeMessageFromHost()
/system/chre/platform/shared/idl/
Dhost_messages.fbs85 table LoadNanoappRequest {
113 LoadNanoappRequest,
/system/chre/host/common/
Dhost_protocol_host.cc134 finalize(builder, fbs::ChreMessage::LoadNanoappRequest, request.Union()); in encodeLoadNanoappRequest()