coder             270 lib/charsets.c     GIConv coder;
coder             276 lib/charsets.c     coder = str_crt_conv_from (encoding);
coder             277 lib/charsets.c     result = coder != INVALID_CONV;
coder             279 lib/charsets.c         str_close_conv (coder);
coder             108 lib/strutil.h        /*I*/ estr_t (*vfs_convert_to) (GIConv coder, const char *string, int size, GString * buffer);
coder             194 lib/strutil.h  estr_t str_convert (GIConv coder, const char *string, GString * buffer);
coder             195 lib/strutil.h  estr_t str_nconvert (GIConv coder, const char *string, int size, GString * buffer);
coder             209 lib/strutil.h  estr_t str_vfs_convert_from (GIConv coder, const char *string, GString * buffer);
coder             215 lib/strutil.h  estr_t str_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer);
coder             102 lib/strutil/strutil.c _str_convert (GIConv coder, const char *string, int size, GString *buffer)
coder             111 lib/strutil/strutil.c     if (coder == INVALID_CONV)
coder             133 lib/strutil/strutil.c     g_iconv (coder, NULL, NULL, NULL, NULL);
coder             141 lib/strutil/strutil.c                                          left, coder, &bytes_read, &bytes_written, &mcerror);
coder             162 lib/strutil/strutil.c                                                      bytes_read, coder, NULL, NULL, NULL);
coder             282 lib/strutil/strutil.c str_convert (GIConv coder, const char *string, GString *buffer)
coder             284 lib/strutil/strutil.c     return _str_convert (coder, string, -1, buffer);
coder             290 lib/strutil/strutil.c str_nconvert (GIConv coder, const char *string, int size, GString *buffer)
coder             292 lib/strutil/strutil.c     return _str_convert (coder, string, size, buffer);
coder             306 lib/strutil/strutil.c str_vfs_convert_from (GIConv coder, const char *string, GString *buffer)
coder             310 lib/strutil/strutil.c     if (coder == str_cnv_not_convert)
coder             313 lib/strutil/strutil.c         result = _str_convert (coder, string, -1, buffer);
coder             321 lib/strutil/strutil.c str_vfs_convert_to (GIConv coder, const char *string, int size, GString *buffer)
coder             323 lib/strutil/strutil.c     return used_class.vfs_convert_to (coder, string, size, buffer);
coder             279 lib/strutil/strutil8bit.c str_8bit_vfs_convert_to (GIConv coder, const char *string, int size, GString *buffer)
coder             283 lib/strutil/strutil8bit.c     if (coder == str_cnv_not_convert)
coder             286 lib/strutil/strutil8bit.c         result = str_nconvert (coder, string, size, buffer);
coder             231 lib/strutil/strutilascii.c str_ascii_vfs_convert_to (GIConv coder, const char *string, int size, GString *buffer)
coder             233 lib/strutil/strutilascii.c     (void) coder;
coder             426 lib/strutil/strutilutf8.c str_utf8_vfs_convert_to (GIConv coder, const char *string, int size, GString *buffer)
coder             430 lib/strutil/strutilutf8.c     if (coder == str_cnv_not_convert)
coder             433 lib/strutil/strutilutf8.c         result = str_nconvert (coder, string, size, buffer);
coder             138 lib/vfs/vfs.c          GIConv coder = INVALID_CONV;
coder             165 lib/vfs/vfs.c              coder = str_crt_conv_to (encoding);
coder             167 lib/vfs/vfs.c          if (coder != INVALID_CONV)
coder             170 lib/vfs/vfs.c                  state = str_vfs_convert_to (coder, slash + 1, path + size - slash - 1, buffer);
coder             171 lib/vfs/vfs.c              str_close_conv (coder);