Searched refs:process (Results 76 - 100 of 593) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/
H A DDynamicLoaderFreeBSDKernel.cpp100 DynamicLoaderFreeBSDKernel::CreateInstance(lldb_private::Process *process, argument
103 Module *exec = process->GetTarget().GetExecutableModulePointer();
110 process->GetTarget().GetArchitecture().GetTriple();
118 const addr_t kernel_address = FindFreeBSDKernel(process);
120 if (CheckForKernelImageAtAddress(process, kernel_address).IsValid())
121 return new DynamicLoaderFreeBSDKernel(process, kernel_address);
127 DynamicLoaderFreeBSDKernel::FindFreeBSDKernel(lldb_private::Process *process) { argument
128 addr_t kernel_addr = process->GetImageInfoAddress();
130 kernel_addr = FindKernelAtLoadAddress(process);
136 lldb_private::Process *process) {
135 FindKernelAtLoadAddress( lldb_private::Process *process) argument
156 ReadELFHeader(Process *process, lldb::addr_t addr, llvm::ELF::Elf32_Ehdr &header, bool *read_error) argument
178 CheckForKernelImageAtAddress( Process *process, lldb::addr_t addr, bool *read_error) argument
247 DynamicLoaderFreeBSDKernel(Process *process, addr_t kernel_address) argument
264 ReadMemoryModule( lldb_private::Process *process) argument
320 LoadImageUsingMemoryModule( lldb_private::Process *process) argument
489 LoadImageUsingFileAddress( lldb_private::Process *process) argument
773 PrivateInitialize(Process *process) argument
[all...]
/freebsd-current/contrib/kyua/admin/
H A Dcheck-api-docs.awk53 /utils\/process\/executor\.hpp.*Member spawn\(Hook.*\)/ {next}
54 /utils\/process\/executor\.hpp.*Member spawn_followup\(Hook.*\)/ {next}
55 /utils\/process\/executor\.hpp.*Member setup\(void\).*friend/ {next}
/freebsd-current/contrib/kyua/utils/process/
H A Disolation.cpp29 #include "utils/process/isolation.hpp"
57 namespace process = utils::process;
64 const int process::exit_isolation_failure = 124;
73 /// Fails the process with an errno-based error message.
82 std::exit(process::exit_isolation_failure);
90 /// setup, the new process is terminated with an error code.
104 /// Resets the environment of the process to a known state.
129 /// Cleans up the container process to run a new child.
131 /// If there is any error during the setup, the new process i
[all...]
H A Dstatus.hpp29 /// \file utils/process/status.hpp
30 /// Provides the utils::process::status class.
35 #include "utils/process/status_fwd.hpp"
43 namespace process { namespace in namespace:utils
46 /// Representation of the termination status of a process.
48 /// The PID of the process that generated this status.
50 /// Note that the process has exited already and been awaited for, so the
51 /// PID cannot be used to address the process.
54 /// The exit status of the process, if it exited cleanly.
81 } // namespace process
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp26 DynamicLoader *DynamicLoaderStatic::CreateInstance(Process *process, argument
31 process->GetTarget().GetArchitecture().GetTriple();
49 Module *exe_module = process->GetTarget().GetExecutableModulePointer();
59 return new DynamicLoaderStatic(process);
64 DynamicLoaderStatic::DynamicLoaderStatic(Process *process) argument
65 : DynamicLoader(process) {}
67 /// Called after attaching a process.
70 /// attaching to a process.
73 /// Called after attaching a process.
76 /// attaching to a process
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThreadUtil.cpp58 Process *process = m_exe_ctx.GetProcessPtr(); local
60 for (ThreadSP thread_sp : process->Threads())
64 Process *process = m_exe_ctx.GetProcessPtr(); local
67 process->GetThreadList().GetMutex());
78 process->GetThreadList().FindThreadByIndexID(thread_idx);
101 Process *process = m_exe_ctx.GetProcessPtr(); local
114 ThreadSP thread = process->GetThreadList().FindThreadByIndexID(
138 Process *process = m_exe_ctx.GetProcessPtr(); local
139 Thread *thread = process->GetThreadList().FindThreadByID(tid).get();
141 result.AppendErrorWithFormatv("Failed to process threa
171 Process &process = m_exe_ctx.GetProcessRef(); local
[all...]
/freebsd-current/contrib/kyua/engine/
H A Dplain.hpp47 const utils::optional< utils::process::status >&,
57 const utils::optional< utils::process::status >&,
H A Dtap.hpp47 const utils::optional< utils::process::status >&,
57 const utils::optional< utils::process::status >&,
H A Datf.hpp47 const utils::optional< utils::process::status >&,
62 const utils::optional< utils::process::status >&,
/freebsd-current/contrib/kyua/utils/signals/
H A Dinterrupts_test.cpp43 #include "utils/process/child.ipp"
44 #include "utils/process/status.hpp"
49 namespace process = utils::process;
73 /// Child process that pauses waiting to be killed.
79 // We loop waiting for signals because we want the parent process to send us
205 std::auto_ptr< process::child > child1(process::child::fork_files(
207 std::auto_ptr< process::child > child2(process
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DOperatingSystem.h21 /// Halted OS plug-ins can be used by any process to locate and create
29 /// Find a halted OS plugin for a given process.
34 /// \param[in] process
35 /// The process for which to try and locate a halted OS
41 static OperatingSystem *FindPlugin(Process *process, const char *plugin_name);
43 OperatingSystem(Process *process);
67 *m_process; ///< The process that this dynamic loader plug-in is tracking.
H A DStructuredDataPlugin.h19 /// Plugin that supports process-related structured data sent asynchronously
25 /// StructuredDataPlugin instances are inherently tied to a process. The
27 /// delivered structured data from the process monitor, and do something
31 /// memory usage, and other run-time aspects of the process. That data
52 /// When Process is informed of a list of process-monitor-supported
57 /// mapped to that process. A plugin can support handling multiple
59 /// created covering all of the mapped features for a given process.
62 /// The name of the feature tag supported by a process.
69 /// Handle the arrival of asynchronous structured data from the process.
71 /// When asynchronous structured data arrives from the process monito
[all...]
H A DAssertFrameRecognizer.h23 /// \param[in] process
24 /// The process that is currently asserting. This will give us information on
26 void RegisterAssertFrameRecognizer(Process *process);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.h21 DynamicLoaderWindowsDYLD(Process *process);
30 static DynamicLoader *CreateInstance(Process *process, bool force);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/wasm-DYLD/
H A DDynamicLoaderWasmDYLD.h19 DynamicLoaderWasmDYLD(Process *process);
27 static DynamicLoader *CreateInstance(Process *process, bool force);
/freebsd-current/usr.bin/sed/
H A Dextern.h55 void process(void);
/freebsd-current/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-current/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DThreadMemory.cpp23 ThreadMemory::ThreadMemory(Process &process, tid_t tid, argument
25 : Thread(process, tid), m_backing_thread_sp(),
29 ThreadMemory::ThreadMemory(Process &process, lldb::tid_t tid, argument
32 : Thread(process, tid), m_backing_thread_sp(), m_thread_info_valobj_sp(),
/freebsd-current/sys/crypto/openssl/
H A Dossl_cipher.h53 ossl_cipher_process_t *process; member in struct:ossl_cipher
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h56 Process &process, llvm::StringRef type_name,
64 void ModulesDidLoad(Process &process, ModuleList &module_list) override;
75 static lldb::StructuredDataPluginSP CreateInstance(Process &process);
90 void AddInitCompletionHook(Process &process);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.h101 bool Read(Process *process, lldb::addr_t addr);
121 bool Read(Process *process, lldb::addr_t addr);
139 bool Read(Process *process, lldb::addr_t addr);
149 bool Read(Process *process, lldb::addr_t addr);
153 GetMethodList(Process *process, lldb::addr_t method_list_ptr) const;
163 static size_t GetSize(Process *process, bool is_small) { argument
168 field_size = process->GetAddressByteSize();
175 bool Read(Process *process, lldb::addr_t addr,
185 bool Read(Process *process, lldb::addr_t addr);
198 static size_t GetSize(Process *process) { argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DAddressableBits.h36 void SetProcessMasks(lldb_private::Process &process);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.h19 JITLoaderGDB(lldb_private::Process *process);
32 static lldb::JITLoaderSP CreateInstance(lldb_private::Process *process,
66 lldb_private::Process *process,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.h57 static CPPLanguageRuntime *Get(Process &process) { argument
59 process.GetLanguageRuntime(lldb::eLanguageTypeC_plus_plus));
83 CPPLanguageRuntime(Process *process);
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointOptionCommon.cpp60 Process *process = exe_ctx.GetProcessPtr(); local
61 if (process) {
62 SBProcess sb_process(process->shared_from_this());

Completed in 296 milliseconds

1234567891011>>