Home
last modified time | relevance | path

Searched refs:Void (Results 1 – 25 of 432) sorted by relevance

12345678910>>...18

/packages/apps/Car/Hvac/src/com/android/car/hvac/
DHvacController.java401 final AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() { in requestRefresh()
403 protected Void doInBackground(Void... unused) { in requestRefresh()
427 protected void onPostExecute(Void unused) { in requestRefresh()
490 final AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() { in setTemperature()
491 protected Void doInBackground(Void... unused) { in setTemperature()
511 final AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() { in setHvacPowerState()
512 protected Void doInBackground(Void... unused) { in setHvacPowerState()
541 final AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() { in setSeatWarmerLevel()
542 protected Void doInBackground(Void... unused) { in setSeatWarmerLevel()
578 final AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() { in setFanSpeed()
[all …]
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DCallLogAsyncTaskUtil.java54 new AsyncTask<Void, Void, Void>() { in markVoicemailAsRead()
56 public Void doInBackground(Void... params) { in markVoicemailAsRead()
84 new AsyncTask<Void, Void, Void>() { in deleteVoicemail()
86 public Void doInBackground(Void... params) { in deleteVoicemail()
92 public void onPostExecute(Void result) { in deleteVoicemail()
120 new AsyncTask<Void, Void, Void>() { in markCallAsRead()
122 public Void doInBackground(Void... params) { in markCallAsRead()
/packages/apps/TV/src/com/android/tv/dvr/provider/
DDvrDbFuture.java75 public static class AddScheduleFuture extends DvrDbFuture<ScheduledRecording, Void> {
81 protected final Void dbHelperInBackground(ScheduledRecording... params) { in dbHelperInBackground()
88 public static class UpdateScheduleFuture extends DvrDbFuture<ScheduledRecording, Void> {
94 protected final Void dbHelperInBackground(ScheduledRecording... params) { in dbHelperInBackground()
101 public static class DeleteScheduleFuture extends DvrDbFuture<ScheduledRecording, Void> {
107 protected final Void dbHelperInBackground(ScheduledRecording... params) { in dbHelperInBackground()
114 public static class DvrQueryScheduleFuture extends DvrDbFuture<Void, List<ScheduledRecording>> {
136 protected final List<ScheduledRecording> dbHelperInBackground(Void... params) { in dbHelperInBackground()
161 public static class AddSeriesRecordingFuture extends DvrDbFuture<SeriesRecording, Void> {
167 protected final Void dbHelperInBackground(SeriesRecording... params) { in dbHelperInBackground()
[all …]
/packages/apps/DeskClock/src/com/android/deskclock/alarms/
DAlarmUpdateHandler.kt57 val updateTask: AsyncTask<Void, Void, AlarmInstance> = in <lambda>()
58 object : AsyncTask<Void, Void, AlarmInstance>() { in <lambda>()
59 override fun doInBackground(vararg parameters: Void): AlarmInstance? { in <lambda>()
100 val updateTask: AsyncTask<Void, Void, AlarmInstance> = in <lambda>()
101 object : AsyncTask<Void, Void, AlarmInstance>() { in <lambda>()
102 override fun doInBackground(vararg parameters: Void): AlarmInstance? { in <lambda>()
149 val deleteTask: AsyncTask<Void, Void, Boolean> = object : AsyncTask<Void, Void, Boolean>() { in <lambda>()
150 override fun doInBackground(vararg parameters: Void): Boolean { in <lambda>()
DAlarmUpdateHandler.java62 final AsyncTask<Void, Void, AlarmInstance> updateTask = in asyncAddAlarm()
63 new AsyncTask<Void, Void, AlarmInstance>() { in asyncAddAlarm()
65 protected AlarmInstance doInBackground(Void... parameters) { in asyncAddAlarm()
104 final AsyncTask<Void, Void, AlarmInstance> updateTask = in asyncUpdateAlarm()
105 new AsyncTask<Void, Void, AlarmInstance>() { in asyncUpdateAlarm()
107 protected AlarmInstance doInBackground(Void... parameters) { in asyncUpdateAlarm()
157 final AsyncTask<Void, Void, Boolean> deleteTask = new AsyncTask<Void, Void, Boolean>() { in asyncDeleteAlarm()
159 protected Boolean doInBackground(Void... parameters) { in asyncDeleteAlarm()
/packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
DApnEditorActivity.java205 new AsyncTask<Void, Void, Void>() { in onActivityCreated()
207 protected Void doInBackground(Void... params) { in onActivityCreated()
218 protected void onPostExecute(Void result) { in onActivityCreated()
227 }.execute((Void) null); in onActivityCreated()
363 new AsyncTask<Void, Void, Void>() { in validateAndSave()
365 protected Void doInBackground(Void... params) { in validateAndSave()
400 }.execute((Void) null); in validateAndSave()
407 new AsyncTask<Void, Void, Void>() { in deleteApn()
409 protected Void doInBackground(Void... params) { in deleteApn()
417 }.execute((Void) null); in deleteApn()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
DSubtypeLocaleUtilsTests.java241 final RunInLocale<Void> tests = new RunInLocale<Void>() { in testPredefinedSubtypesInEnglishSystemLocale()
243 protected Void job(final Resources res) { in testPredefinedSubtypesInEnglishSystemLocale()
283 final RunInLocale<Void> tests = new RunInLocale<Void>() { in testAdditionalSubtypesInEnglishSystemLocale()
285 protected Void job(final Resources res) { in testAdditionalSubtypesInEnglishSystemLocale()
343 final RunInLocale<Void> tests = new RunInLocale<Void>() { in testPredefinedSubtypesInFrenchSystemLocale()
345 protected Void job(final Resources res) { in testPredefinedSubtypesInFrenchSystemLocale()
385 final RunInLocale<Void> tests = new RunInLocale<Void>() { in testAdditionalSubtypesInFrenchSystemLocale()
387 protected Void job(final Resources res) { in testAdditionalSubtypesInFrenchSystemLocale()
427 final RunInLocale<Void> tests = new RunInLocale<Void>() { in testHinglishSubtypesInHindiSystemLocale()
429 protected Void job (final Resources res) { in testHinglishSubtypesInHindiSystemLocale()
[all …]
/packages/apps/Contacts/src/com/android/contacts/dialog/
DClearFrequentsDialog.java57 final AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() { in onCreateDialog()
59 protected Void doInBackground(Void... params) { in onCreateDialog()
66 protected void onPostExecute(Void result) { in onCreateDialog()
/packages/apps/Dialer/java/com/android/contacts/common/dialog/
DClearFrequentsDialog.java63 final AsyncTask<Void, Void, Void> task = in onCreateDialog()
64 new AsyncTask<Void, Void, Void>() { in onCreateDialog()
66 protected Void doInBackground(Void... params) { in onCreateDialog()
73 protected void onPostExecute(Void result) { in onCreateDialog()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DVideoProviderTest.java335 assertTrueWithTimeout(new Predicate<Void>() { in testSetPreviewSurface()
337 public boolean apply(Void v) { in testSetPreviewSurface()
344 assertTrueWithTimeout(new Predicate<Void>() { in testSetPreviewSurface()
346 public boolean apply(Void v) { in testSetPreviewSurface()
362 assertTrueWithTimeout(new Predicate<Void>() { in testSetDisplaySurface()
364 public boolean apply(Void v) { in testSetDisplaySurface()
371 assertTrueWithTimeout(new Predicate<Void>() { in testSetDisplaySurface()
373 public boolean apply(Void v) { in testSetDisplaySurface()
388 assertTrueWithTimeout(new Predicate<Void>() { in testSetDeviceOrientation()
390 public boolean apply(Void v) { in testSetDeviceOrientation()
[all …]
/packages/apps/TV/common/src/com/android/tv/common/
DCommonPreferences.java105 new AsyncTask<Void, Void, Void>() { in initialize()
107 protected Void doInBackground(Void... params) { in initialize()
257 new AsyncTask<Void, Void, Void>() { in savePreference()
259 protected Void doInBackground(Void... params) { in savePreference()
275 private static class LoadPreferencesTask extends AsyncTask<Void, Void, Bundle> {
283 protected Bundle doInBackground(Void... params) { in doInBackground()
/packages/apps/TV/src/com/android/tv/menu/
DAppLinkCardView.java129 new AsyncTask<Void, Void, CharSequence>() { in onBind()
133 protected CharSequence doInBackground(Void... params) { in onBind()
169 new AsyncTask<Void, Void, Drawable>() { in onBind()
173 protected Drawable doInBackground(Void... params) { in onBind()
204 new AsyncTask<Void, Void, CharSequence>() { in onBind()
208 protected CharSequence doInBackground(Void... params) { in onBind()
321 new AsyncTask<Void, Void, Drawable>() {
325 protected Drawable doInBackground(Void... params) {
360 new AsyncTask<Void, Void, Drawable>() {
364 protected Drawable doInBackground(Void... params) {
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/asset/
DStreamableAsset.java104 new AsyncTask<Void, Void, InputStream>() { in fetchInputStream()
106 protected InputStream doInBackground(Void... params) { in fetchInputStream()
240 private class DecodeBitmapAsyncTask extends AsyncTask<Void, Void, Bitmap> {
253 protected Bitmap doInBackground(Void... unused) { in doInBackground()
300 private class DecodeBitmapRegionAsyncTask extends AsyncTask<Void, Void, Bitmap> {
316 protected Bitmap doInBackground(Void... voids) { in doInBackground()
374 private class DecodeDimensionsAsyncTask extends AsyncTask<Void, Void, Point> {
382 protected Point doInBackground(Void... unused) { in doInBackground()
DBuiltInWallpaperAsset.java129 private class DecodeBitmapAsyncTask extends AsyncTask<Void, Void, Bitmap> {
142 protected Bitmap doInBackground(Void... unused) { in doInBackground()
168 private class DecodeBitmapRegionAsyncTask extends AsyncTask<Void, Void, Bitmap> {
179 protected Bitmap doInBackground(Void... unused) { in doInBackground()
205 private class DecodeDimensionsAsyncTask extends AsyncTask<Void, Void, Point> {
213 protected Point doInBackground(Void... unused) { in doInBackground()
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DFlipperDreamSettings.java44 private AsyncTask<Void, Void, Void> mLoadingTask;
66 mLoadingTask = new AsyncTask<Void, Void, Void>() { in init()
68 public Void doInBackground(Void... unused) { in init()
78 public void onPostExecute(Void unused) { in init()
/packages/apps/Dialer/java/com/android/dialer/simulator/impl/
DSimulatorUtils.java146 implements Worker<PopulateDatabaseWorkerInput, Void> {
149 public Void doInBackground(PopulateDatabaseWorkerInput input) { in doInBackground()
155 private static class PopulateDatabaseWorker implements Worker<PopulateDatabaseWorkerInput, Void> {
158 public Void doInBackground(PopulateDatabaseWorkerInput input) { in doInBackground()
166 private static class CleanDatabaseWorker implements Worker<Context, Void> {
169 public Void doInBackground(Context context) { in doInBackground()
178 private static class ClearPreferredSimWorker implements Worker<Context, Void> {
181 public Void doInBackground(Context context) { in doInBackground()
187 private static class ShareLogWorker implements Worker<Void, String> {
190 public String doInBackground(Void unused) { in doInBackground()
/packages/apps/TV/tuner/SampleDvbTuner/src/com/android/tv/tuner/sample/dvb/setup/
DSampleDvbTunerSetupActivity.java100 new AsyncTask<Void, Void, Integer>() { in executeGetTunerTypeAndCountAsyncTask()
102 protected Integer doInBackground(Void... arg0) { in executeGetTunerTypeAndCountAsyncTask()
386 private class FetchLineupTask extends AsyncTask<Void, Void, List<Lineup>> {
396 protected List<Lineup> doInBackground(Void... args) { in doInBackground()
426 private class InsertOrModifyEpgInputTask extends AsyncTask<Void, Void, Void> {
436 protected Void doInBackground(Void... args) { in doInBackground()
467 protected void onPostExecute(Void result) { in onPostExecute()
486 private class QueryEpgInputTask extends AsyncTask<Void, Void, EpgInput> {
494 protected EpgInput doInBackground(Void... args) { in doInBackground()
/packages/apps/TV/tuner/SampleNetworkTuner/src/com/android/tv/tuner/sample/network/setup/
DSampleNetworkTunerSetupActivity.java100 new AsyncTask<Void, Void, Integer>() { in executeGetTunerTypeAndCountAsyncTask()
102 protected Integer doInBackground(Void... arg0) { in executeGetTunerTypeAndCountAsyncTask()
386 private class FetchLineupTask extends AsyncTask<Void, Void, List<Lineup>> {
396 protected List<Lineup> doInBackground(Void... args) { in doInBackground()
426 private class InsertOrModifyEpgInputTask extends AsyncTask<Void, Void, Void> {
436 protected Void doInBackground(Void... args) { in doInBackground()
467 protected void onPostExecute(Void result) { in onPostExecute()
487 private class QueryEpgInputTask extends AsyncTask<Void, Void, EpgInput> {
495 protected EpgInput doInBackground(Void... args) { in doInBackground()
/packages/apps/KeyChain/tests/src/com/android/keychain/tests/
DKeyChainTestActivity.java151 private class SetupTestKeyStore extends AsyncTask<Void, Void, Void> {
152 @Override protected Void doInBackground(Void... params) { in doInBackground()
156 @Override protected void onPostExecute(Void result) { in onPostExecute()
175 private class TestHttpsRequest extends AsyncTask<Void, Void, Void> {
176 @Override protected Void doInBackground(Void... params) { in doInBackground()
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer2/buffer/
DTrickplayStorageManager.java44 private static AsyncTask<Void, Void, Void> sLastCacheCleanUpTask;
84 new AsyncTask<Void, Void, Void>() { in clearStorage()
86 protected Void doInBackground(Void... params) { in clearStorage()
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/buffer/
DTrickplayStorageManager.java44 private static AsyncTask<Void, Void, Void> sLastCacheCleanUpTask;
84 new AsyncTask<Void, Void, Void>() { in clearStorage()
86 protected Void doInBackground(Void... params) { in clearStorage()
/packages/apps/TV/src/com/android/tv/
DMediaSessionWrapper.java214 new AsyncTask<Void, Void, Void>() { in updateMediaMetadata()
216 protected Void doInBackground(Void... arg0) { in updateMediaMetadata()
229 new AsyncTask<Void, Void, Void>() { in updateMediaMetadata()
231 protected Void doInBackground(Void... arg0) { in updateMediaMetadata()
/packages/apps/Dialer/java/com/android/voicemail/impl/settings/
DVisualVoicemailSettingsUtil.java69 private static void onSuccess(Void unused) { in onSuccess()
186 private static class VoicemailDeleteWorker implements Worker<Void, Void> {
194 public Void doInBackground(Void unused) { in doInBackground()
210 implements Worker<Void, Void> {
218 public Void doInBackground(Void unused) { in doInBackground()
/packages/apps/Car/LocalMediaPlayer/src/com/android/car/media/localmediaplayer/
DDataModel.java134 AsyncTask<Void, Void, Void> task) { in queryInBackground() argument
240 private static class FilesystemListTask extends AsyncTask<Void, Void, Void> {
254 protected Void doInBackground(Void... voids) { in doInBackground()
304 private static class QueryTask extends AsyncTask<Void, Void, Void> {
332 protected Void doInBackground(Void... voids) { in doInBackground()
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
DRemoveAccountAsyncTask.java30 class RemoveAccountAsyncTask extends AsyncTask<Void, Void, Void> {
47 protected Void doInBackground(Void... params) { in doInBackground()
56 protected void onPostExecute(Void result) { in onPostExecute()

12345678910>>...18