Home
last modified time | relevance | path

Searched refs:LOADER_ID_SUGGESTIONS (Results 1 – 9 of 9) sorted by relevance

/aosp12/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/suggestions/
H A DSuggestionsPreferenceControllerTest.java129 verify(mLoaderManager).destroyLoader(SettingsSuggestionsLoader.LOADER_ID_SUGGESTIONS); in onStop_destroysLoader()
137 SettingsSuggestionsLoader.LOADER_ID_SUGGESTIONS, /* args= */ null, mController); in onServiceConnected_restartsLoader()
144 verify(mLoaderManager).destroyLoader(SettingsSuggestionsLoader.LOADER_ID_SUGGESTIONS); in onServiceDisconnected_destroysLoader()
150 SettingsSuggestionsLoader.LOADER_ID_SUGGESTIONS, /* args= */ null)).isInstanceOf( in onCreateLoader_returnsSettingsSuggestionsLoader()
157 SettingsSuggestionsLoader.LOADER_ID_SUGGESTIONS + 1000, /* args= */ null)); in onCreateLoader_unsupportedId_throwsIllegalArgumentException()
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/suggestions/
H A DSuggestionControllerMixin.java97 loaderManager.restartLoader(SuggestionLoader.LOADER_ID_SUGGESTIONS, in onServiceConnected()
109 loaderManager.destroyLoader(SuggestionLoader.LOADER_ID_SUGGESTIONS); in onServiceDisconnected()
115 if (id == SuggestionLoader.LOADER_ID_SUGGESTIONS) { in onCreateLoader()
H A DSuggestionControllerMixinCompat.java96 loaderManager.restartLoader(SuggestionLoader.LOADER_ID_SUGGESTIONS, in onServiceConnected()
108 loaderManager.destroyLoader(SuggestionLoader.LOADER_ID_SUGGESTIONS); in onServiceDisconnected()
114 if (id == SuggestionLoader.LOADER_ID_SUGGESTIONS) { in onCreateLoader()
H A DSuggestionLoader.java35 public static final int LOADER_ID_SUGGESTIONS = 42; field in SuggestionLoader
H A DSuggestionLoaderCompat.java29 public static final int LOADER_ID_SUGGESTIONS = 42; field in SuggestionLoaderCompat
/aosp12/packages/apps/Car/Settings/src/com/android/car/settings/suggestions/
H A DSuggestionsPreferenceController.java125 mLoaderManager.restartLoader(SettingsSuggestionsLoader.LOADER_ID_SUGGESTIONS, /* args= */ in onServiceConnected()
139 if (id == SettingsSuggestionsLoader.LOADER_ID_SUGGESTIONS) { in onCreateLoader()
229 mLoaderManager.destroyLoader(SettingsSuggestionsLoader.LOADER_ID_SUGGESTIONS); in cleanupLoader()
H A DSettingsSuggestionsLoader.java41 public static final int LOADER_ID_SUGGESTIONS = 42; field in SettingsSuggestionsLoader
/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/suggestions/
H A DSuggestionControllerMixinCompatTest.java93 verify(loaderManager).restartLoader(SuggestionLoader.LOADER_ID_SUGGESTIONS, in onServiceConnected_shouldGetSuggestion()
H A DSuggestionControllerMixinTest.java93 verify(loaderManager).restartLoader(SuggestionLoader.LOADER_ID_SUGGESTIONS, in onServiceConnected_shouldGetSuggestion()