conv              359 lib/charsets.c     GIConv conv;
conv              367 lib/charsets.c     conv = str_crt_conv_from (cp_source);
conv              370 lib/charsets.c     str_nconvert (conv, str, len, buff);
conv              371 lib/charsets.c     str_close_conv (conv);
conv              391 lib/charsets.c     GIConv conv;
conv              399 lib/charsets.c     conv = str_crt_conv_to (cp_source);
conv              402 lib/charsets.c     str_nconvert (conv, str, len, buff);
conv              403 lib/charsets.c     str_close_conv (conv);
conv              414 lib/charsets.c     GIConv conv;
conv              421 lib/charsets.c     conv = str_crt_conv_to (cp_to);
conv              423 lib/charsets.c     if (conv != INVALID_CONV)
conv              425 lib/charsets.c         switch (str_translate_char (conv, str, -1, (char *) buf_ch, sizeof (buf_ch)))
conv              437 lib/charsets.c         str_close_conv (conv);
conv              446 lib/charsets.c convert_from_utf_to_current_c (int input_char, GIConv conv)
conv              459 lib/charsets.c     switch (str_translate_char (conv, (char *) str, -1, (char *) buf_ch, sizeof (buf_ch)))
conv              478 lib/charsets.c convert_from_8bit_to_utf_c (char input_char, GIConv conv)
conv              487 lib/charsets.c     switch (str_translate_char (conv, (char *) str, -1, (char *) buf_ch, sizeof (buf_ch)))
conv              513 lib/charsets.c     GIConv conv;
conv              518 lib/charsets.c     conv = str_crt_conv_to (cp_from);
conv              519 lib/charsets.c     if (conv != INVALID_CONV)
conv              521 lib/charsets.c         ch = convert_from_8bit_to_utf_c (input_char, conv);
conv              522 lib/charsets.c         str_close_conv (conv);
conv               53 lib/charsets.h unsigned char convert_from_utf_to_current_c (int input_char, GIConv conv);
conv               60 lib/charsets.h int convert_from_8bit_to_utf_c (char input_char, GIConv conv);
conv               92 lib/mcconfig/get.c     GIConv conv;
conv              102 lib/mcconfig/get.c     conv = str_crt_conv_from ("UTF-8");
conv              103 lib/mcconfig/get.c     if (conv == INVALID_CONV)
conv              107 lib/mcconfig/get.c     conv_res = str_convert (conv, ret, buffer);
conv              108 lib/mcconfig/get.c     str_close_conv (conv);
conv              134 lib/mcconfig/history.c     GIConv conv = INVALID_CONV;
conv              147 lib/mcconfig/history.c         conv = str_crt_conv_from ("UTF-8");
conv              162 lib/mcconfig/history.c         if (conv == INVALID_CONV)
conv              167 lib/mcconfig/history.c             if (str_convert (conv, this_entry, buffer) == ESTR_FAILURE)
conv              178 lib/mcconfig/history.c     if (conv != INVALID_CONV)
conv              179 lib/mcconfig/history.c         str_close_conv (conv);
conv              193 lib/mcconfig/history.c     GIConv conv = INVALID_CONV;
conv              212 lib/mcconfig/history.c         conv = str_crt_conv_to ("UTF-8");
conv              228 lib/mcconfig/history.c         if (conv == INVALID_CONV)
conv              233 lib/mcconfig/history.c             if (str_convert (conv, text, buffer) == ESTR_FAILURE)
conv              241 lib/mcconfig/history.c     if (conv != INVALID_CONV)
conv              242 lib/mcconfig/history.c         str_close_conv (conv);
conv               47 lib/mcconfig/set.c     GIConv conv;
conv               54 lib/mcconfig/set.c     conv = str_crt_conv_to ("UTF-8");
conv               55 lib/mcconfig/set.c     if (conv == INVALID_CONV)
conv               60 lib/mcconfig/set.c     ok = (str_convert (conv, value, buffer) != ESTR_FAILURE);
conv               61 lib/mcconfig/set.c     str_close_conv (conv);
conv              125 lib/search/lib.c         GIConv conv;
conv              127 lib/search/lib.c         conv = g_iconv_open (charset_to, charset_from);
conv              128 lib/search/lib.c         if (conv != INVALID_CONV)
conv              134 lib/search/lib.c             val = g_convert_with_iconv (str, str_len, conv, &bytes_read, &bytes_written, NULL);
conv              136 lib/search/lib.c             g_iconv_close (conv);
conv              184 lib/strutil.h  void str_close_conv (GIConv conv);
conv              244 lib/strutil.h  estr_t str_translate_char (GIConv conv, const char *ch, size_t ch_size,
conv              282 lib/strutil/strutil.c str_close_conv (GIConv conv)
conv              284 lib/strutil/strutil.c     if (conv != str_cnv_not_convert)
conv              285 lib/strutil/strutil.c         g_iconv_close (conv);
conv              358 lib/strutil/strutil.c str_translate_char (GIConv conv, const char *keys, size_t ch_size, char *output, size_t out_size)
conv              363 lib/strutil/strutil.c     g_iconv (conv, NULL, NULL, NULL, NULL);
conv              367 lib/strutil/strutil.c     cnv = g_iconv (conv, (gchar **) & keys, &left, &output, &out_size);
conv              244 lib/strutil/strutil8bit.c     GIConv conv;
conv              248 lib/strutil/strutil8bit.c     conv = str_crt_conv_from ("UTF-8");
conv              250 lib/strutil/strutil8bit.c     if (conv == INVALID_CONV)
conv              258 lib/strutil/strutil8bit.c         if (str_convert (conv, mcerror->message, buf) != ESTR_FAILURE)
conv              266 lib/strutil/strutil8bit.c         str_close_conv (conv);
conv              296 lib/tty/tty.c      GIConv conv;
conv              303 lib/tty/tty.c      conv = g_iconv_open (_system_codepage, "UTF-8");
conv              304 lib/tty/tty.c      if (conv == INVALID_CONV)
conv              309 lib/tty/tty.c      if (str_convert (conv, str, buffer) == ESTR_FAILURE)
conv              312 lib/tty/tty.c          str_close_conv (conv);
conv              315 lib/tty/tty.c      str_close_conv (conv);
conv              424 src/args.c         GIConv conv;
conv              428 src/args.c         conv = g_iconv_open (charset, "UTF-8");
conv              431 src/args.c         str_convert (conv, full_help_str, buffer);
conv              434 src/args.c         g_iconv_close (conv);
conv             2256 src/diffviewer/ydiff.c         GIConv conv;
conv             2258 src/diffviewer/ydiff.c         conv = str_crt_conv_from (encoding_id);
conv             2259 src/diffviewer/ydiff.c         if (conv != INVALID_CONV)
conv             2263 src/diffviewer/ydiff.c             dview->converter = conv;
conv             2314 src/editor/edit.c         GIConv conv;
conv             2315 src/editor/edit.c         conv = str_crt_conv_from (cp_id);
conv             2316 src/editor/edit.c         if (conv != INVALID_CONV)
conv             2320 src/editor/edit.c             edit->converter = conv;
conv             1659 src/filemanager/filemanager.c     GIConv conv;
conv             1695 src/filemanager/filemanager.c     conv = str_crt_conv_from ("UTF-8");
conv             1696 src/filemanager/filemanager.c     if (conv == INVALID_CONV)
conv             1704 src/filemanager/filemanager.c         nok = (str_convert (conv, data + start, buffer) == ESTR_FAILURE);
conv             1706 src/filemanager/filemanager.c         str_close_conv (conv);
conv              516 src/filemanager/panelize.c         GIConv conv;
conv              519 src/filemanager/panelize.c         conv = str_crt_conv_from ("UTF-8");
conv              525 src/filemanager/panelize.c             if (mc_global.utf8_display || conv == INVALID_CONV)
conv              530 src/filemanager/panelize.c                 if (str_convert (conv, *profile_keys, buffer) == ESTR_FAILURE)
conv              539 src/filemanager/panelize.c         str_close_conv (conv);
conv              951 src/help.c         GIConv conv;
conv              953 src/help.c         conv = str_crt_conv_from ("UTF-8");
conv              954 src/help.c         if (conv != INVALID_CONV)
conv              963 src/help.c             nok = (str_convert (conv, filedata, translated_data) == ESTR_FAILURE);
conv              966 src/help.c             str_close_conv (conv);
conv              274 src/viewer/lib.c         GIConv conv;
conv              275 src/viewer/lib.c         conv = str_crt_conv_from (cp_id);
conv              276 src/viewer/lib.c         if (conv != INVALID_CONV)
conv              280 src/viewer/lib.c             view->converter = conv;