HomeSort by relevance Sort by last modified time
    Searched refs:shorty_len (Results 1 - 7 of 7) sorted by null

  /art/compiler/driver/
dex_compilation_unit.h 76 const char* GetShorty(uint32_t* shorty_len) const {
78 return dex_file_->GetMethodShorty(method_id, shorty_len);
  /art/runtime/
reflection.cc 38 ArgArray(const char* shorty, uint32_t shorty_len)
39 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
40 size_t num_slots = shorty_len + 1; // +1 in case of receiver.
46 for (size_t i = 1; i < shorty_len; ++i) {
460 uint32_t shorty_len = 0; local
461 const char* shorty = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(&shorty_len);
463 ArgArray arg_array(shorty, shorty_len);
490 uint32_t shorty_len = 0; local
491 const char* shorty = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(&shorty_len);
493 ArgArray arg_array(shorty, shorty_len);
521 uint32_t shorty_len = 0; local
552 uint32_t shorty_len = 0; local
637 uint32_t shorty_len = 0; local
    [all...]
stack.cc 717 uint32_t shorty_len; local
718 const char* shorty = method->GetShorty(&shorty_len);
720 for (uint32_t i = 1; i < shorty_len ; ++i) {
    [all...]
debugger.cc 3934 uint32_t shorty_len = 0; local
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 353 uint32_t shorty_len) SHARED_REQUIRES(Locks::mutator_lock_) :
354 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len),
599 uint32_t shorty_len, ShadowFrame* sf, size_t first_arg_reg) :
600 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
661 uint32_t shorty_len = 0; local
665 const char* shorty = non_proxy_method->GetShorty(&shorty_len);
729 BuildQuickShadowFrameVisitor shadow_frame_builder(sp, method->IsStatic(), shorty, shorty_len,
862 uint32_t shorty_len = 0; local
1005 uint32_t shorty_len; local
1947 uint32_t shorty_len = 0; local
2050 uint32_t shorty_len; local
2202 uint32_t shorty_len; local
    [all...]
  /art/runtime/interpreter/
interpreter.cc 433 uint32_t shorty_len = 0; local
434 const char* shorty = method->GetShorty(&shorty_len);
436 DCHECK_LT(shorty_pos + 1, shorty_len);
interpreter_common.cc 664 uint32_t shorty_len = 0; local
665 const char* shorty = method->GetShorty(&shorty_len);
682 DCHECK_LT(shorty_pos + 1, shorty_len) << "for shorty '" << shorty << "'";
    [all...]

Completed in 993 milliseconds