Home
last modified time | relevance | path

Searched refs:ReadDescriptor (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_gatt_client.h46 virtual int ReadDescriptor(int32_t appId, const BluetoothGattDescriptor &descriptor) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_gatt_client_server.h46 int ReadDescriptor(int32_t appId, const BluetoothGattDescriptor &descriptor) override;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H A Dgatt_client_service.h44 int ReadDescriptor(int appId, const Descriptor &descriptor) override;
H A Dgatt_client_service.cpp111 void ReadDescriptor(int appId, uint16_t handle);
338 int GattClientService::ReadDescriptor(int appId, const Descriptor &descriptor) in ReadDescriptor() function in OHOS::bluetooth::GattClientService
344 …GetDispatcher()->PostTask(std::bind(&impl::ReadDescriptor, pimpl.get(), appId, descriptor.handle_)… in ReadDescriptor()
753 void GattClientService::impl::ReadDescriptor(int appId, uint16_t handle) in ReadDescriptor() function in OHOS::bluetooth::GattClientService::impl
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_gatt_client_proxy.h43 int ReadDescriptor(int32_t appId, const BluetoothGattDescriptor &descriptor) override;
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_gatt_client.h286 int ReadDescriptor(GattDescriptor &descriptor);
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_profile_gatt_client.h239 virtual int ReadDescriptor(int appId, const Descriptor &descriptor) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/hid_host/
H A Dhid_host_hogp.cpp491 gattClientService->ReadDescriptor(appId_, descriptor); in GetExternalRptRefInfo()
513 gattClientService->ReadDescriptor(appId_, descriptor); in GetExternalCfgInfo()
549 gattClientService->ReadDescriptor(appId_, *reference); in GetHidReport()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_gatt_client_server.cpp437 int BluetoothGattClientServer::ReadDescriptor(int32_t appId, const BluetoothGattDescriptor &descrip… in ReadDescriptor() function in OHOS::Bluetooth::BluetoothGattClientServer
449 return pimpl->clientService_->ReadDescriptor(appId, (Descriptor)descriptor); in ReadDescriptor()
/ohos5.0/foundation/communication/bluetooth_service/test/unittest/gatt/
H A Dgatt_client_test.cpp257 int result = client.ReadDescriptor(descriptor);
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_gatt_client_stub.cpp225 int result = ReadDescriptor(appId, *descriptor); in ReadDescriptorInner()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_gatt_client_proxy.cpp192 int BluetoothGattClientProxy::ReadDescriptor(int32_t appId, const BluetoothGattDescriptor &descript… in ReadDescriptor() function in OHOS::Bluetooth::BluetoothGattClientProxy
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_gatt_client.cpp803 int GattClient::ReadDescriptor(GattDescriptor &descriptor) in ReadDescriptor() function in OHOS::Bluetooth::GattClient
830 result = proxy->ReadDescriptor( in ReadDescriptor()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gatt_client.cpp681 int result = client->ReadDescriptor(*tmpDescriptor); in BleGattcReadDescriptor()
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/src/ble/
H A Dnapi_bluetooth_gatt_client.cpp364 ret = gattClient->ReadDescriptor(*descriptor); in ReadDescriptorValue()