Home
last modified time | relevance | path

Searched refs:tempfd (Results 1 – 1 of 1) sorted by relevance

/coreutils/src/
Dsort.c1120 int tempfd; in maybe_create_temp() local
1121 struct tempnode *node = create_temp_file (&tempfd, survive_fd_exhaustion); in maybe_create_temp()
1134 close (tempfd); in maybe_create_temp()
1136 tempfd = pipefds[1]; in maybe_create_temp()
1145 move_fd (tempfd, STDOUT_FILENO); in maybe_create_temp()
1154 *pfp = fdopen (tempfd, "w"); in maybe_create_temp()
1179 int tempfd, pipefds[2]; in open_temp() local
1185 tempfd = open (temp->name, O_RDONLY); in open_temp()
1186 if (tempfd < 0) in open_temp()
1197 close (tempfd); in open_temp()
[all …]