Home | History | Annotate | Download | only in patch

Lines Matching defs:fromfd

60 	int	fromfd;
70 fromfd = open(from, O_RDONLY);
71 if (fromfd < 0)
73 while ((i = read(fromfd, buf, bufsz)) > 0)
76 close(fromfd);
172 int tofd, fromfd;
178 fromfd = open(from, O_RDONLY, 0);
179 if (fromfd < 0)
181 while ((i = read(fromfd, buf, bufsz)) > 0)
184 close(fromfd);