encoding          268 lib/charsets.c is_supported_encoding (const char *encoding)
encoding          273 lib/charsets.c     if (encoding == NULL)
encoding          276 lib/charsets.c     coder = str_crt_conv_from (encoding);
encoding           35 lib/charsets.h gboolean is_supported_encoding (const char *encoding);
encoding          227 lib/strutil/strutil.c str_test_encoding_class (const char *encoding, const char *const *table)
encoding          231 lib/strutil/strutil.c     if (encoding != NULL)
encoding          236 lib/strutil/strutil.c             if (g_ascii_strncasecmp (encoding, table[t], strlen (table[t])) == 0)
encoding          428 lib/vfs/interface.c     path_element->dir.converter = (path_element->encoding != NULL)
encoding          429 lib/vfs/interface.c         ? str_crt_conv_from (path_element->encoding)
encoding          357 lib/vfs/path.c         element->encoding = vfs_get_encoding (local, -1);
encoding          359 lib/vfs/path.c             (element->encoding != NULL) ? str_crt_conv_from (element->encoding) : INVALID_CONV;
encoding          380 lib/vfs/path.c         element->encoding = vfs_get_encoding (path, -1);
encoding          382 lib/vfs/path.c             (element->encoding != NULL) ? str_crt_conv_from (element->encoding) : INVALID_CONV;
encoding          444 lib/vfs/path.c                 element->encoding = vfs_get_encoding (slash_pointer, -1);
encoding          452 lib/vfs/path.c             element->encoding = vfs_get_encoding (url_delimiter, -1);
encoding          456 lib/vfs/path.c             (element->encoding != NULL) ? str_crt_conv_from (element->encoding) : INVALID_CONV;
encoding          471 lib/vfs/path.c         element->encoding = vfs_get_encoding (path, -1);
encoding          473 lib/vfs/path.c             (element->encoding != NULL) ? str_crt_conv_from (element->encoding) : INVALID_CONV;
encoding          514 lib/vfs/path.c     if (element->encoding != NULL)
encoding          519 lib/vfs/path.c         g_string_append (ret_tokens, element->encoding);
encoding          634 lib/vfs/path.c                 g_string_append (buffer, element->encoding);
encoding          837 lib/vfs/path.c     new_element->encoding = g_strdup (element->encoding);
encoding          838 lib/vfs/path.c     if (vfs_path_element_need_cleanup_converter (element) && element->encoding != NULL)
encoding          839 lib/vfs/path.c         new_element->dir.converter = str_crt_conv_from (element->encoding);
encoding          867 lib/vfs/path.c     g_free (element->encoding);
encoding         1065 lib/vfs/path.c vfs_path_change_encoding (vfs_path_t *vpath, const char *encoding)
encoding         1071 lib/vfs/path.c     if ((path_element->encoding != NULL) && (strcmp (encoding, path_element->encoding) == 0))
encoding         1074 lib/vfs/path.c     g_free (path_element->encoding);
encoding         1075 lib/vfs/path.c     path_element->encoding = g_strdup (encoding);
encoding         1080 lib/vfs/path.c     path_element->dir.converter = str_crt_conv_from (path_element->encoding);
encoding         1126 lib/vfs/path.c         mc_config_set_string_raw (cpath, groupname, "encoding", element->encoding);
encoding         1193 lib/vfs/path.c         element->encoding = mc_config_get_string_raw (cpath, groupname, "encoding", NULL);
encoding         1195 lib/vfs/path.c             (element->encoding != NULL) ? str_crt_conv_from (element->encoding) : INVALID_CONV;
encoding           42 lib/vfs/path.h     char *encoding;
encoding           82 lib/vfs/path.h vfs_path_t *vfs_path_change_encoding (vfs_path_t *vpath, const char *encoding);
encoding          132 lib/vfs/vfs.c          char encoding[16];
encoding          153 lib/vfs/vfs.c          ms = MIN ((unsigned int) ms, sizeof (encoding) - 1);
encoding          157 lib/vfs/vfs.c          memcpy (encoding, semi, ms);
encoding          158 lib/vfs/vfs.c          encoding[ms] = '\0';
encoding          160 lib/vfs/vfs.c          if (is_supported_encoding (encoding))
encoding          161 lib/vfs/vfs.c              coder = str_crt_conv_to (encoding);
encoding         1162 src/filemanager/panel.c     if (path_element->encoding != NULL)
encoding         1163 src/filemanager/panel.c         ret_str = g_strdup_printf ("[%s]", path_element->encoding);
encoding         4541 src/filemanager/panel.c     if (path_element->encoding != NULL)
encoding         4542 src/filemanager/panel.c         panel->codepage = get_codepage_index (path_element->encoding);
encoding         4935 src/filemanager/panel.c     const char *encoding = NULL;
encoding         4967 src/filemanager/panel.c     encoding = get_codepage_id (panel->codepage);
encoding         4968 src/filemanager/panel.c     if (encoding != NULL)
encoding         4970 src/filemanager/panel.c         vfs_path_change_encoding (panel->cwd_vpath, encoding);
encoding         5001 src/filemanager/panel.c         if (path_element->encoding == NULL)
encoding         5007 src/filemanager/panel.c         converter = str_crt_conv_to (path_element->encoding);
encoding         5014 src/filemanager/panel.c         MC_PTR_FREE (path_element->encoding);
encoding         5415 src/filemanager/panel.c         if (path_element->encoding != NULL)
encoding         5416 src/filemanager/panel.c             panel->codepage = get_codepage_index (path_element->encoding);
encoding           50 tests/lib/vfs/path_recode.c test_init_vfs (const char *encoding)
encoding           52 tests/lib/vfs/path_recode.c     str_init_strings (encoding);
encoding          303 tests/lib/vfs/vfs_path_string_convert.c     mctest_assert_not_null (element->encoding);
encoding           63 tests/src/usermenu__test_condition.c setup_charset (const char *encoding, const gboolean utf8_display)
encoding           65 tests/src/usermenu__test_condition.c     str_init_strings (encoding);
encoding           70 tests/src/usermenu__test_condition.c     cp_source = encoding;
encoding           71 tests/src/usermenu__test_condition.c     cp_display = encoding;
encoding           72 tests/src/usermenu__test_condition.c     mc_global.source_codepage = get_codepage_index (encoding);
encoding           73 tests/src/usermenu__test_condition.c     mc_global.display_codepage = get_codepage_index (encoding);
encoding           91 tests/src/usermenu__test_condition.c     const char *encoding;
encoding          114 tests/src/usermenu__test_condition.c     setup_charset (data->encoding, data->utf8_display);