Lines Matching refs:dst_buf
51 UChar* dst_buf = NULL; in intl_convert_utf8_to_utf16() local
78 dst_buf = eumalloc( dst_len + 1 ); in intl_convert_utf8_to_utf16()
82 u_strFromUTF8( dst_buf, dst_len+1, NULL, src, src_len, status ); in intl_convert_utf8_to_utf16()
85 efree( dst_buf ); in intl_convert_utf8_to_utf16()
89 dst_buf[dst_len] = 0; in intl_convert_utf8_to_utf16()
94 *target = dst_buf; in intl_convert_utf8_to_utf16()
115 char* dst_buf = NULL; in intl_convert_utf16_to_utf8() local
130 dst_buf = emalloc( dst_len+1 ); in intl_convert_utf16_to_utf8()
134 u_strToUTF8( dst_buf, dst_len, NULL, src, src_len, status ); in intl_convert_utf16_to_utf8()
137 efree( dst_buf ); in intl_convert_utf16_to_utf8()
144 dst_buf[dst_len] = 0; in intl_convert_utf16_to_utf8()
145 *target = dst_buf; in intl_convert_utf16_to_utf8()