Lines Matching full:u_strlen
474 readSize = u_strlen(buffer);
476 log_err("Buffer is the wrong size. Got %d Expected %d\n", u_strlen(buffer), expectedSize*repetitions);
519 readSize = u_strlen(buffer);
521 log_err("Buffer is the wrong size. Got %d Expected %d\n", u_strlen(buffer), expectedSize*repetitions);
552 readSize = u_strlen(buffer);
554 log_err("Buffer is the wrong size. Got %d Expected %d\n", u_strlen(buffer), 1);
639 if (buffer[u_strlen(buffer)+1] != 0xBEEF) {
690 u_file_write(testUStr[lineIdx], u_strlen(testUStr[lineIdx]), myFile);
709 if (buffer[u_strlen(buffer)+1] != 0xBEEF) {
768 if (buffer[u_strlen(buffer)+1] != 0xBEEF) {
815 if (u_strlen(returnedUCharBuffer) != ((sizeof(buffer)/sizeof(buffer[0]))-2)) {
817 u_strlen(returnedUCharBuffer), ((sizeof(buffer)/sizeof(buffer[0]))-2));
852 u_file_write(strABAccentA, u_strlen(strABAccentA), myFile);
860 retVal = u_file_read(testBuf, u_strlen(strABAccentA), myFile);
861 if (u_strncmp(strABAccentA, testBuf, u_strlen(strABAccentA)) != 0) {
864 if (retVal != u_strlen(strABAccentA)) {
865 log_err("The test data returned different lengths. Got: %d, Expected %d\n", retVal, u_strlen(strABAccentA));
880 retVal = u_file_read(testBuf, u_strlen(strBadConversion), myFile);
881 if (u_strncmp(strBadConversion, testBuf, u_strlen(strBadConversion)) != 0) {
893 retVal = u_file_read(testBuf + 1, u_strlen(strABAccentA) - 1, myFile);
894 if (u_strncmp(strABAccentA, testBuf, u_strlen(strABAccentA)) != 0) {
897 if ((retVal + 1) != u_strlen(strABAccentA)) {
898 log_err("The test data returned different lengths. Got: %d, Expected %d\n", retVal, u_strlen(strABAccentA));
901 retVal = u_file_read(testBuf, u_strlen(strABAccentA), myFile);
902 if (u_strncmp(strABAccentA, testBuf, u_strlen(strABAccentA)) != 0) {
905 if (retVal != u_strlen(strABAccentA)) {
906 log_err("The test data returned different lengths. Got: %d, Expected %d\n", retVal, u_strlen(strABAccentA));
1314 if (uNumScanned > 0 && uBuffer[u_strlen(uBuffer)+1] != 0x2a) {