Lines Matching refs:collected

239 static __initdata char *collected;  variable
246 collected = victim; in read_into()
250 collect = collected = buf; in read_into()
281 if (!memcmp(collected, "070701", 6)) { in do_header()
283 } else if (!memcmp(collected, "070702", 6)) { in do_header()
286 if (memcmp(collected, "070707", 6) == 0) in do_header()
292 parse_header(collected); in do_header()
301 collect = collected = symlink_buf; in do_header()
349 char *old = find_link(major, minor, ino, mode, collected); in maybe_link()
351 clean_path(collected, 0); in maybe_link()
352 return (init_link(old, collected) < 0) ? -1 : 1; in maybe_link()
367 if (collected[name_len - 1] != '\0') { in do_name()
369 (int)name_len, collected); in do_name()
374 if (strcmp(collected, "TRAILER!!!") == 0) { in do_name()
378 clean_path(collected, mode); in do_name()
385 wfile = filp_open(collected, openflags, mode); in do_name()
398 init_mkdir(collected, mode); in do_name()
399 init_chown(collected, uid, gid, 0); in do_name()
400 init_chmod(collected, mode); in do_name()
401 dir_add(collected, name_len, mtime); in do_name()
405 init_mknod(collected, mode, rdev); in do_name()
406 init_chown(collected, uid, gid, 0); in do_name()
407 init_chmod(collected, mode); in do_name()
408 do_utime(collected, mtime); in do_name()
438 if (collected[name_len - 1] != '\0') { in do_symlink()
440 (int)name_len, collected); in do_symlink()
444 collected[N_ALIGN(name_len) + body_len] = '\0'; in do_symlink()
445 clean_path(collected, 0); in do_symlink()
446 init_symlink(collected + N_ALIGN(name_len), collected); in do_symlink()
447 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW); in do_symlink()
448 do_utime(collected, mtime); in do_symlink()