Lines Matching refs:serverId
75 virtual int32_t BleGattsAddService(int32_t serverId, BtUuid srvcUuid, bool isPrimary, int32_t number) = 0;
76 virtual int32_t BleGattsUnRegister(int32_t serverId);
78 int32_t serverId, int32_t srvcHandle, BtUuid characUuid, int32_t properties, int32_t permissions) = 0;
79 virtual int32_t BleGattsAddDescriptor(int32_t serverId,
81 virtual int32_t BleGattsStartService(int32_t serverId, int32_t srvcHandle) = 0;
82 virtual int32_t BleGattsStopService(int32_t serverId, int32_t srvcHandle) = 0;
83 virtual int32_t BleGattsDeleteService(int32_t serverId, int32_t srvcHandle) = 0;
84 virtual int32_t BleGattsDisconnect(int32_t serverId, BdAddr bdAddr, int32_t connId) = 0;
85 virtual int32_t BleGattsSendResponse(int32_t serverId, GattsSendRspParam *param) = 0;
86 virtual int32_t BleGattsSendIndication(int32_t serverId, GattsSendIndParam *param) = 0;
144 MOCK_METHOD(int32_t, BleGattsAddService, (int32_t serverId, BtUuid srvcUuid,
146 MOCK_METHOD(int32_t, BleGattsUnRegister, (int32_t serverId), (override));
148 (int32_t serverId, int32_t srvcHandle, BtUuid characUuid,
151 (int32_t serverId, int32_t srvcHandle, BtUuid descUuid, int32_t permissions), (override));
152 MOCK_METHOD(int32_t, BleGattsStartService, (int32_t serverId, int32_t srvcHandle), (override));
153 MOCK_METHOD(int32_t, BleGattsStopService, (int32_t serverId, int32_t srvcHandle), (override));
154 MOCK_METHOD(int32_t, BleGattsDeleteService, (int32_t serverId, int32_t srvcHandle), (override));
155 MOCK_METHOD(int32_t, BleGattsDisconnect, (int32_t serverId, BdAddr bdAddr, int32_t connId), (override));
156 MOCK_METHOD(int32_t, BleGattsSendResponse, (int32_t serverId, GattsSendRspParam *param), (override));
157 MOCK_METHOD(int32_t, BleGattsSendIndication, (int32_t serverId, GattsSendIndParam *param), (override));