/aosp12/frameworks/base/core/java/android/service/autofill/augmented/ |
H A D | FillWindow.java | 102 if (sDebug) { in update() 151 if (sDebug) { in update() 164 if (sDebug) Log.d(TAG, "show()"); in show() 189 if (sDebug) Log.d(TAG, "hide()"); in hide() 206 if (sDebug) Log.d(TAG, "handleShow()"); in handleShow() 220 if (sDebug) Log.d(TAG, "Exception showing window."); in handleShow() 227 if (sDebug) Log.d(TAG, "handleHide()"); in handleHide() 234 if (sDebug) Log.d(TAG, "Exception hiding window."); in handleHide() 246 if (sDebug) { in destroy() 313 if (sDebug) Log.d(TAG, "FillWindowPresenter.show()"); in show() [all …]
|
H A D | AugmentedAutofillService.java | 78 static boolean sDebug = Build.IS_USER ? false : true; field in AugmentedAutofillService 243 if (sDebug || debug) { in handleOnConnected() 246 sDebug = debug; in handleOnConnected() 274 if (sDebug) Log.d(TAG, "Reusing proxy for session " + sessionId); in handleOnFillRequest() 317 if (sDebug) Log.d(TAG, "onUnbind(): no proxy to destroy"); in handleOnUnbind() 321 if (sDebug) Log.d(TAG, "onUnbind(): destroying " + size + " proxies"); in handleOnUnbind() 608 if (sDebug) { in logEvent() 620 if (sDebug) { in logEvent() 631 if (sDebug) Log.d(TAG, "UI shown in " + formatDuration(duration)); in logEvent() 640 if (sDebug) Log.d(TAG, "UI destroyed in " + formatDuration(duration)); in logEvent() [all …]
|
H A D | FillController.java | 18 import static android.service.autofill.augmented.AugmentedAutofillService.sDebug; 57 if (sDebug) { in autofill()
|
H A D | FillCallback.java | 18 import static android.service.autofill.augmented.AugmentedAutofillService.sDebug; 53 if (sDebug) Log.d(TAG, "onSuccess(): " + response); in onSuccess()
|
/aosp12/frameworks/base/core/java/android/service/autofill/ |
H A D | DateValueSanitizer.java | 19 import static android.view.autofill.Helper.sDebug; 68 if (sDebug) Log.d(TAG, value + " is not a date"); in sanitize() 77 if (sDebug) Log.d(TAG, "Transformed " + date + " to " + converted); in sanitize() 80 if (sDebug) Log.d(TAG, "Sanitized to " + sanitized); in sanitize() 93 if (!sDebug) return super.toString(); in toString()
|
H A D | LuhnChecksumValidator.java | 19 import static android.view.autofill.Helper.sDebug; 95 if (sDebug) Log.d(TAG, "No partial number for id " + id); in isValid() 103 if (sDebug) Log.d(TAG, "isValid(" + number.length() + " chars): " + valid); in isValid() 109 if (!sDebug) return super.toString(); in toString()
|
H A D | TextValueSanitizer.java | 19 import static android.view.autofill.Helper.sDebug; 74 if (sDebug) Slog.d(TAG, "sanitize() called with non-text value: " + value); in sanitize() 83 if (sDebug) Slog.d(TAG, "sanitize(): " + mRegex + " failed for " + value); in sanitize() 100 if (!sDebug) return super.toString(); in toString()
|
H A D | InternalTransformation.java | 18 import static android.view.autofill.Helper.sDebug; 64 if (sDebug) Log.d(TAG, "getPresentation(): applying " + size + " transformations"); in batchApply() 69 if (sDebug) Log.d(TAG, "#" + i + ": " + transformation); in batchApply()
|
H A D | OptionalValidators.java | 19 import static android.view.autofill.Helper.sDebug; 50 if (sDebug) Log.d(TAG, "isValid(" + validator + "): " + valid); in isValid() 62 if (!sDebug) return super.toString(); in toString()
|
H A D | RequiredValidators.java | 19 import static android.view.autofill.Helper.sDebug; 50 if (sDebug) Log.d(TAG, "isValid(" + validator + "): " + valid); in isValid() 61 if (!sDebug) return super.toString(); in toString()
|
H A D | RegexValidator.java | 19 import static android.view.autofill.Helper.sDebug; 68 if (sDebug) Log.d(TAG, "isValid(): " + valid); in isValid() 77 if (!sDebug) return super.toString(); in toString()
|
H A D | DateTransformation.java | 19 import static android.view.autofill.Helper.sDebug; 82 if (sDebug) Log.d(TAG, "Transformed " + date + " to " + transformed); in apply() 95 if (!sDebug) return super.toString(); in toString()
|
H A D | CharSequenceTransformation.java | 19 import static android.view.autofill.Helper.sDebug; 81 if (sDebug) Log.d(TAG, size + " fields on id " + childViewId); in apply() 93 if (sDebug) Log.d(TAG, "Match for " + field.first + " failed on id " + id); in apply() 177 if (!sDebug) return super.toString(); in toString()
|
H A D | FieldClassification.java | 19 import static android.view.autofill.Helper.sDebug; 68 if (!sDebug) return super.toString(); in toString() 150 if (!sDebug) return super.toString(); in toString()
|
H A D | ImageTransformation.java | 19 import static android.view.autofill.Helper.sDebug; 81 if (sDebug) { in apply() 105 if (sDebug) Log.d(TAG, "No match for " + value); in apply() 214 if (!sDebug) return super.toString(); in toString()
|
H A D | NegationValidator.java | 19 import static android.view.autofill.Helper.sDebug; 49 if (!sDebug) return super.toString(); in toString()
|
/aosp12/frameworks/base/media/java/android/mtp/ |
H A D | MtpStorageManager.java | 757 if (sDebug) in handleRemovedObject() 896 if (sDebug) in beginSendObject() 918 if (sDebug) in endSendObject() 931 if (sDebug) in beginRenameObject() 956 if (sDebug) in endRenameObject() 984 if (sDebug) in beginRemoveObject() 997 if (sDebug) in endRemoveObject() 1015 if (sDebug) in beginMoveObject() 1055 if (sDebug) in endMoveObject() 1089 if (sDebug) in beginCopyObject() [all …]
|
/aosp12/frameworks/base/services/autofill/java/com/android/server/autofill/ui/ |
H A D | SaveUi.java | 19 import static com.android.server.autofill.Helper.sDebug; 119 if (sDebug) Slog.d(TAG, "OneTimeListener.onSave(): " + mDone); in onSave() 128 if (sDebug) Slog.d(TAG, "OneTimeListener.onCancel(): " + mDone); in onCancel() 137 if (sDebug) Slog.d(TAG, "OneTimeListener.onDestroy(): " + mDone); in onDestroy() 194 if (sDebug) { in SaveUi() 204 if (sDebug) { in SaveUi() 426 if (sDebug) Slog.d(TAG, "Skipping batch update #" + i ); in applyCustomDescription() 440 if (sDebug) { in applyCustomDescription() 514 if (sDebug) Slog.d(TAG, "hiding UI until restored with token " + token); in startIntentSenderWithRestore() 565 if (sDebug) { in setServiceIcon() [all …]
|
H A D | AutoFillUI.java | 18 import static com.android.server.autofill.Helper.sDebug; 192 if (sDebug) { in showFillUi() 289 if (sDebug) Slog.d(TAG, "postpone fill UI request.."); in showFillUi() 450 if (sDebug) Slog.d(TAG, "destroySaveUiUiThread(): already destroyed"); in destroySaveUiUiThread() 454 if (sDebug) Slog.d(TAG, "destroySaveUiUiThread(): " + pendingSaveUi); in destroySaveUiUiThread() 460 if (sDebug) Slog.d(TAG, "destroySaveUiUiThread(): notifying client"); in destroySaveUiUiThread() 468 if (sDebug) Slog.d(TAG, "start the pending fill UI request.."); in destroySaveUiUiThread() 486 if (sDebug) { in hideAllUiThread()
|
H A D | CustomScrollView.java | 18 import static com.android.server.autofill.Helper.sDebug; 86 if (sDebug) { in calculateDimensions()
|
/aosp12/frameworks/base/services/autofill/java/com/android/server/autofill/ |
H A D | AutofillInlineSuggestionsRequestSession.java | 20 import static com.android.server.autofill.Helper.sDebug; 158 if (sDebug) { in onInlineSuggestionsResponseLocked() 197 if (sDebug) Slog.d(TAG, "onCreateInlineSuggestionsRequestLocked called: " + mAutofillId); in onCreateInlineSuggestionsRequestLocked() 245 if (sDebug) Slog.d(TAG, "Send inline response: " + response.getInlineSuggestions().size()); in updateResponseToImeUncheckLocked() 268 if (sDebug) { in maybeNotifyFillUiEventLocked() 383 if (sDebug) Slog.d(TAG, "onInlineSuggestionsUnsupported() called."); in onInlineSuggestionsUnsupported() 396 if (sDebug) Slog.d(TAG, "onInlineSuggestionsRequest() received: " + request); in onInlineSuggestionsRequest() 461 if (sDebug) Slog.d(TAG, "onInlineSuggestionsSessionInvalidated() called."); in onInlineSuggestionsSessionInvalidated()
|
H A D | Session.java | 658 if (sDebug) { 1069 if (sDebug) { 1128 if (sDebug) { 1259 if (sDebug) { 1501 if (sDebug) { 1578 if (sDebug) { 1588 if (sDebug) { 1629 if (sDebug) { 2382 if (sDebug) { 2411 if (sDebug) { [all …]
|
H A D | FieldClassificationStrategy.java | 21 import static com.android.server.autofill.Helper.sDebug; 123 if (sDebug) Slog.d(TAG, "reset(): unbinding service."); in reset() 132 if (sDebug) Slog.d(TAG, "reset(): service is not bound. Do nothing."); in reset() 151 if (sDebug) Slog.d(TAG, "service is null; queuing command"); in connectAndRun() 173 if (sDebug) Slog.d(TAG, "running " + size + " queued commands"); in connectAndRun() 184 } else if (sDebug) Slog.d(TAG, "no queued commands"); in connectAndRun()
|
H A D | Helper.java | 57 public static boolean sDebug = false; field in Helper 193 if (sDebug) Slog.d(TAG, "sanitizeUrlBar(): empty on " + urlBarNode.getIdEntry()); in sanitizeUrlBar() 197 if (sDebug) { in sanitizeUrlBar() 253 if (sDebug) Slog.d(TAG, "Service provided " + size + " sanitizers"); in createSanitizers() 258 if (sDebug) { in createSanitizers()
|
/aosp12/frameworks/base/core/java/android/view/contentcapture/ |
H A D | ContentCaptureHelper.java | 44 public static boolean sDebug = true; field in ContentCaptureHelper 77 sVerbose = sDebug = false; in setLoggingLevel() 83 sDebug = true; in setLoggingLevel()
|