Searched refs:file_action (Results 1 – 8 of 8) sorted by relevance
/external/lldb/source/Plugins/Process/POSIX/ |
D | ProcessPOSIX.cpp | 180 const lldb_private::ProcessLaunchInfo::FileAction *file_action, in GetFilePath() argument 186 if (file_action) in GetFilePath() 188 if (file_action->GetAction () == ProcessLaunchInfo::FileAction::eFileActionOpen) in GetFilePath() 189 path = file_action->GetPath(); in GetFilePath() 220 const lldb_private::ProcessLaunchInfo::FileAction *file_action; in DoLaunch() local 227 file_action = launch_info.GetFileActionForFD (STDIN_FILENO); in DoLaunch() 228 stdin_path = GetFilePath(file_action, stdin_path); in DoLaunch() 230 file_action = launch_info.GetFileActionForFD (STDOUT_FILENO); in DoLaunch() 231 stdout_path = GetFilePath(file_action, stdout_path); in DoLaunch() 233 file_action = launch_info.GetFileActionForFD (STDERR_FILENO); in DoLaunch() [all …]
|
D | ProcessPOSIX.h | 157 GetFilePath(const lldb_private::ProcessLaunchInfo::FileAction *file_action,
|
/external/lldb/include/lldb/Target/ |
D | Process.h | 551 ProcessLaunchInfo::FileAction file_action; in ProcessLaunchInfo() local 554 if (file_action.Open(STDIN_FILENO, stdin_path, read, write)) in ProcessLaunchInfo() 555 AppendFileAction (file_action); in ProcessLaunchInfo() 559 ProcessLaunchInfo::FileAction file_action; in ProcessLaunchInfo() local 562 if (file_action.Open(STDOUT_FILENO, stdout_path, read, write)) in ProcessLaunchInfo() 563 AppendFileAction (file_action); in ProcessLaunchInfo() 567 ProcessLaunchInfo::FileAction file_action; in ProcessLaunchInfo() local 570 if (file_action.Open(STDERR_FILENO, stderr_path, read, write)) in ProcessLaunchInfo() 571 AppendFileAction (file_action); in ProcessLaunchInfo() 586 FileAction file_action; in AppendCloseFileAction() local [all …]
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationServer.cpp | 785 ProcessLaunchInfo::FileAction file_action; in Handle_QSetSTDIN() local 790 if (file_action.Open(STDIN_FILENO, path.c_str(), read, write)) in Handle_QSetSTDIN() 792 m_process_launch_info.AppendFileAction(file_action); in Handle_QSetSTDIN() 802 ProcessLaunchInfo::FileAction file_action; in Handle_QSetSTDOUT() local 807 if (file_action.Open(STDOUT_FILENO, path.c_str(), read, write)) in Handle_QSetSTDOUT() 809 m_process_launch_info.AppendFileAction(file_action); in Handle_QSetSTDOUT() 819 ProcessLaunchInfo::FileAction file_action; in Handle_QSetSTDERR() local 824 if (file_action.Open(STDERR_FILENO, path.c_str(), read, write)) in Handle_QSetSTDERR() 826 m_process_launch_info.AppendFileAction(file_action); in Handle_QSetSTDERR()
|
D | ProcessGDBRemote.cpp | 612 const ProcessLaunchInfo::FileAction *file_action; in DoLaunch() local 613 file_action = launch_info.GetFileActionForFD (STDIN_FILENO); in DoLaunch() 614 if (file_action) in DoLaunch() 616 if (file_action->GetAction () == ProcessLaunchInfo::FileAction::eFileActionOpen) in DoLaunch() 617 stdin_path = file_action->GetPath(); in DoLaunch() 619 file_action = launch_info.GetFileActionForFD (STDOUT_FILENO); in DoLaunch() 620 if (file_action) in DoLaunch() 622 if (file_action->GetAction () == ProcessLaunchInfo::FileAction::eFileActionOpen) in DoLaunch() 623 stdout_path = file_action->GetPath(); in DoLaunch() 625 file_action = launch_info.GetFileActionForFD (STDERR_FILENO); in DoLaunch() [all …]
|
/external/fio/ |
D | iolog.c | 108 switch (ipo->file_action) { in ipo_special() 122 log_err("fio: bad file action %d\n", ipo->file_action); in ipo_special() 334 int reads, writes, waits, fileno = 0, file_action = 0; /* stupid gcc */ in read_iolog2() local 382 file_action = FIO_LOG_ADD_FILE; in read_iolog2() 386 file_action = FIO_LOG_OPEN_FILE; in read_iolog2() 389 file_action = FIO_LOG_CLOSE_FILE; in read_iolog2() 431 ipo->file_action = file_action; in read_iolog2()
|
D | iolog.h | 161 unsigned int file_action; member
|
D | blktrace.c | 126 ipo->file_action = action; in trace_add_open_close_event()
|