Lines Matching defs:lf
28 auto *lf = reinterpret_cast<LinuxFile *>(f);
30 LIBC_NAMESPACE::syscall_impl<int>(SYS_write, lf->get_fd(), data, size);
38 auto *lf = reinterpret_cast<LinuxFile *>(f);
40 LIBC_NAMESPACE::syscall_impl<int>(SYS_read, lf->get_fd(), buf, size);
48 auto *lf = reinterpret_cast<LinuxFile *>(f);
49 auto result = internal::lseekimpl(lf->get_fd(), offset, whence);
56 auto *lf = reinterpret_cast<LinuxFile *>(f);
57 int ret = LIBC_NAMESPACE::syscall_impl<int>(SYS_close, lf->get_fd());
61 delete lf;
179 auto *lf = reinterpret_cast<LinuxFile *>(f);
180 return lf->get_fd();