Home | History | Annotate | Download | only in codesighs

Lines Matching defs:Switch

207 Switch;
211 static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin is default."};
212 static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file." DESC_NEWLINE "Appends if file exists." DESC_NEWLINE "stdout is default."};
213 static Switch gHelpSwitch = {"--help", "-h", 0, NULL, "Information on usage."};
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."};
215 static Switch gSymDBSwitch = {"--symdb", "-sdb", 1, NULL, "Specify a symbol tsv db input file." DESC_NEWLINE "Such a symdb is produced using the tool msdump2symdb." DESC_NEWLINE "This allows better symbol size approximations." DESC_NEWLINE "The symdb file must be pre-sorted."};
216 static Switch gBatchModeSwitch = {"--batch", "-b", 0, NULL, "Runs in batch mode." DESC_NEWLINE "The input file contains a list of map files." DESC_NEWLINE "Normally the input file is a map file itself." DESC_NEWLINE "This eliminates reprocessing the symdb for multiple map files."};
218 static Switch* gSwitches[] = {
921 switch (state) {
937 switch (*curchar) {
979 switch (*curchar) {
1000 switch (*curchar) {
1634 switch(inClass)
1648 switch(inScope)
1876 Switch* current = NULL;
1941 ERROR_REPORT(retval, inArgv[loop], "Unknown command line switch.");
1947 ERROR_REPORT(retval, inArgv[loop], "Command line switch requires a value.");
2053 ERROR_REPORT(retval, current->mLongName, "No handler for command line switch.");