Lines Matching refs:dex_file
170 const DexFile* dex_file = GetDexFile(); in GetDeclaringClassDescriptor() local
171 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx)); in GetDeclaringClassDescriptor()
181 const DexFile* dex_file = GetDexFile(); in GetShorty() local
182 return dex_file->GetMethodShorty(dex_file->GetMethodId(GetDexMethodIndex()), out_length); in GetShorty()
189 const DexFile* dex_file = GetDexFile(); in GetSignature() local
190 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx)); in GetSignature()
199 const DexFile* dex_file = GetDexFile(); in GetName() local
200 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx)); in GetName()
209 const DexFile* dex_file = GetDexFile(); in GetNameView() local
211 const char* name = dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx), &length); in GetNameView()
242 const DexFile* dex_file = GetDexFile(); in GetPrototype() local
243 return dex_file->GetMethodPrototype(dex_file->GetMethodId(GetDexMethodIndex())); in GetPrototype()
248 const DexFile* dex_file = GetDexFile(); in GetParameterTypeList() local
249 const dex::ProtoId& proto = dex_file->GetMethodPrototype( in GetParameterTypeList()
250 dex_file->GetMethodId(GetDexMethodIndex())); in GetParameterTypeList()
251 return dex_file->GetProtoParameters(proto); in GetParameterTypeList()
280 const DexFile* dex_file = GetDexFile(); in GetReturnTypeDescriptor() local
281 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(GetReturnTypeIndex())); in GetReturnTypeDescriptor()
290 const DexFile* dex_file = GetDexFile(); in GetTypeDescriptorFromTypeIdx() local
291 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx)); in GetTypeDescriptorFromTypeIdx()
338 const DexFile* dex_file = GetDexFile(); in GetReturnTypeIndex() local
339 const dex::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex()); in GetReturnTypeIndex()
340 const dex::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); in GetReturnTypeIndex()