Home
last modified time | relevance | path

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

/system/bt/service/test/
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()
460 SendResponse(kConnId0, kReqId0, BT_STATUS_SUCCESS, _)) 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()
478 SendResponse(kConnId0, kReqId1, BT_STATUS_SUCCESS, _)) in TEST_F()
483 EXPECT_TRUE(gatt_server_->SendResponse(kTestAddress0, kReqId1, in TEST_F()
[all …]
/system/bt/service/example/heart_rate/
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()
/system/bt/service/common/android/bluetooth/
DIBluetoothGattServer.aidl31 boolean SendResponse( in SendResponse() method
/system/bt/vendor_libs/test_vendor_lib/model/setup/
Dtest_channel_transport.h52 void SendResponse(int fd, const std::string&) const;
Dtest_channel_transport.cc143 void TestChannelTransport::SendResponse(int fd, const std::string& response) const { in SendResponse() function in test_vendor_lib::TestChannelTransport
/system/bt/vendor_libs/test_vendor_lib/desktop/
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()
/system/bt/service/ipc/binder/
Dbluetooth_gatt_server_binder_server.h57 Status SendResponse(int32_t server_id,
Dbluetooth_gatt_server_binder_server.cc110 Status BluetoothGattServerBinderServer::SendResponse( in SendResponse() function in ipc::binder::BluetoothGattServerBinderServer
123 *_aidl_return = gatt_server->SendResponse( in SendResponse()
/system/bt/vendor_libs/test_vendor_lib/model/devices/
Dserver_port_factory.cc127 void ServerPortFactory::SendResponse(int fd, const std::string& response) const { in SendResponse() function in test_vendor_lib::net::ServerPortFactory
/system/bt/service/hal/
Dfake_bluetooth_gatt_interface.h65 virtual bt_status_t SendResponse(int conn_id, int trans_id, int status,
Dfake_bluetooth_gatt_interface.cc103 return g_server_handler->SendResponse(conn_id, trans_id, status, response); in FakeSendResponse()
/system/bt/service/
Dgatt_server.h145 bool SendResponse(const std::string& device_address, int request_id,
Dgatt_server.cc106 bool GattServer::SendResponse(const std::string& device_address, int request_id, in SendResponse() function in bluetooth::GattServer
/system/bt/test/rootcanal/
Dbluetooth_hci.cc395 …[this, conn_fd](const std::string& response) { test_channel_transport_.SendResponse(conn_fd, respo… in SetUpTestChannel()