Searched refs:start (Results 126 - 150 of 256) sorted by relevance

1234567891011

/art/test/1935-get-set-current-frame-jit/src/art/
H A DLocals.java34 long start, int length, String name, String sig, String gen_sig, int slot) {
35 this.start_location = start;
47 "Sig: '%s', Name: '%s', Gen_sig: '%s', slot: %d, start: %d, len: %d" +
33 VariableDescription( long start, int length, String name, String sig, String gen_sig, int slot) argument
/art/test/1939-proxy-frames/src/art/
H A DLocals.java34 long start, int length, String name, String sig, String gen_sig, int slot) {
35 this.start_location = start;
47 "Sig: '%s', Name: '%s', Gen_sig: '%s', slot: %d, start: %d, len: %d" +
33 VariableDescription( long start, int length, String name, String sig, String gen_sig, int slot) argument
/art/test/911-get-stack-trace/src/art/
H A DFrames.java69 t.start();
107 t.start();
/art/tools/dexfuzz/src/dexfuzz/executors/
H A DExecutor.java68 outputConsumer.start();
70 errorConsumer.start();
139 // Strip out the start of the log lines.
/art/tools/
H A Ddt_fds_forward.py153 Pass '--' to start passing in the program we will pass the debug
188 socket_handler.start()
189 invoker.start()
/art/test/071-dexfile/src/
H A DMain.java50 Process p = pb.start();
/art/test/114-ParallelGC/src/
H A DMain.java47 threads[i].start();
99 // Wait for the start signal.
/art/test/129-ThreadGetId/src/
H A DMain.java28 threads[t].start();
33 // Do this test after the other part to leave some time for the heap task daemon to start
/art/test/616-cha-abstract/src/
H A DMain.java75 // Wait for the other thread to start.
139 }.start();
/art/test/616-cha-interface-default/src/
H A DMain.java83 // Wait for the other thread to start.
155 }.start();
/art/test/616-cha-miranda/src/
H A DMain.java79 // Wait for the other thread to start.
143 }.start();
/art/test/616-cha-regression-proxy-method/src/
H A DMain.java78 // Wait for the other thread to start.
116 }.start();
/art/compiler/debug/dwarf/
H A Dheaders.h33 // Note that all headers start with 32-bit length.
129 size_t debug_info_offset, // offset from start of .debug_info.
135 size_t start = writer.data()->size(); local
143 writer.UpdateUint32(start, writer.data()->size() - start - 4);
162 size_t debug_line_offset, // offset from start of .debug_line.
/art/libdexfile/dex/
H A Ddescriptors_names.cc378 // Separator at start or two separators in a row.
413 const char* start = p; local
417 result->push_back(std::string(start, p - start));
/art/test/074-gc-thrash/src/
H A DMain.java113 /* start all threads */
114 robin.start();
115 deep.start();
116 large.start();
/art/test/130-hprof/src/
H A DMain.java70 Process process = pb.start();
137 allocator.start();
138 dumper.start();
/art/test/ti-agent/
H A Dbreakpoint_helper.cc116 jlong start = 0; local
118 JvmtiErrorToException(env, jvmti_env, jvmti_env->GetMethodLocation(method, &start, &end));
119 return start;
/art/runtime/
H A Doat.cc416 // Advance start until it is either end or \0.
417 static const char* ParseString(const char* start, const char* end) { argument
418 while (start < end && *start != 0) {
419 start++;
421 return start;
H A Dmem_map.cc67 static_cast<uint32_t>(entry->start),
92 // The regular start of memory allocations. The first 64KB is protected by SELinux.
110 // start
113 // do not have Bionic, simply start with LOW_MEM_START.
177 if ((begin >= entry->start && begin < entry->end) // start of new within old
178 && (end > entry->start && end <= entry->end)) { // end of new within old
202 if ((begin >= entry->start && begin < entry->end) // start of new within old
203 || (end > entry->start
484 MapFileAtAddress(uint8_t* expected_ptr, size_t byte_count, int prot, int flags, int fd, off_t start, bool low_4gb, bool reuse, const char* filename, std::string* error_msg) argument
[all...]
H A Dreference_table_test.cc260 size_t start = 0; local
262 size_t pos = haystack.find(needle, start);
267 start = pos + 1;
268 } while (start < haystack.size());
/art/tools/bisection_search/
H A Dbisection_search.py250 def BinarySearch(start, end, test):
252 while start < end:
253 mid = (start + end) // 2
255 start = mid + 1
258 return start
/art/compiler/optimizing/
H A Dssa_liveness_analysis.h60 * A live range contains the start and end of a range where an instruction or a temporary
65 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) { argument
66 DCHECK_LT(start, end);
376 // before arriving in this method, and this is the reason the start of
382 // Note that the start of `first_range_` can be equal to `end`: two blocks
402 ALWAYS_INLINE void AddRange(size_t start, size_t end) { argument
405 new (allocator_) LiveRange(start, end, first_range_);
408 first_range_->start_ = start;
409 } else if (first_range_->GetStart() == start
418 AddLoopRange(size_t start, size_t end) argument
[all...]
/art/runtime/gc/allocator/
H A Drosalloc.cc386 // Clear magic num since this is no longer the start of a free page run.
430 // Clear magic num since this is no longer the start of a free page run.
965 void RosAlloc::Run::InspectAllSlots(void (*handler)(void* start, void* end, size_t used_bytes, void* callback_arg), argument
1233 << " (FPR start) fpr_size=" << curr_fpr_size
1263 stream << "[" << i << "]=Large (start)" << std::endl;
1276 stream << "[" << i << "]=Run (start)"
1396 void RosAlloc::InspectAll(void (*handler)(void* start, void* end, size_t used_bytes, void* callback_arg), argument
1411 // The start of a free page run.
1416 void* start = fpr; local
1420 start
1442 void* start = base_ + i * kPageSize; local
1791 uint8_t* start = base_ + i * kPageSize; local
2012 uint8_t* start = reinterpret_cast<uint8_t*>(fpr); local
2037 ReleasePageRange(uint8_t* start, uint8_t* end) argument
[all...]
/art/runtime/native/
H A Ddalvik_system_DexFile.cc166 static std::unique_ptr<MemMap> AllocateDexMemoryMap(JNIEnv* env, jint start, jint end) { argument
167 if (end <= start) {
174 size_t length = static_cast<size_t>(end - start);
230 jint start,
239 std::unique_ptr<MemMap> dex_mem_map(AllocateDexMemoryMap(env, start, end));
245 size_t length = static_cast<size_t>(end - start);
253 jint start,
255 std::unique_ptr<MemMap> dex_mem_map(AllocateDexMemoryMap(env, start, end));
262 env->GetByteArrayRegion(buffer, start, end - start, destinatio
227 DexFile_createCookieWithDirectBuffer(JNIEnv* env, jclass, jobject buffer, jint start, jint end) argument
250 DexFile_createCookieWithArray(JNIEnv* env, jclass, jbyteArray buffer, jint start, jint end) argument
[all...]
/art/runtime/mirror/
H A Dstring.h167 int32_t FastIndexOf(int32_t ch, int32_t start) REQUIRES_SHARED(Locks::mutator_lock_);
170 int32_t FastIndexOf(MemoryType* chars, int32_t ch, int32_t start)
178 void GetChars(int32_t start, int32_t end, Handle<CharArray> array, int32_t index)

Completed in 553 milliseconds

1234567891011