HomeSort by relevance Sort by last modified time
    Searched refs:pid (Results 26 - 50 of 1743) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/samsung_slsi/exynos5/libmemtrack/
memtrack_exynos5.h 20 int mali_memtrack_get_memory(pid_t pid, int type,
  /external/chromium_org/base/process/
process_handle_linux.cc 13 ProcessId pid = local
15 if (pid)
16 return pid;
kill.cc 18 result &= KillProcessById(entry->pid(), exit_code, true);
20 result &= KillProcess(entry->pid(), exit_code, true);
process_info_linux.cc 17 ProcessHandle pid = GetCurrentProcessHandle(); local
19 pid, internal::VM_STARTTIME);
  /external/strace/
strace-graph 44 my ($pid, $call, $args, $result, $time);
48 $pid = $1;
62 $unfinished{$pid} = $_;
67 unless (exists $unfinished{$pid}) {
71 $_ = $unfinished{$pid} . $_;
72 delete $unfinished{$pid};
76 # $pid received signal $1
82 # $pid received signal $1
83 handle_killed($pid, $time);
93 handle_trace($pid, $call, $args, $result, $time)
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
tracing_controller_tests.js 10 events: [{"cat":"renderer","pid":21296,"tid":21296,"ts":438877834451,"ph":"B","name":"RenderWidget::OnUpdateRectAck","args":{}},{"cat":"renderer","pid":21296,"tid":21296,"ts":438877834469,"ph":"B","name":"RenderWidget::DoDeferredUpdate","args":{}},{"cat":"renderer","pid":21296,"tid":21296,"ts":438877849541,"ph":"E","name":"RenderWidget::DoDeferredUpdate","args":{}},{"cat":"renderer","pid":21296,"tid":21296,"ts":438877849547,"ph":"E","name":"RenderWidget::OnUpdateRectAck","args":{}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877850049,"ph":"B","name":"v8.compile","args":{"id":"(nil)","extra":""}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877850118,"ph":"E","name":"v8.compile","args":{}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877850125,"ph":"B","name":"v8.run","args":{"id":"(nil)","extra":""}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877949516,"ph":"E","name":"v8.run","args":{}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877950065,"ph":"B","name":"v8.compile","args":{"id":"(nil)","extra":""}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877950118,"ph":"E","name":"v8.compile","args":{}},{"cat":"webkit","pid" (…)
    [all...]
  /external/elfutils/src/
Makefile.am 171 bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \
179 $(DESTDIR)$(bindir)/$$f $$opt > c$${pid}_.out 2> c$${pid}_.err \
180 && test -n "`cat c$${pid}_.out`" \
181 && test -z "`cat c$${pid}_.err`"; then :; \
184 done; rm -f c$${pid}_.???; exit $$bad
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
BindingManager.java 46 * for the same pid).
81 * A helper method that returns the bare ChildProcessConnection for the given pid, returning
82 * null with a log message if there is no entry for the pid.
88 ChildProcessConnection getConnectionForPid(int pid) {
91 managedConnection = mManagedConnections.get(pid);
94 ChildProcessLauncher.logPidWarning(pid,
95 "BindingManager never saw a connection for the pid: " + Integer.toString(pid));
102 // Pid of the renderer that was most recently bound using bindAsHighPriority(). This is used on
107 // Pid of the renderer that is bound with a strong binding for the background period. Equal
    [all...]
  /external/compiler-rt/lib/msan/lit_tests/
ptrace.cc 12 pid_t pid; local
13 pid = fork();
14 if (pid == 0) { // child
21 res = ptrace(PTRACE_GETREGS, pid, NULL, &regs);
27 res = ptrace(PTRACE_GETFPREGS, pid, NULL, &fpregs);
32 ptrace(PTRACE_CONT, pid, NULL, NULL);
  /external/valgrind/main/none/tests/
syscall-restart1.c 17 int pid; local
25 pid = fork();
27 if (pid == -1) {
32 if (pid == 0) {
54 kill(pid, SIGUSR1);
59 waitpid(pid, NULL, 0);
syscall-restart2.c 17 int pid; local
25 pid = fork();
27 if (pid == -1) {
32 if (pid == 0) {
54 kill(pid, SIGUSR1);
58 waitpid(pid, NULL, 0);
  /system/core/toolbox/
ionice.c 14 int pid; local
17 fprintf(stderr, "usage: ionice <pid> [none|rt|be|idle] [prio]\n");
21 if (!(pid = atoi(argv[1]))) {
22 fprintf(stderr, "Invalid pid specified\n");
27 if (android_get_ioprio(pid, &clazz, &ioprio)) {
31 fprintf(stdout, "Pid %d, class %s (%d), prio %d\n", pid, classes[clazz], clazz, ioprio);
50 printf("Setting pid %d i/o class to %d, prio %d\n", pid, clazz, ioprio);
51 if (android_set_ioprio(pid, clazz, ioprio))
    [all...]
  /external/chromium_org/content/public/browser/
load_from_memory_cache_details.cc 11 int pid,
18 pid(pid),
  /bionic/libc/bionic/
ptrace.c 31 extern long __ptrace(int request, pid_t pid, void *addr, void *data);
33 long ptrace(int request, pid_t pid, void * addr, void * data)
43 ret = __ptrace(request, pid, addr, &word);
53 return __ptrace(request, pid, addr, data);
sched_getaffinity.cpp 35 int sched_getaffinity(pid_t pid, size_t set_size, cpu_set_t* set) {
36 int rc = __sched_getaffinity(pid, set_size, set);
  /cts/tests/src/android/net/cts/
NetlinkSocket.java 29 private static native int sendmsg(FileDescriptor fd, int pid, byte[] bytes);
46 public int sendmsg(int pid, byte[] bytes) throws IOException {
47 int retval = sendmsg(fd, pid, bytes);
49 throw new IOException("Unable to send message to PID=" + pid);
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
fork_threaded.cc 30 pid_t pid = fork(); local
31 assert(pid >= 0);
32 if (pid > 0) {
33 waitpid(pid, &status, 0);
38 // thread's pid correctly even if leak checking is initiated from another
  /frameworks/av/services/audioflinger/
SchedulingPolicyService.h 22 // Request elevated priority for thread tid, whose thread group leader must be pid.
27 int requestPriority(pid_t pid, pid_t tid, int32_t prio, bool asynchronous = false);
  /hardware/qcom/display/msm8960/libmemtrack/
memtrack_msm.h 20 int kgsl_memtrack_get_memory(pid_t pid, enum memtrack_type type,
  /hardware/qcom/display/msm8974/libmemtrack/
memtrack_msm.h 20 int kgsl_memtrack_get_memory(pid_t pid, enum memtrack_type type,
  /external/linux-tools-perf/scripts/perl/
rw-by-pid.pl 75 printf("read counts by pid:\n\n");
77 printf("%6s %20s %10s %10s %10s\n", "pid", "comm",
82 foreach my $pid (sort { ($reads{$b}{bytes_read} || 0) <=>
84 my $comm = $reads{$pid}{comm} || "";
85 my $total_reads = $reads{$pid}{total_reads} || 0;
86 my $bytes_requested = $reads{$pid}{bytes_requested} || 0;
87 my $bytes_read = $reads{$pid}{bytes_read} || 0;
89 printf("%6s %-20s %10s %10s %10s\n", $pid, $comm,
93 printf("\nfailed reads by pid:\n\n");
95 printf("%6s %20s %6s %10s\n", "pid", "comm", "error #", "# errors")
    [all...]
  /external/bison/lib/
spawnp.c 27 posix_spawnp (pid_t *pid, const char *file,
32 return __spawni (pid, file, file_actions, attrp, argv, envp, 1);
  /external/chromium/base/memory/
scoped_open_process.h 26 // Open a new process by pid. Closes any previously opened process (even if
28 bool Open(ProcessId pid) {
30 return OpenProcessHandle(pid, &handle_);
  /external/chromium/chrome/browser/
load_from_memory_cache_details.h 16 int pid,
22 int pid() const { return pid_; } function in class:LoadFromMemoryCacheDetails
  /external/chromium_org/base/memory/
scoped_open_process.h 24 // Open a new process by pid. Closes any previously opened process (even if
26 bool Open(ProcessId pid) {
28 return OpenProcessHandle(pid, &handle_);

Completed in 691 milliseconds

12 3 4 5 6 7 8 91011>>