HomeSort by relevance Sort by last modified time
    Searched refs:file_action (Results 1 - 8 of 8) sorted by null

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

Completed in 359 milliseconds