Lines Matching refs:list
60 struct set list[] = { variable
85 list[0].cp = calloc(1, too_long + 1);
86 fail_unless(list[0].cp, "could not alloc too long value");
87 memset((void *)list[0].cp, 'a', too_long);
89 for(i = 0; list[i].home; i++) {
91 const char *cp = list[i].cp;
92 CURLcode result = Curl_get_pathname(&cp, &path, list[i].home);
94 list[i].cp, list[i].home, list[i].result);
95 if(result != list[i].result) {
100 if(cp && strcmp(cp, list[i].next)) {
102 cp, list[i].next);
105 if(path && strcmp(path, list[i].expect)) {
107 path, list[i].expect);
115 free((void *)list[0].cp);