Searched refs:tar_hdl (Results 1 - 1 of 1) sorted by relevance

/external/toybox/toys/pending/
H A Dtar.c286 static void compress_stream(struct archive_handler *tar_hdl) argument
301 dup2(tar_hdl->src_fd, 1); //write to tar fd
305 dup2(pipefd[1], tar_hdl->src_fd); //write to pipe
491 struct archive_handler *tar_hdl = xzalloc(sizeof(struct archive_handler)); local
492 tar_hdl->extract_handler = extract_to_disk;
493 return tar_hdl;
509 static void extract_stream(struct archive_handler *tar_hdl) argument
523 dup2(tar_hdl->src_fd, 0);
528 dup2(pipefd[0], tar_hdl->src_fd); //read from pipe
578 static void unpack_tar(struct archive_handler *tar_hdl) argument
758 struct archive_handler *tar_hdl; local
[all...]

Completed in 144 milliseconds