Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:Log

27 import android.util.Log;
161 Log.e(TAG, "Could not bind to Bluetooth Headset Service");
180 if (DBG) log("close()");
193 if (DBG) log("getState()");
197 } catch (RemoteException e) {Log.e(TAG, e.toString());}
199 Log.w(TAG, "Proxy not attached to service");
200 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
212 if (DBG) log("getCurrentHeadset()");
216 } catch (RemoteException e) {Log.e(TAG, e.toString());}
218 Log.w(TAG, "Proxy not attached to service");
219 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
237 if (DBG) log("connectHeadset(" + device + ")");
243 } catch (RemoteException e) {Log.e(TAG, e.toString());}
245 Log.w(TAG, "Proxy not attached to service");
246 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
257 if (DBG) log("isConnected(" + device + ")");
261 } catch (RemoteException e) {Log.e(TAG, e.toString());}
263 Log.w(TAG, "Proxy not attached to service");
264 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
275 if (DBG) log("disconnectHeadset()");
280 } catch (RemoteException e) {Log.e(TAG, e.toString());}
282 Log.w(TAG, "Proxy not attached to service");
283 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
295 if (DBG) log("startVoiceRecognition()");
299 } catch (RemoteException e) {Log.e(TAG, e.toString());}
301 Log.w(TAG, "Proxy not attached to service");
302 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
313 if (DBG) log("stopVoiceRecognition()");
317 } catch (RemoteException e) {Log.e(TAG, e.toString());}
319 Log.w(TAG, "Proxy not attached to service");
320 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
344 if (DBG) log("setPriority(" + device + ", " + priority + ")");
348 } catch (RemoteException e) {Log.e(TAG, e.toString());}
350 Log.w(TAG, "Proxy not attached to service");
351 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
362 if (DBG) log("getPriority(" + device + ")");
366 } catch (RemoteException e) {Log.e(TAG, e.toString());}
368 Log.w(TAG, "Proxy not attached to service");
369 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
387 if (DBG) log("getBatteryUsageHint()");
391 } catch (RemoteException e) {Log.e(TAG, e.toString());}
393 Log.w(TAG, "Proxy not attached to service");
394 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
413 if (DBG) log("cancelConnectThread");
417 } catch (RemoteException e) {Log.e(TAG, e.toString());}
419 Log.w(TAG, "Proxy not attached to service");
420 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
430 if (DBG) log("acceptIncomingConnect");
434 } catch (RemoteException e) {Log.e(TAG, e.toString());}
436 Log.w(TAG, "Proxy not attached to service");
437 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
447 if (DBG) log("createIncomingConnect");
451 } catch (RemoteException e) {Log.e(TAG, e.toString());}
453 Log.w(TAG, "Proxy not attached to service");
454 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
465 if (DBG) log("connectHeadsetInternal");
469 } catch (RemoteException e) {Log.e(TAG, e.toString());}
471 Log.w(TAG, "Proxy not attached to service");
472 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
483 if (DBG) log("disconnectHeadsetInternal");
487 } catch (RemoteException e) {Log.e(TAG, e.toString());}
489 Log.w(TAG, "Proxy not attached to service");
490 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
496 if (DBG) Log.d(TAG, "Proxy object connected");
503 if (DBG) Log.d(TAG, "Proxy object disconnected");
511 private static void log(String msg) {
512 Log.d(TAG, msg);