Lines Matching refs:theSymbol
1196 MSMap_Symbol* theSymbol = NULL;
1203 theSymbol = (inModule->mSymbols + index);
1205 memset(theSymbol, 0, sizeof(MSMap_Symbol));
1206 theSymbol->mScope = STATIC;
1208 scanRes = sscanf(current, "%x:%x %s %x", (unsigned*)&(theSymbol->mPrefix), (unsigned*)&(theSymbol->mOffset), symbolBuf, (unsigned*)&(theSymbol->mRVABase));
1211 theSymbol->mSymbol = symdup(symbolBuf);
1215 if(NULL != theSymbol->mSymbol)
1219 theSymbol->mObject = strdup(last);
1220 if(NULL == theSymbol->mObject)
1321 MSMap_Symbol* theSymbol = NULL;
1328 theSymbol = (inModule->mSymbols + index);
1330 memset(theSymbol, 0, sizeof(MSMap_Symbol));
1331 theSymbol->mScope = PUBLIC;
1333 scanRes = sscanf(current, "%x:%x %s %x", (unsigned*)&(theSymbol->mPrefix), (unsigned*)&(theSymbol->mOffset), symbolBuf, (unsigned *)&(theSymbol->mRVABase));
1336 theSymbol->mSymbol = symdup(symbolBuf);
1338 if(NULL != theSymbol->mSymbol)
1342 theSymbol->mObject = strdup(last);
1343 if(NULL != theSymbol->mObject)
1349 retval = fillSymbolSizeFromDB(inOptions, inModule, theSymbol, symbolBuf);