Searched refs:charset (Results 1 - 25 of 470) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/flac/src/share/utf8/
H A Dcharset.h33 * charset, then uses the mbtowc() and wctomb() methods on it.
44 struct charset;
46 struct charset *charset_find(const char *code);
48 int charset_mbtowc(struct charset *charset, int *pwc, const char *s, size_t n);
49 int charset_wctomb(struct charset *charset, char *s, int wc);
50 int charset_max(struct charset *charset);
H A Dcharset_test.c26 #include "charset.h"
28 void test_any(struct charset *charset) argument
33 assert(charset);
37 assert(charset_mbtowc(charset, 0, 0, 0) == 0);
38 assert(charset_mbtowc(charset, 0, 0, 1) == 0);
39 assert(charset_mbtowc(charset, 0, (char *)(-1), 0) == 0);
41 assert(charset_mbtowc(charset, 0, "a", 0) == 0);
42 assert(charset_mbtowc(charset, 0, "", 1) == 0);
43 assert(charset_mbtowc(charset,
67 struct charset *charset; local
151 struct charset *charset; local
173 struct charset *charset; local
193 struct charset *charset; local
[all...]
H A Dcharset.c39 #include "charset.h"
180 * The charset "object" and methods.
183 struct charset { struct
190 int charset_mbtowc(struct charset *charset, int *pwc, const char *s, size_t n) argument
192 return (*charset->mbtowc)(charset->map, pwc, s, n);
195 int charset_wctomb(struct charset *charset, char *s, int wc) argument
197 return (*charset
200 charset_max(struct charset *charset) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/flac/src/share/utf8/
H A Dcharset.h33 * charset, then uses the mbtowc() and wctomb() methods on it.
44 struct charset;
46 struct charset *charset_find(const char *code);
48 int charset_mbtowc(struct charset *charset, int *pwc, const char *s, size_t n);
49 int charset_wctomb(struct charset *charset, char *s, int wc);
50 int charset_max(struct charset *charset);
H A Dcharset_test.c26 #include "charset.h"
28 void test_any(struct charset *charset) argument
33 assert(charset);
37 assert(charset_mbtowc(charset, 0, 0, 0) == 0);
38 assert(charset_mbtowc(charset, 0, 0, 1) == 0);
39 assert(charset_mbtowc(charset, 0, (char *)(-1), 0) == 0);
41 assert(charset_mbtowc(charset, 0, "a", 0) == 0);
42 assert(charset_mbtowc(charset, 0, "", 1) == 0);
43 assert(charset_mbtowc(charset,
67 struct charset *charset; local
151 struct charset *charset; local
173 struct charset *charset; local
193 struct charset *charset; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/flac/src/share/utf8/
H A Dcharset.h33 * charset, then uses the mbtowc() and wctomb() methods on it.
44 struct charset;
46 struct charset *charset_find(const char *code);
48 int charset_mbtowc(struct charset *charset, int *pwc, const char *s, size_t n);
49 int charset_wctomb(struct charset *charset, char *s, int wc);
50 int charset_max(struct charset *charset);
H A Dcharset_test.c26 #include "charset.h"
28 void test_any(struct charset *charset) argument
33 assert(charset);
37 assert(charset_mbtowc(charset, 0, 0, 0) == 0);
38 assert(charset_mbtowc(charset, 0, 0, 1) == 0);
39 assert(charset_mbtowc(charset, 0, (char *)(-1), 0) == 0);
41 assert(charset_mbtowc(charset, 0, "a", 0) == 0);
42 assert(charset_mbtowc(charset, 0, "", 1) == 0);
43 assert(charset_mbtowc(charset,
67 struct charset *charset; local
151 struct charset *charset; local
173 struct charset *charset; local
193 struct charset *charset; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/expat-2.0.1/xmlwf/
H A Dxmlmime.h5 /* Registered charset names are at most 40 characters long. */
9 /* Figure out the charset to use from the ContentType.
11 charset gets the charset to use. It must be at least CHARSET_MAX chars
12 long. charset will be empty if the default charset should be used.
15 void getXMLCharset(const char *buf, char *charset);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/expat-2.0.1/xmlwf/
H A Dxmlmime.h5 /* Registered charset names are at most 40 characters long. */
9 /* Figure out the charset to use from the ContentType.
11 charset gets the charset to use. It must be at least CHARSET_MAX chars
12 long. charset will be empty if the default charset should be used.
15 void getXMLCharset(const char *buf, char *charset);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/expat-2.0.1/xmlwf/
H A Dxmlmime.h5 /* Registered charset names are at most 40 characters long. */
9 /* Figure out the charset to use from the ContentType.
11 charset gets the charset to use. It must be at least CHARSET_MAX chars
12 long. charset will be empty if the default charset should be used.
15 void getXMLCharset(const char *buf, char *charset);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/curl-7.21.7/lib/
H A Dcurl_fnmatch.c71 static int parsekeyword(unsigned char **pattern, unsigned char *charset) argument
103 charset[CURLFNM_DIGIT] = 1;
105 charset[CURLFNM_ALNUM] = 1;
107 charset[CURLFNM_ALPHA] = 1;
109 charset[CURLFNM_XDIGIT] = 1;
111 charset[CURLFNM_PRINT] = 1;
113 charset[CURLFNM_GRAPH] = 1;
115 charset[CURLFNM_SPACE] = 1;
117 charset[CURLFNM_BLANK] = 1;
119 charset[CURLFNM_UPPE
128 setcharset(unsigned char **p, unsigned char *charset) argument
317 unsigned char charset[CURLFNM_CHSET_SIZE] = { 0 }; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/curl-7.21.7/lib/
H A Dcurl_fnmatch.c71 static int parsekeyword(unsigned char **pattern, unsigned char *charset) argument
103 charset[CURLFNM_DIGIT] = 1;
105 charset[CURLFNM_ALNUM] = 1;
107 charset[CURLFNM_ALPHA] = 1;
109 charset[CURLFNM_XDIGIT] = 1;
111 charset[CURLFNM_PRINT] = 1;
113 charset[CURLFNM_GRAPH] = 1;
115 charset[CURLFNM_SPACE] = 1;
117 charset[CURLFNM_BLANK] = 1;
119 charset[CURLFNM_UPPE
128 setcharset(unsigned char **p, unsigned char *charset) argument
317 unsigned char charset[CURLFNM_CHSET_SIZE] = { 0 }; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/curl-7.21.7/lib/
H A Dcurl_fnmatch.c71 static int parsekeyword(unsigned char **pattern, unsigned char *charset) argument
103 charset[CURLFNM_DIGIT] = 1;
105 charset[CURLFNM_ALNUM] = 1;
107 charset[CURLFNM_ALPHA] = 1;
109 charset[CURLFNM_XDIGIT] = 1;
111 charset[CURLFNM_PRINT] = 1;
113 charset[CURLFNM_GRAPH] = 1;
115 charset[CURLFNM_SPACE] = 1;
117 charset[CURLFNM_BLANK] = 1;
119 charset[CURLFNM_UPPE
128 setcharset(unsigned char **p, unsigned char *charset) argument
317 unsigned char charset[CURLFNM_CHSET_SIZE] = { 0 }; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/lighttpd-1.4.39/src/
H A Dbase64.h11 unsigned char* buffer_append_base64_decode(buffer *out, const char* in, size_t in_length, base64_charset charset);
13 size_t li_to_base64_no_padding(char* out, size_t out_length, const unsigned char* in, size_t in_length, base64_charset charset);
14 size_t li_to_base64(char* out, size_t out_length, const unsigned char* in, size_t in_length, base64_charset charset);
16 char* buffer_append_base64_encode_no_padding(buffer *out, const unsigned char* in, size_t in_length, base64_charset charset);
17 char* buffer_append_base64_encode(buffer *out, const unsigned char* in, size_t in_length, base64_charset charset);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/lighttpd-1.4.39/src/
H A Dbase64.h11 unsigned char* buffer_append_base64_decode(buffer *out, const char* in, size_t in_length, base64_charset charset);
13 size_t li_to_base64_no_padding(char* out, size_t out_length, const unsigned char* in, size_t in_length, base64_charset charset);
14 size_t li_to_base64(char* out, size_t out_length, const unsigned char* in, size_t in_length, base64_charset charset);
16 char* buffer_append_base64_encode_no_padding(buffer *out, const unsigned char* in, size_t in_length, base64_charset charset);
17 char* buffer_append_base64_encode(buffer *out, const unsigned char* in, size_t in_length, base64_charset charset);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/lighttpd-1.4.39/src/
H A Dbase64.h11 unsigned char* buffer_append_base64_decode(buffer *out, const char* in, size_t in_length, base64_charset charset);
13 size_t li_to_base64_no_padding(char* out, size_t out_length, const unsigned char* in, size_t in_length, base64_charset charset);
14 size_t li_to_base64(char* out, size_t out_length, const unsigned char* in, size_t in_length, base64_charset charset);
16 char* buffer_append_base64_encode_no_padding(buffer *out, const unsigned char* in, size_t in_length, base64_charset charset);
17 char* buffer_append_base64_encode(buffer *out, const unsigned char* in, size_t in_length, base64_charset charset);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/libiconv-1.14/tests/
H A Dcheck-stateful5 charset="$2"
8 # charset, modified for use in filenames.
9 charsetf=`echo "$charset" | sed -e 's,:,-,g'`
11 ../src/iconv_no_i18n -f "$charset" -t UTF-8 < "${srcdir}"/"$charsetf"-snippet > tmp-snippet
13 ../src/iconv_no_i18n -f UTF-8 -t "$charset" < "${srcdir}"/"$charsetf"-snippet.UTF-8 > tmp-snippet
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/libiconv-1.14/tests/
H A Dcheck-stateful5 charset="$2"
8 # charset, modified for use in filenames.
9 charsetf=`echo "$charset" | sed -e 's,:,-,g'`
11 ../src/iconv_no_i18n -f "$charset" -t UTF-8 < "${srcdir}"/"$charsetf"-snippet > tmp-snippet
13 ../src/iconv_no_i18n -f UTF-8 -t "$charset" < "${srcdir}"/"$charsetf"-snippet.UTF-8 > tmp-snippet
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/libiconv-1.14/tests/
H A Dcheck-stateful5 charset="$2"
8 # charset, modified for use in filenames.
9 charsetf=`echo "$charset" | sed -e 's,:,-,g'`
11 ../src/iconv_no_i18n -f "$charset" -t UTF-8 < "${srcdir}"/"$charsetf"-snippet > tmp-snippet
13 ../src/iconv_no_i18n -f UTF-8 -t "$charset" < "${srcdir}"/"$charsetf"-snippet.UTF-8 > tmp-snippet
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/quagga/tests/
H A Dprng.h34 const char *charset,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/quagga/tests/
H A Dprng.h34 const char *charset,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/quagga/tests/
H A Dprng.h34 const char *charset,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/wget/src/
H A Diri.c48 /* Given a string containing "charset=XXX", return the encoding if found,
53 char *charset; local
58 str = strcasestr (str, "charset=");
63 charset = str;
66 while (*charset && !c_isspace (*charset))
67 charset++;
70 charset = strdupdelim (str, charset);
72 /* Do a minimum check on the charset valu
339 set_uri_encoding(struct iri *i, char *charset, bool force) argument
356 set_content_encoding(struct iri *i, char *charset) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/wget/src/
H A Diri.c48 /* Given a string containing "charset=XXX", return the encoding if found,
53 char *charset; local
58 str = strcasestr (str, "charset=");
63 charset = str;
66 while (*charset && !c_isspace (*charset))
67 charset++;
70 charset = strdupdelim (str, charset);
72 /* Do a minimum check on the charset valu
339 set_uri_encoding(struct iri *i, char *charset, bool force) argument
356 set_content_encoding(struct iri *i, char *charset) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/wget/src/
H A Diri.c48 /* Given a string containing "charset=XXX", return the encoding if found,
53 char *charset; local
58 str = strcasestr (str, "charset=");
63 charset = str;
66 while (*charset && !c_isspace (*charset))
67 charset++;
70 charset = strdupdelim (str, charset);
72 /* Do a minimum check on the charset valu
339 set_uri_encoding(struct iri *i, char *charset, bool force) argument
356 set_content_encoding(struct iri *i, char *charset) argument
[all...]

Completed in 278 milliseconds

1234567891011>>