Lines Matching full:collected
237 static __initdata char *collected; variable
244 collected = victim; in read_into()
248 collect = collected = buf; in read_into()
279 if (!memcmp(collected, "070701", 6)) { in do_header()
281 } else if (!memcmp(collected, "070702", 6)) { in do_header()
284 if (memcmp(collected, "070707", 6) == 0) in do_header()
290 parse_header(collected); in do_header()
299 collect = collected = symlink_buf; in do_header()
347 char *old = find_link(major, minor, ino, mode, collected); in maybe_link()
349 clean_path(collected, 0); in maybe_link()
350 return (init_link(old, collected) < 0) ? -1 : 1; in maybe_link()
365 if (collected[name_len - 1] != '\0') { in do_name()
367 (int)name_len, collected); in do_name()
372 if (strcmp(collected, "TRAILER!!!") == 0) { in do_name()
376 clean_path(collected, mode); in do_name()
383 wfile = filp_open(collected, openflags, mode); in do_name()
396 init_mkdir(collected, mode); in do_name()
397 init_chown(collected, uid, gid, 0); in do_name()
398 init_chmod(collected, mode); in do_name()
399 dir_add(collected, mtime); in do_name()
403 init_mknod(collected, mode, rdev); in do_name()
404 init_chown(collected, uid, gid, 0); in do_name()
405 init_chmod(collected, mode); in do_name()
406 do_utime(collected, mtime); in do_name()
436 if (collected[name_len - 1] != '\0') { in do_symlink()
438 (int)name_len, collected); in do_symlink()
442 collected[N_ALIGN(name_len) + body_len] = '\0'; in do_symlink()
443 clean_path(collected, 0); in do_symlink()
444 init_symlink(collected + N_ALIGN(name_len), collected); in do_symlink()
445 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW); in do_symlink()
446 do_utime(collected, mtime); in do_symlink()