Loading services/autofill/java/com/android/server/autofill/ui/AutoFillUI.java +2 −1 Original line number Diff line number Diff line Loading @@ -163,7 +163,8 @@ public final class AutoFillUI { @Nullable String filterText, @NonNull String packageName, @NonNull AutoFillUiCallback callback) { if (sDebug) { Slog.d(TAG, "showFillUi(): id=" + focusedId + ", filter=" + filterText); final int size = filterText == null ? 0 : filterText.length(); Slog.d(TAG, "showFillUi(): id=" + focusedId + ", filter=" + size + " chars"); } final LogMaker log = (new LogMaker(MetricsProto.MetricsEvent.AUTOFILL_FILL_UI)) .setPackageName(packageName) Loading services/autofill/java/com/android/server/autofill/ui/FillUi.java +4 −1 Original line number Diff line number Diff line Loading @@ -204,7 +204,10 @@ final class FillUi { return; } if (count <= 0) { if (sDebug) Slog.d(TAG, "No dataset matches filter: " + mFilterText); if (sDebug) { final int size = mFilterText == null ? 0 : mFilterText.length(); Slog.d(TAG, "No dataset matches filter with " + size + " chars"); } mCallback.requestHideFillUi(); } else { if (updateContentSize()) { Loading Loading
services/autofill/java/com/android/server/autofill/ui/AutoFillUI.java +2 −1 Original line number Diff line number Diff line Loading @@ -163,7 +163,8 @@ public final class AutoFillUI { @Nullable String filterText, @NonNull String packageName, @NonNull AutoFillUiCallback callback) { if (sDebug) { Slog.d(TAG, "showFillUi(): id=" + focusedId + ", filter=" + filterText); final int size = filterText == null ? 0 : filterText.length(); Slog.d(TAG, "showFillUi(): id=" + focusedId + ", filter=" + size + " chars"); } final LogMaker log = (new LogMaker(MetricsProto.MetricsEvent.AUTOFILL_FILL_UI)) .setPackageName(packageName) Loading
services/autofill/java/com/android/server/autofill/ui/FillUi.java +4 −1 Original line number Diff line number Diff line Loading @@ -204,7 +204,10 @@ final class FillUi { return; } if (count <= 0) { if (sDebug) Slog.d(TAG, "No dataset matches filter: " + mFilterText); if (sDebug) { final int size = mFilterText == null ? 0 : mFilterText.length(); Slog.d(TAG, "No dataset matches filter with " + size + " chars"); } mCallback.requestHideFillUi(); } else { if (updateContentSize()) { Loading