Lines Matching +defs:list +defs:string
101 // Define string functions. Use builtin for some of them. They all default to
278 // expected-warning@-1 {{'snprintf' will always be truncated; specified size is 10, but format string expands to at least 24}}
645 int getgroups(int size, gid_t list[]);
646 int testGetgroups(int size, gid_t list[], bool flag) {
647 int result = getgroups(size, list);
649 return 1 / list[0]; // expected-warning {{Division by a tainted value, possibly zero}}
747 int fnmatch(const char *pattern, const char *string, int flags);
749 char string[10];
750 scanf("%9s", string);
752 int result = fnmatch(pattern, string, flags);