Home | History | Annotate | Download | only in os

Lines Matching refs:doInBackground

39  * and 4 steps, called <code>begin</code>, <code>doInBackground</code>,
44 * one method ({@link #doInBackground}), and most often will override a
50 * protected Long doInBackground(URL... urls) {
97 * <li>{@link #doInBackground}, invoked on the background thread
122 * {@link #doInBackground}, {@link #onProgressUpdate} manually.</li>
185 return doInBackground(mParams);
200 throw new RuntimeException("An error occured while executing doInBackground()",
209 + "doInBackground()", t);
244 protected abstract Result doInBackground(Params... params);
247 * Runs on the UI thread before {@link #doInBackground}.
250 * @see #doInBackground
256 * Runs on the UI thread after {@link #doInBackground}. The
257 * specified result is the value returned by {@link #doInBackground}
260 * @param result The result of the operation computed by {@link #doInBackground}.
263 * @see #doInBackground
276 * @see #doInBackground
400 * This method can be invoked from {@link #doInBackground} to
408 * @see #doInBackground