/external/valgrind/gdbserver_tests/ |
nlself_invalidate.stdinB.gdb | 3 echo vgdb launched process attached\n 13 # and the process should exit very quickly now
|
/frameworks/base/docs/html/guide/topics/processes/ |
process-lifecycle.jd | 4 <p>In most cases, every Android application runs in its own Linux process. 5 This process is created for the application when some of its code needs to 9 <p>An unusual and fundamental feature of Android is that an application process's 19 of the application's process. <strong>Not using these components correctly can 20 result in the system killing the application's process while it is doing 23 <p>A common example of a process life-cycle bug is a 29 process no longer needed (unless other application components are active in 30 it). So, the system may kill the process at any time to reclaim memory, and in doing so, 31 it terminates the spawned thread running in the process. The solution to this problem 33 system knows that there is still active work being done in the process.</p [all...] |
/system/extras/ANRdaemon/ |
README | 20 not running. This is because the daemon process turns off tracing when CPU usage 22 from some other process to the daemon. Then sometime later (say 20 secs later), 23 when the CPU usage becomes high and the daemon process turn on tracing again, 25 daemon process to some other process. Due to this artifact, when the raw trace 26 file is parsed by systrace.py, the daemon process is shown as running for the 28 entries regarding the daemon process indicates the daemon process ran continuously
|
/system/sepolicy/ |
shared_relro.te | 0 # Process which creates/updates shared RELRO files to be used by other apps. 4 # The shared relro process is a Java program forked from the zygote, so it
|
/external/autotest/scheduler/ |
site_drones.py | 26 def queue_kill_process(self, process): 27 """Queue a process to kill/abort. 29 @param process: Process to kill/abort. 31 self._processes_to_kill.append(process) 42 If there are any processes queued to kill, kill them then process the
|
/external/libchrome/base/process/ |
port_provider_mac.h | 13 #include "base/process/process_handle.h" 30 // received for a given process. 35 virtual void OnReceivedTaskPort(ProcessHandle process) = 0; 38 // Returns the mach task port for |process| if possible, or else 40 virtual mach_port_t TaskForPid(ProcessHandle process) const = 0; 48 void NotifyObservers(ProcessHandle process);
|
/external/parameter-framework/upstream/remote-process/ |
README.md | 1 # remote-process 3 `remote-process` is an executable used to communicate with an instance of the 15 remote-process may also be used to communicate with test-platform 21 remote-process <host> <port> <command> 25 You may also run a batch of commands by passing them on remote-process' 28 remote-process <host> <port> < file
|
/external/valgrind/none/tests/solaris/ |
block_all_signals.c | 3 simply kill the process. When operating properly, Valgrind involves 8 another process (because libc thinks it blocks all signals before fork 9 and the forked process inherits the sigmask) and try to SIGSEGV it. 46 fprintf(stderr, "Child process died with unexpected signal %d.\n", 51 fprintf(stderr, "Child process exited without expected SIGSEGV " 54 fprintf(stderr, "Child process exited with unexpected status %d.\n",
|
/frameworks/base/core/java/android/os/ |
IProcessInfoService.aidl | 23 * For each PID in the given input array, write the current process state 24 * for that process into the output array, or ActivityManager.PROCESS_STATE_NONEXISTENT 25 * to indicate that no process with the given PID exists. 30 * For each PID in the given input array, write the current process state and OOM score 31 * for that process into the output arrays, or ActivityManager.PROCESS_STATE_NONEXISTENT 32 * in the states array to indicate that no process with the given PID exists.
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
WapPushManagerParams.java | 34 * Process Message return value 40 * Process Message return value 46 * Process Message return value 52 * Process Message return value 58 * Process Message return value 64 * Process Message return value
|
/packages/apps/Bluetooth/ |
AndroidManifest_test.xml | 32 android:process="@string/process"> 37 <service android:process="@string/process" 40 <receiver android:process="@string/process" 48 android:process="@string/process" 72 android:process="@string/process"> [all...] |
/system/connectivity/shill/ |
process_manager.h | 31 #include <brillo/process.h> 38 // The ProcessManager is a singleton providing process creation and 39 // asynchronous process termination. Need to initialize it once with 48 // Register async signal handler and setup process reaper. 54 // Create and start a process for |program| with |arguments|. |enivronment| 55 // variables will be setup in the child process before exec the |program|. 56 // |terminate_with_parent| is used to indicate if child process should 57 // self terminate if the parent process exits. |exit_callback| will be 58 // invoked when child process exits (not terminated by us). Return -1 59 // if failed to start the process, otherwise, return the pid of the chil [all...] |
/external/libchrome/sandbox/linux/services/ |
scoped_process_unittest.cc | 41 ScopedProcess process(base::Bind(&ExitWithCode, kCustomExitCode)); 43 int exit_code = process.WaitForExit(&got_signaled); 48 // process. 50 int exit_code2 = process.WaitForExit(&got_signaled2); 58 ScopedProcess process(base::Bind(&RaiseAndExit, SIGABRT)); 60 int exit_code = process.WaitForExit(&got_signaled); 66 ScopedProcess process(base::Bind(&base::DoNothing)); 68 ASSERT_EQ(0, kill(process.GetPid(), SIGKILL)); 69 int exit_code = process.WaitForExit(&got_signaled); 80 { ScopedProcess process(base::Bind(&DoExit)); [all...] |
/external/chromium-trace/catapult/tracing/tracing/extras/importer/etw/ |
process_parser.html | 16 * The Windows process events are: 18 * - DCStart: Describes a process that was already running when the trace 21 * - Start: Describes a process launched during the tracing session. 22 * - End: Describes a process that ended during the tracing session. 23 * - DCEnd: Describes a process that was still running when the trace ended. 30 // Constants for Process events. 39 * Parses Windows process trace events. 63 throw new Error('Incompatible Process event version.'); 132 var process = this.model.getOrCreateProcess(fields.processId); 133 if (process.hasOwnProperty('has_ended')) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
ProcessTest.java | 30 ArrayList<Process> children = new ArrayList<Process>(); 44 Process ps = Runtime.getRuntime().exec(psCommand, null, null); 56 Process p = Runtime.getRuntime().exec(commands, null, null); 84 Process p = Runtime.getRuntime().exec(commands, null, null); 113 Process process = Runtime.getRuntime().exec(commands, null, null); local 114 process.waitFor(); 115 assertEquals(0, process.exitValue()); 118 process = Runtime.getRuntime().exec(commandsNonZeroExit, null, null) 138 Process process = Runtime.getRuntime().exec(commands, null, null); local [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/ |
JDWPUnitDebuggeeProcessWrapper.java | 36 * which can launch and control debuggee process. 41 * Target VM debuggee process. 43 public Process process; field in class:JDWPUnitDebuggeeProcessWrapper 49 * The expected exit code for the debuggee process. 74 * Launches process and redirects output. 77 logWriter.println("Launch process: " + cmdLine); 78 process = launchProcess(cmdLine); 79 logWriter.println("Launched process"); 80 if (process != null) [all...] |
/frameworks/base/services/core/java/com/android/server/os/ |
SchedulingPolicyService.java | 22 import android.os.Process; 50 prio > PRIORITY_MAX || Process.getThreadGroupLeader(tid) != pid) { 55 Process.setThreadGroup(tid, Binder.getCallingPid() == pid ? 56 Process.THREAD_GROUP_AUDIO_SYS : Process.THREAD_GROUP_AUDIO_APP); 58 Process.setThreadScheduler(tid, Process.SCHED_FIFO | Process.SCHED_RESET_ON_FORK, 69 case Process.AUDIOSERVER_UID: // fastcapture, fastmixer 70 case Process.CAMERASERVER_UID: // camera high frame rate recordin [all...] |
/external/ltrace/ |
proc.c | 42 os_process_init(struct process *proc) 48 os_process_destroy(struct process *proc) 53 os_process_clone(struct process *retp, struct process *proc) 59 os_process_exec(struct process *proc) 67 arch_process_init(struct process *proc) 73 arch_process_destroy(struct process *proc) 78 arch_process_clone(struct process *retp, struct process *proc) 84 arch_process_exec(struct process *proc [all...] |
breakpoint.h | 47 void (*on_hit)(struct breakpoint *bp, struct process *proc); 48 void (*on_continue)(struct breakpoint *bp, struct process *proc); 49 void (*on_install)(struct breakpoint *bp, struct process *proc); 50 void (*on_retract)(struct breakpoint *bp, struct process *proc); 59 struct breakpoint *bp, struct process *proc); 73 void breakpoint_on_hit(struct breakpoint *bp, struct process *proc); 77 void breakpoint_on_continue(struct breakpoint *bp, struct process *proc); 86 void breakpoint_on_retract(struct breakpoint *bp, struct process *proc); 92 void breakpoint_on_install(struct breakpoint *bp, struct process *proc); 97 struct breakpoint *bp, struct process *proc) [all...] |
/prebuilts/go/darwin-x86/src/syscall/ |
exec_unix_test.go | 27 pid = c.proc.Process.Pid 77 t.Fatalf("Parent and child have the same process ID") 81 t.Fatalf("Child is not in parent's process group") 97 t.Fatalf("Parent and child have the same process ID") 101 t.Fatalf("Parent and child are in the same process group") 105 t.Fatalf("Child's process group is not the child's process ID") 121 t.Fatalf("Parent and child 1 have the same process ID") 125 t.Fatalf("Parent and child 1 are in the same process group") 129 t.Fatalf("Child 1's process group is not its process ID" [all...] |
/prebuilts/go/linux-x86/src/syscall/ |
exec_unix_test.go | 27 pid = c.proc.Process.Pid 77 t.Fatalf("Parent and child have the same process ID") 81 t.Fatalf("Child is not in parent's process group") 97 t.Fatalf("Parent and child have the same process ID") 101 t.Fatalf("Parent and child are in the same process group") 105 t.Fatalf("Child's process group is not the child's process ID") 121 t.Fatalf("Parent and child 1 have the same process ID") 125 t.Fatalf("Parent and child 1 are in the same process group") 129 t.Fatalf("Child 1's process group is not its process ID" [all...] |
/external/chromium-trace/catapult/telemetry/docs/pydoc/ |
telemetry.timeline.process.html | 3 <html><head><title>Python: module telemetry.timeline.process</title> 10 <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.timeline.html"><font color="#ffffff">timeline</font></a>.process</strong></big></big></font></td 12 ><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/timeline/process.py">telemetry/timeline/process.py</a></font></td></tr></table> 39 <dt><font face="helvetica, arial"><a href="telemetry.timeline.process.html#Process">Process</a> 47 <font color="#000000" face="helvetica, arial"><a name="Process">class <strong>Process</strong></a>(<a href="telemetry.timeline.event_container.html#TimelineEventContainer">telemetry.timeline.event_container.TimelineEventContainer</a>)</font></td></tr> 50 <td colspan=2><tt>The <a href="#Process">Process</a> represents a single userland process in the t (…) [all...] |
/prebuilts/go/darwin-x86/src/os/ |
exec_plan9.go | 15 // are Interrupt (send the process an interrupt) and Kill (force 16 // the process to exit). 22 func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) { 41 func (p *Process) writeProcFile(file string, data string) error { 51 func (p *Process) signal(sig Signal) error { 53 return errors.New("os: process already finished") 61 func (p *Process) kill() error { 65 func (p *Process) wait() (ps *ProcessState, err error) { 84 func (p *Process) release() error { 92 func findProcess(pid int) (p *Process, err error) [all...] |
/prebuilts/go/linux-x86/src/os/ |
exec_plan9.go | 15 // are Interrupt (send the process an interrupt) and Kill (force 16 // the process to exit). 22 func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) { 41 func (p *Process) writeProcFile(file string, data string) error { 51 func (p *Process) signal(sig Signal) error { 53 return errors.New("os: process already finished") 61 func (p *Process) kill() error { 65 func (p *Process) wait() (ps *ProcessState, err error) { 84 func (p *Process) release() error { 92 func findProcess(pid int) (p *Process, err error) [all...] |
/external/autotest/client/site_tests/platform_CheckCriticalProcesses/ |
platform_CheckCriticalProcesses.py | 13 Builds a process list (without spawning 'ps'), and validates 19 """Gathers info about one process, given its PID 21 @param pid string representing the process ID 22 @return string process name 33 """Returns the set the process names""" 39 # There can be a race where after we listdir(), a process 55 @param process_list: list of process names to check
|