Home | History | Annotate | Download | only in codesighs

Lines Matching refs:sectionIndex

331         unsigned sectionIndex = 0;
337 sectionIndex = inContainer->mReadState.mSectionDetails - 1;
352 inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mLength = numericLength;
458 unsigned sectionIndex = sectionIndex1 - 1;
514 inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mType = typeDup;
596 moved = realloc(inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbols, sizeof(MSDump_Symbol) * (inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbolCount + 1));
605 symIndex = inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbolCount;
606 inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbolCount++;
607 inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbols = (MSDump_Symbol*)moved;
608 memset(&inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbols[symIndex], 0, sizeof(MSDump_Symbol));
610 inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbols[symIndex].mOffset = offset;
615 inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbols[symIndex].mName = strdup(symbolArg);
616 if(NULL != inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbols[symIndex].mName)
620 trim = (char*)skipNonWhite(inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbols[symIndex].mName);