Home
last modified time | relevance | path

Searched refs:process_name (Results 1 – 16 of 16) sorted by relevance

/freebsd/sys/dev/qat/qat_common/
H A Dadf_cfg_bundle.c18 const char *process_name, in adf_cfg_can_be_shared() argument
28 !strncmp(process_name, in adf_cfg_can_be_shared()
43 const char *process_name) in adf_cfg_get_free_instance() argument
48 if (adf_cfg_can_be_shared(bundle, process_name, inst->polling_mode)) { in adf_cfg_get_free_instance()
76 const char *process_name, in adf_cfg_get_ring_pairs_from_bundle() argument
92 if (strcmp(ADF_KERNEL_SEC, process_name) && in adf_cfg_get_ring_pairs_from_bundle()
93 strcmp(ADF_KERNEL_SAL_SEC, process_name) && in adf_cfg_get_ring_pairs_from_bundle()
103 process_name, in adf_cfg_get_ring_pairs_from_bundle()
109 bundle->type = (!strcmp(ADF_KERNEL_SEC, process_name) || in adf_cfg_get_ring_pairs_from_bundle()
110 !strcmp(ADF_KERNEL_SAL_SEC, process_name)) ? in adf_cfg_get_ring_pairs_from_bundle()
H A Dadf_cfg_device.c198 const char *process_name, in adf_cfg_get_ring_pairs() argument
208 if (strcmp(ADF_KERNEL_SEC, process_name) && in adf_cfg_get_ring_pairs()
209 strcmp(ADF_KERNEL_SAL_SEC, process_name) && in adf_cfg_get_ring_pairs()
214 device, device->bundles[i], inst, process_name); in adf_cfg_get_ring_pairs()
220 device->bundles[i], inst, process_name, free_inst); in adf_cfg_get_ring_pairs()
227 if (!strcmp(ADF_KERNEL_SEC, process_name) || in adf_cfg_get_ring_pairs()
228 !strcmp(ADF_KERNEL_SAL_SEC, process_name)) in adf_cfg_get_ring_pairs()
246 process_name); in adf_cfg_get_ring_pairs()
253 process_name, in adf_cfg_get_ring_pairs()
266 process_name); in adf_cfg_get_ring_pairs()
[all …]
H A Dadf_cfg_bundle.h33 const char *process_name,
40 const char *process_name);
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h301 ProcessInstanceInfoMatch(const char *process_name, in ProcessInstanceInfoMatch() argument
304 m_match_info.GetExecutableFile().SetFile(process_name, in ProcessInstanceInfoMatch()
326 bool NameMatches(const char *process_name) const;
/freebsd/sys/dev/qat/include/
H A Dadf_cfg_device.h73 const char *process_name,
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.cpp259 bool ProcessInstanceInfoMatch::NameMatches(const char *process_name) const { in NameMatches()
266 return lldb_private::NameMatches(process_name, m_name_match_type, match_name); in NameMatches()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp392 llvm::StringRef process_name, bool include_existing) { in AttachWaitProcess() argument
401 process_name, llvm::sys::path::Style::native); in AttachWaitProcess()
413 LLDB_LOG(log, "waiting for '{0}' to appear", process_name); in AttachWaitProcess()
443 process_name); in AttachWaitProcess()
3458 std::string process_name; in Handle_vAttachWait() local
3459 if (!packet.GetHexByteString(process_name)) in Handle_vAttachWait()
3463 LLDB_LOG(log, "attempting to attach to process named '{0}'", process_name); in Handle_vAttachWait()
3465 Status error = AttachWaitProcess(process_name, false); in Handle_vAttachWait()
3467 LLDB_LOG(log, "failed to attach to process named '{0}': {1}", process_name, in Handle_vAttachWait()
3497 std::string process_name; in Handle_vAttachOrWait() local
[all …]
H A DProcessGDBRemote.h92 Status DoWillAttachToProcessWithName(const char *process_name,
103 DoAttachToProcessWithName(const char *process_name,
H A DGDBRemoteCommunicationServerLLGS.h73 Status AttachWaitProcess(llvm::StringRef process_name, bool include_existing);
H A DProcessGDBRemote.cpp522 Status ProcessGDBRemote::DoWillAttachToProcessWithName(const char *process_name, in DoWillAttachToProcessWithName() argument
1103 const char *process_name, const ProcessAttachInfo &attach_info) { in DoAttachToProcessWithName() argument
1108 if (process_name && process_name[0]) { in DoAttachToProcessWithName()
1127 packet.PutBytesAsRawHex8(process_name, strlen(process_name), in DoAttachToProcessWithName()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.h61 DoAttachToProcessWithName(const char *process_name,
H A DScriptedProcess.cpp211 const char *process_name, const ProcessAttachInfo &attach_info) { in DoReadMemory()
197 DoAttachToProcessWithName(const char * process_name,const ProcessAttachInfo & attach_info) DoAttachToProcessWithName() argument
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp2964 Status Process::WillAttachToProcessWithName(const char *process_name, in WillAttachToProcessWithName() argument
2966 return DoWillAttachToProcessWithName(process_name, wait_for_launch); in WillAttachToProcessWithName()
2983 char process_name[PATH_MAX]; in Attach() local
2985 if (attach_info.GetExecutableFile().GetPath(process_name, in Attach()
2986 sizeof(process_name))) { in Attach()
2990 error = WillAttachToProcessWithName(process_name, wait_for_launch); in Attach()
2997 error = DoAttachToProcessWithName(process_name, attach_info); in Attach()
3033 process_name, sizeof(process_name)); in Attach()
3042 "more than one process named %s:\n%s", process_name, in Attach()
3046 "could not find a process named %s", process_name); in Attach()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h965 Status WillAttachToProcessWithName(const char *process_name,
974 virtual Status DoWillAttachToProcessWithName(const char *process_name, in DoWillAttachToProcessWithName() argument
1029 DoAttachToProcessWithName(const char *process_name, in DoAttachToProcessWithName() argument
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp121 const std::string &process_name) { in handle_attach_to_process_name() argument
/freebsd/contrib/tcp_wrappers/
H A DREADME923 tcpdmatch process_name hostname (e.g.: tcpdmatch in.tftpd localhost)
925 tcpdmatch process_name address (e.g.: tcpdmatch in.tftpd 127.0.0.1)