Searched refs:Process (Results 1 - 25 of 146) sorted by relevance

123456

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DInferiorCallPOSIX.h19 class Process;
33 bool InferiorCallMmap(Process *proc, lldb::addr_t &allocated_addr,
37 bool InferiorCallMunmap(Process *proc, lldb::addr_t addr, lldb::addr_t length);
39 bool InferiorCall(Process *proc, const Address *address, lldb::addr_t &returned_func);
/freebsd-10-stable/lib/clang/liblldbPluginProcessElfCore/
H A DMakefile7 CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/POSIX
8 CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/Utility
10 SRCDIR= tools/lldb/source/Plugins/Process/elf-core
/freebsd-10-stable/lib/clang/liblldbPluginProcessFreeBSD/
H A DMakefile8 CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD
9 CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/POSIX
11 SRCDIR= tools/lldb/source/Plugins/Process/FreeBSD
/freebsd-10-stable/lib/clang/liblldbPluginProcessPOSIX/
H A DMakefile8 CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/POSIX
9 CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/Utility
10 CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD
12 SRCDIR= tools/lldb/source/Plugins/Process/POSIX
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Target/
H A DOperatingSystem.h54 FindPlugin (Process *process, const char *plugin_name);
59 OperatingSystem (Process *process);
94 Process* m_process; ///< The process that this dynamic loader plug-in is tracking.
H A DQueueList.h27 // Each Process will have a QueueList. When the process execution is
34 friend class Process;
38 QueueList (Process *process);
128 // Classes that inherit from Process can see and modify these
130 Process *m_process; ///< The process that manages this queue list.
H A DLanguageRuntime.h36 FindPlugin (Process *process, lldb::LanguageType language);
94 Process *
111 LanguageRuntime(Process *process);
112 Process *m_process;
H A DDynamicLoader.h30 /// Process::RegisterNotificationCallbacks (const Notifications&)
35 /// Process::BreakpointSetCallback (lldb::user_id_t, BreakpointHitCallback, void *).
61 FindPlugin (Process *process, const char *plugin_name);
66 DynamicLoader (Process *process);
305 Process* m_process; ///< The process that this dynamic loader plug-in is tracking.
H A DSystemRuntime.h34 /// libraries during a Process' lifetime and provide information about
64 FindPlugin (Process *process);
69 SystemRuntime(lldb_private::Process *process);
163 /// not appear in the Process' list of current threads. Normal thread
200 /// Populate the Process' QueueList with libdispatch / GCD queues that exist.
277 Process *m_process;
H A DThreadList.h29 friend class Process;
33 ThreadList (Process *process);
161 // Classes that inherit from Process can see and modify these
163 Process *m_process; ///< The process that manages this thread list.
H A DMemory.h36 MemoryCache (Process &process);
70 Process &m_process;
157 AllocatedMemoryCache (Process &process);
185 Process &m_process;
H A DExecutionContext.h242 SetProcessPtr (Process *process);
441 ExecutionContext (Process* process,
496 Process *
558 Process &
666 SetProcessPtr (Process *process);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.h27 FreeBSDThread(lldb_private::Process &process, lldb::tid_t tid);
/freebsd-10-stable/lib/clang/liblldb/
H A DMakefile7 CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/POSIX
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.h26 #include "lldb/Target/Process.h"
47 CreateInstance (lldb_private::Process *process, bool force);
49 DynamicLoaderStatic (lldb_private::Process *process);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/
H A DOperatingSystem.cpp23 OperatingSystem::FindPlugin (Process *process, const char *plugin_name)
50 OperatingSystem::OperatingSystem (Process *process) :
H A DSystemRuntime.cpp12 #include "lldb/Target/Process.h"
19 SystemRuntime::FindPlugin (Process *process)
35 SystemRuntime::SystemRuntime(Process *process) :
H A DProcess.cpp1 //===-- Process.cpp ---------------------------------------------*- C++ -*-===//
12 #include "lldb/Target/Process.h"
46 #include "Plugins/Process/Utility/InferiorCallPOSIX.h"
75 // is part of a new lldb_private::Process instance. It will copy all current
90 Process *process = exe_ctx->GetProcessPtr();
139 m_collection_sp.reset (new ProcessOptionValueProperties(Process::GetGlobalProperties().get()));
787 case 'p': // Process plug-in name
954 Process::FindPlugin (Target &target, const char *plugin_name, Listener &listener, const FileSpec *crash_file_path)
999 Process::GetStaticBroadcasterClass ()
1006 // Process constructo
1008 Process::Process(Target &target, Listener &listener) : function in class:Process
[all...]
/freebsd-10-stable/lib/clang/liblldbPluginProcessGDBRemote/
H A DMakefile7 SRCDIR= tools/lldb/source/Plugins/Process/gdb-remote
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
H A DSBFrame.cpp34 #include "lldb/Target/Process.h"
119 Process *process = exe_ctx.GetProcessPtr();
122 Process::StopLocker stop_locker;
161 Process *process = exe_ctx.GetProcessPtr();
164 Process::StopLocker stop_locker;
203 Process *process = exe_ctx.GetProcessPtr();
206 Process::StopLocker stop_locker;
243 Process *process = exe_ctx.GetProcessPtr();
246 Process::StopLocker stop_locker;
283 Process *proces
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-private-interfaces.h21 typedef DynamicLoader* (*DynamicLoaderCreateInstance) (Process* process, bool force);
28 typedef OperatingSystem* (*OperatingSystemCreateInstance) (Process *process, bool force);
29 typedef LanguageRuntime *(*LanguageRuntimeCreateInstance) (Process *process, lldb::LanguageType language);
30 typedef SystemRuntime *(*SystemRuntimeCreateInstance) (Process *process);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DAuxVector.h34 AuxVector(lldb_private::Process *process);
105 lldb_private::Process *m_process;
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.h53 CreateInstance (Process *process, lldb::LanguageType language);
97 ItaniumABILanguageRuntime(Process *process) : lldb_private::CPPLanguageRuntime(process) { } // Call CreateInstance instead.
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.h29 CreateInstance (lldb_private::Process *process, bool force);
46 OperatingSystemPython (lldb_private::Process *process,
/freebsd-10-stable/lib/clang/liblldbTarget/
H A DMakefile7 CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/Utility
19 Process.cpp \

Completed in 387 milliseconds

123456