• Home
  • Raw
  • Download

Lines Matching refs:pAnnoDir

832     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()
875 const u1* addr = (const u1*) &pAnnoDir[1]; in dexGetMethodAnnotations()
876 addr += pAnnoDir->fieldsSize * sizeof (DexFieldAnnotationsItem); in dexGetMethodAnnotations()
882 const DexAnnotationsDirectoryItem* pAnnoDir) in dexGetMethodAnnotationsSize() argument
884 return pAnnoDir->methodsSize; in dexGetMethodAnnotationsSize()
896 const DexFile* pDexFile, const DexAnnotationsDirectoryItem* pAnnoDir) in dexGetParameterAnnotations() argument
898 if (pAnnoDir->parametersSize == 0) in dexGetParameterAnnotations()
905 const u1* addr = (const u1*) &pAnnoDir[1]; in dexGetParameterAnnotations()
906 addr += pAnnoDir->fieldsSize * sizeof (DexFieldAnnotationsItem); in dexGetParameterAnnotations()
907 addr += pAnnoDir->methodsSize * sizeof (DexMethodAnnotationsItem); in dexGetParameterAnnotations()
913 const DexAnnotationsDirectoryItem* pAnnoDir) in dexGetParameterAnnotationsSize() argument
915 return pAnnoDir->parametersSize; in dexGetParameterAnnotationsSize()