Searched defs:execute (Results 1 - 24 of 24) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DBackgroundHandler.java35 public static void execute(Runnable runnable) { method in class:BackgroundHandler
36 mThreadPool.execute(runnable);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
H A DNamedTaskExecutor.java29 void execute(NamedTask task); method in interface:NamedTaskExecutor
H A DPerNameExecutor.java51 public synchronized void execute(NamedTask task) { method in class:PerNameExecutor
61 executor.execute(task);
H A DBatchingNamedTaskExecutor.java48 public void execute(NamedTask task) { method in class:BatchingNamedTaskExecutor
57 mExecutor.execute(task);
62 * @param batchSize the maximum number of entries to execute.
H A DSingleThreadNamedTaskExecutor.java56 public void execute(NamedTask task) { method in class:SingleThreadNamedTaskExecutor
58 throw new IllegalStateException("execute() after close()");
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
H A DMockExecutor.java33 public void execute(Runnable task) { method in class:MockExecutor
H A DMockNamedTaskExecutor.java31 public void execute(NamedTask task) { method in class:MockNamedTaskExecutor
32 mExecutor.execute(task);
/packages/apps/Contacts/src/com/android/contacts/
H A DContactsApplication.java126 (new DelayedInitializer()).execute();
145 public void execute() { method in class:ContactsApplication.DelayedInitializer
/packages/apps/UnifiedEmail/src/com/android/bitmap/
H A DContiguousFIFOAggregator.java31 * . All tasks that is given to {@link #execute(Object, Runnable)} must correspond to a key. This
36 * If on {@link #execute(Object, Runnable)} the key is not expected, the task will be executed
70 * {@link #execute(Object, Runnable)}. However, in practice, if you are generating tasks in
85 * must call either {@link #forget(Object)} or {@link #execute(Object, Runnable)}
92 * with {@link #execute (Object, Runnable)}.
118 * Remove a previously declared key that we no longer expect to execute a task for. This
151 * Attempt to execute a task corresponding to a previously declared key. If the key is the
160 * @param task the task to execute or store, depending on its corresponding key.
162 public void execute(final T key, final Runnable task) { method in class:ContiguousFIFOAggregator
163 Utils.traceBeginSection("pool execute");
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DPrioritizedSerialExecutor.java63 public void execute(final Runnable r) { method in class:PrioritizedSerialExecutor
118 mThreadPoolExecutor.execute(mActive);
133 execute(newTask);
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DDicttool.java80 private int execute(final String[] arguments) { method in class:Dicttool
98 // Exit with the success/error code from #execute() as status.
99 System.exit(new Dicttool().execute(arguments));
/packages/apps/Dialer/tests/src/com/android/dialer/util/
H A DFakeAsyncTaskExecutor.java53 /** The maximum length of time in ms to wait for tasks to execute during tests. */
114 public void execute(Runnable command) { method in class:FakeAsyncTaskExecutor.DelayedExecutor
150 * to execute this async task will be a same-thread executor.
166 * to execute these async tasks will be a same-thread executor.
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DActionBatch.java88 public void execute(final Context context); method in interface:ActionBatch.Action
110 public void execute(final Context context) { method in class:ActionBatch.StartDownloadAction
207 public void execute(final Context context) { method in class:ActionBatch.InstallAfterDownloadAction
241 public void execute(final Context context) { method in class:ActionBatch.EnableAction
276 public void execute(final Context context) { method in class:ActionBatch.DisableAction
323 public void execute(final Context context) { method in class:ActionBatch.MakeAvailableAction
372 public void execute(final Context context) { method in class:ActionBatch.MarkPreInstalledAction
413 public void execute(final Context context) { method in class:ActionBatch.UpdateDataAction
466 public void execute(final Context context) { method in class:ActionBatch.ForgetAction
537 public void execute(fina method in class:ActionBatch.StartDeleteAction
576 public void execute(final Context context) { method in class:ActionBatch.FinishDeleteAction
637 public void execute(final Context context, final ProblemReporter reporter) { method in class:ActionBatch
[all...]
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaThumbRequest.java142 void execute() throws IOException { method in class:MediaThumbRequest
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastContentProvider.java279 boolean execute(CellBroadcastContentProvider provider); method in interface:CellBroadcastContentProvider.CellBroadcastOperation
308 boolean changed = params[0].execute(provider);
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DAbstractSyncAdapter.java181 private static ContentProviderResult[] execute(final ContentResolver contentResolver, method in class:AbstractSyncAdapter
224 return execute(contentResolver, authority, cpos);
246 * Called by a sync adapter to execute a list of Operations in the ContentProvider handling
259 //mService.userLog("Try to execute ", ops.size(), " CPO's for " + authority);
262 // Try to execute the whole thing
H A DCalendarSyncParser.java1230 private static ContentProviderResult[] execute(final ContentResolver contentResolver, method in class:CalendarSyncParser
1273 return execute(contentResolver, authority, cpos);
1295 * Called by a sync adapter to execute a list of Operations in the ContentProvider handling
1308 //mService.userLog("Try to execute ", ops.size(), " CPO's for " + authority);
1311 // Try to execute the whole thing
H A DContactsSyncParser.java519 ops.execute(mContext);
833 public void execute(final Context context) { method in class:ContactsSyncParser.ContactOperations
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DMenuExecutor.java369 private boolean execute( method in class:MenuExecutor
409 " ms to execute cmd for " + path);
437 if (!execute(manager, jc, mOperation, id)) {
443 Log.e(TAG, "failed to execute operation " + mOperation
/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_gatt.cpp977 jint conn_id, jboolean execute)
980 sGattIf->client->execute_write(conn_id, execute ? 1 : 0);
976 gattClientExecuteWriteNative(JNIEnv* env, jobject object, jint conn_id, jboolean execute) argument
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2Test.java171 public void execute(); method in interface:CalendarProvider2Test.Command
187 public void execute() { method in class:CalendarProvider2Test.Insert
209 public void execute() { method in class:CalendarProvider2Test.Delete
233 public void execute() { method in class:CalendarProvider2Test.Update
268 public void execute() { method in class:CalendarProvider2Test.QueryNumEvents
284 public void execute() { method in class:CalendarProvider2Test.DumpEvents
306 public void execute() { method in class:CalendarProvider2Test.DumpInstances
331 public void execute() { method in class:CalendarProvider2Test.QueryNumInstances
371 public void execute() { method in class:CalendarProvider2Test.VerifyAllInstances
458 public void execute() { method in class:CalendarProvider2Test.VerifyInstance
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DGattService.java365 public void endReliableWrite(int clientIf, String address, boolean execute) { argument
368 service.endReliableWrite(clientIf, address, execute);
1098 void endReliableWrite(int clientIf, String address, boolean execute) { argument
1102 + " execute: " + execute);
1106 if (connId != null) gattClientExecuteWriteNative(connId, execute);
1764 private native void gattClientExecuteWriteNative(int conn_id, boolean execute); argument
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DContactDetailFragment.java306 mQuickFix.execute();
2002 public abstract void execute(); method in class:ContactDetailFragment.QuickFix
2053 public void execute() { method in class:ContactDetailFragment.AddToMyContactsQuickFix
2100 public void execute() { method in class:ContactDetailFragment.MakeLocalCopyQuickFix
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java276 * But if an old task is cancelled, it may continue to execute at most one iteration (due
294 // It is possible for two instances of this loop to execute at once if
1596 ContentProviderOperation cpo = op.execute(underlyingUri);
1726 private ContentProviderOperation execute(Uri underlyingUri) { method in class:ConversationCursor.ConversationOperation

Completed in 520 milliseconds