Searched refs:execute (Results 1 - 25 of 213) sorted by relevance

123456789

/frameworks/base/services/core/java/com/android/server/location/
H A DGnssStatusListenerHelper.java50 public void execute(IGnssStatusListener listener) throws RemoteException {
57 public void execute(IGnssStatusListener listener) throws RemoteException {
68 public void execute(IGnssStatusListener listener) throws RemoteException {
84 public void execute(IGnssStatusListener listener) throws RemoteException {
100 public void execute(IGnssStatusListener listener) throws RemoteException {
H A DGnssMeasurementsProvider.java44 public void execute(IGnssMeasurementsListener listener) throws RemoteException {
95 public void execute(IGnssMeasurementsListener listener) throws RemoteException { method in class:GnssMeasurementsProvider.StatusChangedOperation
H A DGnssNavigationMessageProvider.java44 public void execute(IGnssNavigationMessageListener listener)
96 public void execute(IGnssNavigationMessageListener listener) throws RemoteException { method in class:GnssNavigationMessageProvider.StatusChangedOperation
/frameworks/rs/
H A DrsScriptGroup2.cpp14 void ScriptGroup2::execute(Context* rsc) { function in class:android::renderscript::ScriptGroup2
15 if (rsc->mHal.funcs.scriptgroup.execute) {
16 rsc->mHal.funcs.scriptgroup.execute(rsc, this);
H A DrsScriptGroup2.h23 virtual void execute(Context* rsc);
H A DrsScriptGroupBase.h25 virtual void execute(Context *rsc) = 0;
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestUpdateInbox.java33 public void execute(ClientSession session) throws IOException { method in class:BluetoothMasRequestUpdateInbox
H A DBluetoothMasRequestSetNotificationRegistration.java45 public void execute(ClientSession session) throws IOException { method in class:BluetoothMasRequestSetNotificationRegistration
H A DBluetoothMasRequestGetFolderListingSize.java53 public void execute(ClientSession session) throws IOException { method in class:BluetoothMasRequestGetFolderListingSize
H A DBluetoothMasRequestGetMessagesListingSize.java54 public void execute(ClientSession session) throws IOException { method in class:BluetoothMasRequestGetMessagesListingSize
H A DBluetoothMasRequestSetMessageStatus.java49 public void execute(ClientSession session) throws IOException { method in class:BluetoothMasRequestSetMessageStatus
H A DBluetoothMasRequestSetPath.java52 public void execute(ClientSession session) { method in class:BluetoothMasRequestSetPath
/frameworks/base/core/java/android/net/
H A DNetworkRecommendationProvider.java58 * @param executor used to execute the incoming requests. Cannot be {@code null}.
101 execute(new Runnable() {
110 private void execute(Runnable command) { method in class:NetworkRecommendationProvider.ServiceWrapper
112 mExecutor.execute(command);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteStatement.java41 public void execute() { method in class:SQLiteStatement
44 getSession().execute(getSql(), getBindArgs(), getConnectionFlags(), null);
H A DSQLiteSession.java37 * to execute in parallel whereas read-write operations may need to be serialized.
40 * execute simultaneous read-only and read-write transactions, provided that
42 * enabled, read-only transactions can execute in parallel but read-write
102 * session.execute("INSERT INTO ...", null, 0);
319 mConnection.execute("BEGIN IMMEDIATE;", null,
323 mConnection.execute("BEGIN EXCLUSIVE;", null,
327 mConnection.execute("BEGIN;", null, cancellationSignal); // might throw
338 mConnection.execute("ROLLBACK;", null, cancellationSignal); // might throw
437 mConnection.execute("COMMIT;", null, cancellationSignal); // might throw
439 mConnection.execute("ROLLBAC
607 public void execute(String sql, Object[] bindArgs, int connectionFlags, method in class:SQLiteSession
[all...]
/frameworks/base/location/java/android/location/
H A DGnssMeasurementCallbackTransport.java56 public void execute(GnssMeasurementsEvent.Callback callback)
69 public void execute(GnssMeasurementsEvent.Callback callback)
H A DGnssNavigationMessageCallbackTransport.java58 public void execute(GnssNavigationMessage.Callback callback)
71 public void execute(GnssNavigationMessage.Callback callback)
H A DBatchedLocationCallbackTransport.java58 public void execute(BatchedLocationCallback callback)
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternChecker.java94 task.execute();
141 task.execute();
177 task.execute();
214 task.execute();
253 task.execute();
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphReader.java42 public void execute(CommandStack stack); method in interface:GraphReader.Command
57 public void execute() { method in class:GraphReader.CommandStack
59 command.execute(this);
88 public void execute(CommandStack stack) { method in class:GraphReader.ImportPackageCommand
105 public void execute(CommandStack stack) { method in class:GraphReader.AddLibraryCommand
120 public void execute(CommandStack stack) { method in class:GraphReader.AllocateFilterCommand
143 public void execute(CommandStack stack) { method in class:GraphReader.AddSourceSlotCommand
158 public void execute(CommandStack stack) { method in class:GraphReader.AddTargetSlotCommand
173 public void execute(CommandStack stack) { method in class:GraphReader.AddVariableCommand
190 public void execute(CommandStac method in class:GraphReader.SetFilterInputCommand
217 public void execute(CommandStack stack) { method in class:GraphReader.ConnectCommand
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DWindowManagerProxy.java181 mExecutor.execute(mResizeRunnable);
185 mExecutor.execute(mDismissRunnable);
189 mExecutor.execute(mMaximizeRunnable);
193 mExecutor.execute(new Runnable() {
218 mExecutor.execute(mDimLayerRunnable);
222 mExecutor.execute(mSwapRunnable);
229 mExecutor.execute(mSetTouchableRegionRunnable);
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DCookiesTest.java68 client.execute(new HttpGet(server.getUrl("/").toURI()));
101 HttpResponse getCookies = client.execute(new HttpGet("http://my.t-mobile.com/"));
105 HttpResponse sendCookies = client.execute(new HttpGet("http://my.t-mobile.com/"));
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServerCallback.java129 * @param execute Whether the pending writes should be executed (true) or
132 public void onExecuteWrite(BluetoothDevice device, int requestId, boolean execute) { argument
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup.h30 void execute() override;
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseStatementTest.java83 statement.execute();
135 statement.execute();
157 statement.execute();
180 statement.execute();
227 statement.execute();
261 mStatement.execute();
304 statement.execute();
312 statement.execute();

Completed in 404 milliseconds

123456789