HomeSort by relevance Sort by last modified time
    Searched refs:AsyncTask (Results 51 - 75 of 377) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/jobscheduler/
ChargingConstraintTestActivity.java 10 import android.os.AsyncTask;
143 private class TestDeviceUnpluggedConstraint extends AsyncTask<Void, Void, Void> {
155 private class TestDevicePluggedInConstraint extends AsyncTask<Void, Void, Void> {
ConnectivityConstraintTestActivity.java 11 import android.os.AsyncTask;
149 private class TestConnectivityConstraint extends AsyncTask<Void, Void, Void> {
IdleConstraintTestActivity.java 27 import android.os.AsyncTask;
110 private class TestIdleModeTask extends AsyncTask<Void, Void, Void> {
  /developers/build/prebuilts/gradle/StorageClient/Application/src/main/java/com/example/android/storageclient/
StorageClientFragment.java 26 import android.os.AsyncTask;
226 // The easiest way to divide up this labor is with an AsyncTask. The doInBackground
229 AsyncTask<Uri, Void, Bitmap> imageLoadAsyncTask = new AsyncTask<Uri, Void, Bitmap>() {
  /developers/samples/android/content/documentsUi/StorageClient/Application/src/main/java/com/example/android/storageclient/
StorageClientFragment.java 26 import android.os.AsyncTask;
226 // The easiest way to divide up this labor is with an AsyncTask. The doInBackground
229 AsyncTask<Uri, Void, Bitmap> imageLoadAsyncTask = new AsyncTask<Uri, Void, Bitmap>() {
  /development/samples/browseable/StorageClient/src/com.example.android.storageclient/
StorageClientFragment.java 26 import android.os.AsyncTask;
226 // The easiest way to divide up this labor is with an AsyncTask. The doInBackground
229 AsyncTask<Uri, Void, Bitmap> imageLoadAsyncTask = new AsyncTask<Uri, Void, Bitmap>() {
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaScene.java 33 import android.os.AsyncTask;
71 private class ColladaLoaderTask extends AsyncTask<String, Void, Boolean> {
111 private class A3DLoaderTask extends AsyncTask<String, Void, Boolean> {
  /packages/apps/Contacts/src/com/android/contacts/
ContactsApplication.java 26 import android.os.AsyncTask;
137 private class DelayedInitializer extends AsyncTask<Void, Void, Void> {
150 executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ReportExporter.java 21 import android.os.AsyncTask;
40 class ReportExporter extends AsyncTask<Void, Void, String> {
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
DelayedSyncController.java 11 import android.os.AsyncTask;
63 new AsyncTask<Void, Void, Void>() {
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
TestAppLoadingScreen.java 29 import android.os.AsyncTask;
65 private class LoadingScreenLoaderTask extends AsyncTask<String, Void, Boolean> {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
SearchBaseUrlHelper.java 26 import android.os.AsyncTask;
134 new AsyncTask<Void, Void, Void>() {
  /packages/apps/Settings/src/com/android/settings/
MasterClearConfirm.java 22 import android.os.AsyncTask;
74 new AsyncTask<Void, Void, Void>() {
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ContentProviderTask.java 26 import android.os.AsyncTask;
34 * a list of {@link ContentProviderOperation}s. As with all {@link AsyncTask}s, subclasses should
42 public class ContentProviderTask extends AsyncTask<Void, Void, ContentProviderTask.Result> {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
ContactsDumpActivity.java 24 import android.os.AsyncTask;
90 private class DumpDbTask extends AsyncTask<Void, Void, Uri> {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
EmailAsyncTask.java 19 import android.os.AsyncTask;
29 * {@link AsyncTask} substitution for the email app.
31 * Modeled after {@link AsyncTask}; the basic usage is the same, with extra features:
34 * - Instead of {@link AsyncTask#onPostExecute}, it has {@link #onSuccess(Object)}, as the
35 * regular {@link AsyncTask#onPostExecute} is a bit hard to predict when it'll be called and
38 * Note this class is missing some of the {@link AsyncTask} features, e.g. it lacks
39 * {@link AsyncTask#onProgressUpdate}. Add these when necessary.
42 private static final Executor SERIAL_EXECUTOR = AsyncTask.SERIAL_EXECUTOR;
43 private static final Executor PARALLEL_EXECUTOR = AsyncTask.THREAD_POOL_EXECUTOR;
112 extends AsyncTask<Params2, Progress2, Result2>
    [all...]
  /packages/experimental/PrintService2/src/foo/bar/printservice2/
MyPrintService.java 5 import android.os.AsyncTask;
72 AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() {
133 task.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR, (Void[]) null);
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 22 import android.os.AsyncTask;
239 new AsyncTask<Void, Void, Void>() {
252 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
255 new AsyncTask<Void, Void, Void>() {
268 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderThrottle.java 39 import android.os.AsyncTask;
397 AsyncTask<Void, Void, Void> mPopulatingTask;
435 mPopulatingTask = new AsyncTask<Void, Void, Void>() {
456 AsyncTask.THREAD_POOL_EXECUTOR, (Void[])null);
464 AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() {
  /development/samples/ApiDemos/src/com/example/android/apis/security/
KeyStoreUsage.java 24 import android.os.AsyncTask;
157 * enabled by the {@code AsyncTask} later after its
258 private class UpdateKeyListTask extends AsyncTask<Void, Void, Enumeration<String>> {
298 private class GenerateTask extends AsyncTask<String, Void, Boolean> {
352 private class SignTask extends AsyncTask<String, Void, String> {
414 private class VerifyTask extends AsyncTask<String, Void, Boolean> {
490 private class DeleteTask extends AsyncTask<String, Void, Void> {
  /packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailPlaybackPresenter.java 24 import android.os.AsyncTask;
97 /** The enumeration of {@link AsyncTask} objects we use in this class. */
171 private AsyncTask<Void, ?, ?> mPrepareTask;
204 mAsyncTaskExecutor.submit(Tasks.CHECK_FOR_CONTENT, new AsyncTask<Void, Void, Boolean>() {
275 new AsyncTask<Void, Void, Boolean>() {
307 new AsyncTask<Void, Void, Exception>() {
439 private class AsyncPrepareTask extends AsyncTask<Void, Void, Exception> {
  /developers/build/prebuilts/gradle/BasicRenderScript/Application/src/main/java/com/example/android/basicrenderscript/
MainActivity.java 22 import android.os.AsyncTask;
116 * In the AsyncTask, it invokes RenderScript intrinsics to do a filtering.
117 * After the filtering is done, an operation blocks at Allication.copyTo() in AsyncTask thread.
120 private class RenderScriptTask extends AsyncTask<Float, Integer, Integer> {
  /developers/build/prebuilts/gradle/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/
MainActivity.java 24 import android.os.AsyncTask;
200 class MediaPrepareTask extends AsyncTask<Void, Void, Boolean> {
  /developers/build/prebuilts/gradle/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
MainActivity.java 19 import android.os.AsyncTask;
41 * HTML. It uses AsyncTask to do the fetch on a background thread. To establish
93 * Implementation of AsyncTask, to fetch the data in the background away from
96 private class DownloadTask extends AsyncTask<String, Void, String> {
  /developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/
PhoneMainActivity.java 28 import android.os.AsyncTask;
89 * An {@link android.os.AsyncTask} that is responsible for getting a list of {@link
95 new AsyncTask<Calendar, Void, Void>() {

Completed in 1387 milliseconds

1 23 4 5 6 7 8 91011>>