Home
last modified time | relevance | path

Searched refs:callControl (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/telecom-apps/Utils/src/android/telecom/cts/apps/
DTransactionalCall.java73 public void setCallControl(CallControl callControl) { in setCallControl() argument
74 mCallControl = callControl; in setCallControl()
77 public void setCallControlAndId(CallControl callControl) { in setCallControlAndId() argument
78 mCallControl = callControl; in setCallControlAndId()
79 mId = callControl.getCallId().toString(); in setCallControlAndId()
81 Log.i(TAG, String.format("setCallControlAndId: id=[%s], cc=[%s]", mId, callControl)); in setCallControlAndId()
/cts/tests/tests/telecom/src/android/telecom/cts/
DTelecomCtsVoipCall.java54 public void onAddCallControl(@NonNull CallControl callControl) { in onAddCallControl() argument
55 mCallControl = callControl; in onAddCallControl()
56 mTelecomCallId = callControl.getCallId().toString(); in onAddCallControl()
DCallStreamingTest.java133 public void onResult(CallControl callControl) { in testStartCallStreaming()
136 if (callControl == null) { in testStartCallStreaming()
140 call.onAddCallControl(callControl); in testStartCallStreaming()
141 callId[0] = callControl.getCallId(); in testStartCallStreaming()
DTransactionalApisTest.java146 public void onAddCallControl(@NonNull CallControl callControl) { in onAddCallControl() argument
147 mCallControl = callControl; in onAddCallControl()
148 mTelecomCallId = callControl.getCallId().toString(); in onAddCallControl()
1231 CallControl callControl = call.mCallControl; in requestAndAssertEndpointChange() local
1232 if (callControl == null) { in requestAndAssertEndpointChange()
1275 public void onResult(CallControl callControl) { in startCallWithAttributesAndVerify()
1278 if (callControl == null) { in startCallWithAttributesAndVerify()
1282 call.onAddCallControl(callControl); in startCallWithAttributesAndVerify()
1303 CallControl callControl = call.mCallControl; in callControlAction() local
1304 if (callControl == null) { in callControlAction()
/cts/tests/tests/telecom-apps/TransactionalVoipAppMain/src/android/telecom/cts/apps/transactionalvoipappmain/
DTransactionalVoipAppControlMain.java121 public void onResult(CallControl callControl) {
123 verifyCallControlIsNonNull(callControl, stackTrace);
124 call.setCallControlAndId(callControl);
152 private void verifyCallControlIsNonNull(CallControl callControl, List<String> stackTrace)
154 if (callControl == null) {
175 CallControl callControl = call.getCallControl();
177 if (callControl == null) {