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             104 lib/strutil/strutil.c _str_convert (GIConv coder, const char *string, int size, GString * buffer)
coder             113 lib/strutil/strutil.c     if (coder == INVALID_CONV)
coder             135 lib/strutil/strutil.c     g_iconv (coder, NULL, NULL, NULL, NULL);
coder             143 lib/strutil/strutil.c                                          left, coder, &bytes_read, &bytes_written, &mcerror);
coder             166 lib/strutil/strutil.c                                                      bytes_read, coder, NULL, NULL, NULL);
coder             291 lib/strutil/strutil.c str_convert (GIConv coder, const char *string, GString * buffer)
coder             293 lib/strutil/strutil.c     return _str_convert (coder, string, -1, buffer);
coder             299 lib/strutil/strutil.c str_nconvert (GIConv coder, const char *string, int size, GString * buffer)
coder             301 lib/strutil/strutil.c     return _str_convert (coder, string, size, buffer);
coder             315 lib/strutil/strutil.c str_vfs_convert_from (GIConv coder, const char *string, GString * buffer)
coder             319 lib/strutil/strutil.c     if (coder == str_cnv_not_convert)
coder             322 lib/strutil/strutil.c         result = _str_convert (coder, string, -1, buffer);
coder             330 lib/strutil/strutil.c str_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer)
coder             332 lib/strutil/strutil.c     return used_class.vfs_convert_to (coder, string, size, buffer);
coder             275 lib/strutil/strutil8bit.c str_8bit_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer)
coder             279 lib/strutil/strutil8bit.c     if (coder == str_cnv_not_convert)
coder             282 lib/strutil/strutil8bit.c         result = str_nconvert (coder, string, size, buffer);
coder             227 lib/strutil/strutilascii.c str_ascii_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer)
coder             229 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);