Lines Matching defs:module
64 ** mModules Output module by module information.
120 static Switch gModuleSwitch = {"--modules", "-m", 0, NULL, "Output individual module numbers as well."};
126 static Switch gMatchModule = {"--match-module", "-mmod", 1, NULL, "Only consider modules that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of modules."};
164 ** Track module level information.
166 ** mModule Module name.
167 ** mSize Size of module.
242 char module[0x100];
255 ** size class scope module segment object symbol ....
266 module,
369 if(NULL != strstr(module, inOptions->mMatchModules[loop]))
478 ** Find the module to modify.
482 if(0 == strcmp(modules[index].mModule, module))
490 ** add a new module.
503 modules[index].mModule = strdup(module);
507 ERROR_REPORT(retval, module, "Unable to duplicate string.");
513 ERROR_REPORT(retval, inOptions->mProgramName, "Unable to allocate module memory.");