Searched refs:appUuid (Results 1 - 11 of 11) sorted by relevance
/foundation/communication/dsoftbus/tests/adapter/bluetooth/ |
H A D | bluetooth_mock.cpp | 124 int32_t BleGattcRegister(BtUuid appUuid) in BleGattcRegister() argument 126 return MockBluetooth::GetMocker()->BleGattcRegister(appUuid); in BleGattcRegister() 186 int32_t BleGattsRegister(BtUuid appUuid) in BleGattsRegister() argument 188 return MockBluetooth::GetMocker()->BleGattsRegister(appUuid); in BleGattsRegister()
|
H A D | bluetooth_mock.h | 50 virtual int BleGattcRegister(BtUuid appUuid) = 0; 66 virtual int BleGattsRegister(BtUuid appUuid); 102 MOCK_METHOD(int32_t, BleGattcRegister, (BtUuid appUuid), (override)); 122 MOCK_METHOD(int32_t, BleGattsRegister, (BtUuid appUuid), (override));
|
H A D | softbus_adapter_ble_gatt_client_test.cpp | 64 int32_t ActionBleGattcRegister(BtUuid appUuid) in ActionBleGattcRegister() argument 66 (void)appUuid; in ActionBleGattcRegister()
|
H A D | softbus_adapter_ble_gatt_server_test.cpp | 86 int32_t ActionBleGattsRegister(BtUuid appUuid) in ActionBleGattsRegister() argument 88 AdapterBleGattServerTest::gattServerCallback->registerServerCb(0, MOCK_GATT_SERVER_HANDLE, &appUuid); in ActionBleGattsRegister()
|
/foundation/communication/bluetooth/interfaces/inner_api/include/c_header/ |
H A D | ohos_bt_gatt_server.h | 166 typedef void (*RegisterServerCallback)(int status, int serverId, BtUuid *appUuid); 406 * @param appUuid Indicates the UUID of the application for which the GATT server is to be registered. 412 int BleGattsRegister(BtUuid appUuid);
|
H A D | ohos_bt_gatt_client.h | 163 * @param appUuid Indicates the UUID of the application for which the GATT client is to be registered. 167 int BleGattcRegister(BtUuid appUuid);
|
/foundation/communication/dsoftbus/tests/adapter/broadcast/ |
H A D | bluetooth_mock.cpp | 175 int32_t BleGattcRegister(BtUuid appUuid) in BleGattcRegister() argument 177 return MockBluetooth::GetMocker()->BleGattcRegister(appUuid); in BleGattcRegister() 237 int32_t BleGattsRegister(BtUuid appUuid) in BleGattsRegister() argument 239 return MockBluetooth::GetMocker()->BleGattsRegister(appUuid); in BleGattsRegister()
|
H A D | bluetooth_mock.h | 57 virtual int32_t BleGattcRegister(BtUuid appUuid) = 0; 74 virtual int32_t BleGattsRegister(BtUuid appUuid); 122 MOCK_METHOD(int32_t, BleGattcRegister, (BtUuid appUuid), (override)); 143 MOCK_METHOD(int32_t, BleGattsRegister, (BtUuid appUuid), (override));
|
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/ble/ |
H A D | softbus_adapter_ble_gatt_server.c | 303 static void BleRegisterServerCallback(int status, int serverId, BtUuid *appUuid) in BleRegisterServerCallback() argument 306 if ((appUuid == NULL) || (appUuid->uuid == NULL)) { in BleRegisterServerCallback() 307 CONN_LOGE(CONN_BLE, "appUuid is null"); in BleRegisterServerCallback() 311 if (memcmp(appUuid->uuid, SOFTBUS_APP_UUID, appUuid->uuidLen) != 0) { in BleRegisterServerCallback()
|
/foundation/communication/bluetooth/frameworks/inner/c_adapter/ |
H A D | ohos_bt_gatt_server.cpp | 584 * @param appUuid Indicates the UUID of the application for which the GATT server is to be registered. 590 int BleGattsRegister(BtUuid appUuid) in BleGattsRegister() argument 612 g_GattsCallback->registerServerCb(0, i, &appUuid); in BleGattsRegister() 618 g_GattsCallback->registerServerCb(1, 0, &appUuid); in BleGattsRegister()
|
H A D | ohos_bt_gatt_client.cpp | 332 * @param appUuid Indicates the UUID of the application for which the GATT client is to be registered. 336 int BleGattcRegister(BtUuid appUuid) in BleGattcRegister() argument
|
Completed in 13 milliseconds