Searched refs:run (Results 1 - 25 of 102) sorted by last modified time

12345

/art/test/570-checker-osr/src/
H A DMain.java21 public void run() {
150 // Jump to OSR compiled code. The second run
180 // Jump to OSR compiled code. The second run
209 // Jump to OSR compiled code. The second run
274 // For this test we need an inlined loop and have DCE re-run loop analysis
/art/test/579-inline-infinite/src/
H A DMain.java26 public void run() { method in class:Infinite
/art/test/597-deopt-new-string/src/
H A DMain.java59 public void run() { method in class:Main
/art/test/955-lambda-smali/smali/
H A DCaptureVariables.smali25 .method public static run()V
H A DMain.smali23 invoke-static {}, LSanityCheck;->run()I
24 invoke-static {}, LTrivialHelloWorld;->run()V
25 invoke-static {}, LBoxUnbox;->run()V
26 invoke-static {}, LMoveResult;->run()V
27 invoke-static {}, LCaptureVariables;->run()V
H A DMoveResult.smali25 .method public static run()V
H A DSanityCheck.smali28 .method public static run()I
H A DTrivialHelloWorld.smali25 .method public static run()V
/art/test/
H A DAndroid.run-test.mk25 # The art-run-tests module, used to build all run-tests into an image.
28 # out/target/product/generic_x86_64/obj/PACKAGING/art-run-tests_intermediates/DATA
29 art_run_tests_dir := $(call intermediates-dir-for,PACKAGING,art-run-tests)/DATA
31 # A generated list of prerequisites that call 'run-test --build-only', the actual prerequisite is
35 # Dependencies for actually running a run-test.
51 define define-build-art-run-test
52 dmart_target := $(art_run_tests_dir)/art-run-tests/$(1)/touch
67 $(LOCAL_PATH)/run-test $$(PRIVATE_RUN_TEST_OPTIONS) --output-path $$(abspath $$(dir $$@)) $(1)
74 $(foreach test, $(TEST_ART_RUN_TESTS), $(eval $(call define-build-art-run
[all...]
H A Drun-all-tests173 echo " Options are all passed to run-test; refer to that for " \
193 ./run-test ${run_args} "$test_name"
211 ./run-test ${run_args} "$test_name" &
H A Drun-test45 export RUN="${progdir}/etc/run-test-jar"
46 export DEX_LOCATION=/data/run-test/${test_dir}
90 run="run"
385 # Set HspaceCompactForOOMMinIntervalMs to zero to run hspace compaction for OOM more frequently in tests.
533 # will get passed to the test run.
575 echo " --no-prebuild Do not run dex2oat on the files before starting"
590 echo " (if applicable) to run the test with."
631 # copy the test to a temp dir and run it
645 if [ '!' -r "$run" ]; the
[all...]
/art/tools/dexfuzz/src/dexfuzz/
H A DDexFuzz.java93 // Actually run the Fuzzer.
94 fuzzer.run();
H A DStreamConsumer.java153 public void run() { method in class:StreamConsumer
/art/tools/dexfuzz/src/dexfuzz/fuzzers/
H A DFuzzer.java61 * most fuzzing will involve, and subclasses override the run() method, to
94 public abstract void run(); method in class:Fuzzer
375 // from run to run. If so, then we're probably executing something with either:
H A DFuzzerMultipleExecute.java39 public void run() { method in class:FuzzerMultipleExecute
H A DFuzzerMultipleNoExecute.java38 public void run() { method in class:FuzzerMultipleNoExecute
H A DFuzzerSingleExecute.java32 public void run() { method in class:FuzzerSingleExecute
H A DFuzzerSingleNoExecute.java30 public void run() { method in class:FuzzerSingleNoExecute
/art/oatdump/
H A Doatdump.cc1327 size_t run = 0; local
1330 run++;
1335 if (run == 0) {
1338 indent_os << StringPrintf("%d to %zd: ", j, j + run);
1339 j = j + run;
1690 size_t run = 0; local
1693 run++;
1698 if (run == 0) {
1701 os << StringPrintf("%d to %zd: ", i, i + run);
1702 i = i + run;
1733 size_t run = 0; local
1764 size_t run = 0; local
[all...]
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S1531 # t2: rosalloc run
1575 ld $t2, THREAD_ROSALLOC_RUNS_OFFSET($t2) # Load rosalloc run (t2).
1631 * Entry from managed code when uninitialized static storage, this stub will run the class
/art/runtime/gc/allocator/
H A Drosalloc.cc108 LOG(INFO) << "RosAlloc::RosAlloc() : Inserted run 0x" << std::hex
128 // Find the lowest address free page run that's large enough.
138 LOG(INFO) << "RosAlloc::AllocPages() : Erased run 0x"
153 LOG(INFO) << "RosAlloc::AllocPages() : Inserted run 0x" << std::hex
173 // There is a free page run at the end.
178 // There is no free page run at the end.
196 // There was a free page run at the end. Expand its size.
202 // Otherwise, insert a new free page run at the end.
212 LOG(INFO) << "RosAlloc::AlloPages() : Grew the heap by inserting run 0x"
224 // And retry the last free page run
507 Run* run = nullptr; local
763 FreeFromRun(Thread* self, void* ptr, Run* run) argument
1034 Run* run = nullptr; local
1280 Run* run = reinterpret_cast<Run*>(base_ + i * kPageSize); local
1337 Run* run = reinterpret_cast<Run*>(base_ + pm_idx * kPageSize); local
1466 Run* run = reinterpret_cast<Run*>(base_ + i * kPageSize); local
1548 RevokeRun(Thread* self, size_t idx, Run* run) argument
1819 Run* run = reinterpret_cast<Run*>(base_ + i * kPageSize); local
2143 Run* run = reinterpret_cast<Run*>(base_ + i * kPageSize); local
[all...]
H A Drosalloc.h46 // Represents a run of free pages.
310 // Represents a run of memory slots of the same size.
312 // A run's memory layout:
353 uint8_t size_bracket_idx_; // The index of the size bracket of this run.
354 uint8_t is_thread_local_; // True if this run is used as a thread-local run.
355 uint8_t to_be_bulk_freed_; // Used within BulkFree() to flag a run that's involved with a bulk free.
400 // Set up the free list for a new/empty run.
410 // Merge the thread local free list to the free list. Used when a thread-local run becomes
416 // process, GC will first record all the slots to free in a run i
[all...]
/art/runtime/jdwp/
H A Djdwp.h367 bool run; member in struct:art::JDWP::JdwpState
H A Djdwp_main.cc219 run(false),
366 run = false;
453 run = true;
474 while (run) {
557 run = false;
584 * instant the debugger connects, because we run the risk of executing code
/art/runtime/
H A Dthread.h1042 void SetRosAllocRun(size_t index, void* run) { argument
1043 tlsPtr_.rosalloc_runs[index] = run;
1135 // Need to run pending checkpoint and suspend barriers. Run checkpoints in runnable state in

Completed in 644 milliseconds

12345