Home | History | Annotate | Download | only in phone

Lines Matching refs:log

38 import android.util.Log;
68 // Do not check in with VDBG = true, since that may write PII to the system log.
114 Log.wtf(TAG, "init() called multiple times! sInstance = " + sInstance);
126 if (DBG) log("CallController constructor: app = " + app);
135 if (VDBG) log("handleMessage: " + msg);
139 if (DBG) log("THREEWAY_CALLERINFO_DISPLAY_DONE...");
151 Log.wtf(TAG, "handleMessage: unexpected code: " + msg);
193 log("placeCall()... intent = " + intent);
194 if (VDBG) log(" extras = " + intent.getExtras());
201 Log.wtf(TAG, "placeCall: called with null intent");
208 Log.wtf(TAG, "placeCall: intent had no data");
215 log("- action: " + action);
216 log("- uri: " + uri);
217 log("- scheme: " + scheme);
218 log("- number: " + number);
227 Log.wtf(TAG, "placeCall: unexpected intent action " + action);
255 if (DBG) log("==> placeCall(): success from placeCallInternal(): " + status);
260 log("==> placeCall(): failure code from placeCallInternal(): " + status);
293 if (DBG) log("placeCallInternal()... intent = " + intent);
317 if (VDBG) log("- actual number to dial: '" + number + "'");
328 if (VDBG) log("- got Phone instance: " + phone + ", class = " + phone.getClass());
340 if (DBG) log("Voicemail number not reachable in current SIM card state.");
343 if (DBG) log("VoiceMailNumberMissingException from getInitialNumber()");
348 Log.w(TAG, "placeCall: couldn't get a phone number from Intent " + intent);
364 Log.e(TAG, "Non-CALL_EMERGENCY Intent " + intent
369 Log.e(TAG, "Received CALL_EMERGENCY Intent " + intent
386 if (DBG) log("placeCall: Emergency number detected with status = " + okToCallStatus);
388 if (DBG) log("==> UPDATING status to: " + okToCallStatus);
395 Log.i(TAG, "placeCall: Trying to make emergency call while POWER_OFF!");
418 if (DBG) log("==> placeCallInternal(): non-success status: " + okToCallStatus);
420 // Log failed call.
455 if (VDBG) log("placeCall: PhoneUtils.placeCall() succeeded for regular call '"
475 Log.i(TAG, "About to exit ECM because of an outgoing non-emergency call");
512 if (DBG) log("placeCall: specified number was an MMI code: '" + number + "'.");
525 Log.w(TAG, "placeCall: PhoneUtils.placeCall() FAILED for number '"
530 // Log failed call.
537 Log.wtf(TAG, "placeCall: unknown callStatus " + callStatus
553 if (VDBG) log("checkIfOkToInitiateOutgoingCall: ServiceState = " + state);
596 if (DBG) log("handleOutgoingCallError(): status = " + status);
603 Log.wtf(TAG, "handleOutgoingCallError: SUCCESS isn't an error");
672 Log.wtf(TAG, "handleOutgoingCallError: unexpected status code " + status);
691 Log.i(TAG, "checkForOtaspCall: handling OTASP intent! " + intent);
701 if (DBG) log("checkForOtaspCall: not an OTASP call.");
710 private static void log(String msg) {
711 Log.d(TAG, msg);