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

1 2

  /art/compiler/driver/
dex_compilation_unit.h 72 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
73 return dex_file_->GetMethodShorty(method_id);
77 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
78 return dex_file_->GetMethodShorty(method_id, shorty_len);
  /external/chromium_org/base/android/jni_generator/
golden_sample_for_tests_jni.h 106 jmethodID method_id = local
121 method_id, as_jint(foo), as_jint(bar));
131 jmethodID method_id = local
144 method_id);
155 jmethodID method_id = local
167 method_id);
178 jmethodID method_id = local
190 method_id);
202 jmethodID method_id = local
218 method_id, l, as_jint(i), s)
229 jmethodID method_id = local
253 jmethodID method_id = local
275 jmethodID method_id = local
299 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 )
  /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;
249 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/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_;
  /art/runtime/
dex_file_test.cc 244 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); local
245 const char* name = raw->StringDataByIdx(method_id.name_idx_);
247 std::string signature(raw->GetMethodSignature(method_id).ToString());
255 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); local
257 const char* name = raw->StringDataByIdx(method_id.name_idx_);
260 std::string signature(raw->GetMethodSignature(method_id).ToString());
266 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); local
268 const char* name = raw->StringDataByIdx(method_id.name_idx_);
271 std::string signature(raw->GetMethodSignature(method_id).ToString());
method_helper-inl.h 59 const DexFile::MethodId& method_id = dex_file->GetMethodId(method->GetDexMethodIndex()); local
60 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
dex_file.h 593 uint32_t GetIndexForMethodId(const MethodId& method_id) const {
594 CHECK_GE(&method_id, method_ids_) << GetLocation();
595 CHECK_LT(&method_id, method_ids_ + header_->method_ids_size_) << GetLocation();
596 return &method_id - method_ids_;
605 const char* GetMethodDeclaringClassDescriptor(const MethodId& method_id) const {
606 const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_);
611 const ProtoId& GetMethodPrototype(const MethodId& method_id) const {
612 return GetProtoId(method_id.proto_idx_);
616 const Signature GetMethodSignature(const MethodId& method_id) const;
619 const char* GetMethodName(const MethodId& method_id) const
    [all...]
dex_file-inl.h 41 inline const Signature DexFile::GetMethodSignature(const MethodId& method_id) const {
42 return Signature(this, GetProtoId(method_id.proto_idx_));
method_helper.cc 32 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx); local
35 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
  /external/llvm/tools/llvm-jitlistener/
llvm-jitlistener.cpp 54 ReportedDebugFuncs[msg->method_id];
56 outs() << "Method load [" << msg->method_id << "]: " << msg->method_name
67 ReportedDebugFuncs[msg->method_id].push_back(loc);
  /external/chromium_org/base/android/linker/
linker_jni.cc 113 // On success, return true and set |*method_id|.
118 jmethodID* method_id) {
119 *method_id = env->GetStaticMethodID(clazz, method_name, method_sig);
120 if (!*method_id) {
125 __FUNCTION__, *method_id, method_name);
391 jmethodID method_id; member in struct:__anon6809::JavaCallbackBindings_class
400 &method_id);
458 s_java_callback_bindings.clazz, s_java_callback_bindings.method_id, arg);
  /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)
104 VLOG(jdwp) << StringPrintf(" class_id=%#" PRIx64 " method_id=%x %s.%s", class_id,
105 method_id, Dbg::GetClassName(class_id).c_str(),
106 Dbg::GetMethodName(method_id).c_str());
127 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.get(), argTypes.get(), options, &resultTag, &resultValue, &exceptObjId);
692 MethodId method_id = request.ReadMethodId(); local
694 return FinishInvoke(state, request, pReply, thread_id, 0, class_id, method_id, false)
708 MethodId method_id = request.ReadMethodId(); local
748 MethodId method_id = request.ReadMethodId(); local
759 MethodId method_id = request.ReadMethodId(); local
782 MethodId method_id = request.ReadMethodId(); local
878 MethodId method_id = request.ReadMethodId(); local
    [all...]
jdwp_main.cc 603 << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id)
609 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 148 location.method_id = ReadMethodId();
jdwp.h 84 MethodId method_id; member in struct:art::JDWP::JdwpLocation
387 std::string DescribeMethod(const MethodId& method_id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
  /external/chromium_org/content/browser/android/java/
gin_java_method_invocation_helper_unittest.cc 166 jmethodID method_id = local
168 EXPECT_TRUE(method_id);
173 method_id,
  /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];

Completed in 463 milliseconds

1 2