/external/chromium-trace/catapult/tracing/tracing/model/helpers/ |
chrome_browser_helper.html | 17 function ChromeBrowserHelper(modelHelper, process) { 18 tr.model.helpers.ChromeProcessHelper.call(this, modelHelper, process); 19 this.mainThread_ = process.findAtMostOneThreadNamed('CrBrowserMain'); 22 ChromeBrowserHelper.isBrowserProcess = function(process) { 23 return !!process.findAtMostOneThreadNamed('CrBrowserMain'); 106 tr.b.iterItems(this.process.threads, function(tid, thread) { 111 var rendererProcess = rendererHelper.process;
|
chrome_model_helper.html | 23 model.getAllProcesses().forEach(function(process) { 24 if (!tr.model.helpers.ChromeBrowserHelper.isBrowserProcess(process)) 26 browserProcesses.push(process); 37 model.getAllProcesses().forEach(function(process) { 38 if (!tr.model.helpers.ChromeRendererHelper.isRenderProcess(process)) 40 rendererProcesses.push(process); 103 get process() {
|
chrome_process_helper.html | 37 function ChromeProcessHelper(modelHelper, process) { 39 this.process = process; 44 return this.process.pid; 55 this.process.iterateAllEvents(function(event) {
|
/external/deqp/framework/delibs/decpp/ |
deProcess.hpp | 41 class Process 44 Process (void); 45 ~Process (void); 65 Process (const Process& other); 66 Process& operator= (const Process& other);
|
/external/libbrillo/brillo/ |
process_reaper.h | 39 // Watch for the child process |pid| to finish and call |callback| when the 40 // selected process exits or the process terminates for other reason. The 41 // |callback| receives the exit status and exit code of the terminated process 47 // Stop watching child process |pid|. This is useful in situations 48 // where the child process may have been reaped outside of the signal 50 // this child process anymore. Returns true if a child was removed from
|
process_unittest.cc | 5 #include "brillo/process.h" 48 ProcessImpl process; local 49 process.AddArg(kBinEcho); 50 EXPECT_EQ(0, process.Run()); 55 ProcessImpl process; local 56 process.AddArg("echo"); 57 EXPECT_EQ(127, process.Run()); 61 ProcessImpl process; local 62 process.AddArg("echo"); 63 process.SetSearchPath(true) 71 ProcessImpl process; local [all...] |
/external/libcap/libcap/ |
cap_proc.c | 18 _cap_debug("getting current process' capabilities"); 39 _cap_debug("setting process capabilities"); 47 /* read the caps on a specific process */ 58 _cap_debug("getting process capabilities for proc %d", pid); 67 /* allocate space for and return capabilities of target process */ 88 /* set the caps on a specific process/pg etc.. */ 99 _cap_debug("setting process capabilities for proc %d", pid);
|
/external/libchrome/base/test/ |
multiprocess_test_android.cc | 20 // minimum to execute the method specified by procname (in the child process). 22 Process SpawnMultiProcessTestChild(const std::string& procname, 35 return Process(); 38 // Parent process. 39 return Process(pid); 41 // Child process. 72 return Process();
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/headers/ |
HeaderFixer.java | 59 public static void process (String directory) throws Exception {
method in class:HeaderFixer 61 processor.process(new File(directory), new File(directory));
66 HeaderFixer.process("../../gdx/");
67 HeaderFixer.process("../../backends/");
68 HeaderFixer.process("../../tests/");
69 HeaderFixer.process("../../extensions/");
71 HeaderFixer.process(args[0]);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/ |
JDWPManualDebuggeeWrapper.java | 70 * Asks user to launch process with given command line and waits for 75 * @return null instead of associated Process object 77 * if user does not confirm process launching 79 protected Process launchProcess(String cmdLine) throws IOException { 89 * Waits for user to confirm that launched process has exited. 91 * @param process 92 * should be null instead of associated Process object 94 * if user does not confirm process exit 96 protected void WaitForProcessExit(Process process) throws IOException [all...] |
/external/chromium-trace/catapult/tracing/tracing/ui/tracks/ |
process_track.html | 21 var ProcessTrack = tr.ui.b.define('process-track', ProcessTrackBase); 66 // Don't bother recursing further, Process is the only level that 96 // Process maps to processBase because we derive from ProcessTrackBase. 97 set process(process) { 98 this.processBase = process; 101 get process() { 106 return this.process; 112 containerToTrackMap.addContainer(this.process, this); 116 var processMemoryDumps = this.process.memoryDumps [all...] |
/external/google-breakpad/src/client/linux/minidump_writer/ |
linux_ptrace_dumper.h | 32 // information from a crashed process via ptrace. 44 // Constructs a dumper for extracting information of a given process 45 // with a process ID of |pid|. 56 // Copies content of |length| bytes from a given process |child|, 58 // the content from the target process. Always returns true. 69 // a crashed process via ptrace. 73 // Suspends all threads in the given process. Returns true on success. 77 // Resumes all threads in the given process. Returns true on success. 82 // Enumerates all threads of the given process into |threads_|. 86 // Set to true if all threads of the crashed process are suspended [all...] |
/external/kernel-headers/original/uapi/linux/ |
acct.h | 2 * BSD Process Accounting for Linux - Definitions 7 * BSD-style process accounting. The kernel accounting code and all 9 * process accounting log must include this file. 38 * process accounting file whenever a process exits. 51 __u32 ac_btime; /* Process Creation Time */ 81 __u32 ac_pid; /* Process ID */ 82 __u32 ac_ppid; /* Parent Process ID */ 83 __u32 ac_btime; /* Process Creation Time */ 103 /* bit set when the process ... * [all...] |
/external/webrtc/webrtc/modules/audio_processing/ |
typing_detection.h | 27 bool Process(bool key_pressed, bool vad_activity); 46 // Counter since last time the detection status reported by Process() was 51 // |report_detection_update_period_| call to Process(). 77 // by Process(). This inertia added to the algorithm is usually desirable and 80 // If set to 1, each call to Process() will return the detection status for 82 // If set to N (where N > 1), the detection status returned from Process() 83 // will remain the same until Process() has been called N times. Then, if none 84 // of the last N calls to Process() has detected typing for each respective 85 // 10 ms slot, Process() will return false. If at least one of the last N 86 // calls has detected typing, Process() will return true. And that returne [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/ |
utmp.h | 50 /* The structure describing the status of a terminated process. This 54 short int e_termination; /* Process termination status. */ 55 short int e_exit; /* Process exit status. */ 63 pid_t ut_pid; /* Process ID of login process. */ 68 struct exit_status ut_exit; /* Exit status of a process marked 108 #define INIT_PROCESS 5 /* Process spawned by the init process. */ 110 #define USER_PROCESS 7 /* Normal process. */ 111 #define DEAD_PROCESS 8 /* Terminated process. * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
acct.h | 2 * BSD Process Accounting for Linux - Definitions 7 * BSD-style process accounting. The kernel accounting code and all 9 * process accounting log must include this file. 38 * process accounting file whenever a process exits. 51 __u32 ac_btime; /* Process Creation Time */ 79 __u32 ac_pid; /* Process ID */ 80 __u32 ac_ppid; /* Parent Process ID */ 81 __u32 ac_btime; /* Process Creation Time */ 97 /* bit set when the process ... * [all...] |
prctl.h | 44 /* Get/set whether we use statistical process timing or accurate timestamp 45 * based process timing */ 49 statistical process timing */ 51 process timing */ 53 #define PR_SET_NAME 15 /* Set process name */ 54 #define PR_GET_NAME 16 /* Get process name */ 56 /* Get/set process endian */ 63 /* Get/set process seccomp mode */ 71 /* Get/set the process' ability to use the timestamp counter instruction */ 93 * This influences when the process gets killed on a memory corruption [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/ |
utmp.h | 50 /* The structure describing the status of a terminated process. This 54 short int e_termination; /* Process termination status. */ 55 short int e_exit; /* Process exit status. */ 63 pid_t ut_pid; /* Process ID of login process. */ 68 struct exit_status ut_exit; /* Exit status of a process marked 108 #define INIT_PROCESS 5 /* Process spawned by the init process. */ 110 #define USER_PROCESS 7 /* Normal process. */ 111 #define DEAD_PROCESS 8 /* Terminated process. * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
acct.h | 2 * BSD Process Accounting for Linux - Definitions 7 * BSD-style process accounting. The kernel accounting code and all 9 * process accounting log must include this file. 38 * process accounting file whenever a process exits. 51 __u32 ac_btime; /* Process Creation Time */ 79 __u32 ac_pid; /* Process ID */ 80 __u32 ac_ppid; /* Parent Process ID */ 81 __u32 ac_btime; /* Process Creation Time */ 97 /* bit set when the process ... * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/ |
utmp.h | 50 /* The structure describing the status of a terminated process. This 54 short int e_termination; /* Process termination status. */ 55 short int e_exit; /* Process exit status. */ 63 pid_t ut_pid; /* Process ID of login process. */ 68 struct exit_status ut_exit; /* Exit status of a process marked 108 #define INIT_PROCESS 5 /* Process spawned by the init process. */ 110 #define USER_PROCESS 7 /* Normal process. */ 111 #define DEAD_PROCESS 8 /* Terminated process. * [all...] |
/packages/apps/Bluetooth/ |
AndroidManifest.xml | 86 android:process="@string/process"> 100 android:process="@string/process" 107 android:process="@string/process" 112 android:process="@string/process" 123 android:process="@string/process" [all...] |
/cts/tests/tests/permission2/src/android/permission2/cts/ |
PermissionMaxSdkVersionTest.java | 20 import android.os.Process; 40 Process.myPid(), Process.myUid()); 53 Process.myPid(), Process.myUid());
|
/cts/tests/tests/tv/src/android/media/tv/cts/ |
FaultyTvInputService.java | 21 import android.os.Process; 48 Process.killProcess(Process.myPid()); 71 Process.killProcess(Process.myPid());
|
/external/autotest/client/cros/faft/utils/ |
shell_wrapper.py | 27 process to return before returning. 30 process = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, 33 process.wait() 34 return process 45 process = self._run_command(cmd, block) 46 if process.returncode: 49 err.append(process.stdout.read()) 51 err.append(process.stderr.read()) 55 (cmd, process.returncode)) 62 process = self._run_command(cmd [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/timeline/ |
tab_id_importer.py | 39 for process in self._model.GetAllProcesses(): 40 if process.trace_buffer_did_overflow: 42 'Trace buffer of process with pid=%d overflowed at timestamp %d. ' 44 (process.pid, process.trace_buffer_overflow_event.start,
|