Searched refs:call_id (Results 1 – 8 of 8) sorted by relevance
/tools/test/connectivity/acts/framework/acts/test_utils/car/ |
D | car_telecom_utils.py | 74 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 …]
|
D | tel_telecom_utils.py | 61 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/google/tel/live/ |
D | TelLiveVoiceConfTest.py | 390 for call_id in calls: 392 .droid.telecomCallGetCapabilities(call_id)): 393 call_conf_id = call_id 394 elif call_id != call_ab_id: 395 call_ac_id = call_id 432 for call_id in calls: 434 .droid.telecomCallGetCapabilities(call_id)): 435 call_conf_id = call_id 436 elif call_id != call_ab_id: 437 call_ac_id = call_id [all …]
|
D | TelLiveVideoTest.py | 1684 for call_id in calls: 1685 if call_id != call_ab_id and call_id != call_ac_id: 1686 call_conf_id = call_id
|
/tools/test/connectivity/acts/framework/acts/test_utils/tel/ |
D | tel_video_utils.py | 935 def is_call_id_in_video_state(log, ad, call_id, video_state): argument 947 return video_state == ad.droid.telecomCallVideoGetState(call_id) 1066 def verify_video_call_in_expected_state(log, ad, call_id, call_video_state, argument 1080 if not is_call_id_in_video_state(log, ad, call_id, call_video_state): 1082 call_video_state, ad.droid.telecomCallVideoGetState(call_id))) 1084 if ad.droid.telecomCallGetCallState(call_id) != call_state: 1086 call_state, ad.droid.telecomCallGetCallState(call_id)))
|
D | tel_voice_utils.py | 1324 def is_property_in_call_properties(log, ad, call_id, expected_property): argument 1336 properties = ad.droid.telecomCallGetProperties(call_id) 1340 def is_call_hd(log, ad, call_id): argument 1351 return is_property_in_call_properties(log, ad, call_id,
|
D | tel_test_utils.py | 1107 def disconnect_call_by_id(log, ad, call_id): argument 1110 ad.droid.telecomCallDisconnect(call_id) 1756 if not wait_for_in_call_active(ad, call_id=new_call_id): 3002 def is_phone_in_call_active(ad, call_id=None): argument 3010 if not call_id: 3011 call_id = ad.droid.telecomCallGetCallIds()[0] 3012 call_state = ad.droid.telecomCallGetCallState(call_id) 3013 ad.log.info("%s state is %s", call_id, call_state) 3017 def wait_for_in_call_active(ad, timeout=5, interval=1, call_id=None): argument 3025 if not call_id: [all …]
|
/tools/test/connectivity/acts/framework/acts/test_utils/bt/ |
D | bt_carkit_lib.py | 420 call_id = pri_dut.droid.telecomCallGetCallIds()[0] 421 pri_dut.droid.telecomCallPlayDtmfTone(call_id, "9") 448 pri_dut.droid.telecomCallStopDtmfTone(call_id)
|