Lines Matching refs:config

177         BluetoothHealthAppConfiguration config =
182 result = mService.registerAppConfiguration(config, wrapper);
199 * @param config The health app configuration
202 public boolean unregisterAppConfiguration(BluetoothHealthAppConfiguration config) {
204 if (mService != null && isEnabled() && config != null) {
206 result = mService.unregisterAppConfiguration(config);
226 * @param config The application configuration which has been registered using
228 * @return If true, the callback associated with the application config will be called.
231 BluetoothHealthAppConfiguration config) {
233 config != null) {
235 return mService.connectChannelToSource(device, config);
254 * @param config The application configuration which has been registered using
256 * @return If true, the callback associated with the application config will be called.
260 BluetoothHealthAppConfiguration config, int channelType) {
262 config != null) {
264 return mService.connectChannelToSink(device, config, channelType);
283 * @param config The application configuration which has been registered using
286 * @return If true, the callback associated with the application config will be called.
289 BluetoothHealthAppConfiguration config, int channelId) {
291 config != null) {
293 return mService.disconnectChannel(device, config, channelId);
314 * @param config The application configuration
318 BluetoothHealthAppConfiguration config) {
320 config != null) {
322 return mService.getMainChannelFd(device, config);
430 public void onHealthAppConfigurationStatusChange(BluetoothHealthAppConfiguration config,
432 mCallback.onHealthAppConfigurationStatusChange(config, status);
436 public void onHealthChannelStateChange(BluetoothHealthAppConfiguration config,
439 mCallback.onHealthChannelStateChange(config, device, prevState, newState, fd,