/frameworks/opt/net/ims/src/java/com/android/ims/internal/ |
H A D | ICall.java | 20 * IMS call interface 31 * Checks if the call has a same remote user identity or not. 39 * Checks if the call is equal or not. 41 * @param call the call to be compared 42 * @return true if the call is equal; otherwise, false 44 public boolean equalsTo(ICall call); argument
|
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/ |
H A D | SingleUserProvider.java | 61 public Bundle call(String method, String arg, Bundle extras) { method in class:SingleUserProvider
|
/frameworks/base/packages/Keyguard/scripts/ |
H A D | new_merge.py | 9 from subprocess import call namespace 151 call([DIFF_TOOL, file1, file2])
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
H A D | BridgeContentProvider.java | 58 public Bundle call(String callingPackage, String arg0, String arg1, Bundle arg2) method in class:BridgeContentProvider
|
/frameworks/base/core/java/android/content/ |
H A D | ContentProviderClient.java | 48 * {@link #openFile} are not thread safe -- you must not call 388 /** See {@link ContentProvider#call(String, String, Bundle)} */ 389 public Bundle call(String method, String arg, Bundle extras) throws RemoteException { method in class:ContentProviderClient 392 return mContentProvider.call(mPackageName, method, arg, extras);
|
H A D | ContentProviderNative.java | 283 Bundle responseBundle = call(callingPkg, method, stringArg, args); 631 public Bundle call(String callingPkg, String method, String request, Bundle args) method in class:ContentProviderProxy
|
H A D | IContentProvider.java | 59 public Bundle call(String callingPkg, String method, String arg, Bundle extras) method in interface:IContentProvider
|
H A D | ContentProvider.java | 367 public Bundle call(String callingPkg, String method, String arg, Bundle extras) { method in class:ContentProvider.Transport 370 return ContentProvider.this.call(method, arg, extras); 820 * provider, but that call has been rejected for the operation given 848 * Example client call:<p> 906 * Example client call:<p> 980 * write permissions, or is not exported, all applications can still call 1044 * provider, but that call has been rejected for the operation given 1060 * As a courtesy, call {@link ContentResolver#notifyChange(android.net.Uri ,android.database.ContentObserver) notifyChange()} 1074 * default implementation will iterate over the values and call 1076 * As a courtesy, call { 1745 public Bundle call(String method, String arg, Bundle extras) { method in class:ContentProvider [all...] |
/frameworks/base/core/java/android/provider/ |
H A D | DocumentsProvider.java | 249 * call (such as documents inside a directory) the implementor is 269 * If this set of roots changes, you must call {@link ContentResolver#notifyChange(Uri, 327 * you can call {@link ContentResolver#notifyChange(Uri, 378 * String, String)}. Then you can call {@link ContentResolver#notifyChange(Uri, 535 * call the superclass. If the superclass returns {@code null}, the subclass 563 // TODO: move this to a direct AMS call 616 * call the superclass. If the superclass returns {@code null}, the subclass 620 public Bundle call(String method, String arg, Bundle extras) { method in class:DocumentsProvider 623 return super.call(method, arg, extras); 688 throw new IllegalStateException("Failed call " [all...] |
/frameworks/base/telecomm/java/android/telecom/ |
H A D | Phone.java | 46 * Called to bring the in-call screen to the foreground. The in-call experience should 56 * Called when a {@code Call} has been added to this in-call session. The in-call user 63 * @param call A newly added {@code Call}. 65 public void onCallAdded(Phone phone, Call call) { } argument 68 * Called when a {@code Call} has been removed from this in-call session. The in-call user 74 * @param call A newly removed {@code Call}. 76 public void onCallRemoved(Phone phone, Call call) { } argument 123 internalRemoveCall(Call call) argument 274 fireCallAdded(Call call) argument 280 fireCallRemoved(Call call) argument [all...] |
H A D | InCallService.java | 37 * phone calls. Telecom binds to this service while there exists a live (active or incoming) call, 38 * and uses it to notify the in-call app of any live and and recently disconnected calls. 112 public void addCall(ParcelableCall call) { argument 113 mHandler.obtainMessage(MSG_ADD_CALL, call).sendToTarget(); 117 public void updateCall(ParcelableCall call) { argument 118 mHandler.obtainMessage(MSG_UPDATE_CALL, call).sendToTarget(); 185 * Invoked when the {@code Phone} has been created. This is a signal to the in-call experience 186 * to start displaying in-call information to the user. Each instance of {@code InCallService} 196 * Invoked when a {@code Phone} has been destroyed. This is a signal to the in-call experience 197 * to stop displaying in-call informatio [all...] |
H A D | Call.java | 32 * Represents an ongoing phone call that the in-call app should present to the user. 78 * Common transitions are to {@link #STATE_DIALING} state for a successful call or 84 * The state of a {@code Call} when the user has initiated a disconnection of the call, but the 85 * call has not yet been disconnected by the underlying {@code ConnectionService}. The next 86 * state of the call is (potentially) {@link #STATE_DISCONNECTED}. 93 * select phone accounts to (for example) place a call. 109 * add a {@link Conference} call before the child {@link Connection}s are merged. This is how 111 * capability allows a merge button to be shown while the conference call is in the foreground 112 * of the in-call U 451 onStateChanged(Call call, int state) argument 459 onParentChanged(Call call, Call parent) argument 467 onChildrenChanged(Call call, List<Call> children) argument 475 onDetailsChanged(Call call, Details details) argument 485 onCannedTextResponsesLoaded(Call call, List<String> cannedTextResponses) argument 496 onPostDialWait(Call call, String remainingPostDialSequence) argument 505 onVideoCallChanged(Call call, InCallService.VideoCall videoCall) argument 516 onCallDestroyed(Call call) argument 526 onConferenceableCallsChanged(Call call, List<Call> conferenceableCalls) argument [all...] |
/frameworks/base/test-runner/src/android/test/mock/ |
H A D | MockContentProvider.java | 114 public Bundle call(String callingPackage, String method, String request, Bundle args) method in class:MockContentProvider.InversionIContentProvider 116 return MockContentProvider.this.call(method, request, args); 220 * If you're reluctant to implement this manually, please just call super.bulkInsert(). 241 public Bundle call(String method, String request, Bundle args) { method in class:MockContentProvider 242 throw new UnsupportedOperationException("unimplemented mock method call"); 246 throw new UnsupportedOperationException("unimplemented mock method call"); 250 throw new UnsupportedOperationException("unimplemented mock method call");
|
H A D | MockIContentProvider.java | 41 * @hide - @hide because this exposes bulkQuery() and call(), which must also be hidden. 96 public Bundle call(String callingPackage, String method, String request, Bundle args) method in class:MockIContentProvider
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
H A D | AArch64Relocator.cpp | 543 Relocator::Result call(Relocation& pReloc, AArch64Relocator& pParent) function
|
/frameworks/rs/ |
H A D | rsScriptC_Lib.cpp | 232 const RsScriptCall *call) { 233 target->runForEach(rsc, /* root slot */ 0, in, out, usr, usrBytes, call); 228 rsrForEach(Context *rsc, Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrBytes, const RsScriptCall *call) argument
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
H A D | RecentsProvider.java | 255 public Bundle call(String method, String arg, Bundle extras) { method in class:RecentsProvider 298 return super.call(method, arg, extras);
|
/frameworks/base/tools/aidl/ |
H A D | generate_java_binder.cpp | 334 // the real call 453 // the transact call 454 MethodCall* call = new MethodCall(proxyClass->mRemote, "transact", 4, local 459 tryStatement->statements->Add(call);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
H A D | GsmCallTracker.java | 69 static final int MAX_CONNECTIONS_PER_CALL = 5; // only 5 connections allowed per call 82 // A call that is ringing or (call) waiting 173 // note that this triggers call state changed notif 183 // The new call must be assigned to the foreground call. 184 // That call must be idle, so place anything that's 189 // and we need to make sure the foreground call is clear 196 // next poll, so that we don't clear a failed dialing call 215 // handlePollCalls() will notice this call no 762 hangup(GsmCall call) argument 813 hangupConnectionByIndex(GsmCall call, int index) argument 827 hangupAllConnections(GsmCall call) argument 840 getConnectionByIndex(GsmCall call, int index) argument [all...] |
/frameworks/opt/net/voip/src/java/android/net/sip/ |
H A D | SipAudioCall.java | 35 * Handles an Internet audio call over SIP. You can instantiate this class with {@link SipManager}, 64 /** Listener for events relating to a SIP call, such as when a call is being 65 * recieved ("on ringing") or a call is outgoing ("on calling"). 70 * Called when the call object is ready to make another call. 73 * @param call the call object that is ready to make another call 75 public void onReadyToCall(SipAudioCall call) { argument 85 onCalling(SipAudioCall call) argument 96 onRinging(SipAudioCall call, SipProfile caller) argument 106 onRingingBack(SipAudioCall call) argument 116 onCallEstablished(SipAudioCall call) argument 126 onCallEnded(SipAudioCall call) argument 136 onCallBusy(SipAudioCall call) argument 146 onCallHeld(SipAudioCall call) argument 158 onError(SipAudioCall call, int errorCode, String errorMessage) argument 168 onChanged(SipAudioCall call) argument [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
H A D | CdmaCallTracker.java | 65 static final int MAX_CONNECTIONS_PER_CALL = 1; // only 1 connection allowed per call 80 // A call that is ringing or (call) waiting 139 // Notify if in call when registering 174 // note that this triggers call state changed notif 205 // Cancel Ecm timer if a second emergency call is originating in Ecm mode 210 // We are initiating a call therefore even if we previously 215 // The new call must be assigned to the foreground call. 216 // That call mus 842 hangup(CdmaCall call) argument 889 hangupConnectionByIndex(CdmaCall call, int index) argument 903 hangupAllConnections(CdmaCall call) argument 916 getConnectionByIndex(CdmaCall call, int index) argument [all...] |
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
H A D | SettingsProvider.java | 684 public Bundle call(String method, String request, Bundle args) { method in class:SettingsProvider 704 if (LOCAL_LOGV) Slog.v(TAG, "call(system:" + request + ") for " + callingUser); 715 if (LOCAL_LOGV) Slog.v(TAG, "call(secure:" + request + ") for " + callingUser); 731 if (LOCAL_LOGV) Slog.v(TAG, "call(global:" + request + ") for " + callingUser); 833 Slog.w(TAG, "call() with invalid method: " + method); 1273 * @returns a Bundle to send back to the client from call(), even
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
H A D | ARMRelocator.cpp | 1046 ARMRelocator::Result call(Relocation& pReloc, ARMRelocator& pParent) function
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
H A D | ImsPhoneCallTracker.java | 84 if (DBG) log("onReceive : incoming call intent"); 102 // Normal MT call 295 // note that this triggers call state changed notif 312 // The new call must be assigned to the foreground call. 313 // That call must be idle, so place anything that's 320 // foreground call is empty for the newly dialed connection 335 //holding foreground call failed 340 //holding foreground call succeeded 399 // Always unmute when initiating a new call 737 hangup(ImsPhoneCall call) argument 1339 transferHandoverConnections(ImsPhoneCall call) argument [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
H A D | SipPhone.java | 58 // A call that is ringing or (call) waiting 107 // FIXME: is it true that we cannot take any incoming call if 119 if (DBG) log("takeIncomingCall: taking call from: " 127 // Peer cancelled the call! 128 if (DBG) log(" takeIncomingCall: call cancelled !!"); 135 // Peer may cancel the call at any time during the time we hook 152 // Always unmute when answering a new call 330 loge("call waiting not supported"); 501 if (SC_DBG) log("hangup: call " 1000 onCallEnded(SipAudioCall call) argument 1008 onCallBusy(SipAudioCall call) argument 1014 onError(SipAudioCall call, int errorCode, String errorMessage) argument [all...] |