error              94 lib/mcconfig.h void mc_config_init_config_paths (GError ** error);
error             142 lib/search.h       mc_search_error_t error;
error              67 lib/search/hex.c     mc_search_hex_parse_error_t error = MC_SEARCH_HEX_E_OK;
error              73 lib/search/hex.c     while (loop < str_len && error == MC_SEARCH_HEX_E_OK)
error              88 lib/search/hex.c                 error = MC_SEARCH_HEX_E_NUM_OUT_OF_RANGE;
error             112 lib/search/hex.c                 error = MC_SEARCH_HEX_E_UNMATCHED_QUOTES;
error             117 lib/search/hex.c             error = MC_SEARCH_HEX_E_INVALID_CHARACTER;
error             120 lib/search/hex.c     if (error != MC_SEARCH_HEX_E_OK)
error             124 lib/search/hex.c             *error_ptr = error;
error             142 lib/search/hex.c     mc_search_hex_parse_error_t error = MC_SEARCH_HEX_E_OK;
error             181 lib/search/hex.c     tmp = mc_search__hex_translate_to_regex (mc_search_cond->str, &error, &error_pos);
error             192 lib/search/hex.c         switch (error)
error             209 lib/search/hex.c         lc_mc_search->error = MC_SEARCH_E_INPUT;
error             272 lib/search/regex.c                                     GMatchInfo **match_info, GError **error)
error             284 lib/search/regex.c                                    match_info, error);
error             311 lib/search/regex.c                             match_info, error);
error             334 lib/search/regex.c             lc_mc_search->error = MC_SEARCH_E_REGEX;
error             831 lib/search/regex.c             lc_mc_search->error = MC_SEARCH_E_REGEX_COMPILE;
error             842 lib/search/regex.c         char error[BUF_SMALL];
error             846 lib/search/regex.c         const char *error;
error             877 lib/search/regex.c             pcre_compile (mc_search_cond->str->str, pcre_options, &error, &erroffset, NULL);
error             882 lib/search/regex.c             pcre2_get_error_message (errcode, (unsigned char *) error, sizeof (error));
error             884 lib/search/regex.c             mc_search_set_error (lc_mc_search, MC_SEARCH_E_REGEX_COMPILE, "%s", error);
error             888 lib/search/regex.c         if (pcre2_jit_compile (mc_search_cond->regex_handle, PCRE2_JIT_COMPLETE) && *error != '\0')
error             890 lib/search/regex.c         lc_mc_search->regex_match_info = pcre_study (mc_search_cond->regex_handle, 0, &error);
error             891 lib/search/regex.c         if (lc_mc_search->regex_match_info == NULL && error != NULL)
error             894 lib/search/regex.c             mc_search_set_error (lc_mc_search, MC_SEARCH_E_REGEX_COMPILE, "%s", error);
error            1011 lib/search/regex.c     lc_mc_search->error = ret == MC_SEARCH_CB_ABORT ? MC_SEARCH_E_ABORT : MC_SEARCH_E_NOTFOUND;
error             254 lib/search/search.c     lc_mc_search->prepared.result = (lc_mc_search->error == MC_SEARCH_E_OK);
error             507 lib/search/search.c     lc_mc_search->error = code;
error              59 lib/serialize.c prepend_error_message (GError **error, const char *format, ...)
error              65 lib/serialize.c     if ((error == NULL) || (*error == NULL))
error              72 lib/serialize.c     split_str = g_strdup_printf ("%s: %s", prepend_str, (*error)->message);
error              74 lib/serialize.c     g_free ((*error)->message);
error              75 lib/serialize.c     (*error)->message = split_str;
error             112 lib/serialize.c mc_serialize_str (const char prefix, const char *data, GError **error)
error             116 lib/serialize.c         g_set_error (error, MC_ERROR, 0, "mc_serialize_str(): Input data is NULL.");
error             135 lib/serialize.c mc_deserialize_str (const char prefix, const char *data, GError **error)
error             141 lib/serialize.c         g_set_error (error, MC_ERROR, 0, FUNC_NAME ": Input data is NULL or empty.");
error             147 lib/serialize.c         g_set_error (error, MC_ERROR, 0, FUNC_NAME ": String prefix doesn't equal to '%c'", prefix);
error             159 lib/serialize.c             g_set_error (error, MC_ERROR, 0,
error             166 lib/serialize.c             g_set_error (error, MC_ERROR, 0, FUNC_NAME ": Too big string length");
error             177 lib/serialize.c         g_set_error (error, MC_ERROR, 0,
error             199 lib/serialize.c mc_serialize_config (mc_config_t *data, GError **error)
error             212 lib/serialize.c         serialized_str = mc_serialize_str ('g', *group_iterator, error);
error             228 lib/serialize.c             serialized_str = mc_serialize_str ('p', *param_iterator, error);
error             240 lib/serialize.c             serialized_str = mc_serialize_str ('v', value, error);
error             275 lib/serialize.c     prepend_error_message (error, FUNC_NAME " at %zu", current_position + 1); \
error             281 lib/serialize.c mc_deserialize_config (const char *data, GError **error)
error             305 lib/serialize.c             current_group = mc_deserialize_str ('g', data, error);
error             315 lib/serialize.c             current_param = mc_deserialize_str ('p', data, error);
error             326 lib/serialize.c             current_value = mc_deserialize_str ('v', data, error);
error              19 lib/serialize.h char *mc_serialize_str (const char prefix, const char *data, GError ** error);
error              20 lib/serialize.h char *mc_deserialize_str (const char prefix, const char *data, GError ** error);
error              22 lib/serialize.h char *mc_serialize_config (mc_config_t * data, GError ** error);
error              23 lib/serialize.h mc_config_t *mc_deserialize_config (const char *data, GError ** error);
error             135 lib/skin.h     gboolean mc_skin_init (const gchar * skin_override, GError ** error);
error             119 lib/skin/common.c     GError *error = NULL;
error             152 lib/skin/common.c     if (is_good_init && mc_skin__default.have_true_colors && !tty_use_truecolors (&error))
error             157 lib/skin/common.c                             mc_skin__default.name, error->message);
error             158 lib/skin/common.c         g_error_free (error);
error             164 lib/skin/common.c     if (is_good_init && mc_skin__default.have_256_colors && !tty_use_256colors (&error))
error             107 lib/strutil.h      gchar *(*conv_gerror_message) (GError * error, const char *def_msg);
error             202 lib/strutil.h  gchar *str_conv_gerror_message (GError * error, const char *def_msg);
error             234 lib/tty/color-ncurses.c tty_use_256colors (GError **error)
error             236 lib/tty/color-ncurses.c     (void) error;
error             244 lib/tty/color-ncurses.c tty_use_truecolors (GError **error)
error             247 lib/tty/color-ncurses.c     g_set_error (error, MC_ERROR, -1, _("True color not supported with ncurses."));
error             216 lib/tty/color-slang.c tty_use_256colors (GError **error)
error             223 lib/tty/color-slang.c         g_set_error (error, MC_ERROR, -1,
error             232 lib/tty/color-slang.c tty_use_truecolors (GError **error)
error             242 lib/tty/color-slang.c         g_set_error (error, MC_ERROR, -1, _("True color not supported in this slang version."));
error             252 lib/tty/color-slang.c         g_set_error (error, MC_ERROR, -1,
error              55 lib/tty/color.h extern gboolean tty_use_256colors (GError ** error);
error              56 lib/tty/color.h extern gboolean tty_use_truecolors (GError ** error);
error             115 lib/util.h         int error;
error             221 lib/util.h     mc_pipe_t *mc_popen (const char *command, gboolean read_out, gboolean read_err, GError ** error);
error             222 lib/util.h     void mc_pread (mc_pipe_t * p, GError ** error);
error             223 lib/util.h     void mc_pclose (mc_pipe_t * p, GError ** error);
error             249 lib/utilunix.c         ps->error = errno;
error             554 lib/utilunix.c mc_popen (const char *command, gboolean read_out, gboolean read_err, GError **error)
error             562 lib/utilunix.c         mc_replace_error (error, MC_PIPE_ERROR_CREATE_PIPE, "%s",
error             573 lib/utilunix.c          error))
error             575 lib/utilunix.c         mc_replace_error (error, MC_PIPE_ERROR_CREATE_PIPE_STREAM, "%s",
error             616 lib/utilunix.c mc_pread (mc_pipe_t *p, GError **error)
error             623 lib/utilunix.c     if (error != NULL)
error             624 lib/utilunix.c         *error = NULL;
error             653 lib/utilunix.c         mc_propagate_error (error, MC_PIPE_ERROR_READ,
error             724 lib/utilunix.c mc_pclose (mc_pipe_t *p, GError **error)
error             730 lib/utilunix.c         mc_replace_error (error, MC_PIPE_ERROR_READ, "%s",
error             749 lib/utilunix.c         mc_replace_error (error, MC_PIPE_ERROR_READ, _("Unexpected error in waitpid():\n%s"),
error             696 lib/vfs/parse_ls_vga.c         goto error;
error             704 lib/vfs/parse_ls_vga.c             goto error;
error             719 lib/vfs/parse_ls_vga.c             goto error;
error             730 lib/vfs/parse_ls_vga.c         goto error;
error             744 lib/vfs/parse_ls_vga.c         goto error;
error             769 lib/vfs/parse_ls_vga.c                 goto error;
error             775 lib/vfs/parse_ls_vga.c                 goto error;
error             779 lib/vfs/parse_ls_vga.c                 goto error;
error             791 lib/vfs/parse_ls_vga.c             goto error;
error             803 lib/vfs/parse_ls_vga.c         goto error;
error             870 lib/vfs/parse_ls_vga.c   error:
error              90 lib/vfs/path.h char *vfs_path_serialize (const vfs_path_t * vpath, GError ** error);
error              91 lib/vfs/path.h vfs_path_t *vfs_path_deserialize (const char *data, GError ** error);
error             509 src/args.c                 char *error;
error             511 src/args.c                 lineno = strtol (tmp + 1, &error, 10);
error             513 src/args.c                 if (*error == '\0')
error             123 src/clipboard.c         GError *error = NULL;
error             128 src/clipboard.c         mc_pread (p, &error);
error             130 src/clipboard.c         if (error != NULL)
error             133 src/clipboard.c             g_error_free (error);
error            3354 src/diffviewer/ydiff.c     int error;
error            3385 src/diffviewer/ydiff.c     error = dview_init (dview, "-a", file1, file2, label1, label2, DATA_SRC_MEM);       /* XXX binary diff? */
error            3386 src/diffviewer/ydiff.c     if (error >= 0)
error            3387 src/diffviewer/ydiff.c         error = redo_diff (dview);
error            3388 src/diffviewer/ydiff.c     if (error >= 0)
error            3390 src/diffviewer/ydiff.c         dview->ndiff = error;
error            3392 src/diffviewer/ydiff.c         error = 0;
error            3395 src/diffviewer/ydiff.c     if (error == 0)
error            3398 src/diffviewer/ydiff.c     if (error != 0 || widget_get_state (dw, WST_CLOSED))
error            3401 src/diffviewer/ydiff.c     return error == 0 ? 1 : 0;
error            1670 src/editor/editcmd.c     char *error;
error            1680 src/editor/editcmd.c     l = strtol (f, &error, 0);
error            1681 src/editor/editcmd.c     if (*error != '\0')
error             344 src/editor/editmacros.c         char *error = NULL;
error             346 src/editor/editmacros.c         count_repeat = strtol (f, &error, 0);
error             348 src/editor/editmacros.c         ok = (*error == '\0');
error             511 src/editor/editsearch.c             if (!ok && edit->search->error != MC_SEARCH_E_NOTFOUND)
error             578 src/editor/editsearch.c     if (edit->search->error == MC_SEARCH_E_NOTFOUND)
error             907 src/editor/editsearch.c             if (!(edit->search->error == MC_SEARCH_E_OK ||
error             908 src/editor/editsearch.c                   (once_found && edit->search->error == MC_SEARCH_E_NOTFOUND)))
error             972 src/editor/editsearch.c             if (edit->search->error != MC_SEARCH_E_OK)
error             276 src/editor/spell.c         AspellCanHaveError *error;
error             298 src/editor/spell.c         error = mc_new_aspell_speller (global_speller->config);
error             299 src/editor/spell.c         if (mc_aspell_error (error) != 0)
error             301 src/editor/spell.c             mc_delete_aspell_can_have_error (error);
error             305 src/editor/spell.c         global_speller->speller = mc_to_aspell_speller (error);
error             526 src/editor/spell.c     AspellCanHaveError *error = NULL;
error             550 src/editor/spell.c     error = mc_new_aspell_speller (global_speller->config);
error             552 src/editor/spell.c     if (mc_aspell_error_number (error) == 0)
error             553 src/editor/spell.c         global_speller->speller = mc_to_aspell_speller (error);
error             556 src/editor/spell.c         edit_error_dialog (_("Error"), mc_aspell_error_message (error));
error             557 src/editor/spell.c         mc_delete_aspell_can_have_error (error);
error             837 src/filemanager/boxes.c             char *error = NULL;
error             843 src/filemanager/boxes.c             cols = strtol (panel_brief_cols_out, &error, 10);
error             844 src/filemanager/boxes.c             if (*error == '\0')
error             267 src/filemanager/file.c         if (ctx->search_handle->error != MC_SEARCH_E_OK)
error             283 src/filemanager/file.c         if (ctx->search_handle->error == MC_SEARCH_E_OK)
error             935 src/filemanager/file.c real_do_file_error (enum OperationMode mode, gboolean allow_retry, const char *error)
error             944 src/filemanager/file.c             query_dialog (msg, error, D_ERROR, 4, _("&Ignore"), _("Ignore a&ll"), _("&Retry"),
error             947 src/filemanager/file.c         result = query_dialog (msg, error, D_ERROR, 3, _("&Ignore"), _("Ignore a&ll"), _("&Abort"));
error            3312 src/filemanager/file.c         FileProgressStatus error;
error            3314 src/filemanager/file.c         error = query_recursive (ctx, vfs_path_as_str (vpath));
error            3315 src/filemanager/file.c         if (error == FILE_CONT)
error            3316 src/filemanager/file.c             error = recursive_erase (tctx, ctx, vpath);
error            3317 src/filemanager/file.c         return error;
error            1750 src/filemanager/panel.c parse_display_format (WPanel *panel, const char *format, char **error, gboolean isstatus,
error            1759 src/filemanager/panel.c     *error = NULL;
error            1871 src/filemanager/panel.c             *error =
error            1888 src/filemanager/panel.c use_display_format (WPanel *panel, const char *format, char **error, gboolean isstatus)
error            1899 src/filemanager/panel.c     home = parse_display_format (panel, format, error, isstatus, &total_cols);
error            1901 src/filemanager/panel.c     if (*error != NULL)
error             305 src/filemanager/panelize.c     GError *error = NULL;
error             308 src/filemanager/panelize.c     external = mc_popen (command, TRUE, TRUE, &error);
error             311 src/filemanager/panelize.c         message (D_ERROR, _("External panelize"), "%s", error->message);
error             312 src/filemanager/panelize.c         g_error_free (error);
error             333 src/filemanager/panelize.c         mc_pread (external, &error);
error             335 src/filemanager/panelize.c         if (error != NULL)
error             337 src/filemanager/panelize.c             message (D_ERROR, MSG_ERROR, _("External panelize:\n%s"), error->message);
error             338 src/filemanager/panelize.c             g_error_free (error);
error             355 src/filemanager/panelize.c                      unix_error_string (external->out.error));
error             165 src/filemanager/tree.c     int error;
error             169 src/filemanager/tree.c     error = tree_store_save ();
error             170 src/filemanager/tree.c     if (error != 0)
error             176 src/filemanager/tree.c                  unix_error_string (error));
error             512 src/vfs/extfs/extfs.c extfs_open_archive (int fstype, const char *name, struct extfs_super_t **pparc, GError **error)
error             535 src/vfs/extfs/extfs.c             mc_propagate_error (error, 0, "%s", unix_error_string (errno));
error             554 src/vfs/extfs/extfs.c     result = mc_popen (cmd, TRUE, TRUE, error);
error             603 src/vfs/extfs/extfs.c extfs_read_archive (mc_pipe_t *pip, struct extfs_super_t *archive, GError **error)
error             616 src/vfs/extfs/extfs.c         mc_pread (pip, error);
error             618 src/vfs/extfs/extfs.c         if (*error != NULL)
error             688 src/vfs/extfs/extfs.c         if (*error == NULL)
error             689 src/vfs/extfs/extfs.c             mc_propagate_error (error, 0, "%s", err_msg->str);
error             694 src/vfs/extfs/extfs.c         mc_propagate_error (error, 0, "%s", _("Inconsistent archive"));
error             732 src/vfs/extfs/extfs.c     GError *error = NULL;
error             734 src/vfs/extfs/extfs.c     pip = extfs_open_archive (fstype, name, archive, &error);
error             743 src/vfs/extfs/extfs.c         if (error == NULL)
error             748 src/vfs/extfs/extfs.c                      error->message);
error             749 src/vfs/extfs/extfs.c             g_error_free (error);
error             754 src/vfs/extfs/extfs.c         result = extfs_read_archive (pip, a, &error);
error             759 src/vfs/extfs/extfs.c         if (error != NULL)
error             761 src/vfs/extfs/extfs.c             message (D_ERROR, MSG_ERROR, _("EXTFS virtual file system:\n%s"), error->message);
error             762 src/vfs/extfs/extfs.c             g_error_free (error);
error             931 src/vfs/extfs/extfs.c     GError *error = NULL;
error             982 src/vfs/extfs/extfs.c     pip = mc_popen (cmd, FALSE, TRUE, &error);
error             987 src/vfs/extfs/extfs.c         message (D_ERROR, MSG_ERROR, _("EXTFS virtual file system:\n%s"), error->message);
error             988 src/vfs/extfs/extfs.c         g_error_free (error);
error             994 src/vfs/extfs/extfs.c     mc_pread (pip, &error);
error             995 src/vfs/extfs/extfs.c     if (error != NULL)
error             997 src/vfs/extfs/extfs.c         message (D_ERROR, MSG_ERROR, _("EXTFS virtual file system:\n%s"), error->message);
error             998 src/vfs/extfs/extfs.c         g_error_free (error);
error             145 src/vfs/sfs/sfs.c     GError *error = NULL;
error             224 src/vfs/sfs/sfs.c     pip = mc_popen (pad, FALSE, TRUE, &error);
error             227 src/vfs/sfs/sfs.c         message (D_ERROR, MSG_ERROR, _("SFS virtual file system:\n%s"), error->message);
error             228 src/vfs/sfs/sfs.c         g_error_free (error);
error             234 src/vfs/sfs/sfs.c     mc_pread (pip, &error);
error             235 src/vfs/sfs/sfs.c     if (error != NULL)
error             237 src/vfs/sfs/sfs.c         message (D_ERROR, MSG_ERROR, _("SFS virtual file system:\n%s"), error->message);
error             238 src/vfs/sfs/sfs.c         g_error_free (error);
error             944 src/vfs/shell/shell.c             goto error;
error             974 src/vfs/shell/shell.c   error:
error             301 src/viewer/datasource.c         goto error;
error             310 src/viewer/datasource.c             goto error;
error             327 src/viewer/datasource.c   error:
error             387 src/viewer/datasource.c     GError *error = NULL;
error             391 src/viewer/datasource.c     p = mc_popen (command, TRUE, TRUE, &error);
error             395 src/viewer/datasource.c         mcview_show_error (view, error->message);
error             396 src/viewer/datasource.c         g_error_free (error);
error             207 src/viewer/dialogs.c         char *error;
error             209 src/viewer/dialogs.c         addr = (off_t) g_ascii_strtoll (exp, &error, base);
error             210 src/viewer/dialogs.c         if ((*error == '\0') && (addr >= 0))
error             158 src/viewer/growbuf.c             GError *error = NULL;
error             166 src/viewer/growbuf.c             mc_pread (sp, &error);
error             168 src/viewer/growbuf.c             if (error != NULL)
error             170 src/viewer/growbuf.c                 mcview_show_error (view, error->message);
error             171 src/viewer/growbuf.c                 g_error_free (error);
error             210 src/viewer/growbuf.c                                                unix_error_string (sp->out.error));
error             294 src/viewer/internal.h void mcview_show_error (WView * view, const char *error);
error             174 src/viewer/search.c             if (!ok && view->search->error != MC_SEARCH_E_NOTFOUND)
error             427 src/viewer/search.c         if (view->search->error != MC_SEARCH_E_NOTFOUND)
error             435 src/viewer/search.c     if (view->growbuf_in_use && !found && view->search->error == MC_SEARCH_E_NOTFOUND
error             445 src/viewer/search.c     if (orig_search_start != 0 && (!found && view->search->error == MC_SEARCH_E_NOTFOUND)
error             483 src/viewer/search.c         if (view->search->error == MC_SEARCH_E_NOTFOUND)
error              54 tests/lib/mcconfig/config_string.c     GError *error = NULL;
error              56 tests/lib/mcconfig/config_string.c     if (!mc_config_save_file (mc_config, &error))
error              58 tests/lib/mcconfig/config_string.c         ck_abort_msg ("Unable to save config file: %s", error->message);
error             154 tests/lib/search/hex_translate_to_regex.c     mc_search_hex_parse_error_t error = MC_SEARCH_HEX_E_OK;
error             160 tests/lib/search/hex_translate_to_regex.c     dest_str = mc_search__hex_translate_to_regex (tmp, &error, NULL);
error             171 tests/lib/search/hex_translate_to_regex.c         ck_assert_int_eq (error, data->expected_error);
error              33 tests/lib/serialize.c static GError *error = NULL;
error              48 tests/lib/serialize.c     error = NULL;
error              57 tests/lib/serialize.c     g_clear_error (&error);
error              93 tests/lib/serialize.c     actual_result = mc_serialize_str (data->input_char_prefix, data->input_string, &error);
error             100 tests/lib/serialize.c     if (error != NULL)
error             101 tests/lib/serialize.c         g_error_free (error);
error             160 tests/lib/serialize.c     actual_result = mc_deserialize_str (data->input_char_prefix, data->input_string, &error);
error             165 tests/lib/serialize.c     ck_assert_int_eq (error->code, data->expected_error_code);
error             166 tests/lib/serialize.c     mctest_assert_str_eq (error->message, data->expected_error_string);
error             204 tests/lib/serialize.c     actual_result = mc_deserialize_str (data->input_char_prefix, data->input_string, &error);
error             244 tests/lib/serialize.c     actual = mc_serialize_config (test_data, &error);
error             298 tests/lib/serialize.c     actual_result = mc_deserialize_config (data->input_string, &error);
error             303 tests/lib/serialize.c     ck_assert_int_eq (error->code, data->expected_error_code);
error             304 tests/lib/serialize.c     mctest_assert_str_eq (error->message, data->expected_error_string);
error             321 tests/lib/serialize.c     actual = mc_deserialize_config (deserialize_input_value1, &error);
error             141 tests/lib/vfs/path_serialize.c     GError *error = NULL;
error             145 tests/lib/vfs/path_serialize.c     serialized_vpath = vfs_path_serialize (vpath, &error);
error             149 tests/lib/vfs/path_serialize.c     if (error != NULL)
error             150 tests/lib/vfs/path_serialize.c         g_error_free (error);
error             168 tests/lib/vfs/path_serialize.c     GError *error = NULL;
error             171 tests/lib/vfs/path_serialize.c     vpath = vfs_path_deserialize (ETALON_SERIALIZED_PATH, &error);
error              64 tests/src/vfs/extfs/helpers-list/mc_parse_ls_l.c                             GError ** error);
error             100 tests/src/vfs/extfs/helpers-list/mc_parse_ls_l.c                             GError **error)
error             111 tests/src/vfs/extfs/helpers-list/mc_parse_ls_l.c         g_set_error (error, MC_ERROR, G_OPTION_ERROR_FAILED, "unknown output format '%s'", value);
error             123 tests/src/vfs/extfs/helpers-list/mc_parse_ls_l.c     GError *error = NULL;
error             130 tests/src/vfs/extfs/helpers-list/mc_parse_ls_l.c     if (!g_option_context_parse (context, argc, argv, &error))
error             132 tests/src/vfs/extfs/helpers-list/mc_parse_ls_l.c         g_print ("option parsing failed: %s\n", error->message);
error             133 tests/src/vfs/extfs/helpers-list/mc_parse_ls_l.c         g_error_free (error);