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

/art/runtime/interpreter/
H A Dinterpreter.cc423 uint32_t shorty_len = 0; local
424 const char* shorty = method->GetShorty(&shorty_len);
426 DCHECK_LT(shorty_pos + 1, shorty_len);
H A Dinterpreter_common.cc1304 uint32_t shorty_len = 0; local
1305 const char* shorty = method->GetShorty(&shorty_len);
1322 DCHECK_LT(shorty_pos + 1, shorty_len) << "for shorty '" << shorty << "'";
/art/runtime/
H A Dreflection.cc44 ArgArray(const char* shorty, uint32_t shorty_len) argument
45 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
46 size_t num_slots = shorty_len + 1; // +1 in case of receiver.
52 for (size_t i = 1; i < shorty_len; ++i) {
479 uint32_t shorty_len = 0; local
481 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
483 ArgArray arg_array(shorty, shorty_len);
510 uint32_t shorty_len = 0; local
512 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
514 ArgArray arg_array(shorty, shorty_len);
542 uint32_t shorty_len = 0; local
574 uint32_t shorty_len = 0; local
663 uint32_t shorty_len = 0; local
[all...]
H A Dstack.cc701 uint32_t shorty_len; local
702 const char* shorty = method->GetShorty(&shorty_len);
704 for (uint32_t i = 1; i < shorty_len ; ++i) {
H A Ddebugger.cc4071 uint32_t shorty_len = 0; local
4072 const char* shorty = m->GetShorty(&shorty_len);
4073 if (shorty_len - 1 != arg_count) {
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc406 uint32_t shorty_len) REQUIRES_SHARED(Locks::mutator_lock_) :
407 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len),
658 uint32_t shorty_len, ShadowFrame* sf, size_t first_arg_reg) :
659 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
786 uint32_t shorty_len = 0; local
790 const char* shorty = non_proxy_method->GetShorty(&shorty_len);
805 BuildQuickShadowFrameVisitor shadow_frame_builder(sp, method->IsStatic(), shorty, shorty_len,
866 BuildQuickArgumentVisitor(ArtMethod** sp, bool is_static, const char* shorty, uint32_t shorty_len, argument
868 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa), args_(args) {}
939 uint32_t shorty_len local
657 BuildQuickShadowFrameVisitor(ArtMethod** sp, bool is_static, const char* shorty, uint32_t shorty_len, ShadowFrame* sf, size_t first_arg_reg) argument
973 GetQuickReferenceArgumentAtVisitor(ArtMethod** sp, const char* shorty, uint32_t shorty_len, size_t arg_pos) argument
1017 uint32_t shorty_len = 0; local
1028 GetQuickReferenceArgumentsVisitor(ArtMethod** sp, bool is_static, const char* shorty, uint32_t shorty_len) argument
1061 uint32_t shorty_len = 0; local
1073 RememberForGcArgumentVisitor(ArtMethod** sp, bool is_static, const char* shorty, uint32_t shorty_len, ScopedObjectAccessUnchecked* soa) argument
1126 uint32_t shorty_len; local
1395 uint32_t shorty_len; local
2144 BuildGenericJniFrameVisitor(Thread* self, bool is_static, bool critical_native, const char* shorty, uint32_t shorty_len, ArtMethod*** sp) argument
2363 uint32_t shorty_len = 0; local
2529 uint32_t shorty_len; local
2662 uint32_t shorty_len; local
[all...]

Completed in 89 milliseconds