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

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContentProvider.java55 public Bundle call(String arg0, String arg1, Bundle arg2) throws RemoteException { method in class:BridgeContentProvider
/frameworks/base/test-runner/src/android/test/mock/
H A DMockIContentProvider.java40 * @hide - @hide because this exposes bulkQuery() and call(), which must also be hidden.
89 public Bundle call(String method, String request, Bundle args) method in class:MockIContentProvider
H A DMockContentProvider.java107 public Bundle call(String method, String request, Bundle args) method in class:MockContentProvider.InversionIContentProvider
109 return MockContentProvider.this.call(method, request, args);
197 * If you're reluctant to implement this manually, please just call super.bulkInsert().
218 public Bundle call(String method, String request, Bundle args) { method in class:MockContentProvider
219 throw new UnsupportedOperationException("unimplemented mock method call");
223 throw new UnsupportedOperationException("unimplemented mock method call");
227 throw new UnsupportedOperationException("unimplemented mock method call");
/frameworks/base/core/java/android/content/
H A DContentProviderNative.java260 Bundle responseBundle = call(method, stringArg, args);
556 public Bundle call(String method, String request, Bundle args) method in class:ContentProviderProxy
H A DIContentProvider.java52 public Bundle call(String method, String arg, Bundle extras) throws RemoteException; method in interface:IContentProvider
H A DContentProvider.java236 public Bundle call(String method, String arg, Bundle extras) { method in class:ContentProvider.Transport
237 return ContentProvider.this.call(method, arg, extras);
489 * Example client call:<p>
552 * write permissions, or is not exported, all applications can still call
563 * As a courtesy, call {@link ContentResolver#notifyChange(android.net.Uri ,android.database.ContentObserver) notifyChange()}
576 * default implementation will iterate over the values and call
578 * As a courtesy, call {@link ContentResolver#notifyChange(android.net.Uri ,android.database.ContentObserver) notifyChange()}
600 * As a courtesy, call {@link ContentResolver#notifyChange(android.net.Uri ,android.database.ContentObserver) notifyDelete()}
622 * As a courtesy, call {@link ContentResolver#notifyChange(android.net.Uri ,android.database.ContentObserver) notifyChange()}
651 * of this method should create a new ParcelFileDescriptor for each call
986 public Bundle call(String method, String arg, Bundle extras) { method in class:ContentProvider
[all...]
H A DContentResolver.java505 * on a content: URI, it will instead call {@link #openTypedAssetFileDescriptor}
746 * by the call to {@link ContentProviderOperation#apply}.
749 * how many, if any, operations will have been successfully applied if a call to
874 * @param method provider-defined method name to call. Opaque to
879 * does not implement call.
883 public final Bundle call(Uri uri, String method, String arg, Bundle extras) { method in class:ContentResolver
895 return provider.call(method, arg, extras);
1034 * To register, call {@link #registerContentObserver(android.net.Uri , boolean, android.database.ContentObserver) registerContentObserver()}.
1046 * To register, call {@link #registerContentObserver(android.net.Uri , boolean, android.database.ContentObserver) registerContentObserver()}.
/frameworks/base/libs/rs/
H A DrsScriptC_Lib.cpp159 const RsScriptCall *call) {
160 target->runForEach(rsc, in, out, usr, usrBytes, call);
155 rsrForEach(Context *rsc, Script *sc, Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrBytes, const RsScriptCall *call) argument
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java345 public Bundle call(String method, String request, Bundle args) { method in class:SettingsProvider
624 * notification setting Uri, we will proxy the call to the current
628 // Above call returns -1 if the Uri doesn't match a default type
636 // Only proxy the openFile call to drm or media providers
644 // do the below call the DRM will be checking our
665 * notification setting Uri, we will proxy the call to the current
669 // Above call returns -1 if the Uri doesn't match a default type
677 // Only proxy the openFile call to drm or media providers
685 // do the below call the DRM will be checking our
761 * @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.java61 static final int MAX_CONNECTIONS_PER_CALL = 5; // only 5 connections allowed per call
74 // A call that is ringing or (call) waiting
172 // note that this triggers call state changed notif
179 // The new call must be assigned to the foreground call.
180 // That call must be idle, so place anything that's
185 // and we need to make sure the foreground call is clear
192 // next poll, so that we don't clear a failed dialing call
210 // handlePollCalls() will notice this call no
727 hangup(GsmCall call) argument
774 hangupConnectionByIndex(GsmCall call, int index) argument
788 hangupAllConnections(GsmCall call) argument
801 getConnectionByIndex(GsmCall call, int index) argument
[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
137 // Notify if in call when registering
184 // note that this triggers call state changed notif
196 // Cancel Ecm timer if a second emergency call is originating in Ecm mode
201 // We are initiating a call therefore even if we previously
206 // The new call must be assigned to the foreground call.
207 // That call mus
797 hangup(CdmaCall call) argument
844 hangupConnectionByIndex(CdmaCall call, int index) argument
858 hangupAllConnections(CdmaCall call) argument
871 getConnectionByIndex(CdmaCall call, int index) argument
[all...]
/frameworks/base/tools/aidl/
H A Dgenerate_java.cpp398 // the real call
517 // the transact call
518 MethodCall* call = new MethodCall(proxyClass->mRemote, "transact", 4, local
523 tryStatement->statements->Add(call);
/frameworks/base/voip/java/android/net/sip/
H A DSipAudioCall.java41 * Handles an Internet audio call over SIP. You can instantiate this class with {@link SipManager},
62 /** Listener for events relating to a SIP call, such as when a call is being
63 * recieved ("on ringing") or a call is outgoing ("on calling").
68 * Called when the call object is ready to make another call.
71 * @param call the call object that is ready to make another call
73 public void onReadyToCall(SipAudioCall call) { argument
83 onCalling(SipAudioCall call) argument
94 onRinging(SipAudioCall call, SipProfile caller) argument
104 onRingingBack(SipAudioCall call) argument
114 onCallEstablished(SipAudioCall call) argument
124 onCallEnded(SipAudioCall call) argument
134 onCallBusy(SipAudioCall call) argument
144 onCallHeld(SipAudioCall call) argument
156 onError(SipAudioCall call, int errorCode, String errorMessage) argument
166 onChanged(SipAudioCall call) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_bluetooth_common.cpp116 void dbus_func_args_async_callback(DBusPendingCall *call, void *data) { argument
123 msg = dbus_pending_call_steal_reply(call);
134 dbus_pending_call_cancel(call);
135 dbus_pending_call_unref(call);
167 LOGE("Could not append argument to method call!");
171 /* Make the call. */
174 DBusPendingCall *call; local
183 &call,
186 dbus_pending_call_set_notify(call,
257 LOGE("Could not append argument to method call!");
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/sip/
H A DSipPhone.java55 // A call that is ringing or (call) waiting
99 // FIXME: is it true that we cannot take any incoming call if
108 if (DEBUG) Log.d(LOG_TAG, "+++ taking call from: "
116 // Peer cancelled the call!
117 if (DEBUG) Log.d(LOG_TAG, " call cancelled !!");
123 // Peer may cancel the call at any time during the time we hook
137 // Always unmute when answering a new call
291 Log.e(LOG_TAG, "call waiting not supported");
412 if (DEBUG) Log.d(LOG_TAG, "hang up call
889 onCallEnded(SipAudioCall call) argument
896 onCallBusy(SipAudioCall call) argument
901 onError(SipAudioCall call, int errorCode, String errorMessage) argument
[all...]
/frameworks/base/libs/rs/driver/
H A DrsdRuntimeStubs.cpp346 const RsScriptCall *call) {
348 rsrForEach(rsc, sc, target, in, out, usr, 0, call);
365 const RsScriptCall *call) {
367 rsrForEach(rsc, sc, target, in, out, usr, usrLen, call);
342 SC_ForEach_SAAUS(Script *target, Allocation *in, Allocation *out, const void *usr, const RsScriptCall *call) argument
360 SC_ForEach_SAAULS(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen, const RsScriptCall *call) argument

Completed in 457 milliseconds