Home
last modified time | relevance | path

Searched refs:getDetails (Results 1 – 12 of 12) sorted by relevance

/cts/tests/tests/telecom/src/android/telecom/cts/
DCallDetailsTest.java117 assertThat(mCall.getDetails().getAccountHandle(), is(PhoneAccountHandle.class)); in testAccountHandle()
118 assertEquals(TEST_PHONE_ACCOUNT_HANDLE, mCall.getDetails().getAccountHandle()); in testAccountHandle()
129 assertThat(mCall.getDetails().getCallCapabilities(), is(Integer.class)); in testCallCapabilities()
130 assertEquals(CALL_CAPABILITIES, mCall.getDetails().getCallCapabilities()); in testCallCapabilities()
131 assertTrue(mCall.getDetails().can(Call.Details.CAPABILITY_HOLD)); in testCallCapabilities()
132 assertTrue(mCall.getDetails().can(Call.Details.CAPABILITY_MUTE)); in testCallCapabilities()
133 assertFalse(mCall.getDetails().can(Call.Details.CAPABILITY_MANAGE_CONFERENCE)); in testCallCapabilities()
134 assertFalse(mCall.getDetails().can(Call.Details.CAPABILITY_RESPOND_VIA_TEXT)); in testCallCapabilities()
145 assertThat(mCall.getDetails().getCallerDisplayName(), is(String.class)); in testCallerDisplayName()
146 assertEquals(CALLER_DISPLAY_NAME, mCall.getDetails().getCallerDisplayName()); in testCallerDisplayName()
[all …]
DConferenceTest.java161 assertFalse(conf.getDetails().can(Call.Details.CAPABILITY_MUTE)); in testConferenceSetters()
175 assertNull(conf.getDetails().getExtras()); in testConferenceSetters()
180 assertNull(conf.getDetails().getStatusHints()); in testConferenceSetters()
327 return call.getDetails().can(capability); in assertCallCapability()
345 return call.getDetails().getConnectTimeMillis(); in assertCallConnectTime()
363 return call.getDetails().getExtras() != null ? in assertCallExtras()
364 call.getDetails().getExtras().getString(key) : null; in assertCallExtras()
382 return call.getDetails().getStatusHints(); in assertCallStatusHints()
420 return call.getDetails().getVideoState(); in assertVideoState()
DMockInCallService.java172 if (call.getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE) == true) { in onCallAdded()
195 if (call.getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE) == true) { in onCallRemoved()
DVideoCallTest.java488 return call.getDetails().getVideoState(); in assertVideoState()
DBaseTelecomTestWithMockServices.java710 return call.getDetails().getCallerDisplayName(); in assertCallDisplayName()
/cts/suite/audio_quality/lib/src/
DReport.cpp78 StringPair pair(name, task->getDetails()); in addCasePassed()
86 StringPair pair(name, task->getDetails()); in addCaseFailed()
/cts/suite/cts/utils/
Dget_csv_report.py49 def getDetails(self): member in TestCase
181 values["details"] = result.getDetails()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DTestResult.java117 public String getDetails() { in getDetails() method in TestResult
DTestListAdapter.java179 testResult.getDetails(), testResult.getReportLog()).execute(); in setTestResult()
/cts/suite/audio_quality/lib/include/task/
DTaskCase.h127 const android::String8& getDetails() const;
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DTest.java146 public String getDetails() { in getDetails() method in Test
/cts/suite/audio_quality/lib/src/task/
DTaskCase.cpp300 const android::String8& TaskCase::getDetails() const in getDetails() function in TaskCase