Searched refs:start (Results 201 - 225 of 256) sorted by relevance

1234567891011

/art/test/1930-monitor-info/src/art/
H A DMonitors.java238 runner.start();
/art/test/1931-monitor-events/src/art/
H A DMonitors.java238 runner.start();
H A DTest1931.java48 System.out.println(thd.getName() + " start-monitor-wait " + lock + " timeout: " + timeout);
134 thd.start();
/art/test/1932-monitor-events-misc/src/art/
H A DMonitors.java238 runner.start();
H A DTest1932.java141 native_thd.start();
171 native_thd.start();
611 System.out.println(thd.getName() + " start-monitor-wait " + lock + " timeout: " + timeout);
/art/test/1933-monitor-current-contended/src/art/
H A DMonitors.java238 runner.start();
/art/test/1934-jvmti-signal-thread/src/art/
H A DMonitors.java238 runner.start();
/art/test/1939-proxy-frames/src/art/
H A DTest1939.java124 remote.start();
/art/test/1940-ddms-ext/src-art/art/
H A DTest1940.java182 thr.start();
/art/test/1948-obsolete-const-method-handle/util-src/src/art/constmethodhandle/
H A DTestGenerator.java117 .start();
/art/tools/ahat/src/main/com/android/ahat/
H A DMain.java173 server.start();
/art/runtime/interpreter/
H A Dunstarted_runtime.cc1288 jint start = shadow_frame->GetVReg(arg_offset + 1); local
1296 DCHECK_GE(start, 0);
1297 DCHECK_LE(start, end);
1304 DCHECK_LE(end - start, h_char_array->GetLength() - index);
1305 string->GetChars(start, end, h_char_array, index);
1368 jint start = shadow_frame->GetVReg(arg_offset + 1); local
1370 DCHECK_GE(start, 0);
1375 DCHECK_LE(start, h_string->GetLength());
1376 DCHECK_LE(start + length, h_string->GetLength());
1379 result->SetL(mirror::String::AllocFromString<true>(self, length, h_string, start, allocato
[all...]
/art/compiler/optimizing/
H A Dregister_allocator_linear_scan.cc131 void RegisterAllocatorLinearScan::BlockRegister(Location location, size_t start, size_t end) { argument
149 interval->AddRange(start, end);
152 void RegisterAllocatorLinearScan::BlockRegisters(size_t start, size_t end, bool caller_save_only) { argument
155 BlockRegister(Location::RegisterLocation(i), start, end); local
160 BlockRegister(Location::FpuRegisterLocation(i), start, end); local
167 // is the one with the lowest start position.
195 // It's also the only type of inactive interval whose start position
215 // It's also the only type of inactive interval whose start position
343 // The backwards walking ensures the ranges are ordered on increasing start positions.
358 // Shift the interval's start b
[all...]
H A Dssa_liveness_analysis.cc40 // start and end position. Non-phi instructions have a distinct lifetime position than
41 // the block they are in. Phi instructions have the lifetime start of their block as
45 // to differentiate between the start and end of an instruction. Adding 2 to
46 // the lifetime position for each instruction ensures the start of an
173 // Instructions defined in this block will have their start of the range adjusted.
337 // If the start of this interval is at a block boundary, we look at the
359 size_t start = GetStart(); local
366 if (use_position >= start && !use.IsSynthesized()) {
444 // If the input dies at the start of this instruction, we know its register can
/art/compiler/utils/
H A Dassembler_test_base.h408 std::istream_iterator<std::string> start(iss);
410 std::vector<std::string> tokens(start, end);
457 // No slash, start looking at the start.
/art/test/623-checker-loop-regressions/src/
H A DMain.java75 int start = offset;
81 return start;
/art/test/670-bitstring-type-check/
H A Dbuild71 // check bitstrings when we enter Main.main() and start initializing them above.
/art/tools/dexfuzz/src/dexfuzz/program/
H A DIdCreator.java518 int start = typePointer;
523 parameterList.add(parameters.substring(start, typePointer + 1));
/art/runtime/
H A Ddebugger.cc1685 uint64_t start, end; local
1688 start = -1;
1691 start = 0;
1696 expandBufAdd8BE(pReply, start);
3295 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
4536 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4537 // see a suspension in progress and block until that ends. They then post their own start
4715 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4740 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
4743 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, en
[all...]
H A Dmem_map_test.cc147 uintptr_t start = GetLinearScanPos(); local
148 EXPECT_LE(64 * KB, start);
149 EXPECT_LT(start, static_cast<uintptr_t>(ART_BASE_ADDRESS));
408 /*start*/0,
/art/
H A DAndroid.mk509 adb shell start
516 adb shell start
523 adb shell start
534 adb shell start
545 adb shell start
556 adb shell start
567 adb shell start
578 adb shell start
589 adb shell start
/art/libdexfile/dex/
H A Ddex_file.cc52 // Go back 1 uleb to start.
496 const uint32_t start = ti.start_addr_; local
497 const uint32_t end = start + ti.insn_count_;
499 if (address < start) {
/art/runtime/jdwp/
H A Djdwp.h235 void PostThreadChange(Thread* thread, bool start)
/art/test/1922-owned-monitors-info/src/art/
H A DTest1922.java210 thr.start();
/art/test/testrunner/
H A Dtestrunner.py516 worker.start()
1024 test_runner_thread.start()

Completed in 399 milliseconds

1234567891011