Home
last modified time | relevance | path

Searched refs:call_id (Results 1 – 10 of 10) sorted by relevance

/tools/test/connectivity/acts/framework/acts/test_utils/car/
Dcar_telecom_utils.py74 call_id = event['data']['CallId']
75 log.info("Call ID: {} dev {}".format(call_id, ad.serial))
77 if not call_id:
83 return call_id
85 def wait_for_call_state(log, ad, call_id, state): argument
101 call_id, tel_defines.EVENT_CALL_STATE_CHANGED)
104 if ad.droid.telecomCallGetCallState(call_id) == state:
106 call_id, state, ad.serial))
107 ad.droid.telecomCallStopListeningForEvent(call_id,
122 ad.droid.telecomCallStopListeningForEvent(call_id,
[all …]
Dtel_telecom_utils.py61 call_id = event['data']['CallId']
62 log.info("Call ID: {} dev {}".format(call_id, ad.serial))
64 if not call_id:
70 return call_id
72 def wait_for_call_state(log, ad, call_id, state): argument
87 call_id, tel_defines.EVENT_CALL_STATE_CHANGED)
90 if ad.droid.telecomCallGetCallState(call_id) == state:
92 call_id, state, ad.serial))
106 ad.droid.telecomCallStopListeningForEvent(call_id,
110 def hangup_call(log, ad, call_id): argument
[all …]
/tools/test/connectivity/acts_tests/tests/google/tel/live/
DTelLiveVoiceConfTest.py393 for call_id in calls:
395 .droid.telecomCallGetCapabilities(call_id)):
396 call_conf_id = call_id
397 elif call_id != call_ab_id:
398 call_ac_id = call_id
435 for call_id in calls:
437 .droid.telecomCallGetCapabilities(call_id)):
438 call_conf_id = call_id
439 elif call_id != call_ab_id:
440 call_ac_id = call_id
[all …]
DTelLiveVoiceTest.py2078 call_id = call_list[0]
2080 if ads[0].droid.telecomCallGetCallState(call_id) != CALL_STATE_ACTIVE:
2082 call_id,
2083 ads[0].droid.telecomCallGetCallState(call_id))
2087 ads[0].log.info("Hold call_id %s on PhoneA", call_id)
2088 ads[0].droid.telecomCallHold(call_id)
2090 if ads[0].droid.telecomCallGetCallState(call_id) != CALL_STATE_HOLDING:
2092 call_id,
2093 ads[0].droid.telecomCallGetCallState(call_id))
2097 ads[0].log.info("Unhold call_id %s on PhoneA", call_id)
[all …]
DTelLiveGFTDSDSSupplementaryServiceTest.py321 for call_id in calls:
322 if call_id != call_ab_id and call_id != call_ac_id:
323 call_conf_id = call_id
381 for call_id in calls:
382 if call_id != call_ab_id and call_id != call_ac_id:
383 call_conf_id = call_id
DTelLiveVideoTest.py1695 for call_id in calls:
1696 if call_id != call_ab_id and call_id != call_ac_id:
1697 call_conf_id = call_id
/tools/test/connectivity/acts/framework/acts/test_utils/tel/
Dtel_voice_utils.py1689 def is_phone_in_call_iwlan(log, ad, call_id=None): argument
1704 if not call_id:
1707 call_id = call_ids[-1]
1708 if not call_id:
1712 call_prop = ad.droid.telecomCallGetProperties(call_id)
1851 def is_property_in_call_properties(log, ad, call_id, expected_property): argument
1863 properties = ad.droid.telecomCallGetProperties(call_id)
1867 def is_call_hd(log, ad, call_id): argument
1878 return is_property_in_call_properties(log, ad, call_id,
Dtel_video_utils.py796 def is_call_id_in_video_state(log, ad, call_id, video_state): argument
808 return video_state == ad.droid.telecomCallVideoGetState(call_id)
927 def verify_video_call_in_expected_state(log, ad, call_id, call_video_state, argument
941 if not is_call_id_in_video_state(log, ad, call_id, call_video_state):
943 call_video_state, ad.droid.telecomCallVideoGetState(call_id)))
945 if ad.droid.telecomCallGetCallState(call_id) != call_state:
947 call_state, ad.droid.telecomCallGetCallState(call_id)))
Dtel_test_utils.py1554 def disconnect_call_by_id(log, ad, call_id): argument
1557 ad.droid.telecomCallDisconnect(call_id)
2456 if not wait_for_in_call_active(ad, call_id=new_call_id):
2847 if not wait_for_in_call_active(ad, call_id=new_call_id):
3233 if not wait_for_in_call_active(ad, call_id=new_call_id):
3338 for call_id in first_call_ids:
3339 disconnect_call_by_id(log, ad_hangup, call_id)
3394 if not wait_for_in_call_active(ad, call_id=new_call_id):
3475 for call_id in first_call_ids:
3476 disconnect_call_by_id(log, ad_hangup, call_id)
[all …]
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
Dbt_carkit_lib.py420 call_id = pri_dut.droid.telecomCallGetCallIds()[0]
421 pri_dut.droid.telecomCallPlayDtmfTone(call_id, "9")
448 pri_dut.droid.telecomCallStopDtmfTone(call_id)