Lines Matching refs:llen
227 ssize_t llen; in cpio_main() local
243 llen = sprintf(toybuf, in cpio_main()
249 xwrite(afd, toybuf, llen); in cpio_main()
253 llen = (llen + nlen) & 3; in cpio_main()
254 if (llen) xwrite(afd, &zero, 4-llen); in cpio_main()
257 llen = st.st_size; in cpio_main()
259 if (readlink(name, toybuf, sizeof(toybuf)-1) == llen) in cpio_main()
260 xwrite(afd, toybuf, llen); in cpio_main()
262 } else while (llen) { in cpio_main()
263 nlen = llen > sizeof(toybuf) ? sizeof(toybuf) : llen; in cpio_main()
264 llen -= nlen; in cpio_main()
270 llen = st.st_size & 3; in cpio_main()
271 if (llen) xwrite(afd, &zero, 4-llen); in cpio_main()