Home
last modified time | relevance | path

Searched refs:callAttributes (Results 1 – 9 of 9) sorted by relevance

/cts/tests/tests/telecom-apps/Utils/src/android/telecom/cts/apps/
DAttributesUtil.java41 public static boolean hasSetInactiveCapabilities(CallAttributes callAttributes) { in hasSetInactiveCapabilities() argument
42 return (callAttributes.getCallCapabilities() & CallAttributes.SUPPORTS_SET_INACTIVE) in hasSetInactiveCapabilities()
148 public static Bundle getExtrasWithPhoneAccount(CallAttributes callAttributes) { in getExtrasWithPhoneAccount() argument
151 callAttributes.getPhoneAccountHandle()); in getExtrasWithPhoneAccount()
152 if (!isOutgoing(callAttributes)) { in getExtrasWithPhoneAccount()
155 callAttributes.getAddress() in getExtrasWithPhoneAccount()
164 public static boolean isOutgoing(CallAttributes callAttributes) { in isOutgoing() argument
165 return callAttributes.getDirection() == DIRECTION_OUTGOING; in isOutgoing()
DCallResources.java43 CallAttributes callAttributes, in CallResources() argument
46 mCallAttributes = callAttributes; in CallResources()
52 callAttributes.getDisplayName().toString(), in CallResources()
53 AttributesUtil.isOutgoing(callAttributes)); in CallResources()
DAppControlWrapper.java112 public void addCall(CallAttributes callAttributes) throws Exception { in addCall() argument
115 NoDataTransaction transactionResult = mBinder.addCall(callAttributes); in addCall()
/cts/tests/tests/telephony/current/src/android/telephony/cts/
DCallAttributesTest.java51 CallAttributes callAttributes = in testCallAttributesGetter() local
54 assertEquals(mTestCallQuality, callAttributes.getCallQuality()); in testCallAttributesGetter()
55 assertEquals(mTestPreciseCallState, callAttributes.getPreciseCallState()); in testCallAttributesGetter()
56 assertEquals(TelephonyManager.NETWORK_TYPE_LTE, callAttributes.getNetworkType()); in testCallAttributesGetter()
DTelephonyRegistryManagerTest.java763 public void onCallAttributesChanged(@NonNull CallAttributes callAttributes) { in onCallAttributesChanged() argument
764 mTestCallAttributes.offer(callAttributes); in onCallAttributesChanged()
/cts/tests/tests/telecom-apps/ManagedConnectionService/src/android/telecom/cts/apps/managedapp/
DManagedAppControl.java99 public NoDataTransaction addCall(CallAttributes callAttributes) {
103 + ".addCall(" + callAttributes + ")");
105 if (isOutgoing(callAttributes)) {
106 mTelecomManager.placeCall(callAttributes.getAddress(),
107 getExtrasWithPhoneAccount(callAttributes));
109 mTelecomManager.addNewIncomingCall(callAttributes.getPhoneAccountHandle(),
110 getExtrasWithPhoneAccount(callAttributes));
122 trackConnection(connection, callAttributes, stackTrace);
132 CallAttributes callAttributes,
137 maybeClearHoldCapabilities(connection, callAttributes);
[all …]
/cts/tests/tests/telecom-apps/ConnectionServiceVoipAppMain/src/android/telecom/cts/apps/connectionservicevoipappmain/
DVoipConnectionServiceControlMain.java114 public NoDataTransaction addCall(CallAttributes callAttributes) {
118 + ".addCall(" + callAttributes + ")");
120 if (isOutgoing(callAttributes)) {
121 mTelecomManager.placeCall(callAttributes.getAddress(),
122 getExtrasWithPhoneAccount(callAttributes));
124 mTelecomManager.addNewIncomingCall(callAttributes.getPhoneAccountHandle(),
125 getExtrasWithPhoneAccount(callAttributes));
136 trackConnection(c, callAttributes, stackTrace);
146 CallAttributes callAttributes,
151 maybeClearHoldCapabilities(connection, callAttributes);
[all …]
/cts/tests/tests/telecom-apps/TransactionalVoipAppMain/src/android/telecom/cts/apps/transactionalvoipappmain/
DTransactionalVoipAppControlMain.java105 public NoDataTransaction addCall(CallAttributes callAttributes) throws RemoteException {
106 Log.i(mTag, String.format("addCall: w/ attributes=[%s]", callAttributes));
109 + ".addCall(" + callAttributes + ")");
115 callAttributes,
119 mTelecomManager.addCall(callAttributes, Runnable::run, new OutcomeReceiver<>() {
/cts/tests/tests/telecom-apps/Utils/aidl/android/telecom/cts/apps/
DIAppControl.aidl57 NoDataTransaction addCall(in CallAttributes callAttributes); in addCall() argument