Home
last modified time | relevance | path

Searched refs:ft_fds (Results 1 – 3 of 3) sorted by relevance

/kernel/liteos_a/fs/vfs/operation/
Dvfs_procfd.c87 if ((fdt == NULL) || (fdt->ft_fds == NULL)) { in GetFdTable()
118 fdt->ft_fds[procFd].sysFd = sysFd; in AssociateSystemFd()
142 if (fdt->ft_fds[procFd].sysFd < 0) { in GetAssociatedSystemFd()
146 int sysFd = fdt->ft_fds[procFd].sysFd; in GetAssociatedSystemFd()
166 if (fdt->ft_fds[procFd].sysFd >= 0) { in AllocSpecifiedProcessFd()
168 fdt->ft_fds[procFd].sysFd = -1; in AllocSpecifiedProcessFd()
197 fdt->ft_fds[procFd].sysFd = -1; in FreeProcessFd()
210 if (fdt->ft_fds[procFd].sysFd < 0) { in DisassociateProcessFd()
214 int sysFd = fdt->ft_fds[procFd].sysFd; in DisassociateProcessFd()
216 fdt->ft_fds[procFd].sysFd = -1; in DisassociateProcessFd()
[all …]
/kernel/liteos_a/fs/include/fs/
Dfd_table.h47 struct file_table_s *ft_fds; /* process fd array associate with system fd */ member
/kernel/liteos_a/fs/proc/os_adapt/
Dfd_proc.c63 sysFd = fdt->ft_fds[fd].sysFd; in FillFdInfo()