Lines Matching refs:dex_file

172   const DexFile* dex_file = GetDexFile();  in GetDeclaringClassDescriptor()  local
173 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx)); in GetDeclaringClassDescriptor()
183 const DexFile* dex_file = GetDexFile(); in GetShorty() local
184 return dex_file->GetMethodShorty(dex_file->GetMethodId(GetDexMethodIndex()), out_length); in GetShorty()
191 const DexFile* dex_file = GetDexFile(); in GetSignature() local
192 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx)); in GetSignature()
201 const DexFile* dex_file = GetDexFile(); in GetName() local
202 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx)); in GetName()
211 const DexFile* dex_file = GetDexFile(); in GetNameView() local
213 const char* name = dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx), &length); in GetNameView()
244 const DexFile* dex_file = GetDexFile(); in GetPrototype() local
245 return dex_file->GetMethodPrototype(dex_file->GetMethodId(GetDexMethodIndex())); in GetPrototype()
250 const DexFile* dex_file = GetDexFile(); in GetParameterTypeList() local
251 const dex::ProtoId& proto = dex_file->GetMethodPrototype( in GetParameterTypeList()
252 dex_file->GetMethodId(GetDexMethodIndex())); in GetParameterTypeList()
253 return dex_file->GetProtoParameters(proto); in GetParameterTypeList()
282 const DexFile* dex_file = GetDexFile(); in GetReturnTypeDescriptor() local
283 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(GetReturnTypeIndex())); in GetReturnTypeDescriptor()
292 const DexFile* dex_file = GetDexFile(); in GetTypeDescriptorFromTypeIdx() local
293 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx)); in GetTypeDescriptorFromTypeIdx()
340 const DexFile* dex_file = GetDexFile(); in GetReturnTypeIndex() local
341 const dex::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex()); in GetReturnTypeIndex()
342 const dex::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); in GetReturnTypeIndex()