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()
252 const DexFile* dex_file = GetDexFile(); in GetPrototype() local
253 return dex_file->GetMethodPrototype(dex_file->GetMethodId(GetDexMethodIndex())); in GetPrototype()
258 const DexFile* dex_file = GetDexFile(); in GetParameterTypeList() local
259 const dex::ProtoId& proto = dex_file->GetMethodPrototype( in GetParameterTypeList()
260 dex_file->GetMethodId(GetDexMethodIndex())); in GetParameterTypeList()
261 return dex_file->GetProtoParameters(proto); in GetParameterTypeList()
290 const DexFile* dex_file = GetDexFile(); in GetReturnTypeDescriptor() local
291 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(GetReturnTypeIndex())); in GetReturnTypeDescriptor()
300 const DexFile* dex_file = GetDexFile(); in GetTypeDescriptorFromTypeIdx() local
301 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx)); in GetTypeDescriptorFromTypeIdx()
348 const DexFile* dex_file = GetDexFile(); in GetReturnTypeIndex() local
349 const dex::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex()); in GetReturnTypeIndex()
350 const dex::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); in GetReturnTypeIndex()