/frameworks/base/core/tests/coretests/src/android/util/ |
D | LogNullabilityTest.java | 33 Log.v(null, ""); in nullTag() 34 Log.d(null, ""); in nullTag() 35 Log.i(null, ""); in nullTag() 36 Log.w(null, ""); in nullTag() 37 Log.e(null, ""); in nullTag() 38 Log.wtf(null, ""); in nullTag() 39 Log.wtfStack(null, ""); in nullTag() 40 Log.println(Log.INFO, null, ""); in nullTag() 47 Log.v(null, "", new Throwable()); in nullTagWithThrowable() 48 Log.d(null, "", new Throwable()); in nullTagWithThrowable() [all …]
|
D | LogTest.java | 154 canLog = Log.isLoggable(LOG_TAG, Log.VERBOSE); in testIsLoggable() 155 canLog = Log.isLoggable(LOG_TAG, Log.VERBOSE); in testIsLoggable() 156 canLog = Log.isLoggable(LOG_TAG, Log.VERBOSE); in testIsLoggable() 157 canLog = Log.isLoggable(LOG_TAG, Log.VERBOSE); in testIsLoggable() 158 canLog = Log.isLoggable(LOG_TAG, Log.VERBOSE); in testIsLoggable() 159 canLog = Log.isLoggable(LOG_TAG, Log.VERBOSE); in testIsLoggable() 160 canLog = Log.isLoggable(LOG_TAG, Log.VERBOSE); in testIsLoggable() 161 canLog = Log.isLoggable(LOG_TAG, Log.VERBOSE); in testIsLoggable() 162 canLog = Log.isLoggable(LOG_TAG, Log.VERBOSE); in testIsLoggable() 163 canLog = Log.isLoggable(LOG_TAG, Log.VERBOSE); in testIsLoggable()
|
/frameworks/base/core/java/android/util/ |
D | Slog.java | 36 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg); in v() 40 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, in v() 41 msg + '\n' + Log.getStackTraceString(tr)); in v() 46 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag, msg); in d() 51 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag, in d() 52 msg + '\n' + Log.getStackTraceString(tr)); in d() 57 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag, msg); in i() 61 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag, in i() 62 msg + '\n' + Log.getStackTraceString(tr)); in i() 67 return Log.println_native(Log.LOG_ID_SYSTEM, Log.WARN, tag, msg); in w() [all …]
|
/frameworks/base/core/java/android/telephony/ |
D | Rlog.java | 23 import android.util.Log; 43 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag, msg); in v() 47 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag, in v() 48 msg + '\n' + Log.getStackTraceString(tr)); in v() 53 return Log.println_native(Log.LOG_ID_RADIO, Log.DEBUG, tag, msg); in d() 58 return Log.println_native(Log.LOG_ID_RADIO, Log.DEBUG, tag, in d() 59 msg + '\n' + Log.getStackTraceString(tr)); in d() 64 return Log.println_native(Log.LOG_ID_RADIO, Log.INFO, tag, msg); in i() 69 return Log.println_native(Log.LOG_ID_RADIO, Log.INFO, tag, in i() 70 msg + '\n' + Log.getStackTraceString(tr)); in i() [all …]
|
/frameworks/base/media/tests/SoundPoolTest/src/com/android/ |
D | SoundPoolTest.java | 31 import android.util.Log; 84 if (DEBUG) Log.d(LOG_TAG, "Sample " + sampleId + " load status = " + status); in onLoadComplete() 98 Log.e(LOG_TAG, "Unable to open resource"); in loadSound() 131 if (DEBUG) Log.d(LOG_TAG, "Begin sounds test"); in TestSounds() 136 if (DEBUG) Log.d(LOG_TAG, "Start note " + id); in TestSounds() 138 Log.e(LOG_TAG, "Error occurred starting note"); in TestSounds() 143 if (DEBUG) Log.d(LOG_TAG, "Stop note " + id); in TestSounds() 146 if (DEBUG) Log.d(LOG_TAG, "End sounds test"); in TestSounds() 151 if (DEBUG) Log.d(LOG_TAG, "Begin scale test"); in TestScales() 158 if (DEBUG) Log.d(LOG_TAG, "Start note " + id); in TestScales() [all …]
|
/frameworks/base/telecomm/java/android/telecom/ |
D | ConnectionServiceAdapter.java | 53 Log.w(this, "Ignoring duplicate adapter addition."); in addAdapter() 97 Log.getExternalSession()); in handleCreateConnectionComplete() 110 Log.getExternalSession()); in handleCreateConferenceComplete() 125 adapter.setActive(callId, Log.getExternalSession()); in setActive() 139 adapter.setRinging(callId, Log.getExternalSession()); in setRinging() 153 adapter.setDialing(callId, Log.getExternalSession()); in setDialing() 168 adapter.setPulling(callId, Log.getExternalSession()); in setPulling() 184 adapter.setDisconnected(callId, disconnectCause, Log.getExternalSession()); in setDisconnected() 198 adapter.setOnHold(callId, Log.getExternalSession()); in setOnHold() 213 adapter.setRingbackRequested(callId, ringback, Log.getExternalSession()); in setRingbackRequested() [all …]
|
D | ConnectionService.java | 119 private static final boolean PII_DEBUG = Log.isLoggable(android.util.Log.DEBUG); 231 Log.startSession(sessionInfo, SESSION_ADD_CS_ADAPTER); 235 args.arg2 = Log.createSubsession(); 238 Log.endSession(); 244 Log.startSession(sessionInfo, SESSION_REMOVE_CS_ADAPTER); 248 args.arg2 = Log.createSubsession(); 251 Log.endSession(); 263 Log.startSession(sessionInfo, SESSION_CREATE_CONN); 269 args.arg4 = Log.createSubsession(); 274 Log.endSession(); [all …]
|
/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothHeadset.java | 44 import android.util.Log; 355 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up); 387 Log.e(TAG, "", e); in BluetoothHeadset() 398 if (VDBG) Log.d(TAG, "Binding service..."); in doBind() 403 Log.e(TAG, "Unable to bind HeadsetService", e); in doBind() 413 if (VDBG) Log.d(TAG, "Unbinding service..."); in doUnbind() 418 Log.e(TAG, "Unable to unbind HeadsetService", e); in doUnbind() 441 Log.e(TAG, "", re); in close() 488 Log.e(TAG, Log.getStackTraceString(new Throwable())); in connect() 492 if (service == null) Log.w(TAG, "Proxy not attached to service"); in connect() [all …]
|
D | BluetoothHeadsetClient.java | 34 import android.util.Log; 489 Log.e(TAG, Log.getStackTraceString(new Throwable())); in connect() 493 if (service == null) Log.w(TAG, "Proxy not attached to service"); in connect() 517 Log.e(TAG, Log.getStackTraceString(new Throwable())); in disconnect() 521 if (service == null) Log.w(TAG, "Proxy not attached to service"); in disconnect() 542 Log.e(TAG, Log.getStackTraceString(new Throwable())); in getConnectedDevices() 546 if (service == null) Log.w(TAG, "Proxy not attached to service"); in getConnectedDevices() 570 Log.e(TAG, Log.getStackTraceString(new Throwable())); in getDevicesMatchingConnectionStates() 574 if (service == null) Log.w(TAG, "Proxy not attached to service"); in getDevicesMatchingConnectionStates() 595 Log.e(TAG, Log.getStackTraceString(new Throwable())); in getConnectionState() [all …]
|
D | BluetoothMapClient.java | 37 import android.util.Log; 52 private static final boolean DBG = Log.isLoggable(TAG, Log.DEBUG); 53 private static final boolean VDBG = Log.isLoggable(TAG, Log.VERBOSE); 193 if (DBG) Log.d(TAG, "Create BluetoothMapClient proxy object"); in BluetoothMapClient() 223 if (VDBG) Log.d(TAG, "isConnected(" + device + ")"); in isConnected() 229 Log.e(TAG, e.toString()); in isConnected() 232 Log.w(TAG, "Proxy not attached to service"); in isConnected() 233 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable())); in isConnected() 250 if (DBG) Log.d(TAG, "connect(" + device + ")" + "for MAPS MCE"); in connect() 256 Log.e(TAG, e.toString()); in connect() [all …]
|
D | BluetoothA2dp.java | 40 import android.util.Log; 332 if (service == null) Log.w(TAG, "Proxy not attached to service"); in connect() 335 Log.e(TAG, "Stack:" + Log.getStackTraceString(new Throwable())); in connect() 374 if (service == null) Log.w(TAG, "Proxy not attached to service"); in disconnect() 377 Log.e(TAG, "Stack:" + Log.getStackTraceString(new Throwable())); in disconnect() 397 if (service == null) Log.w(TAG, "Proxy not attached to service"); in getConnectedDevices() 400 Log.e(TAG, "Stack:" + Log.getStackTraceString(new Throwable())); in getConnectedDevices() 421 if (service == null) Log.w(TAG, "Proxy not attached to service"); in getDevicesMatchingConnectionStates() 424 Log.e(TAG, "Stack:" + Log.getStackTraceString(new Throwable())); in getDevicesMatchingConnectionStates() 443 if (service == null) Log.w(TAG, "Proxy not attached to service"); in getConnectionState() [all …]
|
D | BluetoothGattServer.java | 27 import android.util.Log; 76 Log.d(TAG, "onServerRegistered() - status=" + status 85 Log.e(TAG, "onServerRegistered: mCallback is null"); 98 Log.d(TAG, "onServerConnectionState() - status=" + status 106 Log.w(TAG, "Unhandled exception in callback", ex); 117 Log.d(TAG, "onServiceAdded() - handle=" + service.getInstanceId() 150 Log.w(TAG, "Unhandled exception in callback", ex); 161 if (VDBG) Log.d(TAG, "onCharacteristicReadRequest() - handle=" + handle); 166 Log.w(TAG, "onCharacteristicReadRequest() no char for handle " + handle); 174 Log.w(TAG, "Unhandled exception in callback", ex); [all …]
|
D | BluetoothHearingAid.java | 38 import android.util.Log; 191 if (service == null) Log.w(TAG, "Proxy not attached to service"); in connect() 194 Log.e(TAG, "Stack:" + Log.getStackTraceString(new Throwable())); in connect() 233 if (service == null) Log.w(TAG, "Proxy not attached to service"); in disconnect() 236 Log.e(TAG, "Stack:" + Log.getStackTraceString(new Throwable())); in disconnect() 255 if (service == null) Log.w(TAG, "Proxy not attached to service"); in getConnectedDevices() 258 Log.e(TAG, "Stack:" + Log.getStackTraceString(new Throwable())); in getConnectedDevices() 279 if (service == null) Log.w(TAG, "Proxy not attached to service"); in getDevicesMatchingConnectionStates() 282 Log.e(TAG, "Stack:" + Log.getStackTraceString(new Throwable())); in getDevicesMatchingConnectionStates() 302 if (service == null) Log.w(TAG, "Proxy not attached to service"); in getConnectionState() [all …]
|
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/debug/ |
D | Log.java | 19 public class Log { class 30 private static final Log.Tag TAG = new Log.Tag("Log"); 59 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 60 android.util.Log.d(tag.toString(), msg); in d() 65 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 66 android.util.Log.d(tag.toString(), msg, tr); in d() 71 if (isLoggable(tag, android.util.Log.ERROR)) { in e() 72 android.util.Log.e(tag.toString(), msg); in e() 77 if (isLoggable(tag, android.util.Log.ERROR)) { in e() 78 android.util.Log.e(tag.toString(), msg, tr); in e() [all …]
|
/frameworks/base/tests/CoreTests/android/core/ |
D | RequestAPITest.java | 23 import android.util.Log; 53 Log.d(LOGTAG, "Base setup context = " + mContext); in setUp() 62 Log.d(LOGTAG, "Base tearDown"); in tearDown() 64 Log.d(LOGTAG, "Base teardown done"); in tearDown() 88 Log.d(LOGTAG, "testRequestAddNullHeader start "); in testRequestAddNullHeader() 92 Log.d(LOGTAG, "testRequestAddNullHeader - returning"); in testRequestAddNullHeader() 100 Log.d(LOGTAG, "testRequestAddNullValue start "); in testRequestAddNullValue() 104 Log.d(LOGTAG, "testRequestAddNullValue - returning"); in testRequestAddNullValue() 112 Log.d(LOGTAG, "testRequestAddEmptyValue start "); in testRequestAddEmptyValue() 116 Log.d(LOGTAG, "testRequestAddEmptyValue - returning"); in testRequestAddEmptyValue() [all …]
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
D | MediaMetadataRetrieverTest.java | 19 import android.util.Log; 35 Log.v(TAG, "testGetEmbeddedPicture starts."); in testGetEmbeddedPicture() 42 Log.v(TAG, "File " + i + ": " + MediaNames.ALBUMART_TEST_FILES[i]); in testGetEmbeddedPicture() 46 … Log.v(TAG, "windows media is not supported and thus we will skip the test for this file"); in testGetEmbeddedPicture() 56 … Log.e(TAG, "Fails to get embedded picture for " + MediaNames.ALBUMART_TEST_FILES[i]); in testGetEmbeddedPicture() 60 Log.e(TAG, "Fails to setDataSource for " + MediaNames.ALBUMART_TEST_FILES[i]); in testGetEmbeddedPicture() 66 Log.v(TAG, "testGetEmbeddedPicture completes."); in testGetEmbeddedPicture() 77 Log.v(TAG, "Thumbnail processing starts"); in testThumbnailCapture() 81 Log.v(TAG, "File " + i + ": " + MediaNames.THUMBNAIL_METADATA_TEST_FILES[i]); in testThumbnailCapture() 85 … Log.v(TAG, "windows media is not supported and thus we will skip the test for this file"); in testThumbnailCapture() [all …]
|
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/ |
D | MainInteractionService.java | 24 import android.util.Log; 35 Log.i(TAG, "onAvailabilityChanged(" + status + ")"); 41 Log.i(TAG, "onDetected"); 46 Log.i(TAG, "onError"); 51 Log.i(TAG, "onRecognitionPaused"); 56 Log.i(TAG, "onRecognitionResumed"); 65 Log.i(TAG, "Creating " + this); in onReady() 66 Log.i(TAG, "Keyphrase enrollment error? " + getKeyphraseEnrollmentInfo().getParseError()); in onReady() 67 Log.i(TAG, "Keyphrase enrollment meta-data: " in onReady() 76 Log.i(TAG, "Hotword availability = " + availability); in hotwordAvailabilityChangeHelper() [all …]
|
/frameworks/base/core/java/android/accounts/ |
D | AbstractAccountAuthenticator.java | 28 import android.util.Log; 158 if (Log.isLoggable(TAG, Log.VERBOSE)) { in addAccount() 159 Log.v(TAG, "addAccount: accountType " + accountType in addAccount() 168 if (Log.isLoggable(TAG, Log.VERBOSE)) { in addAccount() 172 Log.v(TAG, "addAccount: result " + AccountManager.sanitizeResult(result)); in addAccount() 188 if (Log.isLoggable(TAG, Log.VERBOSE)) { in confirmCredentials() 189 Log.v(TAG, "confirmCredentials: " + account); in confirmCredentials() 195 if (Log.isLoggable(TAG, Log.VERBOSE)) { in confirmCredentials() 199 Log.v(TAG, "confirmCredentials: result " in confirmCredentials() 214 if (Log.isLoggable(TAG, Log.VERBOSE)) { in getAuthTokenLabel() [all …]
|
/frameworks/base/telephony/java/com/android/telephony/ |
D | Rlog.java | 20 import android.util.Log; 40 return Log.logToRadioBuffer(priority, tag, msg); in log() 44 return log(Log.VERBOSE, tag, msg); in v() 48 return log(Log.VERBOSE, tag, in v() 49 msg + '\n' + Log.getStackTraceString(tr)); in v() 53 return log(Log.DEBUG, tag, msg); in d() 57 return log(Log.DEBUG, tag, in d() 58 msg + '\n' + Log.getStackTraceString(tr)); in d() 62 return log(Log.INFO, tag, msg); in i() 66 return log(Log.INFO, tag, in i() [all …]
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
D | CodecTest.java | 37 import android.util.Log; 90 Log.v(TAG, e.toString()); in printCpuInfo() 97 Log.v(TAG, "getDuration - " + filePath); in getDuration() 103 Log.v(TAG, e.toString()); in getDuration() 106 Log.v(TAG, "Duration " + duration); in getDuration() 108 Log.v(TAG, "release"); in getDuration() 113 Log.v(TAG, "GetCurrentPosition - " + filePath); in getCurrentPosition() 120 Log.v(TAG, "start playback"); in getCurrentPosition() 129 Log.v(TAG, e.toString()); in getCurrentPosition() 134 Log.v(TAG, "mp currentPositon = " + currentPosition + " play duration = " + (t2-t1)); in getCurrentPosition() [all …]
|
/frameworks/base/services/robotests/src/com/android/server/testing/shadows/ |
D | ShadowSlog.java | 19 import android.util.Log; 29 return Log.v(tag, msg); in v() 34 return Log.v(tag, msg, tr); in v() 39 return Log.d(tag, msg); in d() 44 return Log.d(tag, msg, tr); in d() 49 return Log.i(tag, msg); in i() 54 return Log.i(tag, msg, tr); in i() 59 return Log.w(tag, msg); in w() 64 return Log.w(tag, msg, tr); in w() 69 return Log.w(tag, tr); in w() [all …]
|
/frameworks/base/core/java/android/service/quickaccesswallet/ |
D | GetWalletCardsCallbackImpl.java | 25 import android.util.Log; 60 Log.w(TAG, "Invalid GetWalletCards response"); in onSuccess() 79 Log.w(TAG, "already called"); in onSuccessInternal() 86 Log.w(TAG, "Error returning wallet cards", e); in onSuccessInternal() 92 Log.w(TAG, "already called"); in onFailureInternal() 99 Log.e(TAG, "Error returning failure message", e); in onFailureInternal() 105 Log.w(TAG, "Invalid response: response is null"); in isValidResponse() 109 Log.w(TAG, "Invalid response: walletCards is null"); in isValidResponse() 113 Log.w(TAG, "Invalid response: selectedIndex is negative"); in isValidResponse() 118 Log.w(TAG, "Invalid response: selectedIndex out of bounds"); in isValidResponse() [all …]
|
/frameworks/opt/car/setupwizard/library/main/src/com/android/car/setupwizardlib/util/ |
D | CarDrivingStateMonitor.java | 35 import android.util.Log; 81 Log.v(TAG, "Gear has reversed, exiting SetupWizard."); 112 Log.w(TAG, "MonitorStartedCount was negative"); in startMonitor() 116 Log.i(TAG, String.format( in startMonitor() 123 Log.e(TAG, "Car not connected", e); in startMonitor() 130 Log.e(TAG, "Failure connecting to Car object.", e); in startMonitor() 143 Log.e(TAG, "Car not connected", e); in startMonitor() 155 Log.e(TAG, "Car not connected", e); in startMonitor() 163 Log.e(TAG, "Failure connecting to Car object.", e); in startMonitor() 175 Log.v(TAG, "stopMonitor"); in stopMonitor() [all …]
|
/frameworks/base/core/java/android/nfc/cardemulation/ |
D | NfcFCardEmulation.java | 29 import android.util.Log; 70 Log.e(TAG, "NfcAdapter context is null."); in getInstance() 76 Log.e(TAG, "Cannot get PackageManager"); in getInstance() 81 Log.e(TAG, "This device does not support NFC-F card emulation"); in getInstance() 85 Log.e(TAG, "PackageManager query failed."); in getInstance() 95 Log.e(TAG, "This device does not implement the INfcFCardEmulation interface."); in getInstance() 126 Log.e(TAG, "Failed to recover CardEmulationService."); in getSystemCodeForService() 132 Log.e(TAG, "Failed to reach CardEmulationService."); in getSystemCodeForService() 173 Log.e(TAG, "Failed to recover CardEmulationService."); in registerSystemCodeForService() 180 Log.e(TAG, "Failed to reach CardEmulationService."); in registerSystemCodeForService() [all …]
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/location/ |
D | SettingsInjector.java | 41 import android.util.Log; 129 if (Log.isLoggable(TAG, Log.DEBUG)) { in getSettings() 130 Log.d(TAG, "Found services for profile id " + profileId + ": " + resolveInfos); in getSettings() 141 Log.w(TAG, "Unable to load service info " + resolveInfo); in getSettings() 146 Log.w(TAG, "Unable to load service info " + resolveInfo, e); in getSettings() 148 Log.w(TAG, "Unable to load service info " + resolveInfo, e); in getSettings() 151 if (Log.isLoggable(TAG, Log.DEBUG)) { in getSettings() 152 Log.d(TAG, "Loaded settings for profile id " + profileId + ": " + settings); in getSettings() 227 if (Log.isLoggable(TAG, Log.WARN)) { in parseServiceInfo() 228 Log.w(TAG, "Ignoring attempt to inject setting from app not in system image: " in parseServiceInfo() [all …]
|