Home | History | Annotate | Download | only in codesighs

Lines Matching defs:module

172 **  mMatchModules       Array of strings which the module name should match.
214 static Switch gMatchModuleSwitch = {"--match-module", "-mm", 1, NULL, "Specify a valid module name." DESC_NEWLINE "Multiple specifications allowed." DESC_NEWLINE "If a module name does not match one of the names specified then no output will occur."};
334 ** Go through sections in module to find the match for the symbol.
1122 ** Read the input line by line, adding it to the module.
1524 ** The module is on a line by itself.
1537 ** If this module name doesn't match, then bail.
1561 ERROR_REPORT(retval, current, "Unable to obtain module.");
1722 MSMap_Module module;
1724 memset(&module, 0, sizeof(module));
1729 retval = readmap(inOptions, &module);
1744 qsort(module.mSymbols, module.mSymbolCount, sizeof(MSMap_Symbol), qsortRVABase);
1750 for(symLoop = 0; 0 == retval && symLoop < module.mSymbolCount; symLoop++)
1752 symbol = &module.mSymbols[symLoop];
1753 section = getSymbolSection(&module, symbol);
1775 if((symLoop + 1) < module.mSymbolCount)
1780 nextSymbol = &module.mSymbols[symLoop + 1];
1781 nextSection = getSymbolSection(&module, nextSymbol);
1822 module.mModule,
1838 for(secLoop = 0; 0 == retval && secLoop < module.mSegmentCount; secLoop++)
1840 section = &module.mSegments[secLoop];
1848 module.mModule,
1860 cleanModule(&module);
2013 ** Add the value to the list of allowed module names.