Switch            117 third_party/codesighs/codesighs.c static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin is default."};
Switch            118 third_party/codesighs/codesighs.c static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file." DESC_NEWLINE "Appends if file exists." DESC_NEWLINE "stdout is default."};
Switch            119 third_party/codesighs/codesighs.c static Switch gHelpSwitch = {"--help", "-h", 0, NULL, "Information on usage."};
Switch            120 third_party/codesighs/codesighs.c static Switch gModuleSwitch = {"--modules", "-m", 0, NULL, "Output individual module numbers as well."};
Switch            121 third_party/codesighs/codesighs.c static Switch gTotalSwitch = {"--totalonly", "-t", 0, NULL, "Output only one number." DESC_NEWLINE "The total overall size." DESC_NEWLINE "Overrides other output options."};
Switch            122 third_party/codesighs/codesighs.c static Switch gMinSize = {"--min-size", "-min", 1, NULL, "Only consider symbols equal to or greater than this size." DESC_NEWLINE "The default is 0x00000000."};
Switch            123 third_party/codesighs/codesighs.c static Switch gMaxSize = {"--max-size", "-max", 1, NULL, "Only consider symbols equal to or smaller than this size." DESC_NEWLINE "The default is 0xFFFFFFFF."};
Switch            124 third_party/codesighs/codesighs.c static Switch gMatchScope = {"--match-scope", "-msco", 1, NULL, "Only consider scopes that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify a range of scopes," DESC_NEWLINE "though PUBLIC, STATIC, and UNDEF are your only choices."};
Switch            125 third_party/codesighs/codesighs.c static Switch gMatchClass = {"--match-class", "-mcla", 1, NULL, "Only consider classes that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify a range of classes," DESC_NEWLINE "though CODE and DATA are your only choices."};
Switch            126 third_party/codesighs/codesighs.c 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."};
Switch            127 third_party/codesighs/codesighs.c static Switch gMatchSection = {"--match-section", "-msec", 1, NULL, "Only consider sections that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of sections."  DESC_NEWLINE "Section is considered symbol type."};
Switch            128 third_party/codesighs/codesighs.c static Switch gMatchObject = {"--match-object", "-mobj", 1, NULL, "Only consider objects that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of objects."};
Switch            129 third_party/codesighs/codesighs.c static Switch gMatchSymbol = {"--match-symbol", "-msym", 1, NULL, "Only consider symbols that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of symbols."};
Switch            131 third_party/codesighs/codesighs.c static Switch* gSwitches[] = {
Switch            611 third_party/codesighs/codesighs.c     Switch* current = NULL;
Switch             96 third_party/codesighs/maptsvdifftool.c static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin is default."};
Switch             97 third_party/codesighs/maptsvdifftool.c static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file." DESC_NEWLINE "Appends if file exists." DESC_NEWLINE "stdout is default."};
Switch             98 third_party/codesighs/maptsvdifftool.c static Switch gSummarySwitch = {"--summary", "-s", 0, NULL, "Only output a single line." DESC_NEWLINE "The cumulative size changes." DESC_NEWLINE "Overrides all other output options."};
Switch             99 third_party/codesighs/maptsvdifftool.c static Switch gZeroDriftSwitch = {"--zerodrift", "-z", 0, NULL, "Output zero drift data." DESC_NEWLINE "Reports symbol changes even when there is no net drift."};
Switch            100 third_party/codesighs/maptsvdifftool.c static Switch gNegationSwitch = {"--negation", "-n", 0, NULL, "Use negation heuristics." DESC_NEWLINE "When symbol sizes are inferred by offset, order changes cause noise." DESC_NEWLINE "This helps see through the noise by eliminating equal and opposite drifts."};
Switch            101 third_party/codesighs/maptsvdifftool.c static Switch gHelpSwitch = {"--help", "-h", 0, NULL, "Information on usage."};
Switch            103 third_party/codesighs/maptsvdifftool.c static Switch* gSwitches[] = {
Switch           1083 third_party/codesighs/maptsvdifftool.c     Switch* current = NULL;
Switch             91 third_party/codesighs/msdump2symdb.c static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin is default."};
Switch             92 third_party/codesighs/msdump2symdb.c static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file." DESC_NEWLINE "Appends if file exists." DESC_NEWLINE "stdout is default."};
Switch             93 third_party/codesighs/msdump2symdb.c static Switch gHelpSwitch = {"--help", "-h", 0, NULL, "Information on usage."};
Switch             95 third_party/codesighs/msdump2symdb.c static Switch* gSwitches[] = {
Switch            874 third_party/codesighs/msdump2symdb.c     Switch* current = NULL;
Switch            211 third_party/codesighs/msmap2tsv.c static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin is default."};
Switch            212 third_party/codesighs/msmap2tsv.c static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file." DESC_NEWLINE "Appends if file exists." DESC_NEWLINE "stdout is default."};
Switch            213 third_party/codesighs/msmap2tsv.c static Switch gHelpSwitch = {"--help", "-h", 0, NULL, "Information on usage."};
Switch            214 third_party/codesighs/msmap2tsv.c 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."};
Switch            215 third_party/codesighs/msmap2tsv.c 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."};
Switch            216 third_party/codesighs/msmap2tsv.c 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."};
Switch            218 third_party/codesighs/msmap2tsv.c static Switch* gSwitches[] = {
Switch           1876 third_party/codesighs/msmap2tsv.c     Switch* current = NULL;
Switch             91 third_party/codesighs/nm2tsv.c static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin is default."};
Switch             92 third_party/codesighs/nm2tsv.c static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file." DESC_NEWLINE "Appends if file exists." DESC_NEWLINE "stdout is default."};
Switch             93 third_party/codesighs/nm2tsv.c static Switch gHelpSwitch = {"--help", "-h", 0, NULL, "Information on usage."};
Switch             95 third_party/codesighs/nm2tsv.c static Switch* gSwitches[] = {
Switch            287 third_party/codesighs/nm2tsv.c     Switch* current = NULL;