error              94 lib/mcconfig.h void mc_config_init_config_paths (GError ** error);
error             142 lib/search.h       mc_search_error_t error;
error              68 lib/search/hex.c     mc_search_hex_parse_error_t error = MC_SEARCH_HEX_E_OK;
error              74 lib/search/hex.c     while (loop < str_len && error == MC_SEARCH_HEX_E_OK)
error              89 lib/search/hex.c                 error = MC_SEARCH_HEX_E_NUM_OUT_OF_RANGE;
error             113 lib/search/hex.c                 error = MC_SEARCH_HEX_E_UNMATCHED_QUOTES;
error             118 lib/search/hex.c             error = MC_SEARCH_HEX_E_INVALID_CHARACTER;
error             121 lib/search/hex.c     if (error != MC_SEARCH_HEX_E_OK)
error             125 lib/search/hex.c             *error_ptr = error;
error             143 lib/search/hex.c     mc_search_hex_parse_error_t error = MC_SEARCH_HEX_E_OK;
error             182 lib/search/hex.c     tmp = mc_search__hex_translate_to_regex (mc_search_cond->str, &error, &error_pos);
error             193 lib/search/hex.c         switch (error)
error             210 lib/search/hex.c         lc_mc_search->error = MC_SEARCH_E_INPUT;
error             275 lib/search/regex.c                                     GMatchInfo ** match_info, GError ** error)
error             287 lib/search/regex.c                                    match_info, error);
error             314 lib/search/regex.c                             match_info, error);
error             337 lib/search/regex.c             lc_mc_search->error = MC_SEARCH_E_REGEX;
error             835 lib/search/regex.c             lc_mc_search->error = MC_SEARCH_E_REGEX_COMPILE;
error             846 lib/search/regex.c         char error[BUF_SMALL];
error             850 lib/search/regex.c         const char *error;
error             881 lib/search/regex.c             pcre_compile (mc_search_cond->str->str, pcre_options, &error, &erroffset, NULL);
error             886 lib/search/regex.c             pcre2_get_error_message (errcode, (unsigned char *) error, sizeof (error));
error             888 lib/search/regex.c             mc_search_set_error (lc_mc_search, MC_SEARCH_E_REGEX_COMPILE, "%s", error);
error             892 lib/search/regex.c         if (pcre2_jit_compile (mc_search_cond->regex_handle, PCRE2_JIT_COMPLETE) && *error != '\0')
error             894 lib/search/regex.c         lc_mc_search->regex_match_info = pcre_study (mc_search_cond->regex_handle, 0, &error);
error             895 lib/search/regex.c         if (lc_mc_search->regex_match_info == NULL && error != NULL)
error             898 lib/search/regex.c             mc_search_set_error (lc_mc_search, MC_SEARCH_E_REGEX_COMPILE, "%s", error);
error            1015 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             110 lib/util.h         int error;
error             204 lib/util.h     mc_pipe_t *mc_popen (const char *command, gboolean read_out, gboolean read_err, GError ** error);
error             205 lib/util.h     void mc_pread (mc_pipe_t * p, GError ** error);
error             206 lib/util.h     void mc_pclose (mc_pipe_t * p, GError ** error);
error             257 lib/utilunix.c         ps->error = errno;
error             506 lib/utilunix.c mc_popen (const char *command, gboolean read_out, gboolean read_err, GError ** error)
error             514 lib/utilunix.c         mc_replace_error (error, MC_PIPE_ERROR_CREATE_PIPE, "%s",
error             525 lib/utilunix.c          error))
error             527 lib/utilunix.c         mc_replace_error (error, MC_PIPE_ERROR_CREATE_PIPE_STREAM, "%s",
error             568 lib/utilunix.c mc_pread (mc_pipe_t * p, GError ** error)
error             575 lib/utilunix.c     if (error != NULL)
error             576 lib/utilunix.c         *error = NULL;
error             605 lib/utilunix.c         mc_propagate_error (error, MC_PIPE_ERROR_READ,
error             676 lib/utilunix.c mc_pclose (mc_pipe_t * p, GError ** error)
error             682 lib/utilunix.c         mc_replace_error (error, MC_PIPE_ERROR_READ, "%s",
error             701 lib/utilunix.c         mc_replace_error (error, MC_PIPE_ERROR_READ, _("Unexpected error in waitpid():\n%s"),
error             779 lib/vfs/interface.c     const char *error = NULL;
error             809 lib/vfs/interface.c                 error = _("%s is not a directory\n");
error             811 lib/vfs/interface.c                 error = _("Directory %s is not owned by you\n");
error             813 lib/vfs/interface.c                 error = _("Cannot set correct permissions for directory %s\n");
error             820 lib/vfs/interface.c             error = "";
error             824 lib/vfs/interface.c     if (error != NULL)
error             831 lib/vfs/interface.c         if (*error != '\0')
error             832 lib/vfs/interface.c             fprintf (stderr, error, buffer);
error             854 lib/vfs/interface.c             error = NULL;
error             869 lib/vfs/interface.c     if (error == NULL)
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             801 lib/vfs/parse_ls_vga.c         goto error;
error             871 lib/vfs/parse_ls_vga.c   error:
error              89 lib/vfs/path.h char *vfs_path_serialize (const vfs_path_t * vpath, GError ** error);
error              90 lib/vfs/path.h vfs_path_t *vfs_path_deserialize (const char *data, GError ** error);
error             539 src/args.c                 char *error;
error             541 src/args.c                 lineno = strtol (tmp + 1, &error, 10);
error             543 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            3370 src/diffviewer/ydiff.c     int error;
error            3401 src/diffviewer/ydiff.c     error = dview_init (dview, "-a", file1, file2, label1, label2, DATA_SRC_MEM);       /* XXX binary diff? */
error            3403 src/diffviewer/ydiff.c     if (error == 0)
error            3406 src/diffviewer/ydiff.c     if (error != 0 || widget_get_state (dw, WST_CLOSED))
error            3409 src/diffviewer/ydiff.c     return error == 0 ? 1 : 0;
error            1660 src/editor/editcmd.c     char *error;
error            1670 src/editor/editcmd.c     l = strtol (f, &error, 0);
error            1671 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             510 src/editor/editsearch.c             if (!ok && edit->search->error != MC_SEARCH_E_NOTFOUND)
error             577 src/editor/editsearch.c     if (edit->search->error == MC_SEARCH_E_NOTFOUND)
error             906 src/editor/editsearch.c             if (!(edit->search->error == MC_SEARCH_E_OK ||
error             907 src/editor/editsearch.c                   (once_found && edit->search->error == MC_SEARCH_E_NOTFOUND)))
error             971 src/editor/editsearch.c             if (edit->search->error != MC_SEARCH_E_OK)
error             295 src/editor/spell.c     AspellCanHaveError *error = NULL;
error             319 src/editor/spell.c     error = mc_new_aspell_speller (global_speller->config);
error             321 src/editor/spell.c     if (mc_aspell_error_number (error) == 0)
error             322 src/editor/spell.c         global_speller->speller = mc_to_aspell_speller (error);
error             325 src/editor/spell.c         edit_error_dialog (_("Error"), mc_aspell_error_message (error));
error             326 src/editor/spell.c         mc_delete_aspell_can_have_error (error);
error             432 src/editor/spell.c         AspellCanHaveError *error;
error             454 src/editor/spell.c         error = mc_new_aspell_speller (global_speller->config);
error             455 src/editor/spell.c         if (mc_aspell_error (error) != 0)
error             457 src/editor/spell.c             mc_delete_aspell_can_have_error (error);
error             461 src/editor/spell.c         global_speller->speller = mc_to_aspell_speller (error);
error             838 src/filemanager/boxes.c             char *error = NULL;
error             844 src/filemanager/boxes.c             cols = strtol (panel_brief_cols_out, &error, 10);
error             845 src/filemanager/boxes.c             if (*error == '\0')
error             274 src/filemanager/file.c         if (ctx->search_handle->error != MC_SEARCH_E_OK)
error             290 src/filemanager/file.c         if (ctx->search_handle->error == MC_SEARCH_E_OK)
error             957 src/filemanager/file.c real_do_file_error (enum OperationMode mode, gboolean allow_retry, const char *error)
error             966 src/filemanager/file.c             query_dialog (msg, error, D_ERROR, 4, _("&Skip"), _("Ski&p all"), _("&Retry"),
error             969 src/filemanager/file.c         result = query_dialog (msg, error, D_ERROR, 3, _("&Skip"), _("Ski&p all"), _("&Abort"));
error            3293 src/filemanager/file.c         FileProgressStatus error;
error            3295 src/filemanager/file.c         error = query_recursive (ctx, vfs_path_as_str (vpath));
error            3296 src/filemanager/file.c         if (error == FILE_CONT)
error            3297 src/filemanager/file.c             error = recursive_erase (tctx, ctx, vpath);
error            3298 src/filemanager/file.c         return error;
error            1749 src/filemanager/panel.c parse_display_format (WPanel * panel, const char *format, char **error, gboolean isstatus,
error            1758 src/filemanager/panel.c     *error = NULL;
error            1870 src/filemanager/panel.c             *error =
error            1887 src/filemanager/panel.c use_display_format (WPanel * panel, const char *format, char **error, gboolean isstatus)
error            1898 src/filemanager/panel.c     home = parse_display_format (panel, format, error, isstatus, &total_cols);
error            1900 src/filemanager/panel.c     if (*error != NULL)
error             306 src/filemanager/panelize.c     GError *error = NULL;
error             309 src/filemanager/panelize.c     external = mc_popen (command, TRUE, TRUE, &error);
error             312 src/filemanager/panelize.c         message (D_ERROR, _("External panelize"), "%s", error->message);
error             313 src/filemanager/panelize.c         g_error_free (error);
error             334 src/filemanager/panelize.c         mc_pread (external, &error);
error             336 src/filemanager/panelize.c         if (error != NULL)
error             338 src/filemanager/panelize.c             message (D_ERROR, MSG_ERROR, _("External panelize:\n%s"), error->message);
error             339 src/filemanager/panelize.c             g_error_free (error);
error             356 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             551 src/vfs/extfs/extfs.c     result = mc_popen (cmd, TRUE, TRUE, error);
error             600 src/vfs/extfs/extfs.c extfs_read_archive (mc_pipe_t * pip, struct extfs_super_t *archive, GError ** error)
error             613 src/vfs/extfs/extfs.c         mc_pread (pip, error);
error             615 src/vfs/extfs/extfs.c         if (*error != NULL)
error             685 src/vfs/extfs/extfs.c         if (*error == NULL)
error             686 src/vfs/extfs/extfs.c             mc_propagate_error (error, 0, "%s", err_msg->str);
error             691 src/vfs/extfs/extfs.c         mc_propagate_error (error, 0, "%s", _("Inconsistent archive"));
error             729 src/vfs/extfs/extfs.c     GError *error = NULL;
error             731 src/vfs/extfs/extfs.c     pip = extfs_open_archive (fstype, name, archive, &error);
error             741 src/vfs/extfs/extfs.c                  error->message);
error             742 src/vfs/extfs/extfs.c         g_error_free (error);
error             746 src/vfs/extfs/extfs.c         result = extfs_read_archive (pip, a, &error);
error             751 src/vfs/extfs/extfs.c         if (error != NULL)
error             753 src/vfs/extfs/extfs.c             message (D_ERROR, MSG_ERROR, _("EXTFS virtual file system:\n%s"), error->message);
error             754 src/vfs/extfs/extfs.c             g_error_free (error);
error             923 src/vfs/extfs/extfs.c     GError *error = NULL;
error             974 src/vfs/extfs/extfs.c     pip = mc_popen (cmd, FALSE, TRUE, &error);
error             979 src/vfs/extfs/extfs.c         message (D_ERROR, MSG_ERROR, _("EXTFS virtual file system:\n%s"), error->message);
error             980 src/vfs/extfs/extfs.c         g_error_free (error);
error             986 src/vfs/extfs/extfs.c     mc_pread (pip, &error);
error             987 src/vfs/extfs/extfs.c     if (error != NULL)
error             989 src/vfs/extfs/extfs.c         message (D_ERROR, MSG_ERROR, _("EXTFS virtual file system:\n%s"), error->message);
error             990 src/vfs/extfs/extfs.c         g_error_free (error);
error             147 src/vfs/sfs/sfs.c     GError *error = NULL;
error             226 src/vfs/sfs/sfs.c     pip = mc_popen (pad, FALSE, TRUE, &error);
error             229 src/vfs/sfs/sfs.c         message (D_ERROR, MSG_ERROR, _("SFS virtual file system:\n%s"), error->message);
error             230 src/vfs/sfs/sfs.c         g_error_free (error);
error             236 src/vfs/sfs/sfs.c     mc_pread (pip, &error);
error             237 src/vfs/sfs/sfs.c     if (error != NULL)
error             239 src/vfs/sfs/sfs.c         message (D_ERROR, MSG_ERROR, _("SFS virtual file system:\n%s"), error->message);
error             240 src/vfs/sfs/sfs.c         g_error_free (error);
error             948 src/vfs/shell/shell.c             goto error;
error             978 src/vfs/shell/shell.c   error:
error             300 src/viewer/datasource.c         goto error;
error             309 src/viewer/datasource.c             goto error;
error             326 src/viewer/datasource.c   error:
error             386 src/viewer/datasource.c     GError *error = NULL;
error             390 src/viewer/datasource.c     p = mc_popen (command, TRUE, TRUE, &error);
error             394 src/viewer/datasource.c         mcview_show_error (view, error->message);
error             395 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              55 tests/lib/mcconfig/config_string.c     GError *error = NULL;
error              57 tests/lib/mcconfig/config_string.c     if (!mc_config_save_file (mc_config, &error))
error              59 tests/lib/mcconfig/config_string.c         ck_abort_msg ("Unable to save config file: %s", error->message);
error              60 tests/lib/mcconfig/config_string.c         g_error_free (error);
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);