Home | History | Annotate | Download | only in phone

Lines Matching refs:log

32 import android.util.Log;
101 if (VDBG) log("isBluetoothAvailable()...");
107 // if (DBG) log(" ==> FALSE (BT not enabled)");
110 // if (DBG) log(" - BT enabled! device name " + adapter.getName()
126 if (VDBG) log(" - headset state = " +
128 if (VDBG) log(" - headset address: " + device);
129 if (VDBG) log(" - isConnected: " + isConnected);
133 if (VDBG) log(" ==> " + isConnected);
142 if (VDBG) log("isBluetoothAudioConnected: ==> FALSE (null mBluetoothHeadset)");
152 if (VDBG) log("isBluetoothAudioConnected: ==> isAudioOn = " + isAudioOn);
168 if (VDBG) log("isBluetoothAudioConnectedOrPending: ==> TRUE (really connected)");
179 if (VDBG) log("isBluetoothAudioConnectedOrPending: ==> TRUE (requested "
183 if (VDBG) log("isBluetoothAudioConnectedOrPending: ==> FALSE (request too old: "
190 if (VDBG) log("isBluetoothAudioConnectedOrPending: ==> FALSE");
271 if (VDBG) log("- Got BluetoothHeadset: " + mBluetoothHeadset);
325 log("============== dumpBluetoothState() =============");
326 log("= isBluetoothAvailable: " + isBluetoothAvailable());
327 log("= isBluetoothAudioConnected: " + isBluetoothAudioConnected());
328 log("= isBluetoothAudioConnectedOrPending: " + isBluetoothAudioConnectedOrPending());
329 log("= PhoneApp.showBluetoothIndication: "
331 log("=");
338 log("= BluetoothHeadset.getCurrentDevice: " + device);
339 log("= BluetoothHeadset.State: "
341 log("= BluetoothHeadset audio connected: " +
345 log("= mBluetoothHeadset is null");
348 log("= mBluetoothAdapter is null; device is not BT capable");
353 if (VDBG) log("connectBluetoothAudio()...");
369 if (VDBG) log("disconnectBluetoothAudio()...");
387 if (VDBG) Log.d(LOG_TAG, "mReceiver: HEADSET_STATE_CHANGED_ACTION");
388 if (VDBG) Log.d(LOG_TAG, "==> new state: " + mBluetoothHeadsetState);
395 if (VDBG) Log.d(LOG_TAG, "mReceiver: HEADSET_AUDIO_STATE_CHANGED_ACTION");
396 if (VDBG) Log.d(LOG_TAG, "==> new state: " + mBluetoothHeadsetAudioState);
424 private void log(String msg) {
425 Log.d(LOG_TAG, msg);