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

  /src/crypto/external/bsd/heimdal/dist/lib/roken/
simple_exec.c 149 int in_fd[2] = {-1, -1}; local
158 ret = pipe(in_fd);
165 close(in_fd[0]);
166 close(in_fd[1]);
185 close(in_fd[1]);
193 in_fd[0] = open(_PATH_DEVNULL, O_RDONLY);
200 if(in_fd[0] != STDIN_FILENO) {
201 dup2(in_fd[0], STDIN_FILENO);
202 close(in_fd[0]);
219 close(in_fd[0])
    [all...]
  /src/external/mit/libuv/dist/src/unix/
fs.c 841 int in_fd; local
846 in_fd = req->flags;
883 nread = pread(in_fd, buf, buflen, offset);
885 nread = read(in_fd, buf, buflen);
980 static ssize_t uv__fs_try_copy_file_range(int in_fd, off_t* off,
990 r = uv__fs_copy_file_range(in_fd, off, out_fd, NULL, len, 0);
1000 if (uv__is_buggy_cephfs(in_fd))
1016 * EXDEV - it will not work when in_fd and out_fd are not on the same
1030 int in_fd; local
1033 in_fd = req->flags
    [all...]

Completed in 24 milliseconds