• Home
  • Raw
  • Download

Lines Matching full:so

189     "  -so : write data to stdout\n"
230 #define ShowProgInfo(so) argument
232 static void ShowProgInfo(CStdOutStream *so) in ShowProgInfo() argument
234 if (!so) in ShowProgInfo()
237 *so in ShowProgInfo()
305 *so << " locale=" << GetLocale(); in ShowProgInfo()
311 *so << " UTF8=" << (is_IsNativeUTF8 ? "+" : "-"); in ShowProgInfo()
314 *so << " use-UTF8=" << (g_ForceToUTF8 ? "+" : "-"); in ShowProgInfo()
318 *so << " wchar_t=" << wchar_t_size * 8 << "-bit"; in ShowProgInfo()
323 *so << " Files=" << off_t_size * 8 << "-bit"; in ShowProgInfo()
329 *so << " Threads:" << numCpus; in ShowProgInfo()
331 *so << " OPEN_MAX:" << openMAX; in ShowProgInfo()
336 *so << " temp_path:" << temp; in ShowProgInfo()
341 *so << ", ASM"; in ShowProgInfo()
349 *so << ", " << s; in ShowProgInfo()
358 if (CPU_IsSupported_AES()) *so << ",AES"; in ShowProgInfo()
362 if (CPU_IsSupported_CRC32()) *so << ",CRC32"; in ShowProgInfo()
364 if (CPU_IsSupported_CRYPTO()) *so << ",CRYPTO"; in ShowProgInfo()
366 if (CPU_IsSupported_SHA1()) *so << ",SHA1"; in ShowProgInfo()
367 if (CPU_IsSupported_SHA2()) *so << ",SHA2"; in ShowProgInfo()
372 *so << endl; in ShowProgInfo()
376 static void ShowCopyrightAndHelp(CStdOutStream *so, bool needHelp) in ShowCopyrightAndHelp() argument
378 if (!so) in ShowCopyrightAndHelp()
380 *so << kCopyrightString; in ShowCopyrightAndHelp()
381 // *so << "# CPUs: " << (UInt64)NWindows::NSystem::GetNumberOfProcessors() << endl; in ShowCopyrightAndHelp()
382 ShowProgInfo(so); in ShowCopyrightAndHelp()
383 *so << endl; in ShowCopyrightAndHelp()
385 *so << kHelpString; in ShowCopyrightAndHelp()
389 static void PrintStringRight(CStdOutStream &so, const char *s, unsigned size) in PrintStringRight() argument
393 so << ' '; in PrintStringRight()
394 so << s; in PrintStringRight()
397 static void PrintUInt32(CStdOutStream &so, UInt32 val, unsigned size) in PrintUInt32() argument
401 PrintStringRight(so, s, size); in PrintUInt32()
405 static void PrintNumber(CStdOutStream &so, UInt32 val, unsigned numDigits) in PrintNumber() argument
411 so << s; in PrintNumber()
415 static void PrintLibIndex(CStdOutStream &so, int libIndex) in PrintLibIndex() argument
418 PrintUInt32(so, (UInt32)libIndex, 2); in PrintLibIndex()
420 so << " "; in PrintLibIndex()
421 so << ' '; in PrintLibIndex()
424 static void PrintString(CStdOutStream &so, const UString &s, unsigned size) in PrintString() argument
427 so << s; in PrintString()
429 so << ' '; in PrintString()
432 static void PrintWarningsPaths(const CErrorPathCodes &pc, CStdOutStream &so) in PrintWarningsPaths() argument
436 so.NormalizePrint_UString_Path(fs2us(pc.Paths[i])); in PrintWarningsPaths()
437 so << " : "; in PrintWarningsPaths()
438 so << NError::MyFormatMessage(pc.Codes[i]) << endl; in PrintWarningsPaths()
440 so << "----------------" << endl; in PrintWarningsPaths()
445 CStdOutStream *so, in WarningsCheck() argument
500 if (so) in WarningsCheck()
504 *so << kEverythingIsOk << endl; in WarningsCheck()
794 static void PrintHexId(CStdOutStream &so, UInt64 id) in PrintHexId() argument
798 PrintStringRight(so, s, 8); in PrintHexId()
929 // so the following code was not enabled: in Main2()
999 CStdOutStream &so = (g_StdStream ? *g_StdStream : g_StdOut); in Main2() local
1000 so << endl << s << endl; in Main2()
1066 CStdOutStream &so = (g_StdStream ? *g_StdStream : g_StdOut); in Main2() local
1070 so << endl << "Libs:" << endl; in Main2()
1073 PrintLibIndex(so, (int)i); in Main2()
1076 so << ": " << (lib.Version >> 16) << "."; in Main2()
1077 PrintNumber(so, lib.Version & 0xffff, 2); in Main2()
1078 so << " : " << lib.Path << endl; in Main2()
1082 so << endl << "Formats:" << endl; in Main2()
1094 PrintLibIndex(so, arc.LibIndex); in Main2()
1096 so << " "; in Main2()
1099 so << (char)(arc.UpdateEnabled ? 'C' : ' '); in Main2()
1104 so << (char)((arc.Flags & ((UInt32)1 << b)) != 0 ? kArcFlags[b] : '.'); in Main2()
1105 so << ' '; in Main2()
1112 so << (char)((arc.TimeFlags & ((UInt32)1 << b)) != 0 ? kArcTimeFlags[b] : '.'); in Main2()
1113 so << arc.Get_DefaultTimePrec(); in Main2()
1114 so << ' '; in Main2()
1117 so << ' '; in Main2()
1118 PrintString(so, arc.Name, 8); in Main2()
1119 so << ' '; in Main2()
1136 PrintString(so, s, 13); in Main2()
1137 so << ' '; in Main2()
1140 so << "offset=" << arc.SignatureOffset << ' '; in Main2()
1142 // so << "numSignatures = " << arc.Signatures.Size() << " "; in Main2()
1147 so << " || "; in Main2()
1154 so << ' '; in Main2()
1158 so << (char)b; in Main2()
1162 so << GET_HEX_CHAR_UPPER(b >> 4); in Main2()
1163 so << GET_HEX_CHAR_UPPER(b & 15); in Main2()
1167 so << endl; in Main2()
1170 so << endl << "Codecs:" << endl; // << "Lib ID Name" << endl; in Main2()
1176 PrintLibIndex(so, -1); in Main2()
1179 so << ' '; in Main2()
1181 so << cod.NumStreams; in Main2()
1183 so << (char)(cod.CreateEncoder ? 'E' : ' '); in Main2()
1184 so << (char)(cod.CreateDecoder ? 'D' : ' '); in Main2()
1185 so << (char)(cod.IsFilter ? 'F' : ' '); in Main2()
1187 so << ' '; in Main2()
1188 PrintHexId(so, cod.Id); in Main2()
1189 so << ' ' << cod.Name << endl; in Main2()
1199 PrintLibIndex(so, codecs->GetCodec_LibIndex(j)); in Main2()
1203 so << ' '; in Main2()
1205 so << numStreams; in Main2()
1207 so << (char)(codecs->GetCodec_EncoderIsAssigned(j) ? 'E' : ' '); in Main2()
1208 so << (char)(codecs->GetCodec_DecoderIsAssigned(j) ? 'D' : ' '); in Main2()
1212 so << (char)(isFilter ? 'F' : isFilter_Assigned ? ' ' : '*'); in Main2()
1216 so << ' '; in Main2()
1221 PrintHexId(so, id); in Main2()
1222 so << ' ' << codecs->GetCodec_Name(j) << endl; in Main2()
1228 so << endl << "Hashers:" << endl; // << " L Size ID Name" << endl; in Main2()
1233 PrintLibIndex(so, -1); in Main2()
1234 PrintUInt32(so, codec.DigestSize, 4); in Main2()
1235 so << ' '; in Main2()
1236 PrintHexId(so, codec.Id); in Main2()
1237 so << ' ' << codec.Name << endl; in Main2()
1245 PrintLibIndex(so, codecs->GetHasherLibIndex(j)); in Main2()
1246 PrintUInt32(so, codecs->GetHasherDigestSize(j), 4); in Main2()
1247 so << ' '; in Main2()
1248 PrintHexId(so, codecs->GetHasherId(j)); in Main2()
1249 so << ' ' << codecs->GetHasherName(j) << endl; in Main2()
1257 CStdOutStream &so = (g_StdStream ? *g_StdStream : g_StdOut); in Main2() local
1259 options.Properties, options.NumIterations, (FILE *)so); in Main2()
1262 so << endl; in Main2()
1400 CStdOutStream *so = g_StdStream; in Main2() local
1404 if (so) in Main2()
1406 *so << endl; in Main2()
1410 *so << "Archives: " << ecs->NumTryArcs << endl; in Main2()
1411 *so << "OK archives: " << ecs->NumOkArcs << endl; in Main2()
1418 if (so) in Main2()
1419 *so << "Can't open as archive: " << ecs->NumCantOpenArcs << endl; in Main2()
1425 if (so) in Main2()
1426 *so << "Archives with Errors: " << ecs->NumArcsWithError << endl; in Main2()
1429 if (so) in Main2()
1432 *so << "Archives with Warnings: " << ecs->NumArcsWithWarnings << endl; in Main2()
1436 *so << endl; in Main2()
1438 *so << "Warnings: " << ecs->NumOpenArcWarnings << endl; in Main2()
1445 if (so) in Main2()
1447 *so << endl; in Main2()
1449 *so << "Open Errors: " << ecs->NumOpenArcErrors << endl; in Main2()
1456 if (so) { in Main2()
1461 *so << endl; in Main2()
1463 *so << "Sub items Errors: " << ecs->NumFileErrors << endl; in Main2()
1469 *so << "Folders: " << stat.NumFolders << endl; in Main2()
1471 *so << "Files: " << stat.NumFiles << endl; in Main2()
1474 *so << "Alternate Streams: " << stat.NumAltStreams << endl; in Main2()
1475 *so << "Alternate Streams Size: " << stat.AltStreams_UnpackSize << endl; in Main2()
1478 *so in Main2()
1483 *so << endl; in Main2()
1484 PrintHashStat(*so, hb); in Main2()
1487 } // if (so) in Main2()