Searched refs:reject (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsCallSession.aidl140 * @param reason reason code to reject an incoming call
143 void reject(int reason);
/frameworks/compile/mclinker/include/mcld/LD/
H A DEhFrameReader.h81 static bool reject(EhFrame& pEhFrame,
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlingerConsumer.h46 virtual bool reject(const sp<GraphicBuffer>& buf,
57 // reject the newly acquired buffer. Unlike the GLConsumer version,
H A DSurfaceFlingerConsumer.cpp74 // reject buffers which have the wrong size
76 if (rejecter && rejecter->reject(mSlots[slot].mGraphicBuffer, item)) {
H A DLayer.cpp1781 virtual bool reject(const sp<GraphicBuffer>& buf, function in struct:android::Reject
1824 "[%s] latchBuffer/reject: buffer (%ux%u, tr=%02x), scalingMode=%d\n"
1842 // reject this buffer
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIConnectionService.aidl51 void reject(String callId);
/frameworks/compile/mclinker/lib/LD/
H A DEhFrameReader.cpp116 {addCIE, reject, addTerm, reject}, // Q0
117 {addCIE, addFDE, addTerm, reject}, // Q1
360 bool EhFrameReader::reject(EhFrame& pEhFrame, function in class:mcld::EhFrameReader
/frameworks/base/telecomm/java/android/telecom/
H A DConnectionService.java72 * receives call-commands such as answer, reject, hold and disconnect.
171 public void reject(String callId) {
339 reject((String) msg.obj);
344 reject((String) args.arg1, (String) args.arg2);
810 private void reject(String callId) { method in class:ConnectionService
811 Log.d(this, "reject %s", callId);
812 findConnectionForAction(callId, "reject").onReject();
815 private void reject(String callId, String rejectWithMessage) { method in class:ConnectionService
816 Log.d(this, "reject %s with message", callId);
817 findConnectionForAction(callId, "reject")
[all...]
H A DRemoteConnection.java881 * Instructs this {@link Connection#STATE_RINGING} {@code RemoteConnection} to reject.
883 public void reject() { method in class:RemoteConnection
886 mConnectionService.reject(mConnectionId);
H A DCall.java841 * Instructs this {@link #STATE_RINGING} {@code Call} to reject.
843 * @param rejectWithMessage Whether to reject with a text message.
846 public void reject(boolean rejectWithMessage, String textMessage) { method in class:Call
1142 * @see #reject(boolean, String)
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsCallSession.java707 * @param reason reason code to reject an incoming call
710 public void reject(int reason) { method in class:ImsCallSession
716 miSession.reject(reason);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTrackerTest.java101 // trigger the listener on reject call
109 }).when(mImsCall).reject(anyInt());
114 // trigger the listener on reject call
263 verify(mImsCall, times(1)).reject(eq(ImsReasonInfo.CODE_USER_DECLINE));
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java482 // Call profile to be updated after the application's action (accept/reject)
483 // to the call update. After the application's action (accept/reject) is done,
1079 * @param reason reason code to reject an incoming call
1081 * @throws ImsException if the IMS service fails to reject the call
1083 public void reject(int reason) throws ImsException { method in class:ImsCall
1084 logi("reject :: reason=" + reason);
1088 mSession.reject(reason);
1093 logi("reject :: call profile is not updated; destroy it...");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTracker.java906 imsCall.reject(ImsReasonInfo.CODE_USER_DECLINE);

Completed in 5264 milliseconds