Searched refs:process (Results 1 - 25 of 342) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/atf/atf-c++/
H A Dbuild.hpp33 namespace process { namespace in namespace:atf
35 } // namespace process
43 process::argv_array c_o(const std::string&, const std::string&,
44 const process::argv_array&);
45 process::argv_array cpp(const std::string&, const std::string&,
46 const process::argv_array&);
47 process::argv_array cxx_o(const std::string&, const std::string&,
48 const process::argv_array&);
H A Dcheck.hpp40 namespace process { namespace in namespace:atf
42 } // namespace process
74 friend std::auto_ptr< check_result > exec(const atf::process::argv_array&);
118 const atf::process::argv_array&);
120 const atf::process::argv_array&);
122 const atf::process::argv_array&);
123 std::auto_ptr< check_result > exec(const atf::process::argv_array&);
H A Dbuild.cpp35 #include "atf-c++/detail/process.hpp"
45 atf::process::argv_array
54 return atf::process::argv_array(aux);
58 atf::process::argv_array
62 atf::process::argv_array argv((const char* const*)l);
75 atf::process::argv_array
77 const atf::process::argv_array& optargs)
89 atf::process::argv_array
91 const atf::process::argv_array& optargs)
103 atf::process
[all...]
H A Dbuild_test.cpp38 #include "atf-c++/detail/process.hpp"
75 equal_argvs(const atf::process::argv_array& aa, const char* const* array)
79 atf::process::argv_array::size_type i = 0;
95 check_equal_argvs(const atf::process::argv_array& aa, const char* const* array)
119 ATF_REQUIRE(equal_argvs(atf::process::argv_array(argv), array));
126 ATF_REQUIRE(!equal_argvs(atf::process::argv_array(argv), array));
133 ATF_REQUIRE(!equal_argvs(atf::process::argv_array(argv), array));
140 ATF_REQUIRE(equal_argvs(atf::process::argv_array(argv), array));
163 atf::process::argv_array argv =
165 atf::process
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.cpp26 FreeBSDThread::FreeBSDThread(Process &process, lldb::tid_t tid) argument
27 : POSIXThread(process, tid)
46 ProcessFreeBSD *process = static_cast<ProcessFreeBSD *>(process_sp.get()); local
48 bool signo_valid = process->GetUnixSignals().SignalIsValid(signo);
54 process->m_suspend_tids.push_back(GetID());
57 process->m_run_tids.push_back(GetID());
59 process->m_resume_signo = signo;
62 process->m_step_tids.push_back(GetID());
64 process->m_resume_signo = signo;
H A DFreeBSDThread.h27 FreeBSDThread(lldb_private::Process &process, lldb::tid_t tid);
/freebsd-10-stable/gnu/usr.bin/gdb/gdbserver/
H A Dfbsd-low.c46 ``all_processes'' is keyed by the process ID - which on Linux is (presently)
79 /* This function should only be called if the process got a SIGTRAP.
83 If we were single-stepping this process using PT_STEP,
87 If we continue the process using PTRACE_CONT, we will get a
115 struct process_info *process; local
117 process = (struct process_info *) malloc (sizeof (*process));
118 memset (process, 0, sizeof (*process));
120 process
203 struct process_info *process; local
220 struct process_info *process = get_thread_process (thread); local
242 struct process_info *process = get_thread_process (thread); local
328 struct process_info *process = (struct process_info *) entry; local
700 struct process_info *process = (struct process_info *) entry; local
723 struct process_info *process = (struct process_info *) entry; local
778 struct process_info *process = (struct process_info *) entry; local
878 struct process_info *process; local
901 struct process_info *process; local
931 struct process_info *process; local
957 struct process_info *process = (struct process_info *) entry; local
1198 struct process_info *process; local
[all...]
/freebsd-10-stable/contrib/tcsh/
H A Dsh.proc.h36 * C shell - process structure declarations
40 * Structure for each process the shell knows about:
47 struct process { struct
48 struct process *p_next; /* next in global "proclist" */
49 struct process *p_friends; /* next in job list (or self) */
97 #define PDUMPED (1<<9) /* process dumped core */
102 #define PPTIME (1<<14) /* time individual process */
119 EXTERN struct process proclist IZERO_STRUCT;/* list head of all processes */
121 EXTERN struct process *pholdjob IZERO; /* one level stack of current jobs */
123 EXTERN struct process *pcurrjo
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/
H A DOperatingSystem.cpp23 OperatingSystem::FindPlugin (Process *process, const char *plugin_name) argument
32 std::unique_ptr<OperatingSystem> instance_ap(create_callback(process, true));
41 std::unique_ptr<OperatingSystem> instance_ap(create_callback(process, false));
50 OperatingSystem::OperatingSystem (Process *process) : argument
51 m_process (process)
H A DSystemRuntime.cpp19 SystemRuntime::FindPlugin (Process *process) argument
24 std::unique_ptr<SystemRuntime> instance_ap(create_callback(process));
35 SystemRuntime::SystemRuntime(Process *process) : argument
36 m_process (process),
/freebsd-10-stable/contrib/llvm/lib/Support/
H A DProcess.cpp26 // Empty virtual destructor to anchor the vtable for the process class.
27 process::~process() {}
29 self_process *process::get_self() {
47 // instance should live until the process terminates to avoid the potential for
58 /// startup of the process to get approximately correct results.
/freebsd-10-stable/contrib/atf/atf-c++/detail/
H A Dtest_helpers.hpp39 #include <atf-c++/detail/process.hpp>
100 atf::process::child c = atf::process::fork(
102 atf::process::stream_redirect_path(atf::fs::path("stdout")),
103 atf::process::stream_redirect_path(atf::fs::path("stderr")),
105 const atf::process::status s = c.wait();
H A Dprocess_test.cpp26 #include "atf-c++/detail/process.hpp"
58 atf::process::status
61 using atf::process::exec;
68 atf::process::argv_array(argv),
69 atf::process::stream_inherit(),
70 atf::process::stream_inherit());
87 atf::process::argv_array argv(carray);
94 atf::process::argv_array argv(carray);
102 atf::process::argv_array argv(carray);
121 atf::process
[all...]
/freebsd-10-stable/etc/
H A Dmac.conf16 default_labels process ?biba,?lomac,?mls,?partition,?sebsd
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DInferiorCallPOSIX.cpp38 lldb_private::InferiorCallMmap (Process *process, argument
47 Thread *thread = process->GetThreadList().GetSelectedThread().get();
56 = process->GetTarget().GetImages().FindFunctions (ConstString ("mmap"),
98 ClangASTContext *clang_ast_context = process->GetTarget().GetScratchClangASTContext();
120 ExecutionResults result = process->RunThreadPlan (exe_ctx,
128 if (process->GetAddressByteSize() == 4)
133 else if (process->GetAddressByteSize() == 8)
150 lldb_private::InferiorCallMunmap (Process *process, argument
154 Thread *thread = process->GetThreadList().GetSelectedThread().get();
163 = process
226 InferiorCall(Process *process, const Address *address, addr_t &returned_func) argument
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/Support/
H A DProcess.h11 /// Provides a library for accessing information about this process and other
20 /// current process. The goal is to migrate users of this API over to the new
44 /// system process.
46 /// This base class is the core interface behind any OS process. It exposes
47 /// methods to query for generic information about a particular process.
50 /// can optionally expose more interfaces unique to certain process kinds.
51 class process { class in namespace:llvm::sys
53 /// \brief Only specific subclasses of process objects can be destroyed.
54 virtual ~process();
57 /// \brief Operating system specific type to identify a process
[all...]
/freebsd-10-stable/contrib/unvis/
H A Dunvis.c51 static void process(FILE *, const char *, int);
97 process(fp, *argv, eflags);
103 process(stdin, "<stdin>", eflags);
108 process(FILE *fp, const char *filename, int eflags) function
/freebsd-10-stable/usr.bin/sed/
H A DMakefile7 SRCS= compile.c main.c misc.c process.c
H A Dextern.h54 void process(void);
/freebsd-10-stable/contrib/ntp/lib/isc/win32/
H A Dunistd.h60 #include <process.h>
/freebsd-10-stable/libexec/talkd/
H A DMakefile5 SRCS= talkd.c announce.c process.c table.c print.c ttymsg.c
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
H A DSBFrame.cpp119 Process *process = exe_ctx.GetProcessPtr(); local
120 if (target && process)
123 if (stop_locker.TryLock(&process->GetRunLock()))
139 log->Printf ("SBFrame::GetSymbolContext () => error: process is running");
161 Process *process = exe_ctx.GetProcessPtr(); local
162 if (target && process)
165 if (stop_locker.TryLock(&process->GetRunLock()))
182 log->Printf ("SBFrame::GetModule () => error: process is running");
203 Process *process = exe_ctx.GetProcessPtr(); local
204 if (target && process)
243 Process *process = exe_ctx.GetProcessPtr(); local
283 Process *process = exe_ctx.GetProcessPtr(); local
322 Process *process = exe_ctx.GetProcessPtr(); local
361 Process *process = exe_ctx.GetProcessPtr(); local
400 Process *process = exe_ctx.GetProcessPtr(); local
456 Process *process = exe_ctx.GetProcessPtr(); local
496 Process *process = exe_ctx.GetProcessPtr(); local
537 Process *process = exe_ctx.GetProcessPtr(); local
577 Process *process = exe_ctx.GetProcessPtr(); local
617 Process *process = exe_ctx.GetProcessPtr(); local
683 Process *process = exe_ctx.GetProcessPtr(); local
752 Process *process = exe_ctx.GetProcessPtr(); local
839 Process *process = exe_ctx.GetProcessPtr(); local
1021 Process *process = exe_ctx.GetProcessPtr(); local
1093 Process *process = exe_ctx.GetProcessPtr(); local
1181 Process *process = exe_ctx.GetProcessPtr(); local
1231 Process *process = exe_ctx.GetProcessPtr(); local
1288 Process *process = exe_ctx.GetProcessPtr(); local
1381 Process *process = exe_ctx.GetProcessPtr(); local
1445 Process *process = exe_ctx.GetProcessPtr(); local
1483 Process *process = exe_ctx.GetProcessPtr(); local
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp27 DynamicLoaderStatic::CreateInstance (Process* process, bool force) argument
32 const llvm::Triple &triple_ref = process->GetTarget().GetArchitecture().GetTriple();
40 Module *exe_module = process->GetTarget().GetExecutableModulePointer();
52 return new DynamicLoaderStatic (process);
59 DynamicLoaderStatic::DynamicLoaderStatic (Process* process) : argument
60 DynamicLoader(process)
72 /// Called after attaching a process.
75 /// attaching to a process.
84 /// Called after attaching a process.
87 /// attaching to a process
[all...]
H A DDynamicLoaderStatic.h47 CreateInstance (lldb_private::Process *process, bool force);
49 DynamicLoaderStatic (lldb_private::Process *process);
54 /// Called after attaching a process.
57 /// attaching to a process.
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Target/
H A DOperatingSystem.h26 /// Halted OS plug-ins can be used by any process to locate and create
39 /// Find a halted OS plugin for a given process.
45 /// @param[in] process
46 /// The process for which to try and locate a halted OS
54 FindPlugin (Process *process, const char *plugin_name);
59 OperatingSystem (Process *process);
94 Process* m_process; ///< The process that this dynamic loader plug-in is tracking.

Completed in 187 milliseconds

1234567891011>>