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

1 2

  /art/compiler/driver/
dex_compilation_unit.h 70 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
71 return dex_file_->GetMethodShorty(method_id);
75 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
76 return dex_file_->GetMethodShorty(method_id, shorty_len);
  /external/chromium_org/base/android/jni_generator/
golden_sample_for_tests_jni.h 96 jmethodID method_id = local
111 method_id, foo, bar);
120 jmethodID method_id = local
133 method_id);
143 jmethodID method_id = local
155 method_id);
165 jmethodID method_id = local
177 method_id);
188 jmethodID method_id = local
204 method_id, l, i, s)
214 jmethodID method_id = local
237 jmethodID method_id = local
258 jmethodID method_id = local
281 jmethodID method_id = local
    [all...]
  /external/chromium_org/v8/src/third_party/vtune/
jitprofiling.h 177 unsigned int method_id; member in struct:_iJIT_Method_Id
191 unsigned int method_id; member in struct:_iJIT_Method_NIDS
217 unsigned int method_id; member in struct:_iJIT_Method_Load
jitprofiling.cc 209 if ( ((piJIT_Method_NIDS) EventSpecificData)->method_id <= 999 )
244 if ( ((piJIT_Method_NIDS) EventSpecificData)->method_id <= 999 )
262 if ( ((piJIT_Method_Load) EventSpecificData)->method_id <= 999 )
vtune-jit.cc 190 jmethod.method_id = iJIT_GetNewMethodID();
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.h 138 unsigned int method_id; member in struct:_iJIT_Method_Id
152 unsigned int method_id; member in struct:_iJIT_Method_NIDS
178 unsigned int method_id; member in struct:_iJIT_Method_Load
IntelJITEventListener.cpp 102 Result.method_id = Wrapper.iJIT_GetNewMethodID();
179 MethodIDs[FnStart] = FunctionMessage.method_id;
250 MethodIDs[(void*)Addr] = FunctionMessage.method_id;
jitprofiling.c 174 if ( ((piJIT_Method_NIDS) EventSpecificData)->method_id <= 999 )
212 if ( ((piJIT_Method_NIDS) EventSpecificData)->method_id <= 999 )
233 if ( ((piJIT_Method_Load) EventSpecificData)->method_id <= 999 )
  /external/llvm/unittests/ExecutionEngine/JIT/
IntelJITEventListenerTest.cpp 38 ReportedDebugFuncs[msg->method_id];
45 ReportedDebugFuncs[msg->method_id].push_back(loc);
  /art/runtime/
dex_file_test.cc 158 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); local
159 uint32_t proto_idx = method_id.proto_idx_;
160 const char* name = raw->StringDataByIdx(method_id.name_idx_);
171 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); local
173 const char* name = raw->StringDataByIdx(method_id.name_idx_);
176 uint32_t proto_idx = method_id.proto_idx_;
184 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); local
186 const char* name = raw->StringDataByIdx(method_id.name_idx_);
189 uint32_t proto_idx = method_id.proto_idx_;
dex_file.h 537 uint32_t GetIndexForMethodId(const MethodId& method_id) const {
538 CHECK_GE(&method_id, method_ids_) << GetLocation();
539 CHECK_LT(&method_id, method_ids_ + header_->method_ids_size_) << GetLocation();
540 return &method_id - method_ids_;
549 const char* GetMethodDeclaringClassDescriptor(const MethodId& method_id) const {
550 const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_);
555 const ProtoId& GetMethodPrototype(const MethodId& method_id) const {
556 return GetProtoId(method_id.proto_idx_);
560 const std::string GetMethodSignature(const MethodId& method_id) const {
561 return CreateMethodSignature(method_id.proto_idx_, NULL)
    [all...]
debugger.h 216 static std::string GetMethodName(JDWP::MethodId method_id)
227 static void OutputLineTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId method_id,
233 static JDWP::JdwpError GetBytecodes(JDWP::RefTypeId class_id, JDWP::MethodId method_id,
361 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
object_utils.h 441 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx); local
442 return GetClassLinker()->ResolveString(dex_file, method_id.name_idx_, GetDexCache());
485 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_->GetDexMethodIndex()); local
486 const DexFile::ProtoId& proto_id = dex_file.GetMethodPrototype(method_id);
493 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_->GetDexMethodIndex()); local
494 const DexFile::ProtoId& proto_id = dex_file.GetMethodPrototype(method_id);
utils.cc 383 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx); local
384 std::string result(PrettyDescriptor(dex_file.GetMethodDeclaringClassDescriptor(method_id)));
386 result += dex_file.GetMethodName(method_id);
388 std::string signature(dex_file.GetMethodSignature(method_id));
    [all...]
  /art/compiler/sea_ir/types/
type_inference.cc 42 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
43 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_));
52 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
53 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_));
58 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
59 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
  /external/llvm/tools/llvm-jitlistener/
llvm-jitlistener.cpp 55 ReportedDebugFuncs[msg->method_id];
57 outs() << "Method load [" << msg->method_id << "]: " << msg->method_name
68 ReportedDebugFuncs[msg->method_id].push_back(loc);
  /art/dalvikvm/
dalvikvm.cc 32 static bool IsMethodPublic(JNIEnv* env, jclass c, jmethodID method_id) {
33 ScopedLocalRef<jobject> reflected(env, env->ToReflectedMethod(c, method_id, JNI_FALSE));
  /external/oprofile/agents/jvmpi/
jvmpi_oprofile.cpp 63 cls.method_names[passed_methods->method_id] =
65 cls.method_signatures[passed_methods->method_id] =
85 jmethodID method = event->u.compiled_method_load.method_id;
  /art/runtime/jdwp/
jdwp_handler.cc 44 std::string DescribeMethod(const MethodId& method_id) {
45 return StringPrintf("%#x (%s)", method_id, Dbg::GetMethodName(method_id).c_str());
96 RefTypeId class_id, MethodId method_id, bool is_constructor)
103 VLOG(jdwp) << StringPrintf(" class_id=%#llx method_id=%x %s.%s", class_id,
104 method_id, Dbg::GetClassName(class_id).c_str(),
105 Dbg::GetMethodName(method_id).c_str());
125 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.get(), argTypes.get(), options, &resultTag, &resultValue, &exceptObjId);
683 MethodId method_id = request.ReadMethodId(); local
685 return FinishInvoke(state, request, pReply, thread_id, 0, class_id, method_id, false)
699 MethodId method_id = request.ReadMethodId(); local
739 MethodId method_id = request.ReadMethodId(); local
750 MethodId method_id = request.ReadMethodId(); local
773 MethodId method_id = request.ReadMethodId(); local
869 MethodId method_id = request.ReadMethodId(); local
    [all...]
jdwp_main.cc 608 << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id)
614 return lhs.dex_pc == rhs.dex_pc && lhs.method_id == rhs.method_id &&
jdwp_expand_buf.cc 182 expandBufAddMethodId(buf, location.method_id);
jdwp_request.cc 146 location.method_id = ReadMethodId();
jdwp.h 71 MethodId method_id; member in struct:art::JDWP::JdwpLocation
344 std::string DescribeMethod(const MethodId& method_id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
  /art/compiler/jni/portable/
jni_compiler.cc 67 DexFile::MethodId const& method_id = member in class:art::llvm::DexFile
69 char const return_shorty = dex_file->GetMethodShorty(method_id)[0];
  /art/runtime/verifier/
method_verifier.cc 2137 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); local
2161 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); local
2229 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); local
2286 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); local
2893 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx); local
3832 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
3841 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
    [all...]

Completed in 358 milliseconds

1 2