Home
last modified time | relevance | path

Searched refs:host (Results 1 – 18 of 18) sorted by relevance

/art/
DAndroid.mk31 ifneq (,$(filter clean-oat-host,$(MAKECMDGOALS)))
39 clean-oat: clean-oat-host clean-oat-target
41 .PHONY: clean-oat-host
42 clean-oat-host:
148 test-art: test-art-host test-art-target
152 test-art-gtest: test-art-host-gtest test-art-target-gtest
156 test-art-run-test: test-art-host-run-test test-art-target-run-test
171 .PHONY: test-art-host-vixl
172 test-art-host-vixl: $(VIXL_TEST_DEPENDENCY)
175 .PHONY: test-art-host
[all …]
/art/build/
DAndroid.common_test.mk29 test-art-host-run-test-gcstress-optimizing-no-prebuild-004-SignalTest32 \
30 test-art-host-run-test-gcstress-optimizing-prebuild-004-SignalTest32 \
31 test-art-host-run-test-gcstress-optimizing-norelocate-004-SignalTest32 \
32 test-art-host-run-test-gcstress-optimizing-relocate-004-SignalTest32 \
33 test-art-host-run-test-gcverify-optimizing-no-prebuild-004-SignalTest32 \
34 test-art-host-run-test-gcverify-optimizing-prebuild-004-SignalTest32 \
35 test-art-host-run-test-gcverify-optimizing-norelocate-004-SignalTest32 \
36 test-art-host-run-test-gcverify-optimizing-relocate-004-SignalTest32 \
37 test-art-host-run-test-optimizing-no-prebuild-004-SignalTest32 \
38 test-art-host-run-test-optimizing-prebuild-004-SignalTest32 \
[all …]
DAndroid.gtest.mk271 define define-art-gtest-rule-host
272 gtest_rule := test-art-host-gtest-$(1)$$($(2)ART_PHONY_TEST_HOST_SUFFIX)
312 ifneq ($(1),host)
313 $$(error expected target or host for argument 1, received $(1))
337 ifneq ($$(HOST_OS)-$$(art_target_or_host),darwin-host)
369 LOCAL_SHARED_LIBRARIES += libicuuc-host libicui18n-host libnativehelper libz-host
381 $$(eval $$(call define-art-gtest-rule-host,$$(art_gtest_name),2ND_))
383 $$(eval $$(call define-art-gtest-rule-host,$$(art_gtest_name),))
386 .PHONY: test-art-host-gtest-$$(art_gtest_name)
387 test-art-host-gtest-$$(art_gtest_name): $$(ART_TEST_HOST_GTEST_$$(art_gtest_name)_RULES)
[all …]
DAndroid.oat.mk28 define create-core-oat-host-rules
38 --host --android-root=$$(HOST_OUT) --include-patch-information
46 $(eval $(call create-core-oat-host-rules,))
48 $(eval $(call create-core-oat-host-rules,2ND_))
77 LOCAL_MODULE := core.art-host
DAndroid.executable.mk36 ifneq ($(5),host)
37 $$(error expected target or host for argument 5, received $(5))
/art/test/
DAndroid.run-test.mk29 test-art-host-run-test$(2)-default$(3)-$(1)32 \
30 test-art-host-run-test$(2)-optimizing$(3)-$(1)32 \
31 test-art-host-run-test$(2)-interpreter$(3)-$(1)32 \
32 test-art-host-run-test$(2)-default$(3)-$(1)64 \
33 test-art-host-run-test$(2)-optimizing$(3)-$(1)64 \
34 test-art-host-run-test$(2)-interpreter$(3)-$(1)64 \
368 ifeq ($(2),host)
370 run_test_options += --host
377 $$(error found $(2) expected host or target)
519 ifeq ($(2),host)
[all …]
DAndroid.libnativebridgetest.mk32 ifneq ($(1),host)
33 $$(error expected target or host for argument 1, received $(1))
82 $(eval $(call build-libnativebridgetest,host))
DAndroid.libarttest.mk39 ifneq ($(1),host)
40 $$(error expected target or host for argument 1, received $(1))
89 $(eval $(call build-libarttest,host))
Drun-test262 export ANDROID_HOST_OUT=$ANDROID_BUILD_TOP/out/host/linux-x86
/art/oatdump/
DAndroid.mk32 …uild-art-executable,oatdump,$(OATDUMP_SRC_FILES),libart-disassembler,art/disassembler,host,ndebug))
35 …uild-art-executable,oatdump,$(OATDUMP_SRC_FILES),libartd-disassembler,art/disassembler,host,debug))
52 dump-oat-core: dump-oat-core-host dump-oat-core-target
54 .PHONY: dump-oat-core-host
56 dump-oat-core-host: $(HOST_CORE_IMG_OUT) $(OATDUMP)
57 $(OATDUMP) --image=$(HOST_CORE_IMG_LOCATION) --output=$(ART_DUMP_OAT_PATH)/core.host.oatdump.txt
58 @echo Output in $(ART_DUMP_OAT_PATH)/core.host.oatdump.txt
/art/disassembler/
DAndroid.mk32 ifneq ($(1),host)
33 $$(error expected target or host for argument 1, received $(1))
46 ifeq ($$(art_target_or_host),host)
103 $(eval $(call build-libart-disassembler,host,ndebug))
106 $(eval $(call build-libart-disassembler,host,debug))
/art/patchoat/
DAndroid.mk41 $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),,art/compiler,host,ndebug))
44 $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),,art/compiler,host,debug))
/art/runtime/jdwp/
Djdwp_socket.cc269 CHECK(!options->host.empty()); in Establish()
279 int cc = gethostbyname_r(options->host.c_str(), &he, auxBuf, sizeof(auxBuf), &pEntry, &error); in Establish()
281 LOG(WARNING) << "gethostbyname_r('" << options->host << "') failed: " << hstrerror(error); in Establish()
286 pEntry = gethostbyname(options->host.c_str()); in Establish()
288 PLOG(WARNING) << "gethostbyname('" << options->host << "') failed"; in Establish()
320 …LOG(INFO) << "Connection established to " << options->host << " (" << inet_ntoa(addr.addrInet.sin_… in Establish()
Djdwp.h106 std::string host; member
/art/dex2oat/
DAndroid.mk41 …$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libart-compiler,art/compiler,host,…
44 …$(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libartd-compiler,art/compiler,host,debug))
/art/compiler/
DAndroid.mk169 ifneq ($(1),host)
170 $$(error expected target or host for argument 1, received $(1))
183 ifeq ($$(art_target_or_host),host)
254 ifeq ($$(art_target_or_host),host)
286 $(eval $(call build-libart-compiler,host,ndebug))
289 $(eval $(call build-libart-compiler,host,debug))
/art/runtime/
DAndroid.mk337 ifneq ($(1),host)
338 $$(error expected target or host for argument 1, received $(1))
430 LOCAL_STATIC_LIBRARIES += libcutils libziparchive-host libz libutils
475 $(eval $(call build-libart,host,ndebug))
478 $(eval $(call build-libart,host,debug))
Ddebugger.cc581 gJdwpOptions.host.clear(); in ParseJdwpOption()
584 gJdwpOptions.host = value.substr(0, colon); in ParseJdwpOption()
632 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) { in ParseJdwpOptions()