Searched refs:host (Results 1 – 18 of 18) sorted by relevance
/art/ |
D | Android.mk | 31 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/ |
D | Android.common_test.mk | 29 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 …]
|
D | Android.gtest.mk | 271 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 …]
|
D | Android.oat.mk | 28 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
|
D | Android.executable.mk | 36 ifneq ($(5),host) 37 $$(error expected target or host for argument 5, received $(5))
|
/art/test/ |
D | Android.run-test.mk | 29 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 …]
|
D | Android.libnativebridgetest.mk | 32 ifneq ($(1),host) 33 $$(error expected target or host for argument 1, received $(1)) 82 $(eval $(call build-libnativebridgetest,host))
|
D | Android.libarttest.mk | 39 ifneq ($(1),host) 40 $$(error expected target or host for argument 1, received $(1)) 89 $(eval $(call build-libarttest,host))
|
D | run-test | 262 export ANDROID_HOST_OUT=$ANDROID_BUILD_TOP/out/host/linux-x86
|
/art/oatdump/ |
D | Android.mk | 32 …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/ |
D | Android.mk | 32 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/ |
D | Android.mk | 41 $(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/ |
D | jdwp_socket.cc | 269 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()
|
D | jdwp.h | 106 std::string host; member
|
/art/dex2oat/ |
D | Android.mk | 41 …$(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/ |
D | Android.mk | 169 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/ |
D | Android.mk | 337 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))
|
D | debugger.cc | 581 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()
|