Home
last modified time | relevance | path

Searched refs:HOST (Results 1 – 7 of 7) sorted by relevance

/cts/tools/cts-tradefed/etc/
Dcts-tradefed59 HOST=`uname`
60 if [ "$HOST" == "Linux" ]; then
62 elif [ "$HOST" == "Darwin" ]; then
106 if [ "$HOST" == "Linux" ]; then
109 elif [ "$HOST" == "Darwin" ]; then
/cts/libs/vogar-expect/src/vogar/expect/
DModeId.java20 DEVICE, JVM, ACTIVITY, SIM, HOST; enumConstant
27 return this == JVM || this == SIM || this == HOST; in isHost()
31 return this == DEVICE || this == ACTIVITY || this == SIM || this == HOST; in requiresAndroidSdk()
/cts/
Drun_unit_tests.sh28 HOST=`uname`
29 if [ "$HOST" == "Linux" ]; then
31 elif [ "$HOST" == "Darwin" ]; then
/cts/tools/vm-tests-tf/
DAndroid.mk82 $(call intermediates-dir-for,JAVA_LIBRARIES,cts-vmtests-dot,HOST,COMMON)/classes.jar
85 $(call intermediates-dir-for,JAVA_LIBRARIES,vmtests-generated-resources,HOST)/javalib.jar
90 …DIATES_CLASSES := $(call intermediates-dir-for,JAVA_LIBRARIES,cts-tf-dalvik-buildutil,HOST)/classes
/cts/suite/audio_quality/test_description/
Dprocessing_main.py206 HOST = "localhost" variable
210 s.bind((HOST, PORT))
/cts/tests/tests/content/src/android/content/cts/
DIntentFilterTest.java75 private static final String HOST = "testHost"; field in IntentFilterTest
539 mIntentFilter.addDataAuthority(HOST + i, String.valueOf(PORT + i)); in testAuthorities()
548 assertEquals(HOST + i, actual.getHost()); in testAuthorities()
550 AuthorityEntry ae = new AuthorityEntry(HOST + i, String.valueOf(PORT + i)); in testAuthorities()
553 Uri uri = Uri.parse("http://" + HOST + i + ":" + String.valueOf(PORT + i)); in testAuthorities()
555 Uri uri2 = Uri.parse("http://" + HOST + i + 10 + ":" + PORT + i + 10); in testAuthorities()
753 mIntentFilter.addDataAuthority(HOST, String.valueOf(PORT)); in testMatchData()
756 final Uri uri = Uri.parse("http://" + HOST + ":" + PORT); in testMatchData()
1027 mIntentFilter.addDataAuthority(HOST, String.valueOf(PORT)); in testWriteToXml()
1047 assertEquals(HOST, intentFilter.getDataAuthority(0).getHost()); in testWriteToXml()
[all …]
/cts/tests/tests/os/src/android/os/cts/
DBuildTest.java249 assertNotEmpty(Build.HOST); in testBuildConstants()