Lines Matching refs:local_fd
197 static void transfer_file(int local_fd, int remote_fd) in transfer_file() argument
199 int len, rfd = (TT.isget)?remote_fd:local_fd, in transfer_file()
200 wfd = (TT.isget)?local_fd:remote_fd; in transfer_file()
208 int local_fd = -1, remote_fd; in get_file() local
215 local_fd = 1; //file descriptor will become stdout. in get_file()
227 if (local_fd == -1) { in get_file()
231 local_fd = xcreate((char *)l_filename, flags, 0666); in get_file()
233 transfer_file(local_fd, remote_fd); in get_file()
235 xclose(local_fd); in get_file()
243 int local_fd = 0, remote_fd; in put_file() local
251 local_fd = xcreate((char *)l_filename, O_RDONLY, 0666); in put_file()
257 transfer_file(local_fd, remote_fd); in put_file()
266 xclose(local_fd); in put_file()