Lines Matching refs:found
149 /* Make sure the message catalog can be found. */
414 not_found (int argc, char *argv[argc], bool found[argc])
417 if (!found[i])
458 bool found[argc > 0 ? argc : 1];
459 memset (found, '\0', sizeof (found));
521 && !found[(char **) res->data - argv])
522 found[(char **) res->data - argv] = do_extract = true;
821 not_found (argc, argv, found);
913 bool *found = alloca (sizeof (bool) * argc);
914 memset (found, '\0', sizeof (bool) * argc);
955 && !found[(char **) res->data - argv])
956 found[(char **) res->data - argv] = do_delete = true;
1074 not_found (argc, argv, found);
1107 struct armem **found = alloca (sizeof (*found) * argc);
1108 memset (found, '\0', sizeof (*found) * argc);
1183 if (res != NULL && found[(char **) res->data - argv] == NULL)
1185 found[(char **) res->data - argv] = newp;
1221 error_exit (0, _("position member %s not found"),
1226 /* Make sure all requested elements are found in the archive. */
1229 if (found[cnt] == NULL)
1247 if (found[cnt] == NULL)
1249 found[cnt] = alloca (sizeof (struct armem));
1250 found[cnt]->old_off = -1;
1252 remember_long_name (found[cnt], bname, bnamelen);
1276 && found[cnt]->old_off != -1l
1277 && found[cnt]->sec > st.st_mtime)
1292 found[cnt]->old_off == -1l ? 'a' : 'r', argv[cnt]);
1294 found[cnt]->elf = newelf;
1295 found[cnt]->sec = arlib_deterministic_output ? 0 : newst.st_mtime;
1296 found[cnt]->uid = arlib_deterministic_output ? 0 : newst.st_uid;
1297 found[cnt]->gid = arlib_deterministic_output ? 0 : newst.st_gid;
1298 found[cnt]->mode = newst.st_mode;
1299 found[cnt]->name = bname;
1301 found[cnt]->mem = elf_rawfile (newelf, &found[cnt]->size);
1302 if (found[cnt]->mem == NULL
1309 if (found[cnt]->old_off != -1l)
1311 remember_long_name (found[cnt], bname, bnamelen);
1342 if (oper != oper_replace || found[cnt]->old_off == -1)
1346 found[cnt]->next = all;
1347 last_added = all = found[cnt];
1351 found[cnt]->next = last_added->next;
1352 last_added = last_added->next = found[cnt];
1556 elf_end (found[cnt]->elf);