/packages/apps/Mms/src/com/android/mms/transaction/ |
PushReceiver.java | 33 import android.os.AsyncTask; 60 private class ReceivePushTask extends AsyncTask<Intent,Void,Void> {
|
/pdk/apps/TestingCamera/src/com/android/testingcamera/ |
SnapshotDialogFragment.java | 12 import android.os.AsyncTask; 62 new AsyncTask<byte[], Integer, Bitmap>() {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
GlobalScreenshot.java | 43 import android.os.AsyncTask; 67 * POD used in the AsyncTask which saves an image in the background. 88 * An AsyncTask that saves an image to the media store in the background. 90 class SaveImageInBackgroundTask extends AsyncTask<SaveImageInBackgroundData, Void, 187 // By default, AsyncTask sets the worker thread to have background thread priority, so bump 342 private AsyncTask<SaveImageInBackgroundData, Void, SaveImageInBackgroundData> mSaveInBgTask;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
QuickSettings.java | 43 import android.os.AsyncTask; 105 private AsyncTask<Void, Void, Pair<String, Drawable>> mUserInfoTask; 106 private AsyncTask<Void, Void, Pair<Boolean, Boolean>> mQueryCertTask; 181 mQueryCertTask = new AsyncTask<Void, Void, Pair<Boolean, Boolean>>() { 217 mUserInfoTask = new AsyncTask<Void, Void, Pair<String, Drawable>>() { 396 new AsyncTask<Void, Void, Void>() { [all...] |
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
DocumentsActivity.java | 50 import android.os.AsyncTask; 263 private class RestoreRootTask extends AsyncTask<Void, Void, RootInfo> { 290 private class RestoreStackTask extends AsyncTask<Void, Void, Void> { 805 return AsyncTask.THREAD_POOL_EXECUTOR; 892 private class PickRootTask extends AsyncTask<Void, Void, DocumentInfo> { [all...] |
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ |
PrintSpoolerService.java | 22 import android.os.AsyncTask; 396 new AsyncTask<Void, Void, Void>() { 427 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void[]) null); 689 new AsyncTask<Void, Void, Void>() { 695 }.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR, (Void[]) null); 775 new AsyncTask<Void, Void, Void>() { 784 }.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR, (Void[]) null); [all...] |
/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/ |
WallpaperCropActivity.java | 38 import android.os.AsyncTask; 141 final AsyncTask<Void, Void, Void> loadBitmapTask = new AsyncTask<Void, Void, Void>() { 170 if (loadBitmapTask.getStatus() != AsyncTask.Status.FINISHED) { 426 protected static class BitmapCropTask extends AsyncTask<Void, Void, Boolean> { [all...] |
/packages/apps/Settings/src/com/android/settings/widget/ |
SettingsAppWidgetProvider.java | 32 import android.os.AsyncTask; 388 new AsyncTask<Void, Void, Void>() { 470 new AsyncTask<Void, Void, Void>() { 551 new AsyncTask<Void, Void, Boolean>() { 622 new AsyncTask<Void, Void, Boolean>() { [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/ |
CameraAnalyzerActivity.java | 29 import android.os.AsyncTask; 172 private class SwitchCameraTask extends AsyncTask<Integer, Void, Void> { 243 private class DebugOutputProcessingTask extends AsyncTask<Integer,
|
/frameworks/base/docs/html/training/displaying-bitmaps/ |
cache-bitmap.jd | 159 class BitmapWorkerTask extends AsyncTask<Integer, Void, Bitmap> { 212 class InitDiskCacheTask extends AsyncTask<File, Void, Void> { 225 class BitmapWorkerTask extends AsyncTask<Integer, Void, Bitmap> {
|
/frameworks/support/v4/kitkat/android/support/v4/print/ |
PrintHelperKitkat.java | 26 import android.os.AsyncTask; 291 AsyncTask<Uri, Boolean, Bitmap> loadBitmap; 316 loadBitmap = new AsyncTask<Uri, Boolean, Bitmap>() {
|
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
CertInstaller.java | 26 import android.os.AsyncTask; 199 private class InstallCaCertsToKeyChainTask extends AsyncTask<Void, Void, Boolean> { 296 new AsyncTask<Void,Void,Boolean>() {
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
DeleteDropTarget.java | 32 import android.os.AsyncTask; 330 new AsyncTask<Void, Void, Void>() { 335 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
|
/packages/apps/Nfc/src/com/android/nfc/ |
NfcService.java | 64 import android.os.AsyncTask; 245 // and the default AsyncTask thread so it is read unprotected from that 629 * <p>These tasks are all done on the same AsyncTask background 636 * <p>AsyncTask's are also implicitly queued. This is useful for corner 650 class EnableDisableTask extends AsyncTask<Integer, Void, Void> { 662 /* AsyncTask sets this thread to THREAD_PRIORITY_BACKGROUND, 705 // Restore default AsyncTask priority 769 * Implemented with a new thread (instead of a Handler or AsyncTask), 770 * because the UI Thread and AsyncTask thread-pools can also get hung [all...] |
/packages/apps/Settings/src/com/android/settings/ |
KeyguardAppWidgetPickActivity.java | 37 import android.os.AsyncTask; 168 mWidgetPreviewLoader.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR, (Void[]) null); 203 class WidgetPreviewLoader extends AsyncTask<Void, Bitmap, Void> {
|
TrustedCredentialsSettings.java | 27 import android.os.AsyncTask; 240 private class AliasLoader extends AsyncTask<Void, Integer, List<CertHolder>> { 441 private class AliasOperation extends AsyncTask<Void, Void, Boolean> {
|
/packages/apps/Dialer/src/com/android/dialer/ |
CallDetailActivity.java | 32 import android.os.AsyncTask; 102 /** The enumeration of {@link AsyncTask} objects used in this class. */ 377 mAsyncTaskExecutor.submit(Tasks.MARK_VOICEMAIL_READ, new AsyncTask<Void, Void, Void>() { 435 class UpdateContactDetailsTask extends AsyncTask<Void, Void, PhoneCallDetails[]> { [all...] |
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PhotoTable.java | 28 import android.os.AsyncTask; 205 mLoadOnDeckTasks[slot].getStatus() != AsyncTask.Status.FINISHED) { 261 mLoadOnDeckTasks[slot].getStatus() != AsyncTask.Status.FINISHED) { 490 private class LoadNaturalSiblingTask extends AsyncTask<View, Void, View> { 547 private class PhotoLaunchTask extends AsyncTask<Void, Void, View> { 604 mPhotoLaunchTask.getStatus() == AsyncTask.Status.FINISHED) { [all...] |
/development/apps/GestureBuilder/src/com/android/gesture/builder/ |
GestureBuilderActivity.java | 23 import android.os.AsyncTask; 318 private class GesturesLoadTask extends AsyncTask<Void, NamedGesture, Integer> {
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/ |
AuthenticatorActivity.java | 31 import android.os.AsyncTask; 296 public class UserLoginTask extends AsyncTask<Void, Void, String> {
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
LookupActivity.java | 27 import android.os.AsyncTask; 264 private class LookupTask extends AsyncTask<String, String, String> {
|
/frameworks/base/services/java/com/android/server/power/ |
DisplayPowerState.java | 21 import android.os.AsyncTask; 362 AsyncTask.THREAD_POOL_EXECUTOR.execute(mTask);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
ImageGoodnessFilter.java | 21 import android.os.AsyncTask; 196 private class AsyncOperation extends AsyncTask<Bitmap, Void, String> {
|
/frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/ |
CameraPreviewActivity.java | 31 import android.os.AsyncTask; 308 private class ProcessPreviewDataTask extends AsyncTask<byte[], Void, Boolean> {
|
/packages/apps/Browser/src/com/android/browser/ |
IntentHandler.java | 27 import android.os.AsyncTask; 301 new AsyncTask<Void, Void, Void>() {
|