/packages/apps/Camera2/src/com/android/camera/debug/ |
D | Log.java | 65 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 71 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 77 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 83 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 89 if (isLoggable(tag, android.util.Log.ERROR)) { in e() 95 if (isLoggable(tag, android.util.Log.ERROR)) { in e() 101 if (isLoggable(tag, android.util.Log.DEBUG)) { in e() 107 if (isLoggable(tag, android.util.Log.ERROR)) { in e() 113 if (isLoggable(tag, android.util.Log.INFO)) { in i() 119 if (isLoggable(tag, android.util.Log.INFO)) { in i() [all …]
|
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/ |
D | LogUtils.java | 75 return Log.isLoggable(tag, Log.DEBUG) || Log.isLoggable(TAG, Log.DEBUG); in isDebugLoggingEnabled() 140 public static boolean isLoggable(String tag, int level) { in isLoggable() method in LogUtils 144 return Log.isLoggable(tag, level) || Log.isLoggable(TAG, level); in isLoggable() 157 if (isLoggable(tag, VERBOSE)) { in v() 173 if (isLoggable(tag, VERBOSE)) { in v() 188 if (isLoggable(tag, DEBUG)) { in d() 204 if (isLoggable(tag, DEBUG)) { in d() 219 if (isLoggable(tag, INFO)) { in i() 235 if (isLoggable(tag, INFO)) { in i() 250 if (isLoggable(tag, WARN)) { in w() [all …]
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
D | LogUtils.java | 102 return Log.isLoggable(tag, Log.DEBUG) || Log.isLoggable(TAG, Log.DEBUG); in isDebugLoggingEnabled() 169 public static boolean isLoggable(String tag, int level) { in isLoggable() method in LogUtils 173 return Log.isLoggable(tag, level) || Log.isLoggable(TAG, level); in isLoggable() 187 if (isLoggable(tag, VERBOSE)) { in v() 205 if (isLoggable(tag, VERBOSE)) { in v() 222 if (isLoggable(tag, DEBUG)) { in d() 240 if (isLoggable(tag, DEBUG)) { in d() 257 if (isLoggable(tag, INFO)) { in i() 275 if (isLoggable(tag, INFO)) { in i() 292 if (isLoggable(tag, WARN)) { in w() [all …]
|
/packages/services/Car/service/src/com/android/car/trust/ |
D | BleManager.java | 100 if (Log.isLoggable(TAG, Log.DEBUG)) { in startAdvertising() 120 if (Log.isLoggable(TAG, Log.DEBUG)) { in openGattServer() 149 if (Log.isLoggable(TAG, Log.DEBUG)) { in startAdvertisingInternally() 168 if (Log.isLoggable(TAG, Log.DEBUG)) { in stopAdvertising() 186 if (Log.isLoggable(TAG, Log.DEBUG)) { in notifyCharacteristicChanged() 232 if (Log.isLoggable(TAG, Log.DEBUG)) { in stopGattServer() 301 if (Log.isLoggable(TAG, Log.DEBUG)) { 320 if (Log.isLoggable(TAG, Log.DEBUG)) { 329 if (Log.isLoggable(TAG, Log.DEBUG)) { 342 if (Log.isLoggable(TAG, Log.DEBUG)) { [all …]
|
D | CarBleTrustAgent.java | 61 if (Log.isLoggable(TAG, Log.DEBUG)) { in onCreate() 87 if (Log.isLoggable(TAG, Log.DEBUG)) { in onDestroy() 101 if (Log.isLoggable(TAG, Log.DEBUG)) { in onDeviceLocked() 107 if (Log.isLoggable(TAG, Log.DEBUG)) { in onDeviceLocked() 113 if (Log.isLoggable(TAG, Log.DEBUG)) { in onDeviceLocked() 126 if (Log.isLoggable(TAG, Log.DEBUG)) { in onDeviceUnlocked() 132 if (Log.isLoggable(TAG, Log.DEBUG)) { in onDeviceUnlocked() 145 if (Log.isLoggable(TAG, Log.DEBUG)) { in onEscrowTokenRemoved() 159 if (Log.isLoggable(TAG, Log.DEBUG)) { in onEscrowTokenStateReceived() 172 if (Log.isLoggable(TAG, Log.DEBUG)) { in onEscrowTokenAdded() [all …]
|
D | CarTrustAgentEnrollmentService.java | 372 if (Log.isLoggable(TAG, Log.DEBUG)) { in onEscrowTokenAdded() 397 if (Log.isLoggable(TAG, Log.DEBUG)) { in onEscrowTokenRemoved() 416 if (Log.isLoggable(TAG, Log.DEBUG)) { in onEscrowTokenRemoved() 439 if (Log.isLoggable(TAG, Log.DEBUG)) { in onEscrowTokenActiveStateChanged() 509 if (Log.isLoggable(TAG, Log.DEBUG)) { in onEscrowTokenActiveStateChanged() 562 if (Log.isLoggable(TAG, Log.DEBUG)) { in onRemoteDeviceDisconnected() 590 if (Log.isLoggable(TAG, Log.DEBUG)) { in onEnrollmentDataReceived() 636 if (Log.isLoggable(TAG, Log.DEBUG)) { in notifyDeviceIdReceived() 646 if (Log.isLoggable(TAG, Log.DEBUG)) { in notifyDeviceIdReceived() 676 if (Log.isLoggable(TAG, Log.DEBUG)) { in processInitEncryptionMessage() [all …]
|
D | CarTrustAgentBleManager.java | 180 if (Log.isLoggable(TAG, Log.DEBUG)) { in onCharacteristicWrite() 324 if (Log.isLoggable(TAG, Log.DEBUG)) { in resolveBLEVersion() 416 if (Log.isLoggable(TAG, Log.DEBUG)) { in startEnrollmentAdvertising() 431 if (Log.isLoggable(TAG, Log.DEBUG)) { in stopEnrollmentAdvertising() 487 if (Log.isLoggable(TAG, Log.DEBUG)) { in handleClientAckMessage() 521 if (Log.isLoggable(TAG, Log.DEBUG)) { in sendMessage() 529 if (Log.isLoggable(TAG, Log.DEBUG)) { in sendMessage() 558 if (Log.isLoggable(TAG, Log.DEBUG)) { in writeNextMessageInQueue() 637 if (Log.isLoggable(TAG, Log.DEBUG)) { 657 if (Log.isLoggable(TAG, Log.DEBUG)) { [all …]
|
/packages/apps/Car/Radio/src/com/android/car/radio/util/ |
D | Log.java | 36 public static boolean isLoggable(@Nullable String tag, int level) { in isLoggable() method in Log 37 return android.util.Log.isLoggable(tag, level); in isLoggable() 42 if (!isLoggable(tag, VERBOSE)) return 0; in v() 48 if (!isLoggable(tag, DEBUG)) return 0; in d() 54 if (!isLoggable(tag, INFO)) return 0; in i() 60 if (!isLoggable(tag, WARN)) return 0; in w() 66 if (!isLoggable(tag, ERROR)) return 0; in e() 72 if (!isLoggable(tag, ERROR)) return 0; in e()
|
/packages/services/Car/tests/CarTrustAgentClientApp/src/com/android/car/trust/client/ |
D | SimpleBleClient.java | 87 if (Log.isLoggable(TAG, Log.DEBUG)) { in start() 97 if (Log.isLoggable(TAG, Log.DEBUG)) { in start() 178 if (Log.isLoggable(TAG, Log.DEBUG)) { in executeAction() 224 if (Log.isLoggable(TAG, Log.DEBUG)) { 233 if (Log.isLoggable(TAG, Log.DEBUG)) { 249 if (Log.isLoggable(TAG, Log.DEBUG)) { 268 if (Log.isLoggable(TAG, Log.DEBUG)) { 296 if (Log.isLoggable(TAG, Log.DEBUG)) { 307 if (Log.isLoggable(TAG, Log.DEBUG)) { 320 if (Log.isLoggable(TAG, Log.DEBUG)) { [all …]
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
D | SyncManager.java | 150 if (LogUtil.isLoggable(TAG, LogUtil.DEBUG)) { 172 if (LogUtil.isLoggable(TAG, LogUtil.DEBUG)) { in onNewMessageInserted() 176 } else if (LogUtil.isLoggable(TAG, LogUtil.DEBUG)) { in onNewMessageInserted() 189 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in shouldSync() 197 if (LogUtil.isLoggable(TAG, LogUtil.DEBUG)) { in shouldSync() 206 if (LogUtil.isLoggable(TAG, LogUtil.DEBUG)) { in shouldSync() 212 if (LogUtil.isLoggable(TAG, LogUtil.DEBUG)) { in shouldSync() 276 if (LogUtil.isLoggable(TAG, LogUtil.DEBUG)) { in complete() 366 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onChange() 400 if (LogUtil.isLoggable(TAG, LogUtil.DEBUG)) { in clear()
|
D | NoConfirmationSmsSendService.java | 56 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onHandleIntent() 62 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onHandleIntent() 70 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onHandleIntent() 90 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onHandleIntent() 100 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onHandleIntent() 114 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onHandleIntent() 121 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onHandleIntent()
|
/packages/apps/Car/LocalMediaPlayer/src/com/android/car/media/localmediaplayer/ |
D | Player.java | 171 if (Log.isLoggable(TAG, Log.DEBUG)) { in onPlay() 185 if (Log.isLoggable(TAG, Log.DEBUG)) { in onPause() 307 if (Log.isLoggable(TAG, Log.DEBUG)) { in startPlayback() 343 if (Log.isLoggable(TAG, Log.DEBUG)) { in resumePlayback() 390 if (Log.isLoggable(TAG, Log.DEBUG)) { in pausePlayback() 412 if (Log.isLoggable(TAG, Log.DEBUG)) { in stopPlayback() 429 if (Log.isLoggable(TAG, Log.DEBUG)) { in advance() 447 if (Log.isLoggable(TAG, Log.DEBUG)) { in retreat() 475 if (Log.isLoggable(TAG, Log.DEBUG)) { in play() 521 if (Log.isLoggable(TAG, Log.DEBUG)) { in shuffle() [all …]
|
/packages/apps/Messaging/src/com/android/messaging/widget/ |
D | BaseWidgetFactory.java | 69 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in BaseWidgetFactory() 79 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onCreate() 86 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onDestroy() 99 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onDataSetChanged() 128 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in getCount() 134 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in getCount() 149 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { 208 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
|
D | BaseWidgetProvider.java | 54 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onReceive() 70 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onReceive() 92 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in getWidgetSize() 107 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in getWidgetSize() 129 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in getWidgetSize() 157 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onAppWidgetOptionsChanged() 175 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onDeleted()
|
D | WidgetConversationProvider.java | 57 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in updateWidget() 79 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in rebuildWidget() 101 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in rebuildWidget() 169 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in notifyMessagesChanged() 184 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in notifyConversationDeleted() 210 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in notifyConversationRenamed() 229 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onReceive() 244 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) { in onReceive()
|
/packages/apps/Car/libs/car-assist-client-lib/src/com/android/car/assist/client/tts/ |
D | TextToSpeechHelper.java | 123 if (Log.isLoggable(TAG, Log.DEBUG)) { in maybeInitAndKeepAlive() 135 if (Log.isLoggable(TAG, Log.DEBUG)) { in handleInitCompleted() 216 if (Log.isLoggable(TAG, Log.DEBUG)) { in playInternal() 248 if (Log.isLoggable(TAG, Log.DEBUG)) { in shutdownEngine() 287 if (Log.isLoggable(TAG, Log.DEBUG)) { 296 if (Log.isLoggable(TAG, Log.DEBUG)) { 305 if (Log.isLoggable(TAG, Log.DEBUG)) { 314 if (Log.isLoggable(TAG, Log.DEBUG)) { 322 if (Log.isLoggable(TAG, Log.DEBUG)) { 330 if (Log.isLoggable(TAG, Log.DEBUG)) {
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/ |
D | TestAuthenticator.java | 64 if (Log.isLoggable(TestauthConstants.LOG_TAG, Log.VERBOSE)) { in addAccount() 86 if (Log.isLoggable(TestauthConstants.LOG_TAG, Log.VERBOSE)) { in getAuthToken() 100 if (Log.isLoggable(TestauthConstants.LOG_TAG, Log.VERBOSE)) { in confirmCredentials() 108 if (Log.isLoggable(TestauthConstants.LOG_TAG, Log.VERBOSE)) { in editProperties() 117 if (Log.isLoggable(TestauthConstants.LOG_TAG, Log.VERBOSE)) { in getAuthTokenLabel() 129 if (Log.isLoggable(TestauthConstants.LOG_TAG, Log.VERBOSE)) { in hasFeatures() 140 if (Log.isLoggable(TestauthConstants.LOG_TAG, Log.VERBOSE)) { in updateCredentials()
|
/packages/services/Telephony/src/com/android/services/telephony/ |
D | Log.java | 30 public static final boolean DEBUG = isLoggable(android.util.Log.DEBUG); 31 public static final boolean INFO = isLoggable(android.util.Log.INFO); 32 public static final boolean VERBOSE = isLoggable(android.util.Log.VERBOSE); 33 public static final boolean WARN = isLoggable(android.util.Log.WARN); 34 public static final boolean ERROR = isLoggable(android.util.Log.ERROR); 38 public static boolean isLoggable(int level) { in isLoggable() method in Log 39 return FORCE_LOGGING || android.util.Log.isLoggable(TAG, level); in isLoggable()
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
D | LogUtils.java | 76 public boolean isVerboseLoggable() { return DEBUG || Log.isLoggable(logTag, Log.VERBOSE); } in isVerboseLoggable() 77 public boolean isDebugLoggable() { return DEBUG || Log.isLoggable(logTag, Log.DEBUG); } in isDebugLoggable() 78 public boolean isInfoLoggable() { return DEBUG || Log.isLoggable(logTag, Log.INFO); } in isInfoLoggable() 79 public boolean isWarnLoggable() { return DEBUG || Log.isLoggable(logTag, Log.WARN); } in isWarnLoggable() 80 public boolean isErrorLoggable() { return DEBUG || Log.isLoggable(logTag, Log.ERROR); } in isErrorLoggable() 81 public boolean isWtfLoggable() { return DEBUG || Log.isLoggable(logTag, Log.ASSERT); } in isWtfLoggable()
|
/packages/apps/Messaging/src/com/android/messaging/ui/ |
D | BugleActionBarActivity.java | 69 if (LogUtil.isLoggable(LogUtil.BUGLE_TAG, LogUtil.VERBOSE)) { in onCreate() 77 if (LogUtil.isLoggable(LogUtil.BUGLE_TAG, LogUtil.VERBOSE)) { in onStart() 85 if (LogUtil.isLoggable(LogUtil.BUGLE_TAG, LogUtil.VERBOSE)) { in onRestart() 93 if (LogUtil.isLoggable(LogUtil.BUGLE_TAG, LogUtil.VERBOSE)) { in onResume() 102 if (LogUtil.isLoggable(LogUtil.BUGLE_TAG, LogUtil.VERBOSE)) { in onPause() 110 if (LogUtil.isLoggable(LogUtil.BUGLE_TAG, LogUtil.VERBOSE)) { in onStop() 148 if (LogUtil.isLoggable(LogUtil.BUGLE_TAG, LogUtil.VERBOSE)) { in onDisplayHeightChanged()
|
/packages/apps/Car/LensPicker/src/com/android/support/car/lenspicker/ |
D | LensPickerTrampolineActivity.java | 94 if (Log.isLoggable(TAG, Log.DEBUG)) { in onCreate() 100 if (Log.isLoggable(TAG, Log.DEBUG)) { in onCreate() 138 if (Log.isLoggable(TAG, Log.DEBUG)) { in launchLastRunOrDefaultApplication() 162 if (Log.isLoggable(TAG, Log.DEBUG)) { in maybeRelaunchLastIntent() 172 if (Log.isLoggable(TAG, Log.DEBUG)) { in maybeRelaunchLastIntent() 186 if (Log.isLoggable(TAG, Log.DEBUG)) { in maybeRelaunchLastIntent()
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
D | CalendarInstancesHelper.java | 228 if (Log.isLoggable(CalendarProvider2.TAG, Log.ERROR)) { in performInstanceExpansion() 264 if (Log.isLoggable(CalendarProvider2.TAG, Log.ERROR)) { in performInstanceExpansion() 276 if (Log.isLoggable(CalendarProvider2.TAG, Log.ERROR)) { in performInstanceExpansion() 283 if (Log.isLoggable(CalendarProvider2.TAG, Log.DEBUG)) { in performInstanceExpansion() 297 if (Log.isLoggable(CalendarProvider2.TAG, Log.ERROR)) { in performInstanceExpansion() 390 if (Log.isLoggable(CalendarProvider2.TAG, Log.ERROR)) { in performInstanceExpansion() 417 if (Log.isLoggable(CalendarProvider2.TAG, Log.ERROR)) { in performInstanceExpansion() 421 if (Log.isLoggable(CalendarProvider2.TAG, Log.ERROR)) { in performInstanceExpansion() 536 if (Log.isLoggable(TAG, Log.VERBOSE)) { in expandInstanceRangeLocked() 596 if (Log.isLoggable(TAG, Log.VERBOSE)) { in getEntries() [all …]
|
/packages/services/Car/car-lib/src/android/car/cluster/renderer/ |
D | InstrumentClusterRenderingService.java | 163 if (Log.isLoggable(TAG, Log.DEBUG)) { in onBind() 213 if (Log.isLoggable(TAG, Log.DEBUG)) { in updateNavigationActivity() 232 if (Log.isLoggable(TAG, Log.DEBUG)) { in updateNavigationActivity() 239 if (Log.isLoggable(TAG, Log.DEBUG)) { in updateNavigationActivity() 246 if (Log.isLoggable(TAG, Log.DEBUG)) { in updateNavigationActivity() 265 if (Log.isLoggable(TAG, Log.DEBUG)) { in getNavigationComponentByOwner() 408 if (Log.isLoggable(TAG, Log.DEBUG)) { in setNavigationContextOwner() 530 if (Log.isLoggable(TAG, Log.DEBUG)) { in getBitmap() 596 if (Log.isLoggable(TAG, Log.DEBUG)) { in getBitmap()
|
/packages/apps/Settings/src/com/android/settings/accounts/ |
D | AddAccountSettings.java | 114 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "account added: " + bundle); 116 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "addAccount was canceled"); 118 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "addAccount failed: " + e); 120 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "addAccount failed: " + e); 138 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "restored"); in onCreate() 212 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "saved"); in onSaveInstanceState()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/accounts/ |
D | AddAccountSettings.java | 114 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "account added: " + bundle); 116 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "addAccount was canceled"); 118 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "addAccount failed: " + e); 120 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "addAccount failed: " + e); 138 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "restored"); in onCreate() 212 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "saved"); in onSaveInstanceState()
|