Home
last modified time | relevance | path

Searched refs:CreateMessage (Results 1 – 9 of 9) sorted by relevance

/device/google/cuttlefish/common/libs/transport/
Dchannel.cpp31 Result<ManagedMessage> CreateMessage(uint32_t command, bool is_response, size_t payload_size) { in CreateMessage() function
43 Result<ManagedMessage> CreateMessage(uint32_t command, size_t payload_size) { in CreateMessage() function
44 return CreateMessage(command, false, payload_size); in CreateMessage()
Dchannel.h59 Result<ManagedMessage> CreateMessage(uint32_t command, bool is_response,
61 Result<ManagedMessage> CreateMessage(uint32_t command, size_t payload_size);
Dchannel_sharedfd.cpp46 auto message = CF_EXPECT(CreateMessage(message_header.command, in ReceiveMessage()
/device/google/cuttlefish/guest/hals/oemlock/remote/
Dremote_oemlock.cpp69 auto message = CF_EXPECT(transport::CreateMessage(static_cast<uint32_t>(field), 0), in requestValue()
82 auto message = CF_EXPECT(transport::CreateMessage(static_cast<uint32_t>(field), sizeof(bool)), in setValue()
/device/google/cuttlefish/common/libs/security/
Dgatekeeper_channel_windows.cpp127 auto to_send_result = transport::CreateMessage(command, is_response, payload_size); in SendMessage()
212 auto message_result = transport::CreateMessage(message_header.command, in ReceiveMessage()
Dgatekeeper_channel_sharedfd.cpp42 auto to_send_result = transport::CreateMessage(command, payload_size); in SendMessage()
/device/google/cuttlefish/host/commands/secure_env/oemlock/
Doemlock_responder.cpp81 CF_EXPECT(transport::CreateMessage(request->command, sizeof(bool)), in ProcessMessage()
/device/google/cuttlefish/shared/sensors/multihal/
Dentry.cpp37 auto message_result = cuttlefish::transport::CreateMessage(0, size); in Send()
/device/google/cuttlefish/common/libs/utils/
Dtcp_socket.h101 Message CreateMessage(Ts... vals) { in CreateMessage() function