Lines Matching full:fd
44 int os_stat_fd(const int fd, struct uml_stat *ubuf) in os_stat_fd() argument
49 CATCH_EINTR(err = fstat64(fd, &sbuf)); in os_stat_fd()
89 int os_ioctl_generic(int fd, unsigned int cmd, unsigned long arg) in os_ioctl_generic() argument
93 err = ioctl(fd, cmd, arg); in os_ioctl_generic()
101 int os_get_ifname(int fd, char* namebuf) in os_get_ifname() argument
103 if (ioctl(fd, SIOCGIFNAME, namebuf) < 0) in os_get_ifname()
109 int os_set_slip(int fd) in os_set_slip() argument
114 if (ioctl(fd, TIOCSETD, &disc) < 0) in os_set_slip()
118 if (ioctl(fd, SIOCSIFENCAP, &sencap) < 0) in os_set_slip()
124 int os_mode_fd(int fd, int mode) in os_mode_fd() argument
128 CATCH_EINTR(err = fchmod(fd, mode)); in os_mode_fd()
182 int fd, err, f = 0; in os_open_file() local
203 fd = open64(file, f, mode); in os_open_file()
204 if (fd < 0) in os_open_file()
207 if (flags.cl && fcntl(fd, F_SETFD, 1)) { in os_open_file()
209 close(fd); in os_open_file()
213 return fd; in os_open_file()
219 int fd, err; in os_connect_socket() local
224 fd = socket(AF_UNIX, SOCK_STREAM, 0); in os_connect_socket()
225 if (fd < 0) { in os_connect_socket()
230 err = connect(fd, (struct sockaddr *) &sock, sizeof(sock)); in os_connect_socket()
236 return fd; in os_connect_socket()
239 close(fd); in os_connect_socket()
244 int os_dup_file(int fd) in os_dup_file() argument
246 int new_fd = dup(fd); in os_dup_file()
254 void os_close_file(int fd) in os_close_file() argument
256 close(fd); in os_close_file()
258 int os_fsync_file(int fd) in os_fsync_file() argument
260 if (fsync(fd) < 0) in os_fsync_file()
265 int os_seek_file(int fd, unsigned long long offset) in os_seek_file() argument
269 actual = lseek64(fd, offset, SEEK_SET); in os_seek_file()
275 int os_read_file(int fd, void *buf, int len) in os_read_file() argument
277 int n = read(fd, buf, len); in os_read_file()
284 int os_pread_file(int fd, void *buf, int len, unsigned long long offset) in os_pread_file() argument
286 int n = pread(fd, buf, len, offset); in os_pread_file()
293 int os_write_file(int fd, const void *buf, int len) in os_write_file() argument
295 int n = write(fd, (void *) buf, len); in os_write_file()
302 int os_sync_file(int fd) in os_sync_file() argument
304 int n = fdatasync(fd); in os_sync_file()
311 int os_pwrite_file(int fd, const void *buf, int len, unsigned long long offset) in os_pwrite_file() argument
313 int n = pwrite(fd, (void *) buf, len, offset); in os_pwrite_file()
334 int fd; in os_file_size() local
337 fd = open(file, O_RDONLY, 0); in os_file_size()
338 if (fd < 0) { in os_file_size()
344 if (ioctl(fd, BLKGETSIZE, &blocks) < 0) { in os_file_size()
348 close(fd); in os_file_size()
352 close(fd); in os_file_size()
375 int os_set_exec_close(int fd) in os_set_exec_close() argument
379 CATCH_EINTR(err = fcntl(fd, F_SETFD, FD_CLOEXEC)); in os_set_exec_close()
415 int os_set_fd_async(int fd) in os_set_fd_async() argument
419 flags = fcntl(fd, F_GETFL); in os_set_fd_async()
424 if (fcntl(fd, F_SETFL, flags) < 0) { in os_set_fd_async()
427 "and O_NONBLOCK on fd # %d, errno = %d\n", fd, errno); in os_set_fd_async()
431 if ((fcntl(fd, F_SETSIG, SIGIO) < 0) || in os_set_fd_async()
432 (fcntl(fd, F_SETOWN, os_getpid()) < 0)) { in os_set_fd_async()
435 "(or F_SETSIG) fd %d, errno = %d\n", fd, errno); in os_set_fd_async()
442 int os_clear_fd_async(int fd) in os_clear_fd_async() argument
446 flags = fcntl(fd, F_GETFL); in os_clear_fd_async()
451 if (fcntl(fd, F_SETFL, flags) < 0) in os_clear_fd_async()
456 int os_set_fd_block(int fd, int blocking) in os_set_fd_block() argument
460 flags = fcntl(fd, F_GETFL); in os_set_fd_block()
469 if (fcntl(fd, F_SETFL, flags) < 0) in os_set_fd_block()
475 int os_accept_connection(int fd) in os_accept_connection() argument
479 new = accept(fd, NULL, 0); in os_accept_connection()
497 int os_shutdown_socket(int fd, int r, int w) in os_shutdown_socket() argument
510 err = shutdown(fd, what); in os_shutdown_socket()
518 * @fd: the FD to receive from
528 ssize_t os_rcv_fd_msg(int fd, int *fds, unsigned int n_fds, in os_rcv_fd_msg() argument
549 n = recvmsg(fd, &msg, 0); in os_rcv_fd_msg()
595 int os_lock_file(int fd, int excl) in os_lock_file() argument
604 err = fcntl(fd, F_SETLK, &lock); in os_lock_file()
609 err = fcntl(fd, F_GETLK, &lock); in os_lock_file()
637 int os_falloc_punch(int fd, unsigned long long offset, int len) in os_falloc_punch() argument
639 int n = fallocate(fd, FALLOC_FL_PUNCH_HOLE|FALLOC_FL_KEEP_SIZE, offset, len); in os_falloc_punch()
646 int os_falloc_zeroes(int fd, unsigned long long offset, int len) in os_falloc_zeroes() argument
648 int n = fallocate(fd, FALLOC_FL_ZERO_RANGE|FALLOC_FL_KEEP_SIZE, offset, len); in os_falloc_zeroes()
657 int fd = eventfd(initval, flags); in os_eventfd() local
659 if (fd < 0) in os_eventfd()
661 return fd; in os_eventfd()
664 int os_sendmsg_fds(int fd, const void *buf, unsigned int len, const int *fds, in os_sendmsg_fds() argument
692 err = sendmsg(fd, &msg, 0); in os_sendmsg_fds()
710 pollfds[i].fd = fds[i]; in os_poll()
718 /* Return the index of the available FD */ in os_poll()
727 void *os_mmap_rw_shared(int fd, size_t size) in os_mmap_rw_shared() argument
729 void *res = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); in os_mmap_rw_shared()