Lines Matching refs:llen
229 ssize_t llen; in cpio_main() local
245 llen = sprintf(toybuf, in cpio_main()
251 xwrite(afd, toybuf, llen); in cpio_main()
255 llen = (llen + nlen) & 3; in cpio_main()
256 if (llen) xwrite(afd, &zero, 4-llen); in cpio_main()
259 llen = st.st_size; in cpio_main()
261 if (readlink(name, toybuf, sizeof(toybuf)-1) == llen) in cpio_main()
262 xwrite(afd, toybuf, llen); in cpio_main()
264 } else while (llen) { in cpio_main()
265 nlen = llen > sizeof(toybuf) ? sizeof(toybuf) : llen; in cpio_main()
266 llen -= nlen; in cpio_main()
272 llen = st.st_size & 3; in cpio_main()
273 if (llen) xwrite(afd, &zero, 4-llen); in cpio_main()