HomeSort by: relevance | last modified time | path
    Searched defs:fromfd (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/patch/
util.c 60 int fromfd; local in function:move_file
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; local in function:copy_file
178 fromfd = open(from, O_RDONLY, 0);
179 if (fromfd < 0)
181 while ((i = read(fromfd, buf, bufsz)) > 0)
184 close(fromfd);
    [all...]
util.c 60 int fromfd; local in function:move_file
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; local in function:copy_file
178 fromfd = open(from, O_RDONLY, 0);
179 if (fromfd < 0)
181 while ((i = read(fromfd, buf, bufsz)) > 0)
184 close(fromfd);
    [all...]

Completed in 24 milliseconds