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 42 ArgArray(const char* shorty, uint32_t shorty_len)
43 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
44 size_t num_slots = shorty_len + 1; // +1 in case of receiver.
50 for (size_t i = 1; i < shorty_len; ++i) {
474 uint32_t shorty_len = 0; local
476 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
478 ArgArray arg_array(shorty, shorty_len);
505 uint32_t shorty_len = 0; local
507 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
509 ArgArray arg_array(shorty, shorty_len);
537 uint32_t shorty_len = 0; local
569 uint32_t shorty_len = 0; local
658 uint32_t shorty_len = 0; local
    [all...]
stack.cc 744 uint32_t shorty_len; local
745 const char* shorty = method->GetShorty(&shorty_len);
747 for (uint32_t i = 1; i < shorty_len ; ++i) {
    [all...]
debugger.cc 3982 uint32_t shorty_len = 0; local
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 393 uint32_t shorty_len) REQUIRES_SHARED(Locks::mutator_lock_) :
394 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len),
645 uint32_t shorty_len, ShadowFrame* sf, size_t first_arg_reg) :
646 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
707 uint32_t shorty_len = 0; local
711 const char* shorty = non_proxy_method->GetShorty(&shorty_len);
774 BuildQuickShadowFrameVisitor shadow_frame_builder(sp, method->IsStatic(), shorty, shorty_len,
917 uint32_t shorty_len = 0; local
1090 uint32_t shorty_len; local
2087 uint32_t shorty_len = 0; local
2271 uint32_t shorty_len; local
2421 uint32_t shorty_len; local
    [all...]
  /art/runtime/interpreter/
interpreter.cc 403 uint32_t shorty_len = 0; local
404 const char* shorty = method->GetShorty(&shorty_len);
406 DCHECK_LT(shorty_pos + 1, shorty_len);
interpreter_common.cc 997 uint32_t shorty_len = 0; local
    [all...]

Completed in 572 milliseconds