Lines Matching refs:fd
27 int ret, fd; in host_sb_attach_file() local
34 if (plat->fd) in host_sb_attach_file()
42 fd = os_open(filename, OS_O_RDWR); in host_sb_attach_file()
43 if (fd == -1) { in host_sb_attach_file()
46 fd = os_open(filename, OS_O_RDONLY); in host_sb_attach_file()
47 if (fd == -1) { in host_sb_attach_file()
59 size = os_filesize(fd); in host_sb_attach_file()
65 plat->fd = fd; in host_sb_attach_file()
71 os_close(fd); in host_sb_attach_file()
81 if (!plat->fd) in host_sb_detach_file()
93 os_close(plat->fd); in host_sb_detach_file()
94 plat->fd = 0; in host_sb_detach_file()