Home | History | Annotate | Download | only in telecom

Lines Matching full:callid

52      * @param callId The identifier of the call to answer.
55 public void answerCall(String callId, int videoState) {
57 mAdapter.answerCall(callId, videoState);
65 * @param callId The identifier of the call to reject.
69 public void rejectCall(String callId, boolean rejectWithMessage, String textMessage) {
71 mAdapter.rejectCall(callId, rejectWithMessage, textMessage);
79 * @param callId The identifier of the call to disconnect.
81 public void disconnectCall(String callId) {
83 mAdapter.disconnectCall(callId);
91 * @param callId The identifier of the call to put on hold.
93 public void holdCall(String callId) {
95 mAdapter.holdCall(callId);
103 * @param callId The identifier of the call to release from hold.
105 public void unholdCall(String callId) {
107 mAdapter.unholdCall(callId);
141 * @param callId The unique ID of the call in which the tone will be played.
145 public void playDtmfTone(String callId, char digit) {
147 mAdapter.playDtmfTone(callId, digit);
159 * @param callId The unique ID of the call in which any currently playing tone will be stopped.
161 public void stopDtmfTone(String callId) {
163 mAdapter.stopDtmfTone(callId);
184 * @param callId The unique ID of the call for which postdial string playing should continue.
187 public void postDialContinue(String callId, boolean proceed) {
189 mAdapter.postDialContinue(callId, proceed);
197 * @param callId The identifier of the call.
201 public void phoneAccountSelected(String callId, PhoneAccountHandle accountHandle,
204 mAdapter.phoneAccountSelected(callId, accountHandle, setDefault);
212 * @param callId The unique ID of the call.
215 public void conference(String callId, String otherCallId) {
217 mAdapter.conference(callId, otherCallId);
226 * @param callId The unique ID of the call.
229 public void splitFromConference(String callId) {
231 mAdapter.splitFromConference(callId);
239 public void mergeConference(String callId) {
241 mAdapter.mergeConference(callId);
249 public void swapConference(String callId) {
251 mAdapter.swapConference(callId);
259 * @param callId The callId to pull.
261 public void pullExternalCall(String callId) {
263 mAdapter.pullExternalCall(callId);
271 * @param callId The callId to send the event for.
275 public void sendCallEvent(String callId, String event, Bundle extras) {
277 mAdapter.sendCallEvent(callId, event, extras);
285 * @param callId The callId to add the extras to.
288 public void putExtras(String callId, Bundle extras) {
290 mAdapter.putExtras(callId, extras);
298 * @param callId The callId to add the extras to.
302 public void putExtra(String callId, String key, boolean value) {
306 mAdapter.putExtras(callId, bundle);
314 * @param callId The callId to add the extras to.
318 public void putExtra(String callId, String key, int value) {
322 mAdapter.putExtras(callId, bundle);
330 * @param callId The callId to add the extras to.
334 public void putExtra(String callId, String key, String value) {
338 mAdapter.putExtras(callId, bundle);
345 * @param callId The callId to remove the extras from.
348 public void removeExtras(String callId, List<String> keys) {
350 mAdapter.removeExtras(callId, keys);