Home
last modified time | relevance | path

Searched refs:SendResponse (Results 1 – 14 of 14) sorted by relevance

/aosp12/system/bt/service/test/
H A Dgatt_server_unittest.cc46 MOCK_METHOD4(SendResponse,
397 EXPECT_FALSE(gatt_server_->SendResponse(kTestAddress0, kReqId0, in TEST_F()
452 EXPECT_FALSE(gatt_server_->SendResponse(kTestAddress1, kReqId0, in TEST_F()
456 EXPECT_FALSE(gatt_server_->SendResponse( in TEST_F()
466 EXPECT_FALSE(gatt_server_->SendResponse(kTestAddress0, kReqId0, in TEST_F()
470 EXPECT_TRUE(gatt_server_->SendResponse(kTestAddress0, kReqId0, in TEST_F()
474 EXPECT_FALSE(gatt_server_->SendResponse(kTestAddress0, kReqId0, in TEST_F()
483 EXPECT_TRUE(gatt_server_->SendResponse(kTestAddress0, kReqId1, in TEST_F()
487 EXPECT_FALSE(gatt_server_->SendResponse(kTestAddress0, kReqId1, in TEST_F()
581 EXPECT_TRUE(gatt_server_->SendResponse(kTestAddress0, kReqId0, in TEST_F()
[all …]
/aosp12/system/bt/service/example/heart_rate/
H A Dheart_rate_server.cc330 gatt_->SendResponse(server_if_, device_address, request_id, error, offset, in OnCharacteristicReadRequest()
346 gatt_->SendResponse(server_if_, device_address, request_id, in OnDescriptorReadRequest()
364 gatt_->SendResponse(server_if_, device_address, request_id, error, offset, in OnDescriptorReadRequest()
382 gatt_->SendResponse(server_if_, device_address, request_id, in OnCharacteristicWriteRequest()
395 gatt_->SendResponse(server_if_, device_address, request_id, in OnCharacteristicWriteRequest()
407 gatt_->SendResponse(server_if_, device_address, request_id, in OnCharacteristicWriteRequest()
425 gatt_->SendResponse(server_if_, device_address, request_id, in OnDescriptorWriteRequest()
438 gatt_->SendResponse(server_if_, device_address, request_id, in OnDescriptorWriteRequest()
458 gatt_->SendResponse(server_if_, device_address, request_id, in OnDescriptorWriteRequest()
469 gatt_->SendResponse(server_if_, device_address, request_id, in OnExecuteWriteRequest()
/aosp12/system/bt/vendor_libs/test_vendor_lib/desktop/
H A Dtest_environment.cc184 test_channel_transport_.SendResponse(conn_fd, "The connection is broken"); in SetUpTestChannel()
190 test_channel_transport_.SendResponse(conn_fd, response); in SetUpTestChannel()
/aosp12/system/bt/service/common/android/bluetooth/
H A DIBluetoothGattServer.aidl31 boolean SendResponse( in SendResponse() method
/aosp12/system/bt/vendor_libs/test_vendor_lib/model/setup/
H A Dtest_channel_transport.h52 void SendResponse(int fd, const std::string&) const;
H A Dtest_channel_transport.cc143 void TestChannelTransport::SendResponse(int fd, const std::string& response) const { in SendResponse() function in test_vendor_lib::TestChannelTransport
/aosp12/system/bt/service/ipc/binder/
H A Dbluetooth_gatt_server_binder_server.cc110 Status BluetoothGattServerBinderServer::SendResponse( in SendResponse() function in ipc::binder::BluetoothGattServerBinderServer
123 *_aidl_return = gatt_server->SendResponse( in SendResponse()
H A Dbluetooth_gatt_server_binder_server.h57 Status SendResponse(int32_t server_id,
/aosp12/system/bt/vendor_libs/test_vendor_lib/model/devices/
H A Dserver_port_factory.cc127 void ServerPortFactory::SendResponse(int fd, const std::string& response) const { in SendResponse() function in test_vendor_lib::net::ServerPortFactory
/aosp12/system/bt/service/hal/
H A Dfake_bluetooth_gatt_interface.h65 virtual bt_status_t SendResponse(int conn_id, int trans_id, int status,
H A Dfake_bluetooth_gatt_interface.cc103 return g_server_handler->SendResponse(conn_id, trans_id, status, response); in FakeSendResponse()
/aosp12/system/bt/service/
H A Dgatt_server.h145 bool SendResponse(const std::string& device_address, int request_id,
H A Dgatt_server.cc106 bool GattServer::SendResponse(const std::string& device_address, int request_id, in SendResponse() function in bluetooth::GattServer
/aosp12/system/bt/test/rootcanal/
H A Dbluetooth_hci.cc395 …[this, conn_fd](const std::string& response) { test_channel_transport_.SendResponse(conn_fd, respo… in SetUpTestChannel()