Searched refs:process (Results 201 - 225 of 593) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/zstd/lib/common/
H A Dthreading.c32 #include <process.h>
/freebsd-current/contrib/wpa/src/eap_peer/
H A Deap_otp.c94 eap->process = eap_otp_process;
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h26 NativeThreadProtocol(NativeProcessProtocol &process, lldb::tid_t tid);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DInstrumentationRuntime.h30 /// The instrumented process.
78 Process *process,
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DLanguageRuntime.cpp202 LanguageRuntime *LanguageRuntime::FindPlugin(Process *process, argument
210 if (LanguageRuntime *runtime = create_callback(process, language))
216 LanguageRuntime::LanguageRuntime(Process *process) : Runtime(process) {} argument
H A DExecutionContext.cpp95 ExecutionContext::ExecutionContext(Process *process, Thread *thread, argument
98 if (process) {
99 m_process_sp = process->shared_from_this();
100 m_target_sp = process->GetTarget().shared_from_this();
268 void ExecutionContext::SetProcessPtr(Process *process) { argument
269 if (process)
270 m_process_sp = process->shared_from_this();
365 // same thread within a process.
507 // Only fill in the thread and frame if our process is stopped
536 void ExecutionContextRef::SetProcessPtr(Process *process) { argument
[all...]
/freebsd-current/contrib/ntp/libntp/lib/isc/win32/
H A Dthread.c22 #include <process.h>
/freebsd-current/kerberos5/lib/libkdc/
H A DMakefile26 process.c \
/freebsd-current/lib/atf/libatf-c++/
H A DMakefile60 process.cpp \
/freebsd-current/tests/sys/fs/fusefs/
H A Dflush.cc47 EXPECT_CALL(*m_mock, process(
70 EXPECT_CALL(*m_mock, process(
194 * _even_if_ it's not the process's last file descriptor for this file.
207 EXPECT_CALL(*m_mock, process(
216 EXPECT_CALL(*m_mock, process(
H A Dsymlink.cc46 EXPECT_CALL(*m_mock, process(
75 EXPECT_CALL(*m_mock, process(
109 EXPECT_CALL(*m_mock, process(
138 EXPECT_CALL(*m_mock, process(
H A Dgetattr.cc88 EXPECT_CALL(*m_mock, process(
118 EXPECT_CALL(*m_mock, process(
151 EXPECT_CALL(*m_mock, process(
180 EXPECT_CALL(*m_mock, process(
206 EXPECT_CALL(*m_mock, process(
287 EXPECT_CALL(*m_mock, process(
325 EXPECT_CALL(*m_mock, process(
H A Dlink.cc44 EXPECT_CALL(*m_mock, process(
78 EXPECT_CALL(*m_mock, process(
119 EXPECT_CALL(*m_mock, process(
162 EXPECT_CALL(*m_mock, process(
202 EXPECT_CALL(*m_mock, process(
H A Dsetattr.cc96 EXPECT_CALL(*m_mock, process(
108 EXPECT_CALL(*m_mock, process(
139 EXPECT_CALL(*m_mock, process(
191 EXPECT_CALL(*m_mock, process(
240 EXPECT_CALL(*m_mock, process(
282 EXPECT_CALL(*m_mock, process(
311 EXPECT_CALL(*m_mock, process(
322 EXPECT_CALL(*m_mock, process(
363 EXPECT_CALL(*m_mock, process(
375 EXPECT_CALL(*m_mock, process(
[all...]
H A Dcopy_file_range.cc49 EXPECT_CALL(*m_mock, process(
61 EXPECT_CALL(*m_mock, process(
80 EXPECT_CALL(*m_mock, process(
169 EXPECT_CALL(*m_mock, process(
221 EXPECT_CALL(*m_mock, process(
299 EXPECT_CALL(*m_mock, process(
357 EXPECT_CALL(*m_mock, process(
417 EXPECT_CALL(*m_mock, process(
464 EXPECT_CALL(*m_mock, process(
508 EXPECT_CALL(*m_mock, process(
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Format/
H A DTokenAnalyzer.h93 process(bool SkipAnnotation = false);
/freebsd-current/lib/libc/amd64/string/
H A Dmemrchr.S20 sub $4, %rdx # 4 bytes left to process?
50 1: cmp $-3, %edx # a least one character left to process?
57 cmp $-2, %edx # at least two characters left to process?
64 cmp $-1, %edx # at least three character left to process?
127 /* process remaining 1--16 bytes */
/freebsd-current/contrib/llvm-project/lldb/source/Expression/
H A DUserExpression.cpp193 Process *process = exe_ctx.GetProcessPtr(); local
195 if (process == nullptr && execution_policy == eExecutionPolicyAlways) {
196 LLDB_LOG(log, "== [UserExpression::Evaluate] No process, but the policy is "
199 error.SetErrorString("expression needed to run but couldn't: no process");
206 if (process != nullptr && process->GetState() != lldb::eStateStopped) {
208 "unable to evaluate expression while the process is {0}: the process "
211 StateAsCString(process->GetState()));
216 // there is no process tha
[all...]
/freebsd-current/tools/lua/
H A Dtemplate.lua251 local process
257 context.view = template.process(view, context)
262 process = function(self, context) function
265 context.view = template.process(view, context)
274 context.view = template.process(view, context)
277 process = function(self, context) function
280 context.view = template.process(view, context)
281 return template.process(layout, context)
288 process = function(self, context) function
289 return template.process(vie
301 process = function(...) function
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DHexagonDYLDRendezvous.cpp28 static addr_t ResolveRendezvousAddress(Process *process) { argument
33 info_location = process->GetImageInfoAddress();
38 info_addr = process->ReadPointerFromMemory(info_location, error);
48 HexagonDYLDRendezvous::HexagonDYLDRendezvous(Process *process) argument
49 : m_process(process), m_rendezvous_addr(LLDB_INVALID_ADDRESS), m_current(),
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DValueObjectDynamicValue.cpp137 Process *process = exe_ctx.GetProcessPtr(); local
138 if (!process)
151 runtime = process->GetLanguageRuntime(known_type);
168 runtime = process->GetLanguageRuntime(lldb::eLanguageTypeC_plus_plus);
175 runtime = process->GetLanguageRuntime(lldb::eLanguageTypeObjC);
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc187 assert(!AffinityMask && "Starting a process with an affinity mask is "
275 // Create a child process.
283 // Child process: Execute the program.
325 // object destructors cloned from the parent process aren't
331 // Parent process: Break out of the switch to do our processing.
369 // For WNOHANG, we use waitid (which supports WNOWAIT) until the child process
382 // absence of indiscriminate `wait` calls from the current process (which
394 assert(PI.Pid && "invalid pid to wait on, process not started?");
416 // Parent process: Wait for the child process t
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp59 /// run the enable command. When a process launches or is attached to,
376 // must be processed by the process monitor.
377 {LLDB_OPT_SET_ALL, false, "any-process", 'a', OptionParser::eNoArgument,
446 "process log events. The default is true."},
580 source_flags_sp->AddBooleanItem("any-process", m_include_any_process);
761 "strict-sources' is disabled. This process will "
775 // later if a process hasn't been launched or attached yet.
784 // Now check if we have a running process. If so, we should instruct the
785 // process monitor to enable/disable DarwinLog support now.
788 // Grab the active process
1065 HandleArrivalOfStructuredData( Process &process, llvm::StringRef type_name, const StructuredData::ObjectSP &object_sp) argument
1212 ModulesDidLoad(Process &process, ModuleList &module_list) argument
1325 CreateInstance(Process &process) argument
1563 AddInitCompletionHook(Process &process) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp264 return Status("%s: no process command line specified to launch",
287 "process but one already exists");
300 // needed. llgs local-process debugging may specify PTY paths, which will
301 // make these file actions non-null process launch -i/e/o will also make
336 printf("Launched '%s' as process %" PRIu64 "...\n",
351 return Status("cannot attach to process %" PRIu64
352 " when another process with pid %" PRIu64
360 llvm::errs() << llvm::formatv("failed to attach to process {0}: {1}\n", pid,
387 printf("Attached to process %" PRIu64 "...\n", pid);
397 // Create the matcher used to search the process lis
460 InitializeDelegate( NativeProcessProtocol *process) argument
474 SendWResponse( NativeProcessProtocol *process) argument
728 GetJSONThreadsInfo(NativeProcessProtocol &process, bool abridged) argument
799 NativeProcessProtocol &process = thread.GetProcess(); local
998 SendStopReplyPacketForThread( NativeProcessProtocol &process, lldb::tid_t tid, bool force_synchronous) argument
1034 HandleInferiorState_Exited( NativeProcessProtocol *process) argument
1076 HandleInferiorState_Stopped( NativeProcessProtocol *process) argument
1093 ProcessStateChanged( NativeProcessProtocol *process, lldb::StateType state) argument
1138 DidExec(NativeProcessProtocol *process) argument
1526 ResumeProcess( NativeProcessProtocol &process, const ResumeActionList &actions) argument
1926 SendStopReasonForState( NativeProcessProtocol &process, lldb::StateType process_state, bool force_synchronous) argument
2070 AddProcessThreads( StreamGDBRemote &response, NativeProcessProtocol &process, bool &had_any) argument
4263 SetEnabledExtensions( NativeProcessProtocol &process) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Host/common/
H A DNativeRegisterContext.cpp26 // FIXME revisit invalidation, process stop ids, etc. Right now we don't
345 NativeProcessProtocol &process = m_thread.GetProcess(); local
350 error = process.ReadMemory(src_addr, src.data(), src_len, bytes_read);
366 // order of the memory data doesn't match the process. For now we are
369 process.GetByteOrder(), error);
384 NativeProcessProtocol &process = m_thread.GetProcess(); local
387 // order of the memory data doesn't match the process. For now we are
390 *reg_info, dst.data(), dst_len, process.GetByteOrder(), error);
397 error = process.WriteMemory(dst_addr, dst.data(), bytes_copied,

Completed in 229 milliseconds

1234567891011>>