Searched refs:process (Results 176 - 200 of 413) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DTargetList.h82 /// process.
171 /// with a matching process ID.
178 /// Find the target that contains a process with process ID \a
182 /// The process ID to search our target list for.
186 /// pointer will contain nullptr if no target objects own a process
187 /// with a matching process ID.
193 FindTargetWithProcess (lldb_private::Process *process) const;
201 /// Find the target that contains the process with process I
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectExpression.cpp167 Process *process = interpreter.GetExecutionContext().GetProcessPtr(); local
168 if (process != NULL)
170 ignore_breakpoints = process->GetIgnoreBreakpointsInExpressions();
171 unwind_on_error = process->GetUnwindOnErrorInExpressions();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUserExpression.cpp470 error_stream.PutCString ("error: current process state is unsuitable for expression parsing\n");
477 Process *process = exe_ctx.GetProcessPtr(); local
478 ExecutionContextScope *exe_scope = process;
542 if (process && m_jit_start_addr != LLDB_INVALID_ADDRESS)
543 m_jit_process_wp = lldb::ProcessWP(process->shared_from_this());
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.h152 Process* process,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.h152 Process* process,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.h126 ThreadElfCore (lldb_private::Process &process, const ThreadData &td);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.h147 SyncThreadState(Process *process); // Assumes the sequence mutex has already been acquired.
H A DThreadGDBRemote.h33 ThreadGDBRemote (Process &process, lldb::tid_t tid);
/freebsd-11.0-release/contrib/wpa/src/eap_peer/
H A Deap_gtc.c139 eap->process = eap_gtc_process;
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBBreakpoint.h22 SBProcess &process,
H A DSBModule.h34 SBModule (lldb::SBProcess &process,
84 /// install path is set, every time the process is about to launch
99 /// install path is set, every time the process is about to launch
/freebsd-11.0-release/contrib/file/src/
H A Dfile.c152 private int process(struct magic_set *ms, const char *, int);
384 e |= process(magic, argv[optind], wid);
484 e |= process(ms, line, wid);
498 process(struct magic_set *ms, const char *inname, int wid) function
/freebsd-11.0-release/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmnLLDBDebuggerHandleEvents.cpp824 // Something changed in the process; get the event and report the process's current
830 lldb::SBProcess process = lldb::SBProcess::GetProcessFromEvent(vEvent);
831 if (!process.IsValid())
916 const lldb::ReturnStatus status = rDebugger.GetCommandInterpreter().HandleCommand("process status", result, false);
938 // Details: Print to stdout MI formatted text to indicate process stopped.
1424 lldb::SBProcess process = CMICmnLLDBDebugSessionInfo::Instance().GetDebugger().GetSelectedTarget().GetProcess(); local
1425 if (!process.IsValid())
1428 lldb::SBThread currentThread = process.GetSelectedThread();
1437 const size_t nThread = process
1563 lldb::SBProcess process = CMICmnLLDBDebugSessionInfo::Instance().GetDebugger().GetSelectedTarget().GetProcess(); local
1616 lldb::SBProcess process = CMICmnLLDBDebugSessionInfo::Instance().GetDebugger().GetSelectedTarget().GetProcess(); local
[all...]
H A DMICmnLLDBUtilSBValue.cpp393 lldb::SBProcess process = CMICmnLLDBDebugSessionInfo::Instance().GetProcess(); local
398 const MIuint64 nReadBytes = process.ReadMemory(addr, &ch, sizeof(ch), error);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DLLVMUserExpression.cpp197 "\nThe process has been returned to the state before expression evaluation.");
203 "\nThe process has been left at the point where it was interrupted, "
283 lldb::ProcessSP process; local
286 if (!LockAndCheckContext(exe_ctx, target, process, frame))
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Host/freebsd/
H A DHost.cpp201 kinfo.ki_pid == our_pid || // Skip this process
208 // Every thread is a process in FreeBSD, but all the threads of a single process
209 // have the same pid. Do not store the process info in the result list if a process
260 Host::GetAuxvData(lldb_private::Process *process) argument
268 mib[3] = process->GetID();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.h35 /// @brief Manages communication with the inferior (debugee) process.
37 /// Upon construction, this class prepares and launches an inferior process for
40 /// Changes in the inferior process state are propagated to the associated
45 /// the inferior process state.
50 /// Launches an inferior process ready for debugging. Forms the
52 ProcessMonitor(ProcessFreeBSD *process,
63 ProcessMonitor(ProcessFreeBSD *process,
69 /// Provides the process number of debugee.
73 /// Returns the process associated with this ProcessMonitor.
78 /// process
[all...]
H A DRegisterContextPOSIXProcessMonitor_arm.cpp35 ProcessFreeBSD *process = static_cast<ProcessFreeBSD*>(base.get()); local
36 return process->GetMonitor();
H A DRegisterContextPOSIXProcessMonitor_arm64.cpp35 ProcessFreeBSD *process = static_cast<ProcessFreeBSD*>(base.get()); local
36 return process->GetMonitor();
H A DRegisterContextPOSIXProcessMonitor_mips64.cpp35 ProcessFreeBSD *process = static_cast<ProcessFreeBSD*>(base.get()); local
36 return process->GetMonitor();
H A DRegisterContextPOSIXProcessMonitor_powerpc.cpp35 ProcessFreeBSD *process = static_cast<ProcessFreeBSD*>(base.get()); local
36 return process->GetMonitor();
56 // XXX: Need a way to read/write process VMX registers with ptrace.
77 // XXX: Need a way to read/write process VMX registers with ptrace.
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DCompilerType.cpp1237 // The address is an address in this process, so just copy it
1243 Process *process = nullptr; local
1245 process = exe_ctx->GetProcessPtr();
1246 if (process)
1249 return process->ReadMemory(addr, dst, byte_size, error) == byte_size;
1279 // The address is an address in this process, so just copy it
1285 Process *process = nullptr; local
1287 process = exe_ctx->GetProcessPtr();
1288 if (process)
1291 return process
[all...]
/freebsd-11.0-release/contrib/tcsh/
H A Dtc.decls.h90 extern struct process *find_stop_ed (void);
91 extern void fg_proc_entry (struct process *);
/freebsd-11.0-release/contrib/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc59 // When no file is specified, enumerate all DLLs and EXEs in the process.
/freebsd-11.0-release/contrib/atf/atf-c++/detail/
H A Dprocess.cpp26 #include "atf-c++/detail/process.hpp"
31 #include "atf-c/detail/process.h"
40 namespace detail = atf::process::detail;
41 namespace impl = atf::process;
42 #define IMPL_NAME "atf::process"
342 // iostreams, so we cannot do it from the C library where all the process

Completed in 275 milliseconds

1234567891011>>