HomeSort by relevance Sort by last modified time
    Searched refs:HOST (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /cts/libs/vogar-expect/src/vogar/
ModeId.java 20 DEVICE, JVM, ACTIVITY, SIM, HOST;
27 return this == JVM || this == SIM || this == HOST;
31 return this == DEVICE || this == ACTIVITY || this == SIM || this == HOST;
  /external/chromium_org/chrome/common/extensions/docs/server2/
redirector_test.py 15 HOST = 'http://localhost/'
148 self._redirector.Redirect(HOST, 'index.html'))
151 self._redirector.Redirect(HOST, 'extensions/manifest/more-info'))
155 '/index.html', self._redirector.Redirect(HOST, ''))
157 '/bar.html', self._redirector.Redirect(HOST, 'apps/foo.html'))
162 self._redirector.Redirect(HOST, 'apps/index.html'))
165 self._redirector.Redirect(HOST, 'extensions/manifest/'))
168 self._redirector.Redirect(HOST, 'extensions/manifest'))
170 'index.html', self._redirector.Redirect(HOST, 'apps/'))
172 'index.html', self._redirector.Redirect(HOST, 'home')
    [all...]
  /external/lldb/test/functionalities/connect_remote/
EchoServer.py 10 HOST = 'localhost' # Symbolic name meaning local interfaces
13 s.bind((HOST, PORT))
14 print '\nListening on %s:%d' % (HOST, PORT)
  /cts/common/util/
run_unit_tests.sh 28 HOST=`uname`
29 if [ "$HOST" == "Linux" ]; then
31 elif [ "$HOST" == "Darwin" ]; then
39 JAR_DIR=${ANDROID_BUILD_TOP}/out/host/$OS/framework
48 -cp ${JAR_PATH} com.android.tradefed.command.Console run singleCommand host -n --class com.android.compatibility.common.util.UnitTests "$@"
  /cts/tests/signature-tests/
run_unit_tests.sh 27 HOST=`uname`
28 if [ "$HOST" == "Linux" ]; then
30 elif [ "$HOST" == "Darwin" ]; then
38 JAR_DIR=${ANDROID_BUILD_TOP}/out/host/$OS/framework
47 -cp ${JAR_PATH} com.android.tradefed.command.Console run singleCommand host -n --class android.signature.cts.tests.AllTests "$@"
  /cts/tools/tradefed-host/tests/
run_unit_tests.sh 28 HOST=`uname`
29 if [ "$HOST" == "Linux" ]; then
31 elif [ "$HOST" == "Darwin" ]; then
39 JAR_DIR=${ANDROID_BUILD_TOP}/out/host/$OS/framework
48 -cp ${JAR_PATH} com.android.tradefed.command.Console run singleCommand host -n --class com.android.cts.tradefed.UnitTests "$@"
  /cts/tools/tradefed-host/etc/
cts-tradefed 58 HOST=`uname`
59 if [ "$HOST" == "Linux" ]; then
61 elif [ "$HOST" == "Darwin" ]; then
67 CTS_ROOT=${ANDROID_BUILD_TOP}/${OUT_DIR:-out}/host/${OS}/cts
  /external/chromium_org/remoting/protocol/
fake_authenticator.cc 119 // Don't send the last message if this is a host that wants to
122 type_ == HOST && action_ == REJECT) {
128 (messages_ % 2 == 1 && type_ == HOST)) {
191 FakeAuthenticator::HOST, round_trips_, action_, async_);
fake_authenticator.h 49 HOST,
  /build/core/
notice_files.mk 36 # device-obj or host-obj.
57 # In case it's actually a host file
98 $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-$(LOCAL_MODULE_CLASS)-$(LOCAL_MODULE)
multi_prebuilt.mk 101 $($(if $(prebuilt_is_host),HOST,TARGET)_OUT_INTERMEDIATE_LIBRARIES), \
sdk_font.mk 18 SDK_FONT_TEMP := $(call intermediates-dir-for,PACKAGING,sdk-fonts,HOST,COMMON)
  /external/jmdns/src/javax/jmdns/impl/
NameRegister.java 18 * This name represents a host name
20 HOST,
  /build/core/tasks/
collect_gpl_sources.mk 15 gpl_source_tgz := $(call intermediates-dir-for,PACKAGING,gpl_source,HOST,COMMON)/gpl_source.tgz
  /external/chromium_org/net/http/
http_atom_list.h 33 HTTP_ATOM(HOST)
  /external/libpcap/
tokdefs.h 42 HOST = 260,
163 #define HOST 260
  /bootable/recovery/minadbd/
adb.c 37 int HOST = 0;
222 HOST ? "host" : adb_device_banner);
297 if(HOST) send_connect(t);
313 if(!HOST) send_connect(t);
transport_usb.c 120 HOST = 0;
  /external/guava/guava/src/com/google/common/net/
HttpHeaders.java 81 /** The HTTP Host header field name. */
82 public static final String HOST = "Host";
  /cts/tools/vm-tests-tf/
Android.mk 39 intermediates := $(call intermediates-dir-for,JAVA_LIBRARIES,vm-tests-tf,HOST)
44 $(vmteststf_jar): PRIVATE_INTERMEDIATES_CLASSES := $(call intermediates-dir-for,JAVA_LIBRARIES,cts-tf-dalvik-buildutil,HOST)/classes
53 # generated and compile the host side junit tests
  /cts/suite/audio_quality/test_description/
processing_main.py 206 HOST = "localhost"
210 s.bind((HOST, PORT))
  /external/llvm/
shared_llvm.mk 74 # HOST LLVM shared library build
82 # Host build pulls in all ARM, Mips, X86 components.
  /art/build/
Android.gtest.mk 214 # GCC host compiled tests fail with this linked, presumably due to destructors that run.
270 # Define make rules for a host gtests.
273 define define-art-gtest-rule-host
274 gtest_rule := test-art-host-gtest-$(1)$$($(2)ART_PHONY_TEST_HOST_SUFFIX)
276 # Dependencies for all host gtests.
305 endef # define-art-gtest-rule-host
307 # Define the rules to build and run host and target gtests.
308 # $(1): target or host
314 ifneq ($(1),host)
315 $$(error expected target or host for argument 1, received $(1)
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java 64 private static final String HOST = "testHost";
432 mIntentFilter.addDataAuthority(HOST + i, String.valueOf(PORT + i));
441 assertEquals(HOST + i, actual.getHost());
443 AuthorityEntry ae = new AuthorityEntry(HOST + i, String.valueOf(PORT + i));
446 Uri uri = Uri.parse("http://" + HOST + i + ":" + String.valueOf(PORT + i));
448 Uri uri2 = Uri.parse("http://" + HOST + i + 10 + ":" + PORT + i + 10);
534 mIntentFilter.addDataAuthority(HOST, String.valueOf(PORT));
537 final Uri uri = Uri.parse("http://" + HOST + ":" + PORT);
584 mIntentFilter.addDataAuthority(HOST, String.valueOf(PORT));
    [all...]
  /external/chromium_org/url/third_party/mozilla/
url_parse.h 90 HOST,
132 // HOST: 7 7
147 // Username. Specified in URLs with an @ sign before the host. See |password|
151 // Not all URLs with a username have a password, as in "http://me@host/".
153 // "http://me:secret@host/"
156 // Host name.
157 Component host; member in struct:url::Parsed
162 // Path, this is everything following the host name, stopping at the query of
166 // be -1 in cases like "http://host?foo".
228 // authority (host) like "http". This function will not handle weird one
    [all...]

Completed in 727 milliseconds

1 2 3 4