HomeSort by relevance Sort by last modified time
    Searched refs:GetShorty (Results 1 - 25 of 28) sorted by null

1 2

  /art/runtime/
method_helper.h 46 const char* GetShorty() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
49 result = method_->GetShorty(&shorty_len_);
57 GetShorty();
65 const char* shorty = GetShorty();
94 return Primitive::GetType(GetShorty()[param]);
native_bridge_art_interface.cc 33 return mh.GetShorty();
73 methods[count].signature = m->GetShorty();
86 methods[count].signature = m->GetShorty();
reflection.cc 434 const char* shorty = method->GetShorty(&shorty_len);
454 const char* shorty = method->GetShorty(&shorty_len);
474 const char* shorty = method->GetShorty(&shorty_len);
495 const char* shorty = method->GetShorty(&shorty_len);
513 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
516 mh.GetShorty());
577 const char* shorty = m->GetShorty(&shorty_len);
dex_file.h 728 const char* GetShorty(uint32_t proto_idx) const {
    [all...]
debugger.cc     [all...]
instrumentation.cc     [all...]
class_linker.cc     [all...]
  /art/compiler/driver/
dex_compilation_unit.h 71 const char* GetShorty() const {
76 const char* GetShorty(uint32_t* shorty_len) const {
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 57 return ReturnRegisterForShorty(GetShorty(), false);
61 return ReturnRegisterForShorty(GetShorty(), true);
  /art/runtime/entrypoints/interpreter/
interpreter_entrypoints.cc 56 result, mh.GetShorty());
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 49 return ReturnRegisterForShorty(GetShorty());
53 return ReturnRegisterForShorty(GetShorty());
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 49 return ReturnRegisterForShorty(GetShorty());
53 return ReturnRegisterForShorty(GetShorty());
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.cc 64 return ReturnRegisterForShorty(GetShorty());
68 return ReturnRegisterForShorty(GetShorty());
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc 53 return ReturnRegisterForShorty(GetShorty(), false);
57 return ReturnRegisterForShorty(GetShorty(), true);
  /art/runtime/mirror/
art_method.h 507 const char* GetShorty() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
509 return GetShorty(&unused_length);
512 const char* GetShorty(uint32_t* out_length) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
art_method.cc 273 CHECK_STREQ(GetShorty(), shorty);
art_method-inl.h 426 inline const char* ArtMethod::GetShorty(uint32_t* out_length) {
  /art/compiler/jni/quick/
calling_convention.h 182 const char* GetShorty() const {
  /art/compiler/jni/portable/
jni_compiler.cc 284 const char* shorty = dex_compilation_unit_->GetShorty(&shorty_size);
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 312 JValue result = InvokeProxyInvocationHandler(soa, proxy_mh.GetShorty(),
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 508 const char* shorty = method->GetShorty(&shorty_len);
637 const char* shorty = proxy_method->GetShorty(&shorty_len);
    [all...]
  /art/runtime/interpreter/
interpreter.cc 420 num_regs = num_ins = ArtMethod::NumArgRegisters(method->GetShorty());
439 const char* shorty = method->GetShorty(&shorty_len);
interpreter_common.cc 558 const char* shorty = method->GetShorty(&shorty_len);
    [all...]
  /art/compiler/optimizing/
builder.cc 89 const char* shorty = dex_compilation_unit_->GetShorty();
  /art/compiler/dex/
mir_graph.cc     [all...]

Completed in 1053 milliseconds

1 2