Lines Matching full:destination
297 strcpy(x, y); // expected-warning{{String copy function overflows destination buffer}}
336 stpcpy(x, y); // expected-warning{{String copy function overflows destination buffer}}
391 strcat(x, y); // expected-warning{{String copy function overflows destination buffer}}
397 strcat(x, y); // expected-warning{{String copy function overflows destination buffer}}
403 strcat(x, y); // expected-warning{{String copy function overflows destination buffer}}
484 strncpy(x, y, 5); // expected-warning{{Size argument is greater than the length of the destination buffer}}
490 strncpy(x, y, 5); // expected-warning{{Size argument is greater than the length of the destination buffer}}
499 strncpy(x, y, n); // expected-warning{{Size argument is greater than the length of the destination buffer}}
580 strncat(x, y, strlen(y)); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
586 strncat(x, y, strlen(y)); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
592 strncat(x, y, strlen(y)); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
598 strncat(x, y, 2); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
623 strncat(dst2, src, 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
632 strncat(dst2, &src[offset], 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}}