Lines Matching defs:result
31 wchar_t *result = wcpncpy(dst, src, src_len + 1);
32 if (wcscmp(result, dst + src_len) != 0) {
33 t_error("%s wcpncpy get result is %ls are not want %ls\n", __func__, result, dst + src_len);
42 * @tc.desc : Test the result of the wcpncpy method when the incoming length is less than the copied wide string
50 wchar_t *result = wcpncpy(dst, src, 2);
51 if (wcscmp(result, dst + 2) != 0) {
52 t_error("%s wcpncpy get result is %ls are not want %ls\n", __func__, result, dst + 2);
61 * @tc.desc : Test the result of the wcpncpy method when the incoming length is greater than the copied wide string
69 wchar_t *result = wcpncpy(dst, src, 17);
70 if (wcscmp(result, dst + src_len) != 0) {
71 t_error("%s wcpncpy get result is %ls are not want %ls\n", __func__, result, dst + src_len);