Home
last modified time | relevance | path

Searched refs:pAnnoDir (Results 1 – 2 of 2) sorted by relevance

/dalvik/libdex/
DDexFile.h832 const DexFile* pDexFile, const DexAnnotationsDirectoryItem* pAnnoDir) in dexGetClassAnnotationSet() argument
834 if (pAnnoDir->classAnnotationsOff == 0) in dexGetClassAnnotationSet()
836 return dexGetAnnotationSetItem(pDexFile, pAnnoDir->classAnnotationsOff); in dexGetClassAnnotationSet()
841 const DexFile* pDexFile, const DexAnnotationsDirectoryItem* pAnnoDir) in dexGetFieldAnnotations() argument
843 if (pAnnoDir->fieldsSize == 0) in dexGetFieldAnnotations()
847 return (const DexFieldAnnotationsItem*) &pAnnoDir[1]; in dexGetFieldAnnotations()
852 const DexAnnotationsDirectoryItem* pAnnoDir) in dexGetFieldAnnotationsSize() argument
854 return pAnnoDir->fieldsSize; in dexGetFieldAnnotationsSize()
866 const DexFile* pDexFile, const DexAnnotationsDirectoryItem* pAnnoDir) in dexGetMethodAnnotations() argument
868 if (pAnnoDir->methodsSize == 0) in dexGetMethodAnnotations()
[all …]
/dalvik/vm/reflect/
DAnnotation.c1209 const DexAnnotationsDirectoryItem* pAnnoDir; in findAnnotationSetForClass() local
1215 pAnnoDir = getAnnoDirectory(pDexFile, clazz); in findAnnotationSetForClass()
1216 if (pAnnoDir != NULL) in findAnnotationSetForClass()
1217 return dexGetClassAnnotationSet(pDexFile, pAnnoDir); in findAnnotationSetForClass()
1605 const DexAnnotationsDirectoryItem* pAnnoDir; in findAnnotationSetForMethod() local
1613 pAnnoDir = getAnnoDirectory(pDexFile, clazz); in findAnnotationSetForMethod()
1614 if (pAnnoDir != NULL) { in findAnnotationSetForMethod()
1615 pMethodList = dexGetMethodAnnotations(pDexFile, pAnnoDir); in findAnnotationSetForMethod()
1629 u4 count = dexGetMethodAnnotationsSize(pDexFile, pAnnoDir); in findAnnotationSetForMethod()
1739 const DexAnnotationsDirectoryItem* pAnnoDir; in dvmGetAnnotationDefaultValue() local
[all …]