HomeSort by relevance Sort by last modified time
    Searched refs:process_name (Results 1 - 25 of 54) sorted by null

1 2 3

  /system/core/include/cutils/
process_name.h 33 void set_process_name(const char* process_name);
  /system/core/libcutils/
process_name.c 27 #include <cutils/process_name.h>
32 #define PROCESS_NAME_DEVICE "/sys/qemu_trace/process_name"
34 static const char* process_name = "unknown"; variable
52 process_name = (const char*) copy;
90 write(fd, process_name, strlen(process_name) + 1);
96 return process_name;
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
__init__.py 56 process_name = self._browser_backend.GetProcessName(cmd_line)
57 output_file = '%s.%s%s' % (self._output_path, process_name,
58 process_name_counts[process_name])
59 process_name_counts[process_name] += 1
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
crashlogs.py 36 def find_newest_log(self, process_name, pid=None, include_errors=False, newer_than=None):
38 return self._find_newest_log_darwin(process_name, pid, include_errors, newer_than)
50 def _find_newest_log_darwin(self, process_name, pid, include_errors, newer_than):
52 return basename.startswith(process_name + "_") and basename.endswith(".crash")
56 first_line_regex = re.compile(r'^Process:\s+(?P<process_name>.*) \[(?P<pid>\d+)\]$')
63 if match and match.group('process_name') == process_name and (pid is None or int(match.group('pid')) == pid):
crashlogs_unittest.py 32 def make_mock_crash_report_darwin(process_name, pid):
33 return """Process: {process_name} [{pid}]
34 Path: /Volumes/Data/slave/snowleopard-intel-release-tests/build/WebKitBuild/Release/{process_name}
35 Identifier: {process_name}
68 """.format(process_name=process_name, pid=pid)
executive.py 268 process_name_filter = lambda process_name: True
282 pid, process_name = line.strip().split(' ', 1)
283 if process_name_filter(process_name):
292 process_name_filter = lambda process_name: True
309 def _windows_image_name(self, process_name):
310 name, extension = os.path.splitext(process_name)
314 process_name = "%s.exe" % name
315 return process_name
executive_mock.py 78 for process_name, process_pid in self._running_pids.iteritems():
79 if process_name_filter(process_name):
134 def kill_all(self, process_name):
  /external/valgrind/main/memcheck/tests/
file_locking.c 36 static int open_lock_and_map(const char* const process_name,
54 fprintf(stderr, "%s: about to lock file for writing.\n", process_name);
61 fprintf(stderr, "%s: file locking attempt succeeded.\n", process_name);
  /external/chromium_org/chrome/browser/
memory_details_win.cc 46 const wchar_t* process_name; member in struct:__anon8908
61 process.process_name = process_template[index].process_name;
104 if (_wcsicmp(process_data_[index2].process_name.c_str(),
memory_details_linux.cc 55 const char process_name[16]; member in struct:__anon8905
105 static BrowserType GetBrowserType(const std::string& process_name) {
106 for (unsigned i = 0; kBrowserBinaryNames[i].process_name[0]; ++i) {
107 if (strcmp(process_name.c_str(), kBrowserBinaryNames[i].process_name) == 0)
202 current_browser.process_name = base::ASCIIToUTF16("chrome");
memory_details_mac.cc 64 const char* process_name; member in struct:__anon8906
77 process.process_name =
78 base::UTF8ToUTF16(process_template[index].process_name);
109 base::UTF16ToUTF8(process_data_[index].process_name), NULL);
memory_details.h 80 base::string16 process_name; member in struct:ProcessData
  /external/oprofile/libutil++/
child_reader.h 79 * - "process_name return xxx" xxx is return code
80 * - "process_name terminated by signal xxx" xxx is signal number
105 std::string process_name; member in class:child_reader
child_reader.cpp 36 process_name(cmd),
266 err << process_name << " terminated by signal "
269 err << process_name << " return "
  /frameworks/compile/libbcc/gdb_plugin/
android-commands.py 301 #wrapper for adb shell ps. leave process_name=None for list of all processes
303 def get_process_info(self, process_name=None):
310 if process_name == None or name == process_name:
314 if process_name != None:
320 if process_name != None:
328 def kill_by_name(self, process_name):
329 (pid, user) = self.get_process_info(process_name)
332 (pid, user) = self.get_process_info(process_name)
342 def _update_status(self, process_name, gdbserver_process_name)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_failures.py 127 def __init__(self, is_reftest=False, process_name='content_shell', pid=None, has_log=False):
129 self.process_name = process_name
136 return "%s crashed [pid=%d]" % (self.process_name, self.pid)
137 return self.process_name + " crashed"
test_failures_unittest.py 73 self.assertEqual(FailureCrash(process_name='foo', pid=1234).message(), 'foo crashed [pid=1234]')
  /development/apps/Development/src/com/android/development/
ProcessInfo.java 38 TextView processNameView = (TextView) findViewById(R.id.process_name);
  /external/chromium_org/chrome/test/chromedriver/chrome/
adb.h 37 const std::string& process_name,
adb_impl.h 49 const std::string& process_name,
adb_impl.cc 195 const std::string& process_name,
212 if (tokens[8].compare(process_name) == 0) {
222 "Failed to get PID for the following process: " + process_name);
  /external/chromium_org/build/android/pylib/device/
device_utils.py 348 def KillAll(self, process_name, signum=9, as_root=False, blocking=False,
353 process_name: A string containing the name of the process to kill.
359 with the given |process_name| are dead.
368 pids = self._GetPidsImpl(process_name)
371 'No process "%s"' % process_name, device=str(self))
378 while self._GetPidsImpl(process_name):
737 def GetPids(self, process_name, timeout=None, retries=None):
740 Note that the |process_name| is often the package name.
743 process_name: A string containing the process name to get the PIDs for.
749 provided |process_name|
    [all...]
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ProcessKDP.h 94 WillAttachToProcessWithName (const char *process_name, bool wait_for_launch);
106 DoAttachToProcessWithName (const char *process_name, bool wait_for_launch, const lldb_private::ProcessAttachInfo &attach_info);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader.py 73 for test, process_name, pid in crashed_processes:
  /external/lldb/tools/darwin-threads/
examine-threads.c 98 get_kinfo_proc_for_pid (pid_t pid, const char *process_name)
333 const char *process_name = get_process_name_for_pid (pid); local
335 // At this point "pid" is the process id and "process_name" is the process name
339 struct kinfo_proc *kinfo = get_kinfo_proc_for_pid (pid, process_name);
341 printf ("pid %d (%s) is currently ", pid, process_name);
482 free ((void *) process_name);

Completed in 1271 milliseconds

1 2 3