/device/google/cuttlefish/guest/hals/gatekeeper/remote/ |
D | remote_gatekeeper.h | 83 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()
|
D | remote_gatekeeper.cpp | 93 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/ |
D | server_connection.cpp | 35 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
|
D | data_channels.cpp | 31 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()
|
D | server_connection.h | 80 virtual bool Send(const Json::Value&) = 0;
|
/device/google/cuttlefish/common/libs/security/ |
D | confui_sign.cpp | 28 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()
|
D | confui_sign.h | 54 bool Send(SharedFD output, const confui::SignMessageError error, 76 bool Send(const SignMessageError error,
|
/device/google/cuttlefish/host/commands/cvd_send_sms/unittest/ |
D | sms_sender_test.cc | 58 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/ |
D | main.cpp | 68 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/ |
D | confui_sign_server.cpp | 75 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/ |
D | network_interface_manager.cpp | 110 if (!nl_client_->Send(BuildLinkRequest(iface))) { in ApplyChanges() 117 return nl_client_->Send(BuildAddrRequest(iface)); in ApplyChanges()
|
D | netlink_client.cpp | 43 virtual bool Send(const NetlinkRequest& message); 119 bool NetlinkClientImpl::Send(const NetlinkRequest& message) { in Send() function in cuttlefish::__anonc9f60f3f0111::NetlinkClientImpl
|
D | netlink_client.h | 32 virtual bool Send(const NetlinkRequest& message) = 0;
|
/device/google/cuttlefish/host/libs/msg_queue/ |
D | README.md | 25 int rc = msg_queue->Send(&msg, message.length() + 1, true); 27 LOG(FATAL) << "Send: failed to send message to msg_queue";
|
D | msg_queue.h | 27 int Send(void* data, size_t size, bool block);
|
/device/generic/goldfish/sensors/ |
D | multihal_sensors_qemu.cpp | 65 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()
|
D | multihal_sensors.cpp | 35 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()
|
D | entry.cpp | 31 int Send(const void* msg, int size) override { in Send() function in __anon498234880111::QemudSensorsTransport
|
/device/google/cuttlefish/host/libs/audio_connector/ |
D | server.cpp | 94 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/ |
D | sms_sender.h | 29 bool Send(const std::string& sms_body, const std::string& sender_number,
|
D | sms_sender.cc | 35 bool SmsSender::Send(const std::string& content, in Send() function in cuttlefish::SmsSender
|
D | main.cc | 69 if (!sms_sender.Send(argv[1], FLAGS_sender_number, FLAGS_modem_id)) { in SendSmsMain()
|
/device/generic/goldfish/sensors/include/ |
D | multihal_sensors_transport.h | 23 virtual int Send(const void* msg, int size) = 0;
|
/device/google/cuttlefish/guest/commands/bt_vhci_forwarder/hci/ |
D | h4_packetizer.h | 37 size_t Send(uint8_t type, const uint8_t* data, size_t length);
|
/device/google/cuttlefish/host/libs/metrics/ |
D | metrics_receiver.cc | 50 int rc = msg_queue->Send(&msg, message.length() + 1, true); in SendHelper()
|