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

  /external/chromium_org/tools/findit/
repository_parser_interface.py 27 def ParseLineDiff(self, path, component, file_action, githash):
33 file_action: Whether file is modified, deleted or added.
git_repository_parser.py 21 def _ConvertToFileChangeType(file_action):
23 return file_action[0].upper()
  /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 97 switch (ipo->file_action) {
111 log_err("fio: bad file action %d\n", ipo->file_action);
315 int reads, writes, waits, fileno = 0, file_action = 0; /* stupid gcc */ local
363 file_action = FIO_LOG_ADD_FILE;
367 file_action = FIO_LOG_OPEN_FILE;
370 file_action = FIO_LOG_CLOSE_FILE;
412 ipo->file_action = file_action;
iolog.h 93 unsigned int file_action; member in union:io_piece::__anon5142
blktrace.c 186 ipo->file_action = action;

Completed in 672 milliseconds