Home
last modified time | relevance | path

Searched defs:call (Results 1 – 25 of 39) sorted by relevance

12

/frameworks/base/telecomm/java/android/telecom/
DPhone.java65 public void onCallAdded(Phone phone, Call call) { } in onCallAdded()
76 public void onCallRemoved(Phone phone, Call call) { } in onCallRemoved()
114 Call call = new Call(this, parcelableCall.getId(), mInCallAdapter); in internalAddCall() local
115 mCallByTelecomCallId.put(parcelableCall.getId(), call); in internalAddCall() local
123 final void internalRemoveCall(Call call) { in internalRemoveCall()
131 Call call = mCallByTelecomCallId.get(parcelableCall.getId()); in internalUpdateCall() local
140 Call call = mCallByTelecomCallId.get(telecomId); in internalSetPostDialWait() local
274 private void fireCallAdded(Call call) { in fireCallAdded()
280 private void fireCallRemoved(Call call) { in fireCallRemoved()
DCall.java460 public void onStateChanged(Call call, int state) {} in onStateChanged()
468 public void onParentChanged(Call call, Call parent) {} in onParentChanged()
476 public void onChildrenChanged(Call call, List<Call> children) {} in onChildrenChanged()
484 public void onDetailsChanged(Call call, Details details) {} in onDetailsChanged()
494 public void onCannedTextResponsesLoaded(Call call, List<String> cannedTextResponses) {} in onCannedTextResponsesLoaded()
505 public void onPostDialWait(Call call, String remainingPostDialSequence) {} in onPostDialWait()
514 public void onVideoCallChanged(Call call, InCallService.VideoCall videoCall) {} in onVideoCallChanged()
525 public void onCallDestroyed(Call call) {} in onCallDestroyed()
535 public void onConferenceableCallsChanged(Call call, List<Call> conferenceableCalls) {} in onConferenceableCallsChanged()
718 Call call = mPhone.internalGetCallByTelecomId(id); in getChildren() local
DInCallService.java112 public void addCall(ParcelableCall call) { in addCall()
117 public void updateCall(ParcelableCall call) { in updateCall()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
DSimulatedGsmCallState.java185 CallInfo call = mCalls[i]; in triggerRing() local
222 CallInfo call = mCalls[i]; in progressConnectingCallState() local
248 CallInfo call = mCalls[i]; in progressConnectingToActive() local
285 CallInfo call = mCalls[i]; in triggerHangupForeground() local
297 CallInfo call = mCalls[i]; in triggerHangupForeground() local
322 CallInfo call = mCalls[i]; in triggerHangupBackground() local
344 CallInfo call = mCalls[i]; in triggerHangupAll() local
361 CallInfo call = mCalls[i]; in onAnswer() local
380 CallInfo call = mCalls[i]; in onHangup() local
659 CallInfo call; in onDial() local
[all …]
/frameworks/opt/net/voip/src/java/android/net/sip/
DSipAudioCall.java75 public void onReadyToCall(SipAudioCall call) { in onReadyToCall()
85 public void onCalling(SipAudioCall call) { in onCalling()
96 public void onRinging(SipAudioCall call, SipProfile caller) { in onRinging()
106 public void onRingingBack(SipAudioCall call) { in onRingingBack()
116 public void onCallEstablished(SipAudioCall call) { in onCallEstablished()
126 public void onCallEnded(SipAudioCall call) { in onCallEnded()
136 public void onCallBusy(SipAudioCall call) { in onCallBusy()
146 public void onCallHeld(SipAudioCall call) { in onCallHeld()
158 public void onError(SipAudioCall call, int errorCode, in onError()
168 public void onChanged(SipAudioCall call) { in onChanged()
DSipManager.java336 SipAudioCall call = new SipAudioCall(mContext, localProfile); in makeAudioCall() local
412 SipAudioCall call = new SipAudioCall( in takeAudioCall() local
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsCall.java69 public void onCallProgressing(ImsCall call) { in onCallProgressing()
79 public void onCallStarted(ImsCall call) { in onCallStarted()
90 public void onCallStartFailed(ImsCall call, ImsReasonInfo reasonInfo) { in onCallStartFailed()
101 public void onCallTerminated(ImsCall call, ImsReasonInfo reasonInfo) { in onCallTerminated()
113 public void onCallHeld(ImsCall call) { in onCallHeld()
124 public void onCallHoldFailed(ImsCall call, ImsReasonInfo reasonInfo) { in onCallHoldFailed()
134 public void onCallHoldReceived(ImsCall call) { in onCallHoldReceived()
144 public void onCallResumed(ImsCall call) { in onCallResumed()
155 public void onCallResumeFailed(ImsCall call, ImsReasonInfo reasonInfo) { in onCallResumeFailed()
165 public void onCallResumeReceived(ImsCall call) { in onCallResumeReceived()
[all …]
DImsManager.java506 ImsCall call = new ImsCall(mContext, profile); in makeCall() local
565 ImsCall call = new ImsCall(mContext, session.getCallProfile()); in takeCall() local
/frameworks/base/telecomm/java/com/android/internal/telecom/
DIInCallService.aidl35 void addCall(in ParcelableCall call); in addCall()
37 void updateCall(in ParcelableCall call); in updateCall()
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
DICall.java44 public boolean equalsTo(ICall call); in equalsTo()
/frameworks/base/telephony/java/com/android/internal/telephony/
DICallService.aidl48 void call(String handle); in call() method
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmCallTracker.java762 hangup (GsmCall call) throws CallStateException { in hangup()
813 void hangupConnectionByIndex(GsmCall call, int index) in hangupConnectionByIndex()
827 void hangupAllConnections(GsmCall call) { in hangupAllConnections()
840 GsmConnection getConnectionByIndex(GsmCall call, int index) in getConnectionByIndex()
/frameworks/av/media/common_time/
Dcc_helper.cpp95 #define CCHELPER_METHOD(decl, call) \ argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaCallTracker.java842 hangup (CdmaCall call) throws CallStateException { in hangup()
889 void hangupConnectionByIndex(CdmaCall call, int index) in hangupConnectionByIndex()
903 void hangupAllConnections(CdmaCall call) { in hangupAllConnections()
916 CdmaConnection getConnectionByIndex(CdmaCall call, int index) in getConnectionByIndex()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipPhone.java629 SipCall call = conn.getCall(); in add() local
957 SipCall call = (getPhone() == SipPhone.this) in separate() local
1000 public void onCallEnded(SipAudioCall call) { in onCallEnded()
1008 public void onCallBusy(SipAudioCall call) { in onCallBusy()
1014 public void onError(SipAudioCall call, int errorCode, in onError()
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
DSingleUserProvider.java61 public Bundle call(String method, String arg, Bundle extras) { in call() method in SingleUserProvider
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCallManager.java1900 Call call = getFirstNonIdleCall(mForegroundCalls); in getActiveFgCall() local
1910 Call call = getFirstNonIdleCall(mForegroundCalls, subId); in getActiveFgCall() local
1965 Call call = getFirstNonIdleCall(mBackgroundCalls); in getFirstActiveBgCall() local
1993 Call call = getFirstNonIdleCall(mBackgroundCalls, subId); in getFirstActiveBgCall() local
2017 Call call = getFirstNonIdleCall(mRingingCalls); in getFirstActiveRingingCall() local
2028 Call call = getFirstNonIdleCall(mRingingCalls, subId); in getFirstActiveRingingCall() local
2411 Call call; in toString() local
/frameworks/base/test-runner/src/android/test/mock/
DMockContentProvider.java114 public Bundle call(String callingPackage, String method, String request, Bundle args) in call() method in MockContentProvider.InversionIContentProvider
241 public Bundle call(String method, String request, Bundle args) { in call() method in MockContentProvider
DMockIContentProvider.java96 public Bundle call(String callingPackage, String method, String request, Bundle args) in call() method in MockIContentProvider
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContentProvider.java58 public Bundle call(String callingPackage, String arg0, String arg1, Bundle arg2) in call() method in BridgeContentProvider
/frameworks/base/core/java/android/content/
DIContentProvider.java59 public Bundle call(String callingPkg, String method, String arg, Bundle extras) in call() method
DContentProviderClient.java389 public Bundle call(String method, String arg, Bundle extras) throws RemoteException { in call() method in ContentProviderClient
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCallTracker.java737 hangup (ImsPhoneCall call) throws CallStateException { in hangup()
1339 private void transferHandoverConnections(ImsPhoneCall call) { in transferHandoverConnections()
/frameworks/rs/driver/
DrsdRuntimeStubs.cpp599 const RsScriptCall *call) { in SC_ForEach_SAAUS()
608 const RsScriptCall *call) { in SC_ForEach_SAAUS()
640 const RsScriptCall *call) { in SC_ForEach_SAAULS()
650 const RsScriptCall *call) { in SC_ForEach_SAAULS()
1466 const RsScriptCall *call) { in SC_ForEach_SAAUS()
1485 const RsScriptCall *call) { in SC_ForEach_SAAULS()
1536 const rs_script_call *call) { in rsForEach()
1559 const rs_script_call *call) { in rsForEach()
/frameworks/rs/
DrsScriptC_Lib.cpp232 const RsScriptCall *call) { in rsrForEach()

12