Searched refs:process (Results 101 - 125 of 413) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DExecutionContext.h26 /// following objects: target, process, thread, and frame. Many objects
31 /// evaluate a global or static variable (a process isn't necessarily
40 /// a process, then only the process and target references will be valid.
41 /// For threads, only the thread, process and target references will be
67 /// references to the execution objects (target, process, thread and frame)
110 /// (the process and its selected thread, and the thread's selected
120 /// make weak references too the frame, thread, process and target.
122 /// make weak references too the thread, process and target.
123 /// If the ExecutionContextScope object is valid and refers to a process,
[all...]
H A DMemory.h27 // A class to track memory that was read from a live process between
36 MemoryCache (Process &process);
158 // need some memory in a process that is being debugged.
166 AllocatedMemoryCache (Process &process);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectArgs.cpp99 Process *process = m_exe_ctx.GetProcessPtr(); local
100 if (!process)
102 result.AppendError ("Args found no process.");
107 const ABI *abi = process->GetABI().get();
110 result.AppendError ("The current process has no ABI.");
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DRegisterContextPOSIX_powerpc.cpp283 // Get the target process whose privileged thread was used for the register read.
285 Process *process = CalculateProcess().get();
287 if (process)
288 byte_order = process->GetByteOrder();
H A DHistoryThread.h31 /// @brief A thread object representing a backtrace from a previous point in the process execution
34 /// process execution. It is given a backtrace list of pc addresses and
42 HistoryThread (lldb_private::Process &process, lldb::tid_t tid, std::vector<lldb::addr_t> pcs, uint32_t stop_id, bool stop_id_is_valid);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.h39 CreateInstance(Process *process, lldb::LanguageType language);
202 AppleObjCRuntimeV1(Process *process);
/freebsd-11.0-release/contrib/ntp/sntp/unity/auto/
H A DparseOutput.rb3 # A simple parser. Takes the output files generated during the build process and
115 def process(name) method in class:ParseOutput
187 parseMyFile.process(a)
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.cpp157 // Early in process startup, we can get a thread that has an invalid byte order
158 // because the process hasn't been completely set up yet (see the ctor where the
159 // byte order is setfrom the process). If that's the case, we can't set the
213 Process *process = exe_ctx.GetProcessPtr(); local
215 if (process == NULL || thread == NULL)
218 GDBRemoteCommunicationClient &gdb_comm (((ProcessGDBRemote *)process)->GetGDBRemote());
342 GDBRemoteRegisterContext::SyncThreadState(Process *process) argument
346 GDBRemoteCommunicationClient &gdb_comm (((ProcessGDBRemote *) process)->GetGDBRemote());
368 Process *process = exe_ctx.GetProcessPtr(); local
370 if (process
512 Process *process = exe_ctx.GetProcessPtr(); local
541 Process *process = exe_ctx.GetProcessPtr(); local
561 Process *process = exe_ctx.GetProcessPtr(); local
[all...]
H A DGDBRemoteCommunicationClient.h77 SendContinuePacketAndWaitForResponse (ProcessGDBRemote *process,
83 SendvContPacket (ProcessGDBRemote *process,
176 /// A process ID for the remote gdb server to attach to.
193 /// data to the remote process.
209 /// Sets the path to use for stdin/out/err for a process
226 /// Sets the disable ASLR flag to \a enable for a process that will
239 /// Sets the DetachOnError flag to \a enable for the process controlled by the stub.
251 /// Sets the working directory to \a path for a process that will
255 /// directory for the platform process.
258 /// The path to a directory to use when launching our process
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DStopInfo.cpp376 Process *process = exe_ctx.GetProcessPtr(); variable
377 if (process->GetModIDRef().IsLastResumeForUserExpression())
390 bool ignoring_breakpoints = process->GetIgnoreBreakpointsInExpressions();
412 process->GetTarget().GetDebugger().GetAsyncOutputStream()->Printf("Warning: hit breakpoint while "
586 process(p),
589 if (process && watchpoint)
593 process->DisableWatchpoint(watchpoint, notify);
599 if (process && watchpoint)
604 process->EnableWatchpoint(watchpoint, notify);
611 Process *process; member in class:lldb_private::StopInfoWatchpoint::WatchpointSentry
708 Process* process = exe_ctx.GetProcessPtr(); variable
[all...]
H A DLanguageRuntime.cpp251 LanguageRuntime::FindPlugin (Process *process, lldb::LanguageType language) argument
260 language_runtime_ap.reset (create_callback(process, language));
269 LanguageRuntime::LanguageRuntime(Process *process) : argument
270 m_process (process)
H A DExecutionContext.cpp143 ExecutionContext::ExecutionContext(Process* process, Thread *thread, StackFrame *frame) : argument
149 if (process)
151 m_process_sp = process->shared_from_this();
152 m_target_sp = process->GetTarget().shared_from_this();
380 ExecutionContext::SetProcessPtr (Process *process) argument
382 if (process)
383 m_process_sp = process->shared_from_this();
502 // represent the same thread within a process.
718 // Only fill in the thread and frame if our process is stopped
747 ExecutionContextRef::SetProcessPtr (Process *process) argument
[all...]
H A DObjCLanguageRuntime.cpp36 ObjCLanguageRuntime::ObjCLanguageRuntime (Process *process) : argument
37 LanguageRuntime (process),
282 Process *process = exe_ctx.GetProcessPtr(); local
283 if (process)
286 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error);
/freebsd-11.0-release/crypto/heimdal/kdc/
H A Dprocess.c200 for (i = 0; services[i].process != NULL; i++) {
201 ret = (*services[i].process)(context, config, &req_buffer,
239 for (i = 0; services[i].process != NULL; i++) {
242 ret = (*services[i].process)(context, config, &req_buffer,
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h28 NativeThreadProtocol (NativeProcessProtocol *process, lldb::tid_t tid);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-types.h45 #include <process.h>
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DAuxVector.h27 /// When a process is loaded on Linux a vector of values is placed onto the
34 AuxVector(lldb_private::Process *process);
/freebsd-11.0-release/contrib/llvm/tools/lldb/tools/driver/
H A DPlatform.cpp13 #include <process.h>
/freebsd-11.0-release/contrib/wpa/src/eap_peer/
H A Deap_otp.c95 eap->process = eap_otp_process;
/freebsd-11.0-release/contrib/xz/src/liblzma/check/
H A Dsha256.c119 process(lzma_check_state *check) function
161 process(check);
178 process(check);
190 process(check);
/freebsd-11.0-release/lib/atf/libatf-c++/
H A DMakefile57 process.cpp \
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DThreading.cpp72 #include <process.h>
/freebsd-11.0-release/contrib/ntp/lib/isc/win32/
H A Dthread.c22 #include <process.h>
/freebsd-11.0-release/contrib/atf/atf-c++/detail/
H A Dtest_helpers.cpp38 #include "atf-c++/detail/process.hpp"
61 atf::process::argv_array(optargs));
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DHexagonDYLDRendezvous.cpp34 ResolveRendezvousAddress(Process *process) argument
40 info_location = process->GetImageInfoAddress();
45 info_addr = process->ReadPointerFromMemory(info_location, error);
55 HexagonDYLDRendezvous::HexagonDYLDRendezvous(Process *process) argument
56 : m_process(process),

Completed in 297 milliseconds

1234567891011>>