Searched refs:getDetails (Results 1 – 13 of 13) sorted by relevance
/cts/tests/tests/telecom/src/android/telecom/cts/ |
D | CallDetailsTest.java | 133 assertThat(mCall.getDetails().getAccountHandle(), instanceOf(PhoneAccountHandle.class)); in testAccountHandle() 134 assertEquals(TEST_PHONE_ACCOUNT_HANDLE, mCall.getDetails().getAccountHandle()); in testAccountHandle() 145 assertThat(mCall.getDetails().getCallCapabilities(), instanceOf(Integer.class)); in testCallCapabilities() 146 assertEquals(CALL_CAPABILITIES, mCall.getDetails().getCallCapabilities()); in testCallCapabilities() 147 assertTrue(mCall.getDetails().can(Call.Details.CAPABILITY_HOLD)); in testCallCapabilities() 148 assertTrue(mCall.getDetails().can(Call.Details.CAPABILITY_MUTE)); in testCallCapabilities() 149 assertFalse(mCall.getDetails().can(Call.Details.CAPABILITY_MANAGE_CONFERENCE)); in testCallCapabilities() 150 assertFalse(mCall.getDetails().can(Call.Details.CAPABILITY_RESPOND_VIA_TEXT)); in testCallCapabilities() 250 assertThat(mCall.getDetails().getCallerDisplayName(), instanceOf(String.class)); in testCallerDisplayName() 251 assertEquals(CALLER_DISPLAY_NAME, mCall.getDetails().getCallerDisplayName()); in testCallerDisplayName() [all …]
|
D | ConferenceTest.java | 171 assertFalse(conf.getDetails().can(Call.Details.CAPABILITY_MUTE)); in testConferenceSetters() 188 assertFalse(conf.getDetails().getExtras().containsKey( in testConferenceSetters() 194 assertNull(conf.getDetails().getStatusHints()); in testConferenceSetters() 250 assertTrue(conf.getDetails().hasProperty(Call.Details.PROPERTY_HAS_CDMA_VOICE_PRIVACY)); in testConferenceProperties() 272 Bundle changedExtras = conf.getDetails().getExtras(); in testConferencePutExtras() 466 return call.getDetails().can(capability); in assertCallCapability() 484 return call.getDetails().getConnectTimeMillis(); in assertCallConnectTime() 502 return call.getDetails().getExtras() != null ? in assertCallExtras() 503 call.getDetails().getExtras().getString(key) : null; in assertCallExtras() 521 return call.getDetails().getStatusHints(); in assertCallStatusHints() [all …]
|
D | HandoverTest.java | 148 call.getDetails().getHandle()); in testOutgoingHandoverRequestValid() 175 mTelecomManager.acceptHandover(call.getDetails().getHandle(), in testIncomingHandoverRequestValid() 190 call.getDetails().getHandle()); in testIncomingHandoverRequestValid() 199 assertEquals(call.getDetails().getHandle(), request.getAddress()); in testIncomingHandoverRequestValid()
|
D | MockInCallService.java | 237 if (call.getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE) == true) { in onCallAdded() 260 if (call.getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE) == true) { in onCallRemoved()
|
D | BaseTelecomTestWithMockServices.java | 929 return call.getDetails().getCallerDisplayName(); in assertCallDisplayName() 1126 return call.getDetails().hasProperty(properties); in assertCallProperties() 1150 return (call.getDetails().getCallCapabilities() & capabilities) == in assertCallCapabilities()
|
D | VideoCallTest.java | 621 return call.getDetails().getVideoState(); in assertVideoState()
|
/cts/tests/tests/telecom3/src/android/telecom/cts/ |
D | SelfManagedAwareInCallServiceTest.java | 127 assertTrue(call.getDetails().hasProperty(Call.Details.PROPERTY_SELF_MANAGED)); in testInCallServiceOutgoing() 128 assertEquals(TEST_ADDRESS_1, call.getDetails().getHandle()); in testInCallServiceOutgoing() 151 assertTrue(call.getDetails().hasProperty(Call.Details.PROPERTY_SELF_MANAGED)); in testInCallServiceIncoming() 152 assertEquals(TEST_ADDRESS_1, call.getDetails().getHandle()); in testInCallServiceIncoming() 174 assertTrue(call.getDetails().hasProperty(Call.Details.PROPERTY_SELF_MANAGED)); in testSelfManagedSignalling() 175 assertEquals(TEST_ADDRESS_1, call.getDetails().getHandle()); in testSelfManagedSignalling()
|
/cts/suite/audio_quality/lib/src/ |
D | Report.cpp | 78 StringPair pair(name, task->getDetails()); in addCasePassed() 86 StringPair pair(name, task->getDetails()); in addCaseFailed()
|
/cts/suite/cts/utils/ |
D | get_csv_report.py | 49 def getDetails(self): member in TestCase 181 values["details"] = result.getDetails()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
D | TestResult.java | 117 public String getDetails() { in getDetails() method in TestResult
|
D | TestListAdapter.java | 179 testResult.getDetails(), testResult.getReportLog()).execute(); in setTestResult()
|
/cts/suite/audio_quality/lib/include/task/ |
D | TaskCase.h | 127 const android::String8& getDetails() const;
|
/cts/suite/audio_quality/lib/src/task/ |
D | TaskCase.cpp | 300 const android::String8& TaskCase::getDetails() const in getDetails() function in TaskCase
|