Lines Matching refs:open
797 warn("open%s: cannot decode flags 0x%x",
807 * If the simulated process called open or openat with AT_FDCWD specified,
842 DPRINTF_SYSCALL(Verbose, "open%s: passing call to "
843 "driver open with path[%s]\n",
845 return drv->open(tc, mode, host_flags);
854 * We make several attempts resolve a call to open.
864 * special cases, pass it through to the open call on the __HOST__ to let
865 * the host open the file on our behalf. Again, the openImpl tries to
869 * 4) If the host cannot open the file, the open attempt failed in "3)".
872 * the open call failed.
888 sim_fd = open(redir_path.c_str(), host_flags, mode);
893 DPRINTF_SYSCALL(Verbose, "open%s: failed -> path:%s "
909 DPRINTF_SYSCALL(Verbose, "open%s: sim_fd[%d], target_fd[%d] -> path:%s\n"
915 /// Target open() handler.