Searched refs:process (Results 126 - 150 of 593) sorted by relevance

1234567891011>>

/freebsd-current/contrib/kyua/utils/
H A Dstacktrace.cpp54 #include "utils/process/executor.ipp"
55 #include "utils/process/operations.hpp"
56 #include "utils/process/status.hpp"
60 namespace executor = utils::process::executor;
62 namespace process = utils::process;
79 /// Maximum time the external GDB process is allowed to run for.
165 process::exec(_gdb, args);
205 utils::find_core(const fs::path& program, const process::status& status,
292 const process
[all...]
H A Dstacktrace_test.cpp50 #include "utils/process/executor.ipp"
51 #include "utils/process/child.ipp"
52 #include "utils/process/operations.hpp"
53 #include "utils/process/status.hpp"
58 namespace executor = utils::process::executor;
60 namespace process = utils::process;
102 process::exec(_copy_name, args);
157 static process::status
165 const process
[all...]
/freebsd-current/contrib/kyua/engine/
H A Datf_result.hpp30 /// Functions and types to process the results of ATF-based test cases.
43 #include "utils/process/status_fwd.hpp"
96 atf_result apply(const utils::optional< utils::process::status >&) const;
108 const utils::optional< utils::process::status >&,
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DQueueList.cpp16 QueueList::QueueList(Process *process) argument
17 : m_process(process), m_stop_id(0), m_queues(), m_mutex() {}
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 DRegisterContextUnwind.cpp133 Process *process = exe_ctx.GetProcessPtr(); local
140 if (ABISP abi_sp = process->GetABI())
151 m_current_pc.SetLoadAddress(current_pc, &process->GetTarget());
176 if (IsTrapHandlerSymbol(process, m_sym_ctx)) {
278 process->GetTarget(), m_thread);
333 Process *process = exe_ctx.GetProcessPtr(); local
357 ABISP abi_sp = process->GetABI();
392 m_current_pc.SetLoadAddress(pc, &process->GetTarget(), allow_section_end);
408 if (process->GetLoadAddressPermissions(pc, permissions) &&
467 if (process
801 Process *process = exe_ctx.GetProcessPtr(); local
1231 IsTrapHandlerSymbol( lldb_private::Process *process, const lldb_private::SymbolContext &m_sym_ctx) const argument
1492 Process *process = exe_ctx.GetProcessPtr(); local
1945 Process *process = exe_ctx.GetProcessPtr(); local
2023 Process *process = exe_ctx.GetProcessPtr(); local
2049 Process &process = *m_thread.GetProcess(); local
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Dptrace3.sh58 * A regression test for a bug introduced in r269656. The test process p creates
59 * child processes c1 and c2 which do nothing but sleep; a third child process
H A Dptrace2.sh29 # Regression test for kern/142757, race condition in traced process signal
53 /* fork dummy child process */
102 /* fork dummy child process */
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.cpp28 HistoryThread::HistoryThread(lldb_private::Process &process, lldb::tid_t tid, argument
31 : Thread(process, tid, true), m_framelist_mutex(), m_framelist(),
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedThread.h30 ScriptedThread(ScriptedProcess &process,
37 Create(ScriptedProcess &process,
/freebsd-current/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dofh.t15 SOURCE => q{My process ID is {$$}});
33 is $t, "My process ID is $$";
/freebsd-current/contrib/llvm-project/lldb/source/DataFormatters/
H A DCXXFunctionPointer.cpp53 if (Process *process = exe_ctx.GetProcessPtr()) {
54 if (ABISP abi_sp = process->GetABI()) {
/freebsd-current/lib/libc/amd64/string/
H A Dtimingsafe_bcmp.S41 cmp $16, %rdx # at least 17 bytes to process?
44 cmp $8, %edx # at least 9 bytes to process?
47 cmp $4, %edx # at least 5 bytes to process?
50 cmp $2, %edx # at least 3 bytes to process?
88 /* more than 16 bytes: process buffer in a loop */
89 .Lgt16: mov (%rdi), %rax # process first 16 bytes
112 /* process last 16 bytes */
124 cmp $32, %rdx # at least 33 bytes to process?
127 cmp $16, %edx # at least 17 bytes to process?
130 cmp $8, %edx # at least 9 bytes to process
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/
H A DGNUstepObjCRuntime.cpp67 LanguageRuntime *GNUstepObjCRuntime::CreateInstance(Process *process, argument
71 if (!process)
74 Target &target = process->GetTarget();
97 return new GNUstepObjCRuntime(process);
102 GNUstepObjCRuntime::GNUstepObjCRuntime(Process *process) argument
103 : ObjCLanguageRuntime(process), m_objc_module_sp(nullptr) {
104 ReadObjCLibraryIfNeeded(process->GetTarget().GetImages());
/freebsd-current/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-interfaces.h33 typedef DynamicLoader *(*DynamicLoaderCreateInstance)(Process *process,
35 typedef lldb::JITLoaderSP (*JITLoaderCreateInstance)(Process *process,
63 typedef OperatingSystem *(*OperatingSystemCreateInstance)(Process *process,
67 Process *process, lldb::LanguageType language);
74 Process &process);
77 typedef SystemRuntime *(*SystemRuntimeCreateInstance)(Process *process);
135 Process &process);
/freebsd-current/tests/sys/fs/fusefs/
H A Ddefault_permissions_privileged.cc61 EXPECT_CALL(*m_mock, process(
73 EXPECT_CALL(*m_mock, process(
111 EXPECT_CALL(*m_mock, process(
/freebsd-current/usr.bin/xstr/
H A Dxstr.c80 static void process(const char *);
126 process("x.c");
150 process(const char *name) function
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DDynamicLoader.h39 /// unloading. The class is initialized given a live process that is halted at
42 /// Dynamic loader plug-ins can track the process by registering callbacks
46 /// Breakpoints can also be set in the process which can register functions
49 /// boolean value that indicates if the process should continue or halt and
54 /// Find a dynamic loader plugin for a given process.
57 /// that can be used to track image changes in \a process.
59 /// \param[in] process
60 /// The process for which to try and locate a dynamic loader
66 static DynamicLoader *FindPlugin(Process *process,
69 /// Construct with a process
[all...]
H A DQueueList.h25 // Each Process will have a QueueList. When the process execution is paused,
32 QueueList(Process *process);
98 Process *m_process; ///< The process that manages this queue list.
100 m_stop_id; ///< The process stop ID that this queue list is valid for.
101 collection m_queues; ///< The queues for this process.
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.h36 CreateInstance(Process *process, lldb::LanguageType language);
98 ItaniumABILanguageRuntime(Process *process) argument
100 lldb_private::CPPLanguageRuntime(process) {}
/freebsd-current/contrib/tcsh/
H A Dsh.proc.c122 static void pflush (struct process *);
123 static void pfree (struct process *);
124 static void pclrcurr (struct process *);
127 static int pprint (struct process *, int);
128 static void ptprint (struct process *);
131 static struct process *pgetcurr (struct process *);
145 struct process *pp;
146 struct process *fp;
426 struct process *p
[all...]
/freebsd-current/contrib/kyua/utils/process/
H A Dchild.hpp29 /// \file utils/process/child.hpp
39 /// module are slightly different from that of the native calls. Any process
41 /// such children processes is awaited for, its whole process group will be
49 #include "utils/process/child_fwd.hpp"
58 #include "utils/process/operations_fwd.hpp"
59 #include "utils/process/status_fwd.hpp"
62 namespace process { namespace in namespace:utils
74 /// Child process spawner and controller.
110 } // namespace process
/freebsd-current/contrib/llvm-project/llvm/include/llvm/WindowsResource/
H A DResourceProcessor.h38 Error process(StringRef InputData,
/freebsd-current/contrib/vis/
H A Dvis.c64 static void process(FILE *);
154 process(fp);
163 process(stdin);
168 process(FILE *fp) function
226 * At this point we will process one character.
/freebsd-current/crypto/heimdal/kdc/
H A Dkdc.h101 krb5_error_code (*process)(krb5_context context, member in struct:krb5_kdc_service

Completed in 210 milliseconds

1234567891011>>