Home | History | Annotate | Download | only in phone

Lines Matching defs:Log

35 import android.util.Log;
64 // 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);
122 if (DBG) log("CallController constructor: app = " + app);
131 if (VDBG) log("handleMessage: " + msg);
135 if (DBG) log("THREEWAY_CALLERINFO_DISPLAY_DONE...");
148 Log.wtf(TAG, "handleMessage: unexpected code: " + msg);
190 log("placeCall()... intent = " + intent);
191 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);
234 if (DBG) log("==> placeCall(): success from placeCallInternal(): " + status);
239 log("==> placeCall(): failure code from placeCallInternal(): " + status);
272 if (DBG) log("placeCallInternal()... intent = " + intent);
296 if (VDBG) log("- actual number to dial: '" + number + "'");
310 if (VDBG) log("- got Phone instance: " + phone + ", class = " + phone.getClass());
322 if (DBG) log("Voicemail number not reachable in current SIM card state.");
325 if (DBG) log("VoiceMailNumberMissingException from getInitialNumber()");
330 Log.w(TAG, "placeCall: couldn't get a phone number from Intent " + intent);
346 Log.e(TAG, "Non-CALL_EMERGENCY Intent " + intent
351 Log.e(TAG, "Received CALL_EMERGENCY Intent " + intent
368 if (DBG) log("placeCall: Emergency number detected with status = " + okToCallStatus);
370 if (DBG) log("==> UPDATING status to: " + okToCallStatus);
377 Log
400 if (DBG) log("==> placeCallInternal(): non-success status: " + okToCallStatus);
402 // Log failed call.
437 if (VDBG) log("placeCall: PhoneUtils.placeCall() succeeded for regular call '"
458 Log.i(TAG, "About to exit ECM because of an outgoing non-emergency call");
493 if (DBG) log("placeCall: specified number was an MMI code: '" + number + "'.");
506 Log.w(TAG, "placeCall: PhoneUtils.placeCall() FAILED for number '"
511 // Log failed call.
518 Log.wtf(TAG, "placeCall: unknown callStatus " + callStatus
534 if (VDBG) log("checkIfOkToInitiateOutgoingCall: ServiceState = " + state);
577 if (DBG) log("handleOutgoingCallError(): status = " + status);
584 Log.wtf(TAG, "handleOutgoingCallError: SUCCESS isn't an error");
652 Log.wtf(TAG, "handleOutgoingCallError: unexpected status code " + status);
668 private static void log(String msg) {
669 Log.d(TAG, msg);