HomeSort by relevance Sort by last modified time
    Searched full:process (Results 126 - 150 of 17637) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/deqp/framework/delibs/decpp/
deProcess.cpp 31 Process::Process (void)
38 Process::~Process (void)
43 void Process::start (const char* commandLine, const char* workingDirectory)
49 void Process::waitForFinish (void)
55 void Process::terminate (void)
61 void Process::kill (void)
67 void Process::closeStdIn (void)
73 void Process::closeStdOut (void
    [all...]
  /external/bison/m4/
wait-process.m4 1 # wait-process.m4 serial 6
9 dnl Prerequisites of lib/wait-process.c.
  /external/chromium_org/components/nacl/common/
nacl_debug_exception_handler_win.h 10 #include "base/process/process.h"
  /external/lldb/test/python_api/lldbutil/process/
TestPrintStackTraces.py 13 mydir = "python_api/lldbutil/process"
39 # Now launch the process, and do not stop at entry point.
40 process = target.LaunchSimple(["abc", "xyz"], None, os.getcwd())
42 if not process:
46 if process.GetState() != lldb.eStateStopped:
47 self.fail("Process should be in the 'stopped' state, "
49 lldbutil.state_type_to_str(process.GetState()))
51 stacktraces = lldbutil.print_stacktraces(process, string_buffer=True)
  /external/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/valgrind/main/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...]
  /external/chromium_org/chrome/common/extensions/api/
log_private.idl 17 // Only logs have process name in |process| will be returned.
18 DOMString[] process;
31 // The name of the process that the log associated with.
32 DOMString process;
33 // The ID of the process that the log associated with.
  /external/chromium_org/content/plugin/
plugin_interpose_util_mac.h 18 // Swizzles methods we need to watch in order to manage process and window
22 // Brings the plugin process to the front so that the user can see its windows.
28 // Sends a message to the browser process to inform it that the given window
33 // Sends a message to the browser process to inform it that the given window
38 // Sends a message to the browser process to inform it that the given window
39 // has been hidden, and switches focus back to the browser process if there are
  /external/chromium_org/content/public/common/
child_process_host_delegate.h 10 #include "base/process/process.h"
21 // Delegates return true if it's ok to shut down the child process (which is
23 // sending a request to the process, in which case the other side might think
27 // Called when the child process unexpected closes the IPC channel. Delegates
31 // Returns the handle of the child process. This can be called only after
result_codes_list.h 9 // process. The return code is the value that:
12 // c) the exception value that causes a process to terminate.
20 // Process terminated normally.
23 // Process was killed by user or system.
26 // Process hung.
29 // A bad message caused the process termination.
  /external/chromium_org/ipc/
ipc_platform_file.h 10 #include "base/process/process.h"
51 // Returns a file handle equivalent to |file| that can be used in |process|.
54 base::ProcessHandle process,
57 // Returns a file handle equivalent to |file| that can be used in |process|.
61 base::ProcessHandle process);
  /external/chromium_org/remoting/host/win/
worker_process_launcher.h 36 // Launches a worker process that is controlled via an IPC channel. All
37 // interaction with the spawned process is through WorkerProcessIpcDelegate and
38 // Send() method. In case of error the channel is closed and the worker process
48 // Asynchronously starts the worker process and creates an IPC channel it
53 // Sends an IPC message to the worker process. The message will be silently
60 // Terminates the worker process and closes the IPC channel.
65 // process and |ipc_handler| to handle IPCs. The caller must ensure that
71 // Asks the worker process to crash and generate a dump, and closes the IPC
73 // the dump. Restarts the worker process forcefully, if it does
77 // Sends an IPC message to the worker process. The message will be silentl
    [all...]
  /external/chromium_org/rlz/lib/
recursive_cross_process_lock_posix.h 16 // Creating a recursive cross-process mutex on Windows is one line. On POSIX,
17 // there's no primitive for that, so this lock is emulated by an in-process
18 // mutex to get the recursive part, followed by a cross-process lock for the
19 // cross-process part.
22 // Tries to acquire a recursive cross-process lock. Note that this _always_
23 // acquires the in-process lock (if it wasn't already acquired). The parent
  /external/lldb/test/api/multithreaded/
test_listener_resume.cpp 4 // SBListener object registered with a process with a breakpoint.
21 // used by listener thread to communicate a successful process continue command
36 SBProcess process = SBProcess::GetProcessFromEvent(event); local
37 if (process.GetState() == eStateStopped) {
38 SBError error = process.Continue();
40 throw Exception(string("Cannot continue process from listener thread: ")
  /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
  /external/lldb/examples/python/
process_events.py 51 def print_threads(process, options):
53 for thread in process:
68 description='''Debugs a program using the LLDB python API and uses asynchronous broadcast events to watch for process state changes.'''
84 parser.add_option('-l', '--launch-command', action='append', type='string', metavar='CMD', dest='launch_commands', help='LLDB command interpreter commands to run once after the process has launched. This option can be specified more than once.', default=[])
85 parser.add_option('-s', '--stop-command', action='append', type='string', metavar='CMD', dest='stop_commands', help='LLDB command interpreter commands to run each time the process stops. This option can be specified more than once.', default=[])
86 parser.add_option('-c', '--crash-command', action='append', type='string', metavar='CMD', dest='crash_commands', help='LLDB command interpreter commands to run in case the process crashes. This option can be specified more than once.', default=[])
87 parser.add_option('-x', '--exit-command', action='append', type='string', metavar='CMD', dest='exit_commands', help='LLDB command interpreter commands to run once after the process has exited. This option can be specified more than once.', default=[])
88 parser.add_option('-T', '--no-threads', action='store_false', dest='show_threads', help="Don't show threads when process stops.", default=True)
90 parser.add_option('-n', '--run-count', type='int', dest='run_count', metavar='N', help='How many times to run the process in case the process exits.', default=1
    [all...]
  /external/chromium_org/base/threading/
platform_thread_android.cc 25 // Process.THREAD_PRIORITY_AUDIO = -16
26 // Process.THREAD_PRIORITY_BACKGROUND = 10
27 // Process.THREAD_PRIORITY_DEFAULT = 0;
28 // Process.THREAD_PRIORITY_DISPLAY = -4;
29 // Process.THREAD_PRIORITY_FOREGROUND = -2;
30 // Process.THREAD_PRIORITY_LESS_FAVORABLE = 1;
31 // Process.THREAD_PRIORITY_LOWEST = 19;
32 // Process.THREAD_PRIORITY_MORE_FAVORABLE = -1;
33 // Process.THREAD_PRIORITY_URGENT_AUDIO = -19;
34 // Process.THREAD_PRIORITY_URGENT_DISPLAY = -8
    [all...]
  /external/chromium_org/sandbox/linux/services/
scoped_process_unittest.cc 42 ScopedProcess process(base::Bind(&ExitWithCode, kCustomExitCode));
44 int exit_code = process.WaitForExit(&got_signaled);
49 // process.
51 int exit_code2 = process.WaitForExit(&got_signaled2);
59 ScopedProcess process(base::Bind(&RaiseAndExit, SIGABRT));
61 int exit_code = process.WaitForExit(&got_signaled);
67 ScopedProcess process(base::Bind(&DoNothing));
69 ASSERT_EQ(0, kill(process.GetPid(), SIGKILL));
70 int exit_code = process.WaitForExit(&got_signaled);
81 { ScopedProcess process(base::Bind(&DoExit));
    [all...]
  /external/lldb/test/python_api/watchpoint/
TestSetWatchpoint.py 53 # Now launch the process, and do not stop at the entry point.
54 process = target.LaunchSimple(None, None, os.getcwd())
57 process = target.GetProcess()
58 self.assertTrue(process.GetState() == lldb.eStateStopped,
60 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonBreakpoint)
78 process.Continue()
81 lldbutil.print_stacktraces(process)
83 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonWatchpoint)
88 process.Continue()
91 lldbutil.print_stacktraces(process)
    [all...]
  /external/chromium_org/base/process/
kill.h 12 #include "base/process/process_handle.h"
31 // oom kill for sure, but we can use status of the strong process bindings as
47 // Attempts to kill the process identified by the given process
49 // for the process to be actually terminated before returning.
51 BASE_EXPORT bool KillProcess(ProcessHandle process, int exit_code, bool wait);
54 // Attempts to kill the process group identified by |process_group_id|. Returns
65 // Get the termination status of the process by interpreting the
66 // circumstances of the child process' death. |exit_code| is set to
77 // Send a kill signal to the process and then wait for the process to exi
    [all...]
  /external/chromium-trace/trace-viewer/src/tracing/trace_model/
process.js 8 * @fileoverview Provides the Process class.
13 * The Process represents a single userland process in the
17 function Process(model, pid) {
32 Process.compare = function(x, y) {
51 Process.prototype = {
55 return Process.compare(this, that);
67 res = 'Process ' + this.pid;
97 Process: Process
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
Process2Test.java 33 * java.lang.Process#getInputStream(),
34 * java.lang.Process#getErrorStream()
35 * java.lang.Process#getOutputStream()
41 Process p = javaProcessBuilder().start();
49 Process process = null; local
51 process = Runtime.getRuntime().exec(commands, null, null);
52 InputStream is = process.getErrorStream();
64 process.destroy();
68 Process erProcess = null
    [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...]

Completed in 1042 milliseconds

1 2 3 4 56 7 8 91011>>