Searched refs:process (Results 51 - 75 of 451) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp375 ExtractRuntimeGlobalSymbol(Process *process, ConstString name, argument
380 if (!process) {
381 error.SetErrorString("no process");
389 byte_size = process->GetAddressByteSize();
394 symbol->GetAddressRef().GetLoadAddress(&process->GetTarget());
397 return process->ReadUnsignedIntegerFromMemory(
413 AppleObjCRuntimeV2::AppleObjCRuntimeV2(Process *process, argument
415 : AppleObjCRuntime(process), m_get_class_info_code(),
440 // We should never get here with a null process...
443 // The Runtime is attached to a particular process, yo
448 Process *process = in_value.GetProcessSP().get(); local
491 CreateInstance(Process *process, LanguageType language) argument
602 Process *process = m_exe_ctx.GetProcessPtr(); variable
703 Process *process = m_exe_ctx.GetProcessPtr(); variable
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptExpressionOpts.cpp98 assert(m_process_ptr && "no available lldb process");
160 auto *process = GetProcess(); local
161 assert(process);
163 proto, process->GetTarget().GetArchitecture().GetMachine());
179 RSIRPasses::RSIRPasses(Process *process) { argument
181 assert(process);
185 EarlyPasses->add(new RenderScriptRuntimeModulePass(process));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-interfaces.h26 typedef DynamicLoader *(*DynamicLoaderCreateInstance)(Process *process,
28 typedef lldb::JITLoaderSP (*JITLoaderCreateInstance)(Process *process,
51 typedef OperatingSystem *(*OperatingSystemCreateInstance)(Process *process,
55 Process *process, lldb::LanguageType language);
62 Process &process);
65 typedef SystemRuntime *(*SystemRuntimeCreateInstance)(Process *process);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.h36 CreateInstance(Process *process, lldb::LanguageType language);
96 ItaniumABILanguageRuntime(Process *process) argument
98 lldb_private::CPPLanguageRuntime(process), m_cxx_exception_bp_sp(),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUtilityFunction.cpp53 /// Install the utility function into a process
82 Process *process = exe_ctx.GetProcessPtr(); local
84 if (!process) {
85 diagnostic_manager.PutString(eDiagnosticSeverityError, "invalid process");
100 "current process state is unsuitable for expression parsing");
127 m_jit_process_wp = process->shared_from_this();
/freebsd-11-stable/contrib/atf/atf-c++/
H A Dcheck.cpp36 #include "atf-c++/detail/process.hpp"
104 const atf::process::argv_array& optargs)
118 const atf::process::argv_array& optargs)
132 const atf::process::argv_array& optargs)
145 impl::exec(const atf::process::argv_array& argva)
/freebsd-11-stable/contrib/groff/src/roff/grog/
H A Dgrog.pl24 &process($arg, 0);
27 sub process { subroutine
70 &process($1, $level);
159 &process($_, $level + 1) unless /\\/ || $_ eq "";
/freebsd-11-stable/contrib/unbound/compat/
H A Dgetentropy_win.c28 #include <process.h>
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h69 uint32_t DoLoadImage(lldb_private::Process *process,
75 lldb_private::Status UnloadImage(lldb_private::Process *process,
96 EvaluateLibdlExpression(lldb_private::Process *process, const char *expr_cstr,
105 llvm::StringRef GetLibdlFunctionDeclarations(lldb_private::Process *process);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DThreadMinidump.cpp36 ThreadMinidump::ThreadMinidump(Process &process, const minidump::Thread &td, argument
38 : Thread(process, td.ThreadId), m_thread_reg_ctx_sp(),
64 ProcessMinidump *process =
66 ArchSpec arch = process->GetArchitecture();
H A DThreadMinidump.h23 ThreadMinidump(Process &process, const minidump::Thread &td,
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/
H A DPlatform.cpp13 #include <process.h>
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DHostProcess.h15 /// A class that represents a running process on the host machine.
18 /// host machine. It is not intended to be represent a process which is being
36 HostProcess(lldb::process_t process);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp44 CPPLanguageRuntime::CPPLanguageRuntime(Process *process) argument
45 : LanguageRuntime(process) {}
166 Process *process = exe_ctx.GetProcessPtr(); local
168 if (process == nullptr)
171 uint32_t address_size = process->GetAddressByteSize();
177 process->ReadPointerFromMemory(member__f_pointer_value, status);
183 process->ReadPointerFromMemory(vtable_address + address_size, status);
192 process->ReadPointerFromMemory(address_after_vtable, status);
197 Target &target = process->GetTarget();
253 // vtable. We will use a process o
[all...]
/freebsd-11-stable/lib/libc/mips/sys/
H A DOvfork.S47 * v1 == 0 in parent process, v1 == 1 in child process.
60 beq v1, zero, 2f # parent process ?
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DSystemRuntime.h44 /// Find a system runtime plugin for a given process.
47 /// that can be used to track image changes in \a process.
49 /// \param[in] process
50 /// The process for which to try and locate a system runtime
52 static SystemRuntime *FindPlugin(Process *process);
54 /// Construct with a process.
55 SystemRuntime(lldb_private::Process *process);
63 /// Called after attaching to a process.
66 /// process.
69 /// Called after launching a process
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DInstrumentationRuntime.cpp21 lldb_private::ModuleList &module_list, lldb_private::Process *process,
37 runtimes[type] = create_callback(process->shared_from_this());
20 ModulesDidLoad( lldb_private::ModuleList &module_list, lldb_private::Process *process, InstrumentationRuntimeCollection &runtimes) argument
H A DQueueList.cpp16 QueueList::QueueList(Process *process) argument
17 : m_process(process), m_stop_id(0), m_queues(), m_mutex() {}
H A DTargetList.cpp483 Process *process = (*pos)->GetProcessSP().get(); local
484 if (process && process->GetID() == pid) {
492 TargetSP TargetList::FindTargetWithProcess(Process *process) const {
494 if (process) {
498 if (process == (*pos)->GetProcessSP().get()) {
528 Process *process = target_sp->GetProcessSP().get(); local
529 if (process) {
530 process->SendAsyncInterrupt();
545 Process *process local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DUnwindMacOSXFrameBackchain.cpp81 Process *process = exe_ctx.GetProcessPtr(); local
82 if (process == nullptr)
106 if (process->ReadMemory(frame.fp, &frame.fp, k_frame_size, error) !=
142 process->ReadMemory(first_frame_sp, &frame.pc, sizeof(frame.pc),
171 Process *process = exe_ctx.GetProcessPtr(); local
172 if (process == nullptr)
196 if (process->ReadMemory(frame.fp, &frame.fp, k_frame_size, error) !=
232 if (process->ReadMemory(first_frame_sp, &frame.pc, sizeof(frame.pc),
H A DHistoryThread.cpp27 HistoryThread::HistoryThread(lldb_private::Process &process, lldb::tid_t tid, argument
29 : Thread(process, tid, true), m_framelist_mutex(), m_framelist(),
H A DRegisterContextLLDB.cpp132 Process *process = exe_ctx.GetProcessPtr(); local
139 ABI *abi = process->GetABI().get();
145 m_current_pc.SetLoadAddress(current_pc, &process->GetTarget());
170 if (IsTrapHandlerSymbol(process, m_sym_ctx)) {
240 process->GetTarget(), m_thread);
295 Process *process = exe_ctx.GetProcessPtr(); local
298 ABI *abi = process->GetABI().get();
327 m_current_pc.SetLoadAddress(pc, &process->GetTarget(), allow_section_end);
339 if (process->GetLoadAddressPermissions(pc, permissions) &&
398 if (process
690 Process *process = exe_ctx.GetProcessPtr(); local
1113 IsTrapHandlerSymbol( lldb_private::Process *process, const lldb_private::SymbolContext &m_sym_ctx) const argument
1337 Process *process = exe_ctx.GetProcessPtr(); local
1780 Process *process = exe_ctx.GetProcessPtr(); local
1851 Process *process = exe_ctx.GetProcessPtr(); local
1874 Process &process = *m_thread.GetProcess(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.h27 OperatingSystemPython(lldb_private::Process *process,
34 CreateInstance(lldb_private::Process *process, bool force);
/freebsd-11-stable/usr.bin/tput/
H A Dtput.c58 static char **process(const char *, char *, char **);
110 argv = process(p, buf, argv);
133 process(const char *cap, char *str, char **argv) function
/freebsd-11-stable/usr.bin/xstr/
H A Dxstr.c91 static void process(const char *);
137 process("x.c");
161 process(const char *name) function

Completed in 283 milliseconds

1234567891011>>