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()
363 if (strcmp(collected, "TRAILER!!!") == 0) { in do_name()
367 clean_path(collected, mode); in do_name()
374 wfile = filp_open(collected, openflags, mode); in do_name()
387 init_mkdir(collected, mode); in do_name()
388 init_chown(collected, uid, gid, 0); in do_name()
389 init_chmod(collected, mode); in do_name()
390 dir_add(collected, mtime); in do_name()
394 init_mknod(collected, mode, rdev); in do_name()
395 init_chown(collected, uid, gid, 0); in do_name()
396 init_chmod(collected, mode); in do_name()
397 do_utime(collected, mtime); in do_name()
427 collected[N_ALIGN(name_len) + body_len] = '\0'; in do_symlink()
428 clean_path(collected, 0); in do_symlink()
429 init_symlink(collected + N_ALIGN(name_len), collected); in do_symlink()
430 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW); in do_symlink()
431 do_utime(collected, mtime); in do_symlink()