Home | History | Annotate | Download | only in src

Lines Matching refs:found

162   /* Make sure the message catalog can be found.  */
441 not_found (int argc, char *argv[argc], bool found[argc])
444 if (!found[i])
470 bool found[argc];
471 memset (found, '\0', sizeof (found));
549 && !found[(char **) res->data - argv])
550 found[(char **) res->data - argv] = do_extract = true;
839 not_found (argc, argv, found);
928 bool *found = alloca (sizeof (bool) * argc);
929 memset (found, '\0', sizeof (found));
971 && !found[(char **) res->data - argv])
972 found[(char **) res->data - argv] = do_delete = true;
1089 not_found (argc, argv, found);
1116 struct armem **found = alloca (sizeof (*found) * argc);
1117 memset (found, '\0', sizeof (*found) * argc);
1193 if (res != NULL && found[(char **) res->data - argv] == NULL)
1195 found[(char **) res->data - argv] = newp;
1231 error (EXIT_FAILURE, 0, gettext ("position member %s not found"),
1236 /* Make sure all requested elements are found in the archive. */
1239 if (found[cnt] == NULL)
1257 if (found[cnt] == NULL)
1259 found[cnt] = alloca (sizeof (struct armem));
1260 found[cnt]->old_off = -1;
1262 remember_long_name (found[cnt], bname, bnamelen);
1286 && found[cnt]->old_off != -1l
1287 && found[cnt]->sec > st.st_mtime)
1302 found[cnt]->old_off == -1l ? 'a' : 'r', argv[cnt]);
1304 found[cnt]->elf = newelf;
1305 found[cnt]->sec = arlib_deterministic_output ? 0 : newst.st_mtime;
1306 found[cnt]->uid = arlib_deterministic_output ? 0 : newst.st_uid;
1307 found[cnt]->gid = arlib_deterministic_output ? 0 : newst.st_gid;
1308 found[cnt]->mode = newst.st_mode;
1309 found[cnt]->name = bname;
1311 found[cnt]->mem = elf_rawfile (newelf, &found[cnt]->size);
1312 if (found[cnt]->mem == NULL
1319 if (found[cnt]->old_off != -1l)
1321 remember_long_name (found[cnt], bname, bnamelen);
1354 if (oper != oper_replace || found[cnt]->old_off == -1)
1358 found[cnt]->next = all;
1359 last_added = all = found[cnt];
1363 found[cnt]->next = last_added->next;
1364 last_added = last_added->next = found[cnt];