Searched refs:file_action (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/tools/findit/
H A Drepository_parser_interface.py27 def ParseLineDiff(self, path, component, file_action, githash):
33 file_action: Whether file is modified, deleted or added.
H A Dgit_repository_parser.py21 def _ConvertToFileChangeType(file_action):
23 return file_action[0].upper()
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIX.cpp180 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
179 GetFilePath( const lldb_private::ProcessLaunchInfo::FileAction *file_action, const char *default_path) argument
[all...]
H A DProcessPOSIX.h157 GetFilePath(const lldb_private::ProcessLaunchInfo::FileAction *file_action,
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.cpp785 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);
H A DProcessGDBRemote.cpp612 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
2555 ProcessLaunchInfo::FileAction file_action; local
[all...]
/external/fio/
H A Diolog.c97 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;
H A Diolog.h93 unsigned int file_action; member in union:io_piece::__anon21437
H A Dblktrace.c186 ipo->file_action = action;
/external/lldb/include/lldb/Target/
H A DProcess.h551 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...]

Completed in 151 milliseconds