Home
last modified time | relevance | path

Searched refs:Send (Results 1 – 25 of 40) sorted by relevance

12

/device/google/cuttlefish/guest/hals/gatekeeper/remote/
Dremote_gatekeeper.h83 gatekeeper_error_t Send(uint32_t command, const GateKeeperMessage& request,
86 gatekeeper_error_t Send(const EnrollRequest& request, in Send() function
88 return Send(ENROLL, request, response); in Send()
91 gatekeeper_error_t Send(const VerifyRequest& request, VerifyResponse* response) { in Send() function
92 return Send(VERIFY, request, response); in Send()
Dremote_gatekeeper.cpp93 auto error = Send(request, &response); in enroll()
141 auto error = Send(request, &response); in verify()
172 gatekeeper_error_t RemoteGateKeeperDevice::Send(uint32_t command, const GateKeeperMessage& request, in Send() function in aidl::android::hardware::gatekeeper::RemoteGateKeeperDevice
/device/google/cuttlefish/host/frontend/webrtc/libdevice/
Dserver_connection.cpp35 bool Send(const Json::Value& msg) override;
71 bool Send(const Json::Value& msg);
97 bool Send(const uint8_t* data, size_t len, bool binary = false);
179 bool UnixServerConnection::Send(const Json::Value& msg) { in Send() function in cuttlefish::webrtc_streaming::UnixServerConnection
184 conn_->Send(reinterpret_cast<const uint8_t*>(str.c_str()), str.size(), 0); in Send()
366 bool Send(const Json::Value& msg) override { return conn_->Send(msg); } in Send() function in cuttlefish::webrtc_streaming::WsConnectionWrapper
479 bool WsConnection::Send(const Json::Value& msg) { in Send() function in cuttlefish::webrtc_streaming::WsConnection
482 return Send(reinterpret_cast<const uint8_t*>(str.c_str()), str.size()); in Send()
485 bool WsConnection::Send(const uint8_t* data, size_t len, bool binary) { in Send() function in cuttlefish::webrtc_streaming::WsConnection
Ddata_channels.cpp31 bool Send(const uint8_t *msg, size_t size, bool binary);
32 bool Send(const Json::Value &message);
52 return Send(msg, size, true /*binary*/); in GetBinarySender()
56 return [this](const Json::Value &msg) { return Send(msg); }; in GetJSONSender()
387 bool DataChannelHandler::Send(const uint8_t *msg, size_t size, bool binary) { in Send() function in cuttlefish::webrtc_streaming::DataChannelHandler
393 return channel()->Send(buffer); in Send()
396 bool DataChannelHandler::Send(const Json::Value &message) { in Send() function in cuttlefish::webrtc_streaming::DataChannelHandler
399 return Send(reinterpret_cast<const uint8_t *>(message_string.c_str()), in Send()
Dserver_connection.h80 virtual bool Send(const Json::Value&) = 0;
/device/google/cuttlefish/common/libs/security/
Dconfui_sign.cpp28 bool ConfUiSignerImpl::Send(SharedFD output, in Send() function in cuttlefish::ConfUiSignerImpl
95 bool ConfUiSignSender::Send(const SignMessageError error, in Send() function in cuttlefish::ConfUiSignSender
100 impl_.Send(server_fd_, error, encoded_hmac); in Send()
105 impl_.Send(client_fd_, confui::SignMessageError::kOk, message); in Request()
Dconfui_sign.h54 bool Send(SharedFD output, const confui::SignMessageError error,
76 bool Send(const SignMessageError error,
/device/google/cuttlefish/host/commands/cvd_send_sms/unittest/
Dsms_sender_test.cc58 bool result = sender.Send("", "+16501234567"); in TEST_F()
66 bool result = sender.Send("hellohello", "+16501234567"); in TEST_F()
76 bool result = sender.Send("hellohello", "+16501234567", 1); in TEST_F()
/device/google/cuttlefish/guest/commands/setup_wifi/
Dmain.cpp68 bool fix_mac = nl->Send(fix_mac_request); in CreateWifiWrapper()
93 bool link_add_success = nl->Send(link_add_request); in CreateWifiWrapper()
107 bool link_backing_up = nl->Send(bring_up_backing_request); in CreateWifiWrapper()
/device/google/cuttlefish/host/commands/secure_env/
Dconfui_sign_server.cpp75 sign_sender.Send(confui::SignMessageError::kUnknownError, {}); in MainLoop()
85 if (!sign_sender.Send(confui::SignMessageError::kOk, hmac_buffer)) { in MainLoop()
/device/google/cuttlefish/common/libs/net/
Dnetwork_interface_manager.cpp110 if (!nl_client_->Send(BuildLinkRequest(iface))) { in ApplyChanges()
117 return nl_client_->Send(BuildAddrRequest(iface)); in ApplyChanges()
Dnetlink_client.cpp43 virtual bool Send(const NetlinkRequest& message);
119 bool NetlinkClientImpl::Send(const NetlinkRequest& message) { in Send() function in cuttlefish::__anonc9f60f3f0111::NetlinkClientImpl
Dnetlink_client.h32 virtual bool Send(const NetlinkRequest& message) = 0;
/device/google/cuttlefish/host/libs/msg_queue/
DREADME.md25 int rc = msg_queue->Send(&msg, message.length() + 1, true);
27 LOG(FATAL) << "Send: failed to send message to msg_queue";
Dmsg_queue.h27 int Send(void* data, size_t size, bool block);
/device/generic/goldfish/sensors/
Dmultihal_sensors_qemu.cpp65 if (st.Send(buffer, len) < 0) { in setSensorsReportingImpl()
90 if (st.Send(buffer, len) < 0) { in setSensorsGuestTime()
102 if (st.Send(buffer, len) < 0) { in setSensorsUpdateIntervalMs()
Dmultihal_sensors.cpp35 int Send(const void*, int) override { return -1; } in Send() function
69 LOG_ALWAYS_FATAL_IF(st->Send(kListSensorsCmd.data(), kListSensorsCmd.size()) < 0, in MultihalSensors()
Dentry.cpp31 int Send(const void* msg, int size) override { in Send() function in __anon498234880111::QemudSensorsTransport
/device/google/cuttlefish/host/libs/audio_connector/
Dserver.cpp94 auto sent = socket->Send(&reply, sizeof(reply), MSG_DONTWAIT); in SendStatusCallback()
350 auto status_sent = control_socket_->Send(buffer.data(), buffer.size(), 0); in CmdReply()
/device/google/cuttlefish/host/commands/cvd_send_sms/
Dsms_sender.h29 bool Send(const std::string& sms_body, const std::string& sender_number,
Dsms_sender.cc35 bool SmsSender::Send(const std::string& content, in Send() function in cuttlefish::SmsSender
Dmain.cc69 if (!sms_sender.Send(argv[1], FLAGS_sender_number, FLAGS_modem_id)) { in SendSmsMain()
/device/generic/goldfish/sensors/include/
Dmultihal_sensors_transport.h23 virtual int Send(const void* msg, int size) = 0;
/device/google/cuttlefish/guest/commands/bt_vhci_forwarder/hci/
Dh4_packetizer.h37 size_t Send(uint8_t type, const uint8_t* data, size_t length);
/device/google/cuttlefish/host/libs/metrics/
Dmetrics_receiver.cc50 int rc = msg_queue->Send(&msg, message.length() + 1, true); in SendHelper()

12