Searched refs:dstLen (Results 1 - 7 of 7) sorted by relevance

/haiku/src/kits/textencoding/
H A Dutf8_conversions.cpp79 int32* srcLen, char* dst, int32* dstLen, int32* state,
84 *dstLen = 0;
95 size_t outputLeft = *dstLen;
162 *dstLen -= outputLeft;
171 char* dst, int32* dstLen, int32* state, char substitute)
187 dst, dstLen, state, substitute);
193 char* dst, int32* dstLen, int32* state, char substitute)
209 dst, dstLen, state, substitute);
78 convert_encoding(const char* from, const char* to, const char* src, int32* srcLen, char* dst, int32* dstLen, int32* state, char substitute) argument
170 convert_to_utf8(uint32 srcEncoding, const char* src, int32* srcLen, char* dst, int32* dstLen, int32* state, char substitute) argument
192 convert_from_utf8(uint32 dstEncoding, const char* src, int32* srcLen, char* dst, int32* dstLen, int32* state, char substitute) argument
/haiku/src/kits/mail/
H A Dmail_util.cpp212 char *dst, int32 *dstLen, int32 *state, char substitute)
220 if (*dstLen < copyAmount)
221 copyAmount = *dstLen;
224 *dstLen = copyAmount;
230 if (*dstLen < copyAmount)
231 copyAmount = *dstLen;
244 *dstLen = copyAmount;
248 dst, dstLen, state, substitute);
260 for (i = 0; i < *dstLen; i++)
270 char *dst, int32 *dstLen, int3
211 mail_convert_to_utf8(uint32 srcEncoding, const char *src, int32 *srcLen, char *dst, int32 *dstLen, int32 *state, char substitute) argument
269 mail_convert_from_utf8(uint32 dstEncoding, const char *src, int32 *srcLen, char *dst, int32 *dstLen, int32 *state, char substitute) argument
475 int32 dstLen = end-string + *bufLen-strLen; local
[all...]
/haiku/headers/private/mail/
H A Dmail_util.h35 int32 *srcLen, char *dst, int32 *dstLen, int32 *state,
39 int32 *srcLen, char *dst, int32 *dstLen, int32 *state,
/haiku/src/apps/text_search/
H A DGrepper.cpp48 int32 dstLen = 2 * srcLen; local
53 char* dst = new (nothrow) char[dstLen + 1];
57 convert_to_utf8(encode, src, &srcLen, dst, &dstLen, &cookie);
58 dst[dstLen] = '\0';
63 ") dst allocate smalled(%" B_PRId32 ")\n", encode, length, dstLen);
73 int32 dstLen = srcLen; local
74 char* dst = new (nothrow) char[dstLen + 1];
78 convert_from_utf8(encode, src, &srcLen, dst, &dstLen, &cookie);
80 dst[dstLen] = '\0';
85 ") dst allocate smalled(%" B_PRId32 ")\n", encode, length, dstLen);
[all...]
/haiku/src/apps/terminal/
H A DTermParse.cpp408 int32 dstLen = sizeof(dstbuf); local
464 dstbuf, &dstLen, &dummyState, '?');
466 fBuffer->InsertChar(UTF8Char(dstbuf, dstLen));
492 dstbuf, &dstLen, &dummyState, '?');
493 fBuffer->InsertChar(UTF8Char(dstbuf, dstLen));
502 dstbuf, &dstLen, &dummyState, '?');
503 fBuffer->InsertChar(UTF8Char(dstbuf, dstLen));
/haiku/src/add-ons/kernel/file_systems/iso9660/
H A Diso9660.cpp40 int32 *dstLen);
95 unicode_to_utf8(const char *src, int32 *srcLen, char *dst, int32 *dstLen) argument
98 int32 dstLimit = *dstLen;
121 *dstLen = dstCount;
/haiku/src/add-ons/kernel/file_systems/fat/
H A Dencodings.cpp934 int32 *dstLen)
937 int32 dstLimit = *dstLen;
960 *dstLen = dstCount;
971 int32 *dstLen)
974 int32 dstLimit = *dstLen - 1;
999 *dstLen = dstCount;
1011 int32 *dstLen)
1014 int32 dstLimit = *dstLen;
1038 *dstLen = dstCount;
1049 int32 *dstLen)
930 _lendian_unicode_to_utf8( const char *src, int32 *srcLen, char *dst, int32 *dstLen) argument
967 _utf8_to_lendian_unicode( const char *src, int32 *srcLen, char *dst, int32 *dstLen) argument
1006 _one_to_utf8( const uint16 *table, const char *src, int32 *srcLen, char *dst, int32 *dstLen) argument
1045 _utf8_to_sjis_bendian( const char *src, int32 *srcLen, char *dst, int32 *dstLen) argument
[all...]

Completed in 144 milliseconds