Lines Matching full:untrusted
114 system(addr); // expected-warning {{Untrusted data is passed to a system call}}
118 system(buffer); // expected-warning {{Untrusted data is passed to a system call}}
127 system(buffern); // expected-warning {{Untrusted data is passed to a system call}}
136 system(buffern2); // expected-warning {{Untrusted data is passed to a system call}}
143 int *buf1 = (int*)malloc(ts*sizeof(int)); // expected-warning {{Untrusted data is used to specify the buffer size}}
144 char *dst = (char*)calloc(ts, sizeof(char)); //expected-warning {{Untrusted data is used to specify the buffer size}}
145 bcopy(buf1, dst, ts); // expected-warning {{Untrusted data is used to specify the buffer size}}
146 __builtin_memcpy(dst, buf1, (ts + 4)*sizeof(char)); // expected-warning {{Untrusted data is used to specify the buffer size}}
149 char *dst2 = (char*)malloc(ts*sizeof(char)); // expected-warning {{Untrusted data is used to specify the buffer size}}
167 execl(buffer, "filename", 0); // expected-warning {{Untrusted data is passed to a system call}}