Home | History | Annotate | Download | only in iotest

Lines Matching refs:retVal

30     int32_t retVal;
204 retVal = u_sprintf(uStringBuf, longStr);
209 if (retVal != (int32_t)strlen(longStr)) {
210 log_err("%%S returned different sizes. Got: %d Expected: %d\n", retVal, strlen(longStr));
213 retVal = u_sprintf(uStringBuf, "%s", longStr);
218 if (retVal != (int32_t)strlen(longStr)) {
219 log_err("%%S returned different sizes. Got: %d Expected: %d\n", retVal, strlen(longStr));
229 retVal = u_sprintf_u(uStringBuf, myUString+10);
233 if (retVal != (int32_t)strlen(longStr + 10)) {
234 log_err("%%S returned different sizes. Got: %d Expected: %d\n", retVal, strlen(longStr));
239 retVal = u_snprintf_u(uStringBuf, 10, myUString);
240 if (u_strncmp(myUString, uStringBuf, 10) || uStringBuf[10] != 1 || retVal != 10) {