Home
last modified time | relevance | path

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

/external/valgrind/memcheck/tests/
Dfile_locking.c36 static int open_lock_and_map(const char* const process_name, in open_lock_and_map() argument
54 fprintf(stderr, "%s: about to lock file for writing.\n", process_name); in open_lock_and_map()
61 fprintf(stderr, "%s: file locking attempt succeeded.\n", process_name); in open_lock_and_map()
/external/lldb/tools/darwin-threads/
Dexamine-threads.c98 get_kinfo_proc_for_pid (pid_t pid, const char *process_name) in get_kinfo_proc_for_pid() argument
333 const char *process_name = get_process_name_for_pid (pid); in main() local
339 struct kinfo_proc *kinfo = get_kinfo_proc_for_pid (pid, process_name); in main()
341 printf ("pid %d (%s) is currently ", pid, process_name); in main()
482 free ((void *) process_name); in main()
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
DProcessKDP.h94 WillAttachToProcessWithName (const char *process_name, bool wait_for_launch);
106 …DoAttachToProcessWithName (const char *process_name, bool wait_for_launch, const lldb_private::Pro…
DProcessKDP.cpp234 ProcessKDP::WillAttachToProcessWithName (const char *process_name, bool wait_for_launch) in WillAttachToProcessWithName() argument
386 ProcessKDP::DoAttachToProcessWithName (const char *process_name, bool wait_for_launch, const Proces… in DoAttachToProcessWithName() argument
/external/lldb/tools/debugserver/source/
DDNB.cpp45 static size_t GetAllInfosMatchingName (const char *process_name, std::vector<struct kinfo_proc>& ma…
444 const char *process_name; in GetAllInfosMatchingName() local
445 process_name = strrchr (full_process_name, '/'); in GetAllInfosMatchingName()
446 if (process_name == NULL) in GetAllInfosMatchingName()
447 process_name = full_process_name; in GetAllInfosMatchingName()
449 process_name++; in GetAllInfosMatchingName()
451 const int process_name_len = strlen(process_name); in GetAllInfosMatchingName()
466 if (::strncasecmp(process_name, proc_infos[i].kp_proc.p_comm, MAXCOMLEN) == 0) in GetAllInfosMatchingName()
499 if (::strncasecmp(process_name, argv_basename, PATH_MAX) == 0) in GetAllInfosMatchingName()
/external/lldb/utils/vim-lldb/python-vim-lldb/
Dlldb_controller.py144 def doAttach(self, process_name): argument
150 …self.process = self.target.AttachToProcessWithName(self.processListener, process_name, False, erro…
158 print "Attached to %s (pid=%d)" % (process_name, self.pid)
/external/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.h98 WillAttachToProcessWithName (const char *process_name, bool wait_for_launch);
113 DoAttachToProcessWithName (const char *process_name,
DProcessGDBRemote.cpp530 ProcessGDBRemote::WillAttachToProcessWithName (const char *process_name, bool wait_for_launch) in WillAttachToProcessWithName() argument
1006 ProcessGDBRemote::DoAttachToProcessWithName (const char *process_name, bool wait_for_launch, const … in DoAttachToProcessWithName() argument
1012 if (process_name && process_name[0]) in DoAttachToProcessWithName()
1058 …packet.PutBytesAsRawHex8(process_name, strlen(process_name), lldb::endian::InlHostByteOrder(), lld… in DoAttachToProcessWithName()
/external/toybox/toys/pending/
Dbootchartd.c270 char *process_name[] = {"bootchartd", NULL}; in bootchartd_main() local
272 names_to_pid(process_name, push_pids_in_list); in bootchartd_main()
/external/lldb/include/lldb/Target/
DProcess.h1008 ProcessInstanceInfoMatch (const char *process_name, in ProcessInstanceInfoMatch() argument
1014 m_match_info.GetExecutableFile().SetFile(process_name, false); in ProcessInstanceInfoMatch()
1054 NameMatches (const char *process_name) const;
2023 WillAttachToProcessWithName (const char *process_name, bool wait_for_launch) in WillAttachToProcessWithName() argument
2111 …DoAttachToProcessWithName (const char *process_name, bool wait_for_launch, const ProcessAttachInfo… in DoAttachToProcessWithName() argument
/external/lldb/source/Target/
DProcess.cpp851 ProcessInstanceInfoMatch::NameMatches (const char *process_name) const in NameMatches()
853 if (m_name_match_type == eNameMatchIgnore || process_name == NULL) in NameMatches()
859 return lldb_private::NameMatches (process_name, m_name_match_type, match_name); in NameMatches()
3045 char process_name[PATH_MAX]; in Attach() local
3047 if (attach_info.GetExecutableFile().GetPath (process_name, sizeof(process_name))) in Attach()
3053 error = WillAttachToProcessWithName(process_name, wait_for_launch); in Attach()
3062 … error = DoAttachToProcessWithName (process_name, wait_for_launch, attach_info); in Attach()
3108 … match_info.GetProcessInfo().GetExecutableFile().GetPath (process_name, sizeof(process_name)); in Attach()
3110 … error.SetErrorStringWithFormat ("more than one process named %s", process_name); in Attach()
3112 … error.SetErrorStringWithFormat ("could not find a process named %s", process_name); in Attach()
/external/v8/samples/
Dprocess.cc191 Handle<String> process_name = String::NewFromUtf8(GetIsolate(), "Process"); in Initialize() local
192 Handle<Value> process_val = context->Global()->Get(process_name); in Initialize()
/external/lldb/source/Host/macosx/
DHost.mm1073 char process_name[MAXCOMLEN * 2 + 1];
1074 int name_len = ::proc_name(process_info.GetProcessID(), process_name, MAXCOMLEN * 2);
1078 if (match_info_ptr == NULL || NameMatches(process_name,
1082 process_info.GetExecutableFile().SetFile (process_name, false);
/external/lldb/examples/python/
Dcrashlog.py254 (self.process_name, pid_with_brackets) = line[8:].strip().split(' [')