Lines Matching refs:filedes
370 int filedes[2])
373 int result = socketpair (domain, style | SOCK_CLOEXEC, protocol, filedes);
377 socket_mark_cloexec (filedes[0]);
378 socket_mark_cloexec (filedes[1]);
404 gdb_pipe_cloexec (int filedes[2])
409 result = pipe2 (filedes, O_CLOEXEC);
412 maybe_mark_cloexec (filedes[0]);
413 maybe_mark_cloexec (filedes[1]);
417 result = pipe (filedes);
420 mark_cloexec (filedes[0]);
421 mark_cloexec (filedes[1]);