Searched refs:relocate (Results 1 - 6 of 6) sorted by relevance

/art/test/117-nopatchoat/
H A Drun17 # ensure flags includes prebuild and relocate. It doesn't make sense unless we
18 # have a oat file we want to relocate.
29 # This test is supposed to test relocation. Make sure that the no-relocate flag isn't set,
31 # Note: relocate is the default.
32 if [[ "${flags}" == *--no-relocate* ]] ; then
33 echo "Test 117-nopatchoat is not intended to run in no-relocate mode."
/art/test/119-noimage-patchoat/
H A Drun20 # Note: relocate is the default.
21 if [[ "${flags}" == *--no-relocate* ]] ; then
22 echo "Test 119-noimage-patchoat is not intended to run in no-relocate mode."
/art/test/118-noimage-dex2oat/
H A Drun28 # Note: relocate is the default.
29 if [[ "${flags}" == *--no-relocate* ]] ; then
30 echo "Test 118-noimage-dex2oat is not intended to run in no-relocate mode."
/art/test/
H A DAndroid.run-test.mk120 RELOCATE_TYPES := relocate
122 RELOCATE_TYPES += no-relocate
125 RELOCATE_TYPES += relocate-npatchoat
181 $(foreach relocate, $(5), \
190 test-art-$(target)-run-test-$(run-type)-$(prebuild)-$(compiler)-$(relocate)-$(trace)-$(gc)-$(jni)-$(image)-$(pictest)-$(debuggable)-$(test)$(address_size) \
199 # Convert's a rule name to the form used in variables, e.g. no-relocate to NO_RELOCATE
245 # --prebuild --relocate
251 ifneq (,$(filter no-relocate,$(RELOCATE_TYPES)))
253 $(COMPILER_TYPES), no-relocate,$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
326 ifneq (,$(filter relocate
[all...]
H A Drun-test130 relocate="yes"
184 elif [ "x$1" = "x--relocate" ]; then
185 relocate="yes"
187 elif [ "x$1" = "x--no-relocate" ]; then
188 relocate="no"
427 if [ "$relocate" = "yes" ]; then
428 run_args="${run_args} --relocate"
430 run_args="${run_args} --no-relocate"
523 echo " --relocate Force the use of relocating in the test, making"
526 echo " --no-relocate Forc
[all...]
/art/runtime/gc/space/
H A Dimage_space.cc286 // Relocate the image at image_location to dest_filename and relocate it by a random amount.
392 // We don't want to relocate, Just pick the appropriate one if we have it and return.
492 bool relocate = Runtime::Current()->ShouldRelocate(); local
498 if (relocate) {
516 // Check whether we are allowed to relocate.
524 // Try to relocate.
532 *error_msg = StringPrintf("Unable to relocate image '%s' from '%s' to '%s': %s",

Completed in 1191 milliseconds