Lines Matching refs:output_cp_buffer
293 char* output_cp_buffer; /* [MAX_FILE_LEN] */ in TestConvert() local
383 output_cp_buffer = (char*) malloc(MAX_FILE_LEN * sizeof(output_cp_buffer[0])); in TestConvert()
920 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert()
935 output_cp_buffer, in TestConvert()
936 strlen(output_cp_buffer), in TestConvert()
947 output_cp_buffer, in TestConvert()
948 strlen(output_cp_buffer), in TestConvert()
966 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert()
972 targetcapacity = ucnv_fromUChars(NULL, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert()
978 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, 0, &err); in TestConvert()
983 targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, 0, uchar1, -1, &err); in TestConvert()
988 …etsize = ucnv_toUChars(myConverter, uchar2, targetsize, output_cp_buffer, strlen(output_cp_buffer)… in TestConvert()
993 …targetsize = ucnv_toUChars(myConverter, uchar2, -1, output_cp_buffer, strlen(output_cp_buffer), &e… in TestConvert()
998 targetsize = ucnv_toUChars(myConverter, uchar2, 0, output_cp_buffer, 0, &err); in TestConvert()
1003 …ze = ucnv_toUChars(myConverter, NULL, targetcapacity2, output_cp_buffer, strlen(output_cp_buffer)… in TestConvert()
1085 free((void*)output_cp_buffer); in TestConvert()