Searched refs:VDBG (Results 1 - 14 of 14) sorted by relevance

/packages/apps/Phone/src/com/android/phone/
H A DCallerInfoCache.java51 private static final boolean VDBG = false; field in class:CallerInfoCache
120 if (VDBG) log("CacheAsyncTask#onPostExecute()");
127 if (VDBG) log("CacheAsyncTask#onCanceled()");
203 if (VDBG) log("refreshCacheEntry() started");
254 if (VDBG) {
280 if (VDBG) log("refreshCacheEntry() ended");
317 if (VDBG) log("Trying to lookup " + number);
326 if (VDBG) log("Trying to lookup " + key);
330 if (VDBG) log("Obtained " + entry);
H A DInCallScreen.java89 private static final boolean VDBG = (PhoneGlobals.DBG_LEVEL >= 2); field in class:InCallScreen
348 if (VDBG) log("REQUEST_UPDATE_BLUETOOTH_INDICATION...");
527 if (VDBG) log("- Got BluetoothHeadset: " + mBluetoothHeadset);
562 if (VDBG) inCallUiState.dumpState();
767 if (VDBG) log("onResume() done.");
1167 if (VDBG) log("- internalResolveIntent: SHOW_DIALPAD_EXTRA: " + showDialpad);
1243 if (VDBG) log("initInCallScreen()...");
1250 if (VDBG) log(" - mCallCard = " + mCallCard);
1278 if (VDBG) log("handleDialerKeyDown: keyCode " + keyCode + ", event " + event + "...");
1412 if (VDBG) lo
[all...]
H A DPhoneGlobals.java103 private static final boolean VDBG = (PhoneGlobals.DBG_LEVEL >= 2); field in class:PhoneGlobals
391 if (VDBG) Log.d(LOG_TAG, "received EVENT_DOCK_STATE_CHANGED. Phone inDock = "
430 if (VDBG) Log.v(LOG_TAG, "onCreate()...");
544 if (VDBG) Log.v(LOG_TAG, "register for ICC status");
764 if (VDBG) Log.d(LOG_TAG, "displayCallScreen()...");
964 if (VDBG) Log.d(LOG_TAG, "requestWakeState(" + ws + ")...");
1092 if (VDBG) Log.d(LOG_TAG, "pokeUserActivity()...");
1138 if (VDBG) Log.d(LOG_TAG, "updateProximitySensorMode: state = " + state);
1177 if (VDBG) Log.d(LOG_TAG, "updateProximitySensorMode: lock already held.");
1191 if (VDBG) {
[all...]
H A DCallController.java66 // Do not check in with VDBG = true, since that may write PII to the system log.
67 private static final boolean VDBG = false; field in class:CallController
129 if (VDBG) log("handleMessage: " + msg);
189 if (VDBG) log(" extras = " + intent.getExtras());
211 if (VDBG) {
353 if (VDBG) log("- actual number to dial: '" + number + "'");
364 if (VDBG) log("- got Phone instance: " + phone + ", class = " + phone.getClass());
494 if (VDBG) log("placeCall: PhoneUtils.placeCall() succeeded for regular call '"
506 if (VDBG) log ("- inCallUiState.inCallScreenMode = "
509 if (VDBG) lo
[all...]
H A DBluetoothPhoneService.java57 private static final boolean VDBG = (PhoneGlobals.DBG_LEVEL >= 2); // even more logging field in class:BluetoothPhoneService
106 if (VDBG) Log.d(TAG, "mAdapter null");
127 if(VDBG) Log.d(TAG, "registerForServiceStateChanged");
153 if (VDBG) Log.d(TAG, "BluetoothPhoneService started");
178 if (VDBG) Log.d(TAG, "handleMessage: " + msg.what);
209 if(VDBG) Log.d(TAG, "updateBtPhoneStateAfterRadioTechnologyChange...");
246 if (VDBG)
573 if (VDBG) log("Filling clccConnections[0] for INCOMING state");
578 if (VDBG) log("Filling clccConnections[0] & [1] for CALL WAITING state");
584 if (VDBG) {
[all...]
H A DCallNotifier.java68 private static final boolean VDBG = (PhoneGlobals.DBG_LEVEL >= 2); field in class:CallNotifier
424 if (VDBG) log("- connection is ringing! state = " + state);
453 if (VDBG) log("Holding wake lock on new incoming connection.");
461 if (VDBG) log("- starting call waiting tone...");
482 if (VDBG) log("- onNewRingingConnection() done.");
587 if (VDBG) log("- CallerInfo already up to date, using available data");
590 if (VDBG) log("- Starting query, posting timeout message.");
607 if (VDBG) log("RINGING... (request to ring arrived while query is running)");
669 if (VDBG) log("RINGING... (onCustomRingQueryComplete)");
741 if (VDBG) lo
[all...]
H A DRespondViaSmsManager.java79 // Do not check in with VDBG = true, since that may write PII to the system log.
80 private static final boolean VDBG = false; field in class:RespondViaSmsManager
188 if (VDBG) log("- connection: " + c);
208 if (VDBG) log("- phoneNumber: " + phoneNumber);
263 if (VDBG) log("- message: '" + message + "'");
580 if (VDBG) log("sendText: number "
610 if (VDBG) log("launchSmsCompose: number " + phoneNumber);
614 if (VDBG) log("- Launching SMS compose UI: " + intent);
696 if (VDBG) log(" preference = '" + preference + "'");
697 if (VDBG) lo
[all...]
H A DOutgoingCallBroadcaster.java69 // Do not check in with VDBG = true, since that may write PII to the system log.
70 private static final boolean VDBG = false; field in class:OutgoingCallBroadcaster
151 if (VDBG) Log.v(TAG, "- got number from resultData: '" + number + "'");
232 if (VDBG) Log.v(TAG, "- uri: " + uri);
233 if (VDBG) Log.v(TAG, "- actual number to dial: '" + number + "'");
272 if (VDBG) {
468 if (VDBG) {
H A DCallLogger.java39 private static final boolean VDBG = (PhoneGlobals.DBG_LEVEL >= 2); field in class:CallLogger
100 if (VDBG) log("- callLogType: " + callLogType + ", UserData: " + c.getUserData());
204 if (VDBG) log("getLogNumber: " + number);
H A DPhoneUtils.java77 // Do not check in with VDBG = true, since that may write PII to the system log.
78 private static final boolean VDBG = false; field in class:PhoneUtils
582 if (VDBG) {
729 if (VDBG) {
730 // When VDBG is true we emit PII.
1454 if (VDBG) {
1532 if (VDBG) {
1562 if (VDBG) {
1684 if (VDBG) log("getCompactNameFromCallerInfo: compactName=" + compactName);
H A DNotificationMgr.java73 // Do not check in with VDBG = true, since that may write PII to the system log.
74 private static final boolean VDBG = false; field in class:NotificationMgr
496 if (VDBG) {
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DAdapterState.java40 private static final boolean VDBG = false; field in class:AdapterState
76 if (VDBG) Log.d(TAG,"isTurningOn()=" + isTurningOn);
82 if (VDBG) Log.d(TAG,"isTurningOff()=" + isTurningOff);
H A DAdapterProperties.java37 private static final boolean VDBG = false; field in class:AdapterProperties
207 if (VDBG) debugLog("State = " + mState);
/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
H A DHealthService.java60 private static final boolean VDBG = false; field in class:HealthService
160 if (VDBG) log("register datatype: " + appConfig.getDataType() + " role: " +
511 if (VDBG) log ("Health Device Application: " + config + " State Change: status:" + status);

Completed in 160 milliseconds