HomeSort by relevance Sort by last modified time
    Searched refs:from_fd (Results 1 - 3 of 3) sorted by null

  /system/core/toolbox/upstream-netbsd/bin/mv/
mv.c 261 int nread, from_fd, to_fd; local
263 if ((from_fd = open(from, O_RDONLY, 0)) < 0) {
270 (void)close(from_fd);
276 (void)close(from_fd);
280 while ((nread = read(from_fd, bp, blen)) > 0)
289 (void)close(from_fd);
295 if (fcpxattr(from_fd, to_fd) == -1)
299 (void)close(from_fd);
  /system/core/toolbox/upstream-netbsd/bin/cp/
utils.c 110 int ch, checkch, from_fd, rcount, rval, to_fd, tolnk, wcount; local
114 if ((from_fd = open(entp->fts_path, O_RDONLY, 0)) == -1) {
141 (void)close(from_fd);
150 (void)close(from_fd);
172 (void)close(from_fd);
180 (void)close(from_fd);
214 from_fd, (off_t)0);
255 while ((rcount = read(from_fd, buf, MAXBSIZE)) > 0) {
276 if (pflag && (fcpxattr(from_fd, to_fd) != 0))
280 (void)close(from_fd);
    [all...]
  /external/chromium_org/net/socket/
ssl_session_cache_openssl_unittest.cc 79 void** from_fd,
83 // |from_fd| is really the address of a temporary pointer. On input, it
86 std::string** ptr = reinterpret_cast<std::string**>(from_fd);

Completed in 350 milliseconds