Lines Matching refs:fd
26 int ret, fd; in host_sb_attach_file() local
33 if (plat->fd) in host_sb_attach_file()
41 fd = os_open(filename, OS_O_RDWR); in host_sb_attach_file()
42 if (fd == -1) { in host_sb_attach_file()
45 fd = os_open(filename, OS_O_RDONLY); in host_sb_attach_file()
46 if (fd == -1) { in host_sb_attach_file()
58 size = os_filesize(fd); in host_sb_attach_file()
70 plat->fd = fd; in host_sb_attach_file()
76 os_close(fd); in host_sb_attach_file()
86 if (!plat->fd) in host_sb_detach_file()
98 os_close(plat->fd); in host_sb_detach_file()
99 plat->fd = 0; in host_sb_detach_file()