HomeSort by relevance Sort by last modified time
    Searched refs:pid (Results 501 - 525 of 790) sorted by null

<<21222324252627282930>>

  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java 695 public boolean appCrashed(String processName, int pid, String shortMsg, String longMsg,
700 System.out.println("processPid: " + pid);
707 int result = waitControllerLocked(pid, STATE_CRASHED);
713 public int appEarlyNotResponding(String processName, int pid, String annotation)
718 System.out.println("processPid: " + pid);
720 int result = waitControllerLocked(pid, STATE_EARLY_ANR);
727 public int appNotResponding(String processName, int pid, String processStats)
732 System.out.println("processPid: " + pid);
736 int result = waitControllerLocked(pid, STATE_ANR);
756 int waitControllerLocked(int pid, int state)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogPanel.java 79 /** automatic mode for filter (pid mode).
102 * <code>"[ 00-00 00:00:00.000 &lt;pid&gt;:0x&lt;???&gt; &lt;severity&gt;/&lt;tag&gt;]"</code>
178 public int pid; field in class:LogPanel.LogMessageInfo
185 * log message, to reuse the info regarding level, pid, etc...
243 * This class looks for a specific pid to find the process name from it.
255 /** set to true when we've found the pid we're looking for */
258 PsOutputReceiver(int pid, LogFilter filter, TabItem tabItem) {
259 mPid = pid;
274 // get the pid.
285 // this is the start of the pid
291 int pid = Integer.parseInt(pidStr); local
    [all...]
  /external/bluetooth/bluez/compat/
pand.c 506 pid_t pid; local
523 * deleting the pid file for the already-running instance.
533 pid = 0;
534 if (fscanf(f, "%d", &pid) != 1)
535 pid = 0;
538 if (pid) {
540 if (kill(pid, SIGHUP) == -1) {
541 /* No such pid; remove the bogus pid file. */
546 /* Got it. Don't mess with the pid file o
    [all...]
  /external/chromium/chrome/common/
service_process_util_unittest.cc 154 base::ProcessId pid; local
161 ASSERT_FALSE(GetServiceProcessData(&version, &pid));
165 ASSERT_TRUE(GetServiceProcessData(&version, &pid));
166 ASSERT_EQ(base::GetCurrentProcId(), pid); local
178 base::ProcessId pid; local
179 ASSERT_TRUE(GetServiceProcessData(&version, &pid));
180 ASSERT_TRUE(ForceServiceProcessShutdown(version, pid));
  /external/qemu/hw/
goldfish_nand.c 92 T( "%s: sending signal %d to pid %d !",
93 __FUNCTION__, t->signal, t->pid );
95 kill( t->pid, t->signal );
904 int pid = -1, signal = -1; local
919 if ( !memcmp(item, "pid=", 4) ) {
920 pid = strtol(item+4, &end, 10);
922 derror( "bad parameter, expecting pid=<number>, got '%s'",
926 if (pid <= 0) {
955 if (pid < 0) {
956 derror( "bad paramater: missing pid=<number>" )
    [all...]
  /frameworks/base/core/java/android/app/
ActivityManager.java 701 public int pid; field in class:ActivityManager.RunningServiceInfo
805 dest.writeInt(pid);
822 pid = source.readInt();
1008 public int pid; field in class:ActivityManager.ProcessErrorStateInfo
1114 public int pid; field in class:ActivityManager.RunningAppProcessInfo
    [all...]
  /frameworks/base/services/java/com/android/server/
NotificationManagerService.java 196 final int pid; field in class:NotificationManagerService.ToastRecord
201 ToastRecord(int pid, String pkg, ITransientNotification callback, int duration)
203 this.pid = pid;
302 + "; will crashApplication(uid=" + uid + ", pid=" + initialPid + ")");
550 keepProcessAliveLocked(record.pid);
571 keepProcessAliveLocked(record.pid);
615 private void keepProcessAliveLocked(int pid)
617 int toastCount = 0; // toasts from this pid
622 if (r.pid == pid)
    [all...]
  /external/bluetooth/glib/glib/
gtestutils.c     [all...]
  /external/qemu/
trace.c 173 // The maximum number of bytes consumed by a pid record for
177 // The maximum number of bytes consumed by a pid record for kPidFork,
181 // The maximum number of bytes consumed by a pid record for kPidExecArgs
185 // The maximum number of bytes consumed by a pid record for kPidName
189 // The maximum number of bytes consumed by a pid record for kPidMmap
193 // The maximum number of bytes consumed by a pid record for kPidMunmap,
197 // The maximum number of bytes consumed by a pid record for kPidSymbol
201 // The maximum number of bytes consumed by a pid record for kPidKthreadName
480 // Create the pid trace file
481 char *fname = create_trace_path(filename, ".pid");
    [all...]
  /external/bluetooth/bluez/tools/
rfcomm.c 269 pid_t pid; local
280 pid = fork();
282 switch (pid) {
299 if (child == pid || (child < 0 && errno != EAGAIN))
306 kill(pid, SIGTERM);
307 waitpid(pid, &status, 0);
  /external/chromium/base/
process_util_win.cc 107 bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle) {
112 FALSE, pid);
121 bool OpenPrivilegedProcessHandle(ProcessId pid, ProcessHandle* handle) {
127 FALSE, pid);
136 bool OpenProcessHandleWithAccess(ProcessId pid,
139 ProcessHandle result = OpenProcess(access_flags, FALSE, pid);
  /external/elfutils/src/
Makefile 622 bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \
630 $(DESTDIR)$(bindir)/$$f $$opt > c$${pid}_.out 2> c$${pid}_.err \
631 && test -n "`cat c$${pid}_.out`" \
632 && test -z "`cat c$${pid}_.err`"; then :; \
635 done; rm -f c$${pid}_.???; exit $$bad
  /external/iptables/extensions/
libxt_owner.c 32 pid_t pid; member in struct:ipt_owner_info
41 pid_t pid; member in struct:ip6t_owner_info
67 "[!] --pid-owner processid Match local PID\n"
70 "NOTE: PID, SID and command matching are broken on SMP\n");
79 "[!] --pid-owner processid Match local PID\n"
81 "NOTE: PID and SID matching are broken on SMP\n");
99 {.name = "pid-owner", .id = O_PROCESS, .type = XTTYPE_UINT32,
100 .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, pid),
    [all...]
  /external/oprofile/module/
oprofile.c 109 fill_op_entry(struct op_sample * ops, long eip, pid_t pid, pid_t tgid, int ctr)
112 ops->pid = pid;
120 pid_t const pid = current->pid; local
126 fill_op_entry(samples, eip, pid, tgid, ctr);
compat22.h 33 /* on 2.2 we use pid as tgid, thread seperation is possible but
37 return current->pid;
  /external/blktrace/btt/
globals.h 114 __u32 pid; member in struct:p_info
265 void process_alloc(__u32 pid, char *name);
266 struct p_info *find_process(__u32 pid, char *name);
  /external/chromium/third_party/libevent/
kqueue.c 78 pid_t pid; member in struct:kqop
121 kqueueop->pid = getpid();
446 if (kqop->kq >= 0 && kqop->pid == getpid())
  /external/qemu/android/
qemu-setup.c 512 int pid;
519 pid = fork();
520 if (pid == 0) {
  /frameworks/base/media/libmedia/
IAudioFlinger.cpp 84 pid_t pid,
99 data.writeInt32(pid);
131 pid_t pid,
144 data.writeInt32(pid);
605 virtual sp<IEffect> createEffect(pid_t pid,
626 data.writeInt32(pid);
678 pid_t pid = data.readInt32(); local
689 sp<IAudioTrack> track = createTrack(pid,
699 pid_t pid = data.readInt32(); local
708 sp<IAudioRecord> record = openRecord(pid, input
986 pid_t pid = data.readInt32(); local
    [all...]
  /system/core/init/
bootchart.c 252 int pid = strtol( entry->d_name, &end, 10); local
261 snprintf(filename,sizeof(filename),"/proc/%d/cmdline",pid);
265 snprintf(filename,sizeof(filename),"/proc/%d/stat",pid);
  /external/blktrace/
blkparse_fmt.c 185 char *name = find_process_name(t->pid);
216 fprintf(ofp, strcat(format, "u"), t->pid);
308 t->pid, act, rwbs);
310 name = find_process_name(t->pid);
  /external/chromium/base/mac/
mac_util.h 77 // Activates the process with the given PID.
78 void ActivateProcess(pid_t pid);
  /external/dbus/dbus/
dbus-transport.h 77 unsigned long *pid);
  /external/e2fsprogs/misc/
uuidd.c 63 pid_t pid; local
66 pid = fork();
67 if (pid == -1) {
70 } else if (pid != 0) {
269 printf(_("uuidd daemon already running at pid %s\n"),
333 close(fd_pidfile); /* Unlock the pid file */
579 "at pid %d: %s\n"), do_kill,
584 printf(_("Killed uuidd running at pid %d\n"),
  /external/kernel-headers/original/linux/
capability.h 34 int pid; member in struct:__user_cap_header_struct
131 /* Transfer any capability in your permitted set to any pid,
132 remove any capability in your permitted set from any pid */

Completed in 1214 milliseconds

<<21222324252627282930>>