Lines Matching defs:posix
90 enum OutputFormatTy { bsd, sysv, posix, darwin, just_symbols };
626 if (OutputFormat == posix && !ArchiveName.empty())
737 if ((OutputFormat == bsd || OutputFormat == posix ||
758 printFormat = OutputFormat == posix ? "%" PRIo64 : "%016" PRIo64;
761 printFormat = OutputFormat == posix ? "%" PRIx64 : "%016" PRIx64;
764 printFormat = OutputFormat == posix ? "%" PRId64 : "%016" PRId64;
771 printFormat = OutputFormat == posix ? "%" PRIo64 : "%08" PRIo64;
774 printFormat = OutputFormat == posix ? "%" PRIx64 : "%08" PRIx64;
777 printFormat = OutputFormat == posix ? "%" PRId64 : "%08" PRId64;
794 OutputFormat != posix) {
803 if (OutputFormat == posix) {
833 } else if (OutputFormat == posix) {
2438 else if (V == "posix")
2439 OutputFormat = posix;
2447 error("--format value should be one of: bsd, posix, sysv, darwin, "