HomeSort by relevance Sort by last modified time
    Searched refs:method_id (Results 26 - 50 of 73) sorted by null

12 3

  /art/runtime/verifier/
verifier_deps.cc 824 const DexFile::MethodId& method_id = dex_file.GetMethodId(method.GetDexMethodIndex()); local
826 << dex_file.GetMethodDeclaringClassDescriptor(method_id) << "->"
827 << dex_file.GetMethodName(method_id)
828 << dex_file.GetMethodSignature(method_id).ToString()
1012 const DexFile::MethodId& method_id = dex_file.GetMethodId(index); local
1027 const DexFile::MethodId& method_id = dex_file.GetMethodId(entry.GetDexMethodIndex()); local
    [all...]
method_verifier.cc 650 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
651 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_);
2902 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); local
2925 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); local
3003 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); local
3058 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); local
3767 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx); local
4104 const DexFile::MethodId& method_id = dex_file_->GetMethodId(mh.field_or_method_idx_); local
5009 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
5021 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); local
    [all...]
  /external/libmojo/base/android/linker/
legacy_linker_jni.cc 241 jmethodID method_id; member in struct:chromium_android_linker::__anon25106::JavaCallbackBindings_class
250 &method_id);
308 s_java_callback_bindings.clazz, s_java_callback_bindings.method_id, arg);
linker_jni.h 105 // On success, return true and set |*method_id|.
110 jmethodID* method_id);
  /art/runtime/
class_linker-inl.h 211 const DexFile::MethodId& method_id = dex_cache->GetDexFile()->GetMethodId(method_idx);
213 LookupResolvedType(method_id.class_idx_, dex_cache, class_loader);
226 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx); local
227 ObjPtr<mirror::Class> klass = LookupResolvedType(method_id.class_idx_, dex_cache, class_loader);
debugger.h 394 static std::string GetMethodName(JDWP::MethodId method_id)
396 static bool IsMethodObsolete(JDWP::MethodId method_id)
407 static void OutputLineTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId method_id,
413 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
419 static JDWP::JdwpError GetBytecodes(JDWP::RefTypeId class_id, JDWP::MethodId method_id,
638 JDWP::MethodId method_id, uint32_t arg_count,
    [all...]
art_method.cc 151 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx); local
152 return Runtime::Current()->GetClassLinker()->ResolveString(method_id.name_idx_, dex_cache);
549 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex()); local
550 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
    [all...]
  /tools/dexter/slicer/export/slicer/
instrumentation.h 159 bool InstrumentMethod(const ir::MethodId& method_id);
  /art/tools/veridex/
hidden_api_finder.cc 31 void HiddenApiFinder::CheckMethod(uint32_t method_id,
36 std::string name = HiddenApi::GetApiMethodName(resolver->GetDexFile(), method_id);
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 84 Result.method_id = Wrapper.iJIT_GetNewMethodID();
181 MethodIDs[(void*)Addr] = FunctionMessage.method_id;
  /art/dexlayout/
dex_ir.cc 355 MethodId* method_id = new MethodId(GetTypeId(disk_method_id.class_idx_.index_), local
358 AddIndexedItem(method_ids_, method_id, MethodIdsOffset() + i * MethodId::ItemSize(), i);
517 MethodId* method_id = GetMethodId(methods[i].method_idx_); local
524 new MethodAnnotation(method_id, annotation_set_item)));
533 MethodId* method_id = GetMethodId(parameters[i].method_idx_); local
537 GenerateParameterAnnotation(dex_file, method_id, list, parameters[i].annotations_off_)));
551 const DexFile& dex_file, MethodId* method_id,
565 return new ParameterAnnotation(method_id, set_ref_list);
722 MethodId* method_id = GetMethodId(cdii.GetMemberIndex()); local
731 return new MethodItem(access_flags, method_id, code_item)
    [all...]
compact_dex_writer.cc 62 const dex_ir::MethodId* method_id = method->GetMethodId(); local
66 const uint32_t method_idx = method_id->GetIndex();
251 const dex_ir::MethodId* method_id = method->GetMethodId(); local
255 method_idx_map.insert(std::make_pair(debug_item, method_id->GetIndex()));
dex_ir.h 88 virtual void Dispatch(const MethodId* method_id) = 0;
426 ParameterAnnotation* GenerateParameterAnnotation(const DexFile& dex_file, MethodId* method_id,
763 MethodItem(uint32_t access_flags, const MethodId* method_id, CodeItem* code)
764 : access_flags_(access_flags), method_id_(method_id), code_(code) { }
801 void SetMethodId(MethodId* method_id) { u_.method_val_ = method_id; }
    [all...]
dex_writer.cc 340 for (std::unique_ptr<dex_ir::MethodId>& method_id : header_->GetCollections().MethodIds()) {
342 ProcessOffset(stream, method_id.get());
343 buffer[0] = method_id->Class()->GetIndex();
344 buffer[1] = method_id->Proto()->GetIndex();
345 buffer[2] = method_id->Name()->GetIndex();
346 buffer[3] = method_id->Name()->GetIndex() >> 16;
347 stream->Write(buffer, method_id->GetSize());
    [all...]
  /art/runtime/jdwp/
jdwp_expand_buf.cc 185 expandBufAddMethodId(buf, location.method_id);
jdwp_request.cc 149 location.method_id = ReadMethodId();
jdwp_main.cc 756 << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id)
762 return lhs.dex_pc == rhs.dex_pc && lhs.method_id == rhs.method_id &&
jdwp.h 89 MethodId method_id; member in struct:art::JDWP::JdwpLocation
423 std::string DescribeMethod(const MethodId& method_id) REQUIRES_SHARED(Locks::mutator_lock_);
  /art/dexdump/
dexdump_cfg.cc 363 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx); local
365 const DexFile::ClassDef* class_def = dex_file->FindClassDef(method_id.class_idx_);
  /art/runtime/mirror/
class.cc 513 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx); local
514 StringPiece name = dex_file.StringDataByIdx(method_id.name_idx_);
515 const Signature signature = dex_file.GetMethodSignature(method_id);
640 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx); local
641 const Signature signature = dex_file.GetMethodSignature(method_id);
646 name = dex_file.StringDataByIdx(method_id.name_idx_);
667 if (cmp_method_id.name_idx_ == method_id.name_idx_ &&
668 cmp_method_id.proto_idx_ == method_id.proto_idx_) {
675 name = dex_file.StringDataByIdx(method_id.name_idx_);
703 name = dex_file.StringDataByIdx(method_id.name_idx_)
    [all...]
  /art/libdexfile/dex/
dex_file_verifier_test.cc 153 DexFile::MethodId* method_id = const_cast<DexFile::MethodId*>(&dex_file->GetMethodId(0));
154 method_id->class_idx_ = dex::TypeIndex(0xFF);
163 DexFile::MethodId* method_id = const_cast<DexFile::MethodId*>(&dex_file->GetMethodId(0));
164 method_id->proto_idx_ = 0xFF;
173 DexFile::MethodId* method_id = const_cast<DexFile::MethodId*>(&dex_file->GetMethodId(0));
174 method_id->name_idx_ = dex::StringIndex(0xFF);
    [all...]
dex_file.cc 577 const DexFile::MethodId& method_id = GetMethodId(method_idx); local
579 const DexFile::ProtoId* proto_id = with_signature ? &GetProtoId(method_id.proto_idx_) : nullptr;
584 AppendPrettyDescriptor(GetMethodDeclaringClassDescriptor(method_id), &result);
586 result += GetMethodName(method_id);
  /tools/dexter/slicer/
instrumentation.cc 423 bool MethodInstrumenter::InstrumentMethod(const ir::MethodId& method_id) {
426 auto ir_method = builder.FindMethod(method_id);
  /art/test/004-JniTest/
jni_test.cc 716 jmethodID method_id = env_->GetMethodID(decl_class, method, "()V"); local
719 env_->CallVoidMethod(obj, method_id);
748 jmethodID method_id = env->GetMethodID(lambda_class, method, "()V"); local
750 env->CallVoidMethod(obj, method_id);
  /external/v8/src/third_party/vtune/
vtune-jit.cc 173 jmethod.method_id = iJIT_GetNewMethodID();

Completed in 1344 milliseconds

12 3