Home | History | Annotate | Download | only in phone

Lines Matching defs:log

36 import android.util.Log;
66 // Do not check in with VDBG = true, since that may write PII to the system log.
110 Log.wtf(TAG, "init() called multiple times! sInstance = " + sInstance);
121 if (DBG) log("CallController constructor: app = " + app);
129 if (VDBG) log("handleMessage: " + msg);
133 if (DBG) log("THREEWAY_CALLERINFO_DISPLAY_DONE...");
146 Log.wtf(TAG, "handleMessage: unexpected code: " + msg);
188 log("placeCall()... intent = " + intent);
189 if (VDBG) log(" extras = " + intent.getExtras());
198 Log.wtf(TAG, "placeCall: called with null intent");
205 Log.wtf(TAG, "placeCall: intent had no data");
212 log("- action: " + action);
213 log("- uri: " + uri);
214 log("- scheme: " + scheme);
215 log("- number: " + number);
224 Log.wtf(TAG, "placeCall: unexpected intent action " + action);
261 if (DBG) log("==> placeCall(): success from placeCallInternal(): " + status);
281 log("==> placeCall(): failure code from placeCallInternal(): " + status);
328 if (DBG) log("placeCallInternal()... intent = " + intent);
353 if (VDBG) log("- actual number to dial: '" + number + "'");
364 if (VDBG) log("- got Phone instance: " + phone + ", class = " + phone.getClass());
376 if (DBG) log("Voicemail number not reachable in current SIM card state.");
379 if (DBG) log("VoiceMailNumberMissingException from getInitialNumber()");
384 Log.w(TAG, "placeCall: couldn't get a phone number from Intent " + intent);
400 Log.e(TAG, "Non-CALL_EMERGENCY Intent " + intent
405 Log.e(TAG, "Received CALL_EMERGENCY Intent " + intent
422 if (DBG) log("placeCall: Emergency number detected with status = " + okToCallStatus);
424 if (DBG) log("==> UPDATING status to: " + okToCallStatus);
431 Log.i(TAG, "placeCall: Trying to make emergency call while POWER_OFF!");
454 if (DBG) log("==> placeCallInternal(): non-success status: " + okToCallStatus);
456 // Log failed call.
494 if (VDBG) log("placeCall: PhoneUtils.placeCall() succeeded for regular call '"
506 if (VDBG) log ("- inCallUiState.inCallScreenMode = "
509 if (VDBG) log ("==> OTA_NORMAL note: switching to OTA_STATUS_LISTENING.");
547 Log.i(TAG, "About to exit ECM because of an outgoing non-emergency call");
584 if (DBG) log("placeCall: specified number was an MMI code: '" + number + "'.");
597 Log.w(TAG, "placeCall: PhoneUtils.placeCall() FAILED for number '"
602 // Log failed call.
609 Log.wtf(TAG, "placeCall: unknown callStatus " + callStatus
625 if (VDBG) log("checkIfOkToInitiateOutgoingCall: ServiceState = " + state);
671 if (DBG) log("handleOutgoingCallError(): status = " + status);
684 Log.wtf(TAG, "handleOutgoingCallError: SUCCESS isn't an error");
757 Log.wtf(TAG, "handleOutgoingCallError: unexpected status code " + status);
771 Log.i(TAG, "checkForOtaspCall: handling OTASP intent! " + intent);
781 if (DBG) log("checkForOtaspCall: not an OTASP call.");
790 private static void log(String msg) {
791 Log.d(TAG, msg);