MCPcopy Create free account
hub / github.com/CyanogenMod/android_frameworks_base / call

Method call

core/java/android/os/AsyncTask.java:283–289  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

281 public AsyncTask() {
282 mWorker = new WorkerRunnable<Params, Result>() {
283 public Result call() throws Exception {
284 mTaskInvoked.set(true);
285
286 Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
287 //noinspection unchecked
288 return postResult(doInBackground(mParams));
289 }
290 };
291
292 mFuture = new FutureTask<Result>(mWorker) {

Callers

nothing calls this directly

Calls 4

setThreadPriorityMethod · 0.95
postResultMethod · 0.95
doInBackgroundMethod · 0.95
setMethod · 0.45

Tested by

no test coverage detected