Lines Matching refs:dex_file
411 const DexFile* dex_file = method->GetDexFile(); in GetDeclaringClassDescriptor() local
412 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx)); in GetDeclaringClassDescriptor()
417 const DexFile* dex_file = method->GetDexFile(); in GetShorty() local
418 return dex_file->GetMethodShorty(dex_file->GetMethodId(method->GetDexMethodIndex()), out_length); in GetShorty()
425 const DexFile* dex_file = method->GetDexFile(); in GetSignature() local
426 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx)); in GetSignature()
435 const DexFile* dex_file = method->GetDexFile(); in GetName() local
436 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx)); in GetName()
474 const DexFile* dex_file = method->GetDexFile(); in GetPrototype() local
475 return dex_file->GetMethodPrototype(dex_file->GetMethodId(method->GetDexMethodIndex())); in GetPrototype()
480 const DexFile* dex_file = method->GetDexFile(); in GetParameterTypeList() local
481 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype( in GetParameterTypeList()
482 dex_file->GetMethodId(method->GetDexMethodIndex())); in GetParameterTypeList()
483 return dex_file->GetProtoParameters(proto); in GetParameterTypeList()
501 const DexFile* dex_file = method->GetDexFile(); in GetReturnTypeDescriptor() local
502 const DexFile::MethodId& method_id = dex_file->GetMethodId(method->GetDexMethodIndex()); in GetReturnTypeDescriptor()
503 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); in GetReturnTypeDescriptor()
505 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(return_type_idx)); in GetReturnTypeDescriptor()
510 const DexFile* dex_file = method->GetDexFile(); in GetTypeDescriptorFromTypeIdx() local
511 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx)); in GetTypeDescriptorFromTypeIdx()