Home
last modified time | relevance | path

Searched refs:SoftBusGattsStopService (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/ble/mock/
H A Dconnection_ble_mock.cpp64 int SoftBusGattsStopService(int srvcHandle) in SoftBusGattsStopService() function
66 return GetConnectionBleInterface()->SoftBusGattsStopService(srvcHandle); in SoftBusGattsStopService()
H A Dconnection_ble_mock.h44 virtual int SoftBusGattsStopService(int srvcHandle) = 0;
62 MOCK_METHOD1(SoftBusGattsStopService, int (int));
H A Dconnection_ble_manager_mock.h84 MOCK_METHOD1(SoftBusGattsStopService, int(int));
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/bluetooth/
H A Dsoftbus_adapter_ble_gatt_server_test.cpp307 HWTEST_F(AdapterBleGattServerTest, SoftBusGattsStopService, TestSize.Level3)
319 …ASSERT_EQ(SoftBusGattsStopService(MOCK_GATT_SERVICE_HANDLE), SOFTBUS_CONN_BLE_UNDERLAY_SERVICE_STO…
322 ASSERT_EQ(SoftBusGattsStopService(MOCK_GATT_SERVICE_HANDLE), SOFTBUS_OK);
628 ASSERT_EQ(SoftBusGattsStopService(MOCK_GATT_SERVER_HANDLE), SOFTBUS_OK);
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/include/
H A Dsoftbus_adapter_ble_gatt_server.h161 int SoftBusGattsStopService(int srvcHandle);
/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/ble/
H A Dble_service_connection_test.cpp101 …EXPECT_CALL(bleMock, SoftBusGattsStopService).WillRepeatedly(Return(SOFTBUS_CONN_BLE_UNDERLAY_SERV…
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/ble/
H A Dsoftbus_adapter_ble_gatt_server.c160 int SoftBusGattsStopService(int srvcHandle) in SoftBusGattsStopService() function
/ohos5.0/foundation/communication/dsoftbus/core/connection/ble/src/
H A Dsoftbus_conn_ble_server.c719 status = SoftBusGattsStopService(serviceHandle); in ConnGattServerStopService()