Searched defs:shorty_len (Results 1 - 6 of 6) sorted by relevance

/art/compiler/dex/
H A Dvreg_analysis.cc475 int shorty_len = strlen(shorty); local
476 for (int i = 1; i < shorty_len; i++) {
/art/runtime/interpreter/
H A Dinterpreter.cc438 uint32_t shorty_len = 0; local
439 const char* shorty = method->GetShorty(&shorty_len);
441 DCHECK_LT(shorty_pos + 1, shorty_len);
H A Dinterpreter_common.cc557 uint32_t shorty_len = 0; local
558 const char* shorty = method->GetShorty(&shorty_len);
579 DCHECK_LT(shorty_pos + 1, shorty_len);
/art/runtime/
H A Dreflection.cc39 explicit ArgArray(const char* shorty, uint32_t shorty_len) argument
40 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
41 size_t num_slots = shorty_len + 1; // +1 in case of receiver.
47 for (size_t i = 1; i < shorty_len; ++i) {
433 uint32_t shorty_len = 0; local
434 const char* shorty = method->GetShorty(&shorty_len);
436 ArgArray arg_array(shorty, shorty_len);
453 uint32_t shorty_len = 0; local
454 const char* shorty = method->GetShorty(&shorty_len);
456 ArgArray arg_array(shorty, shorty_len);
473 uint32_t shorty_len = 0; local
494 uint32_t shorty_len = 0; local
576 uint32_t shorty_len = 0; local
[all...]
H A Ddebugger.cc3662 uint32_t shorty_len = 0; local
3663 const char* shorty = m->GetShorty(&shorty_len);
3664 if (shorty_len - 1 != arg_count) {
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc234 uint32_t shorty_len) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
235 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len),
239 + StackArgumentStartFromShorty(is_static, shorty, shorty_len)),
398 uint32_t shorty_len) {
440 const char* shorty, uint32_t shorty_len, ShadowFrame* sf,
442 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
507 uint32_t shorty_len = 0; local
508 const char* shorty = method->GetShorty(&shorty_len);
509 BuildQuickShadowFrameVisitor shadow_frame_builder(sp, method->IsStatic(), shorty, shorty_len,
544 const char* shorty, uint32_t shorty_len,
397 StackArgumentStartFromShorty(bool is_static, const char* shorty, uint32_t shorty_len) argument
439 BuildQuickShadowFrameVisitor(StackReference<mirror::ArtMethod>* sp, bool is_static, const char* shorty, uint32_t shorty_len, ShadowFrame* sf, size_t first_arg_reg) argument
543 BuildQuickArgumentVisitor(StackReference<mirror::ArtMethod>* sp, bool is_static, const char* shorty, uint32_t shorty_len, ScopedObjectAccessUnchecked* soa, std::vector<jvalue>* args) argument
636 uint32_t shorty_len = 0; local
663 RememberForGcArgumentVisitor(StackReference<mirror::ArtMethod>* sp, bool is_static, const char* shorty, uint32_t shorty_len, ScopedObjectAccessUnchecked* soa) argument
779 uint32_t shorty_len; local
1462 BuildGenericJniFrameVisitor(StackReference<mirror::ArtMethod>** sp, bool is_static, const char* shorty, uint32_t shorty_len, Thread* self) argument
1643 uint32_t shorty_len = 0; local
1786 uint32_t shorty_len; local
1925 uint32_t shorty_len; local
[all...]

Completed in 146 milliseconds