Searched refs:m_process (Results 1 - 25 of 50) sorted by relevance

12

/external/deqp/framework/delibs/decpp/
H A DdeProcess.cpp32 : m_process(deProcess_create())
34 if (!m_process)
40 deProcess_destroy(m_process);
45 if (!deProcess_start(m_process, commandLine, workingDirectory))
46 throw ProcessError(deProcess_getLastError(m_process));
51 if (!deProcess_waitForFinish(m_process))
52 throw ProcessError(deProcess_getLastError(m_process));
57 if (!deProcess_terminate(m_process))
58 throw ProcessError(deProcess_getLastError(m_process));
63 if (!deProcess_kill(m_process))
[all...]
H A DdeProcess.hpp53 bool isRunning (void) { return deProcess_isRunning(m_process) == DE_TRUE; }
54 int getExitCode (void) const { return deProcess_getExitCode(m_process); }
56 deFile* getStdIn (void) { return deProcess_getStdIn(m_process); }
57 deFile* getStdOut (void) { return deProcess_getStdOut(m_process); }
58 deFile* getStdErr (void) { return deProcess_getStdErr(m_process); }
68 deProcess* m_process; member in class:de::Process
/external/deqp/executor/
H A DxeLocalTcpIpLink.cpp40 : m_process(DE_NULL)
51 XE_CHECK(!m_process);
56 m_process = deProcess_create();
57 XE_CHECK(m_process);
59 if (deProcess_start(m_process, cmdLine.str().c_str(), workDir) != DE_TRUE)
61 std::string err = deProcess_getLastError(m_process);
62 deProcess_destroy(m_process);
63 m_process = DE_NULL;
80 if (!deProcess_isRunning(m_process))
99 XE_CHECK(deProcess_closeStdOut(m_process));
[all...]
H A DxeLocalTcpIpLink.hpp57 deProcess* m_process; member in class:xe::LocalTcpIpLink
/external/deqp/execserver/
H A DxsPosixTestProcess.cpp172 : m_process (DE_NULL)
183 delete m_process;
190 XS_CHECK(!m_process);
212 DE_ASSERT(!m_process);
213 m_process = new de::Process();
217 m_process->start(cmdLine.c_str(), strlen(workingDir) > 0 ? workingDir : DE_NULL);
221 delete m_process;
222 m_process = DE_NULL;
229 if (m_process->getStdOut())
230 m_stdOutReader.start(m_process
[all...]
H A DxsTestDriver.cpp46 , m_process (testProcess)
59 m_process->cleanup();
68 m_process->start(name, params, workingDir, caseList);
81 m_process->terminate();
124 if (!m_process->isRunning())
128 m_lastExitCode = m_process->getExitCode();
167 m_process->cleanup();
205 ? m_process->readTestLog(&m_dataMsgTmpBuf[MESSAGE_HEADER_SIZE], maxMsgSize-MESSAGE_HEADER_SIZE-1)
206 : m_process->readInfoLog(&m_dataMsgTmpBuf[MESSAGE_HEADER_SIZE], maxMsgSize-MESSAGE_HEADER_SIZE-1);
H A DxsWin32TestProcess.cpp630 : m_process (DE_NULL)
640 delete m_process;
647 XS_CHECK(!m_process);
680 DE_ASSERT(!m_process);
681 m_process = new win32::Process();
685 m_process->start(cmdLine.c_str(), strlen(workingDir) > 0 ? workingDir : DE_NULL);
689 delete m_process;
690 m_process = DE_NULL;
697 m_stdOutReader.start(m_process->getStdOut());
698 m_stdErrReader.start(m_process
[all...]
H A DxsTestDriver.hpp72 xs::TestProcess* m_process; member in class:xs::TestDriver
/external/lldb/source/Core/
H A DDynamicLoader.cpp50 m_process (process)
68 return m_process->GetStopOnSharedLibraryEvents();
74 m_process->SetStopOnSharedLibraryEvents (stop);
/external/lldb/tools/lldb-perf/lib/
H A DTestCase.cpp19 m_process(),
109 m_process = m_target.Launch (launch_info, error);
112 if (m_process.IsValid())
114 m_process.GetBroadcaster().AddListener(m_listener, SBProcess::eBroadcastBitStateChanged | SBProcess::eBroadcastBitInterrupt);
147 if (m_process.IsValid())
177 for (auto thread_index = 0; thread_index < m_process.GetNumThreads(); thread_index++)
179 SBThread thread(m_process.GetThreadAtIndex(thread_index));
239 selected_thread = m_process.SetSelectedThread(thread);
268 err = m_process.Continue();
280 m_process
[all...]
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DAuxVector.cpp61 if (m_process->GetPluginName() == ProcessElfCore::GetPluginNameStatic())
62 return static_cast<ProcessElfCore *>(m_process)->GetAuxvData();
64 return lldb_private::Host::GetAuxvData(m_process);
70 const unsigned int byte_size = m_process->GetAddressByteSize();
91 : m_process(process)
97 data.SetByteOrder(m_process->GetByteOrder());
98 data.SetAddressByteSize(m_process->GetAddressByteSize());
H A DDYLDRendezvous.cpp53 : m_process(process),
62 if (m_process)
64 Module *exe_mod = m_process->GetTarget().GetExecutableModulePointer();
80 address_size = m_process->GetAddressByteSize();
84 cursor = info_addr = ResolveRendezvousAddress(m_process);
242 bytes_read = m_process->DoReadMemory(addr, dst, size, error);
261 size = m_process->DoReadMemory(addr, &c, 1, error);
278 size_t address_size = m_process->GetAddressByteSize();
H A DDynamicLoaderPOSIXDYLD.cpp106 m_process->GetTarget().RemoveBreakpointByID (m_dyld_bid);
117 m_auxv.reset(new AuxVector(m_process));
128 m_process->GetTarget().ModulesDidLoad(module_list);
138 m_auxv.reset(new AuxVector(m_process));
149 m_process->GetTarget().ModulesDidLoad(module_list);
156 Target &target = m_process->GetTarget();
216 SectionLoadList &load_list = m_process->GetTarget().GetSectionLoadList();
245 entry_break = m_process->GetTarget().CreateBreakpoint(entry, true).get();
274 Target &target = m_process->GetTarget();
312 ModuleList &loaded_modules = m_process
[all...]
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp168 PrivateInitialize(m_process);
182 PrivateInitialize(m_process);
190 if (m_process)
193 if (m_process->GetThreadList().GetSize() == 1)
198 const addr_t shlib_addr = m_process->GetImageInfoAddress ();
215 ThreadSP thread_sp (m_process->GetThreadList().GetThreadAtIndex(0));
244 if (m_process->IsAlive() && LLDB_BREAK_ID_IS_VALID(m_break_id))
245 m_process->GetTarget().RemoveBreakpointByID (m_break_id);
248 m_process = NULL;
279 const addr_t shlib_addr = m_process
[all...]
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp76 assert (m_process == process);
205 const ModuleList &modules = m_process->GetTarget().GetImages();
267 m_objc_trampoline_handler_ap.reset(new AppleObjCTrampolineHandler (m_process->shared_from_this(), module_sp));
339 m_objc_exception_bp_sp = LanguageRuntime::CreateExceptionBreakpoint (m_process->GetTarget(),
355 if (!m_process)
367 if (!m_process)
375 return m_process->GetBreakpointSiteList().BreakpointSiteContainsBreakpoint (break_site_id,
382 if (!m_process)
385 Target &target(m_process->GetTarget());
402 Target &target = m_process
[all...]
/external/lldb/source/Target/
H A DThreadList.cpp25 m_process (process),
33 m_process (rhs.m_process),
50 m_process = rhs.m_process;
93 m_process->UpdateThreadListIfNeeded();
102 m_process->UpdateThreadListIfNeeded();
116 m_process->UpdateThreadListIfNeeded();
138 m_process->UpdateThreadListIfNeeded();
161 m_process
[all...]
H A DOperatingSystem.cpp51 m_process (process)
/external/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp98 const ModuleList &module_list = m_process->GetTarget().GetImages();
103 m_process->SetCanJIT(false);
137 if (m_process->GetTarget().GetSectionLoadList().SetSectionLoadAddress (section_sp, section_sp->GetFileAddress()))
149 m_process->GetTarget().ModulesDidLoad (loaded_module_list);
/external/lldb/include/lldb/Target/
H A DLanguageRuntime.h91 return m_process;
106 Process *m_process; member in class:lldb_private::LanguageRuntime
H A DDynamicLoader.h231 Process* m_process; ///< The process that this dynamic loader plug-in is tracking. member in class:lldb_private::DynamicLoader
H A DOperatingSystem.h94 Process* m_process; ///< The process that this dynamic loader plug-in is tracking. member in class:lldb_private::OperatingSystem
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachTask.h92 MachProcess * Process () { return m_process; }
93 const MachProcess * Process () const { return m_process; }
118 MachProcess * m_process; // The mach process that owns this MachTask member in class:MachTask
H A DMachThread.h42 MachProcess * Process() { return m_process; }
44 Process() const { return m_process; }
122 MachProcess * m_process; // The process that owns this thread member in class:MachThread
/external/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp141 log->Printf ("OperatingSystemPython::GetDynamicRegisterInfo() fetching thread register definitions from python for pid %" PRIu64, m_process->GetID());
182 Target &target = m_process->GetTarget();
186 log->Printf ("OperatingSystemPython::UpdateThreadList() fetching thread data from python for pid %" PRIu64, m_process->GetID());
272 thread_sp.reset (new ThreadMemory (*m_process,
321 Target &target = m_process->GetTarget();
396 Target &target = m_process->GetTarget();
403 ThreadList core_threads(m_process);
404 ThreadList &thread_list = m_process->GetThreadList();
/external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp378 Target &target = m_process->GetTarget();
401 Target &target = m_process->GetTarget();
411 if (!m_process)
438 if (!m_process)
450 if (!m_process)
458 return m_process->GetBreakpointSiteList().BreakpointSiteContainsBreakpoint(break_site_id,

Completed in 323 milliseconds

12