/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/ |
H A D | gatt_profile_defines.h | 117 GattRequestInfo(ResponesType reqType, uint16_t starthandle, uint16_t endHandle, const Uuid &uuid, int reqId) in GattRequestInfo() 118 : startHandle_(starthandle), endHandle_(endHandle), reqType_(reqType), uuid_(uuid), reqId_(reqId) in GattRequestInfo() 121 ResponesType reqType, uint16_t starthandle, uint16_t endHandle, uint16_t valHandle, const Uuid &uuid, int reqId) in GattRequestInfo() 125 reqType_(reqType), in GattRequestInfo() 129 GattRequestInfo(ResponesType reqType, uint16_t starthandle, uint16_t endHandle, int reqId) in GattRequestInfo() 130 : startHandle_(starthandle), endHandle_(endHandle), reqType_(reqType), reqId_(reqId) in GattRequestInfo() 132 GattRequestInfo(ResponesType reqType, uint16_t starthandle, uint16_t endHandle, uint16_t valHandle, int reqId) in GattRequestInfo() 133 : startHandle_(starthandle), endHandle_(endHandle), valHandle_(valHandle), reqType_(reqType), reqId_(reqId) in GattRequestInfo() 135 GattRequestInfo(ResponesType reqType, int reqId) : reqType_(reqType), reqId in GattRequestInfo() [all...] |
/foundation/communication/bluetooth/frameworks/js/napi/include/ |
H A D | napi_bluetooth_host_observer.h | 33 void OnPairConfirmed(const BluetoothRemoteDevice &device, int reqType, int number) override; 40 void DealBredrPairComfirmed(const std::string &addr, const int reqType, const int number); 41 void DealBlePairComfirmed(const std::string &addr, const int reqType, const int number);
|
/foundation/communication/bluetooth/frameworks/js/napi/src/connection/ |
H A D | napi_bluetooth_connection_observer.cpp | 74 void NapiBluetoothConnectionObserver::OnPairConfirmed(const BluetoothRemoteDevice &device, int reqType, int number) in OnPairConfirmed() argument 78 std::make_shared<PairConfirmedCallBackInfo>(number, reqType, device.GetDeviceAddr()); in OnPairConfirmed()
|
H A D | napi_bluetooth_connection_observer.h | 36 void OnPairConfirmed(const BluetoothRemoteDevice &device, int reqType, int number) override;
|
/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_host_observer.h | 37 const int32_t transport, const BluetoothRawAddress &device, int reqType, int number) = 0;
|
/foundation/communication/bluetooth/frameworks/js/napi/src/access/ |
H A D | napi_bluetooth_access_observer.h | 35 void OnPairConfirmed(const BluetoothRemoteDevice &device, int reqType, int number) override {};
|
/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_host_observer_stub.cpp | 135 int32_t reqType = data.ReadInt32(); in OnPairConfirmedInner() local 139 stub->OnPairConfirmed(transport, *device, reqType, number); in OnPairConfirmedInner()
|
/foundation/communication/bluetooth/frameworks/cj/connection/src/ |
H A D | bluetooth_connection_callback.cpp | 69 void CjBluetoothConnectionObserver::OnPairConfirmed(const BluetoothRemoteDevice &device, int reqType, int number) in OnPairConfirmed() argument 79 char* pinCodeNative = MallocCString(GetFormatPinCode(reqType, number)); in OnPairConfirmed()
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/include/ |
H A D | bluetooth_host_observer_proxy.h | 37 void OnPairConfirmed(const int32_t transport, const BluetoothRawAddress &device, int reqType, int number) override;
|
/foundation/communication/bluetooth/frameworks/cj/access/include/ |
H A D | bluetooth_access_impl.h | 51 void OnPairConfirmed(const BluetoothRemoteDevice &device, int reqType, int number) override{};
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/classic/ |
H A D | classic_adapter.cpp | 712 param.userConfirmReqParam_.reqType = PAIR_CONFIRM_TYPE_NUMERIC; in UserConfirmReqCallback() 729 param.userConfirmReqParam_.reqType = PAIR_CONFIRM_TYPE_PASSKEY_INPUT; in UserPasskeyReqCallback() 747 param.userConfirmReqParam_.reqType = PAIR_CONFIRM_TYPE_PASSKEY_DISPLAY; in UserPasskeyNotificationCallback() 951 param.userConfirmReqParam_.addr, param.userConfirmReqParam_.reqType, param.userConfirmReqParam_.number, in HandleSecurityEvent() 1169 void ClassicAdapter::SSPConfirmReq(const BtAddr &addr, int reqType, int number, in SSPConfirmReq() argument 1172 HILOGI("reqTyep: %{public}d", reqType); in SSPConfirmReq() 1177 remoteDevice->SetPairConfirmType(reqType); in SSPConfirmReq() 1180 UserConfirmAutoReply(device, reqType, false); in SSPConfirmReq() 1182 UserConfirmAutoReply(device, reqType, true); in SSPConfirmReq() 1184 reqType in SSPConfirmReq() 1219 SendPairConfirmed(const RawAddress &device, int reqType, int number) const SendPairConfirmed() argument 1228 UserConfirmAutoReply(const RawAddress &device, int reqType, bool accept) const UserConfirmAutoReply() argument [all...] |
H A D | classic_adapter.h | 828 * @param reqType confirmed type (SSP/Pin Code). 831 void SendPairConfirmed(const RawAddress &device, int reqType, int number) const; 879 * @param reqType Request type. 882 void SSPConfirmReq(const BtAddr &addr, int reqType, int number, int localMitmRequired, int remoteMitmRequired); 949 * @param reqType Request type. 952 void UserConfirmAutoReply(const RawAddress &device, int reqType, bool accept) const;
|
H A D | classic_defs.h | 180 int reqType; member
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_host_observer_proxy.cpp | 144 const int32_t transport, const BluetoothRawAddress &device, int reqType, int number) in OnPairConfirmed() 163 if (!data.WriteInt32(reqType)) { in OnPairConfirmed() 143 OnPairConfirmed( const int32_t transport, const BluetoothRawAddress &device, int reqType, int number) OnPairConfirmed() argument
|
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/common/ |
H A D | softbus_adapter_bt_common.c | 175 static void WrapperPairConfiremedCallback(const BdAddr *bdAddr, int transport, int reqType, in WrapperPairConfiremedCallback() argument 185 "transport=%{public}d, reqType=%{public}d, number=%{public}d", in WrapperPairConfiremedCallback() 187 transport, reqType, number); in WrapperPairConfiremedCallback()
|
/foundation/communication/bluetooth_service/test/unittest/ble/ |
H A D | ble_test.h | 53 void OnPairConfirmed(const BluetoothRemoteDevice &device, int reqType, int number) in OnPairConfirmed() argument
|
/foundation/communication/bluetooth_service/services/bluetooth/service/include/ |
H A D | interface_adapter_classic.h | 86 * @param reqType Pair type. 90 virtual void OnPairConfirmed(const BTTransport transport, const RawAddress &device, int reqType, int number) = 0;
|
H A D | interface_adapter_ble.h | 158 * @param reqType Pair type. 163 const BTTransport transport, const RawAddress &device, const int reqType, const int number) = 0;
|
/foundation/communication/bluetooth/interfaces/inner_api/include/c_header/ |
H A D | ohos_bt_gap.h | 233 * @param reqType Pair type. 236 typedef void (*GapPairConfirmedCallback)(const BdAddr *bdAddr, int transport, int reqType, int number);
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/core/ |
H A D | nstackx_dfinder_mgt_msg_log.c | 41 static char *GetCoapReqTypeStr(uint8_t reqType) in GetCoapReqTypeStr() argument 43 switch (reqType) { in GetCoapReqTypeStr()
|
/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_host.h | 112 * @param reqType Pair type. 116 virtual void OnPairConfirmed(const BluetoothRemoteDevice &device, int reqType, int number) = 0;
|
/foundation/communication/bluetooth/frameworks/cj/connection/include/ |
H A D | bluetooth_connection_impl.h | 69 void OnPairConfirmed(const BluetoothRemoteDevice &device, int reqType, int number) override;
|
/foundation/communication/bluetooth_service/services/bluetooth/server/src/ |
H A D | bluetooth_host_server.cpp | 295 const BTTransport transport, const RawAddress &device, int32_t reqType, int32_t number) override 297 HILOGI("device: %{public}s, reqType: %{public}d, number: %{public}d", 298 GET_ENCRYPT_ADDR(device), reqType, number); 299 impl_->observers_.ForEach([this, transport, device, reqType, number](IBluetoothHostObserver *observer) { 304 observer->OnPairConfirmed(transport, device, reqType, number); 463 const BTTransport transport, const RawAddress &device, const int32_t reqType, const int32_t number) override 465 HILOGI("device: %{public}s, reqType: %{public}d, number: %{public}d", 466 GET_ENCRYPT_ADDR(device), reqType, number); 467 impl_->bleObservers_.ForEach([this, transport, device, reqType, number](IBluetoothHostObserver *observer) { 477 observer->OnPairConfirmed(transport, device, reqType, numbe [all...] |
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/gas/ |
H A D | generic_access_service.cpp | 100 void OnPairConfirmed(const BTTransport transport, const RawAddress &device, const int reqType, const int number) in OnPairConfirmed() argument 131 void OnPairConfirmed(const BTTransport transport, const RawAddress &device, int reqType, int number) in OnPairConfirmed() argument
|
/foundation/communication/nfc/services/include/ |
H A D | bt_connection_manager.h | 72 void OnPairConfirmed(const Bluetooth::BluetoothRemoteDevice &device, int reqType, int number) override {};
|