Searched defs:call (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/content/
H A DIContentProvider.java68 * @param method Method name to call. Opaque to framework.
72 public Bundle call(String method, String request, Bundle args) throws RemoteException; method in interface:IContentProvider
H A DContentProvider.java224 public Bundle call(String method, String request, Bundle args) { method in class:ContentProvider.Transport
225 return ContentProvider.this.call(method, request, args);
426 * Example client call:<p>
494 * As a courtesy, call {@link ContentResolver#notifyChange(android.net.Uri ,android.database.ContentObserver) notifyChange()}
508 * iterate over the values and call {@link #insert} on each of them.
509 * As a courtesy, call {@link ContentResolver#notifyChange(android.net.Uri ,android.database.ContentObserver) notifyChange()}
532 * As a courtesy, call {@link ContentResolver#notifyChange(android.net.Uri ,android.database.ContentObserver) notifyDelete()}
555 * As a courtesy, call {@link ContentResolver#notifyChange(android.net.Uri ,android.database.ContentObserver) notifyChange()}
588 * of this method should create a new ParcelFileDescriptor for each call.
740 * by the call t
770 public Bundle call(String method, String request, Bundle args) { method in class:ContentProvider
[all...]
H A DContentProviderNative.java254 Bundle responseBundle = call(method, stringArg, args);
549 public Bundle call(String method, String request, Bundle args) method in class:ContentProviderProxy
/frameworks/base/test-runner/src/android/test/mock/
H A DMockIContentProvider.java42 * @hide - @hide because this exposes bulkQuery() and call(), which must also be hidden.
97 public Bundle call(String method, String request, Bundle args) method in class:MockIContentProvider
H A DMockContentProvider.java121 public Bundle call(String method, String request, Bundle args) method in class:MockContentProvider.InversionIContentProvider
123 return MockContentProvider.this.call(method, request, args);
200 * If you're reluctant to implement this manually, please just call super.bulkInsert().
221 public Bundle call(String method, String request, Bundle args) { method in class:MockContentProvider
222 throw new UnsupportedOperationException("unimplemented mock method call");
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java250 public Bundle call(String method, String request, Bundle args) { method in class:SettingsProvider
504 * notification setting Uri, we will proxy the call to the current
508 // Above call returns -1 if the Uri doesn't match a default type
516 // Only proxy the openFile call to drm or media providers
524 // do the below call the DRM will be checking our
545 * notification setting Uri, we will proxy the call to the current
549 // Above call returns -1 if the Uri doesn't match a default type
557 // Only proxy the openFile call to drm or media providers
565 // do the below call the DRM will be checking our
620 * @returns a Bundle to send back to the client from call(), eve
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmCallTracker.java60 static final int MAX_CONNECTIONS_PER_CALL = 5; // only 5 connections allowed per call
73 // A call that is ringing or (call) waiting
171 // note that this triggers call state changed notif
178 // The new call must be assigned to the foreground call.
179 // That call must be idle, so place anything that's
184 // and we need to make sure the foreground call is clear
191 // next poll, so that we don't clear a failed dialing call
209 // handlePollCalls() will notice this call no
717 hangup(GsmCall call) argument
764 hangupConnectionByIndex(GsmCall call, int index) argument
778 hangupAllConnections(GsmCall call) argument
791 getConnectionByIndex(GsmCall call, int index) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_bluetooth_common.cpp92 void dbus_func_args_async_callback(DBusPendingCall *call, void *data) { argument
99 msg = dbus_pending_call_steal_reply(call);
110 dbus_pending_call_cancel(call);
111 dbus_pending_call_unref(call);
143 LOGE("Could not append argument to method call!");
147 /* Make the call. */
150 DBusPendingCall *call; local
159 &call,
162 dbus_pending_call_set_notify(call,
232 LOGE("Could not append argument to method call!");
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java54 static final int MAX_CONNECTIONS_PER_CALL = 1; // only 1 connection allowed per call
69 // A call that is ringing or (call) waiting
180 // note that this triggers call state changed notif
191 // Cancel Ecm timer if a second emergency call is originating in Ecm mode
196 // We are initiating a call therefore even if we previously
201 // The new call must be assigned to the foreground call.
202 // That call must be idle, so place anything that's
216 // handlePollCalls() will notice this call no
774 hangup(CdmaCall call) argument
821 hangupConnectionByIndex(CdmaCall call, int index) argument
835 hangupAllConnections(CdmaCall call) argument
848 getConnectionByIndex(CdmaCall call, int index) argument
[all...]
/frameworks/base/tools/aidl/
H A Dgenerate_java.cpp397 // the real call
516 // the transact call
517 MethodCall* call = new MethodCall(proxyClass->mRemote, "transact", 4, local
522 tryStatement->statements->Add(call);

Completed in 244 milliseconds