Lines Matching refs:is_ok
753 BROTLI_BOOL is_ok = OpenInputFile(context->current_input_path, &context->fin);
754 if (!context->test_integrity && is_ok) {
755 is_ok = OpenOutputFile(
758 return is_ok;
762 BROTLI_BOOL is_ok = BROTLI_TRUE;
772 is_ok = BROTLI_FALSE;
776 if (success && is_ok && context->copy_stat) {
783 if (is_ok) {
787 is_ok = BROTLI_FALSE;
797 return is_ok;
919 BROTLI_BOOL is_ok = BROTLI_TRUE;
929 is_ok = OpenFiles(context);
930 if (is_ok && !context->current_input_path &&
933 is_ok = BROTLI_FALSE;
935 if (is_ok) is_ok = DecompressFile(context, s);
937 if (!CloseFiles(context, is_ok)) is_ok = BROTLI_FALSE;
938 if (!is_ok) return BROTLI_FALSE;
980 BROTLI_BOOL is_ok = BROTLI_TRUE;
1015 is_ok = OpenFiles(context);
1016 if (is_ok && !context->current_output_path &&
1019 is_ok = BROTLI_FALSE;
1021 if (is_ok) is_ok = CompressFile(context, s);
1023 if (!CloseFiles(context, is_ok)) is_ok = BROTLI_FALSE;
1024 if (!is_ok) return BROTLI_FALSE;
1032 BROTLI_BOOL is_ok = BROTLI_TRUE;
1067 if (is_ok) {
1074 is_ok = BROTLI_FALSE;
1082 if (!is_ok) command = COMMAND_NOOP;
1093 is_ok = CompressFiles(&context);
1098 is_ok = DecompressFiles(&context);
1104 is_ok = (command == COMMAND_HELP);
1105 PrintHelp(FileName(argv[0]), is_ok);
1109 if (context.iterator_error) is_ok = BROTLI_FALSE;
1114 if (!is_ok) exit(1);