Lines Matching defs:posix
88 enum OutputFormatTy { bsd, sysv, posix, darwin, just_symbols };
624 if (OutputFormat == posix && !ArchiveName.empty())
735 if ((OutputFormat == bsd || OutputFormat == posix ||
756 printFormat = OutputFormat == posix ? "%" PRIo64 : "%016" PRIo64;
759 printFormat = OutputFormat == posix ? "%" PRIx64 : "%016" PRIx64;
762 printFormat = OutputFormat == posix ? "%" PRId64 : "%016" PRId64;
769 printFormat = OutputFormat == posix ? "%" PRIo64 : "%08" PRIo64;
772 printFormat = OutputFormat == posix ? "%" PRIx64 : "%08" PRIx64;
775 printFormat = OutputFormat == posix ? "%" PRId64 : "%08" PRId64;
792 OutputFormat != posix) {
801 if (OutputFormat == posix) {
831 } else if (OutputFormat == posix) {
2436 else if (V == "posix")
2437 OutputFormat = posix;
2445 error("--format value should be one of: bsd, posix, sysv, darwin, "