/cts/tests/tests/os/src/android/os/cts/ |
ProcessTest.java | 24 import android.os.Process; 105 int myTid = Process.myTid(); 107 int priority = Process.getThreadPriority(myTid); 109 && priority <= Process.THREAD_PRIORITY_LOWEST); 111 Process.setThreadPriority(Process.THREAD_PRIORITY_AUDIO); 112 assertEquals(Process.THREAD_PRIORITY_AUDIO, Process.getThreadPriority(myTid)); 114 Process.setThreadPriority(myTid, Process.THREAD_PRIORITY_LOWEST) [all...] |
/external/chromium-trace/catapult/tracing/tracing/model/ |
process_test.html | 13 <link rel="import" href="/tracing/model/process.html"> 22 var process = new tr.model.Process(model, 7); 23 var ctrBar = process.getOrCreateCounter('foo', 'bar'); 24 var ctrBar2 = process.getOrCreateCounter('foo', 'bar'); 30 var process = new tr.model.Process(model, 7); 31 var ctr = process.getOrCreateCounter('foo', 'bar'); 32 var thread = process.getOrCreateThread(1); 35 process.instantEvents.push(instantEvent) [all...] |
/device/lge/bullhead/sepolicy/ |
servicemanager.te | 6 allow servicemanager init:process getattr; 9 #HACK allow servicemanager init_shell:process getattr;
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/ |
run_tests.js | 15 process.on('exit', function () { 16 process.exit(failed);
|
/external/chromium-trace/catapult/tracing/tracing/model/helpers/ |
chrome_renderer_helper.html | 16 function ChromeRendererHelper(modelHelper, process) { 17 tr.model.helpers.ChromeProcessHelper.call(this, modelHelper, process); 18 this.mainThread_ = process.findAtMostOneThreadNamed('CrRendererMain'); 19 this.compositorThread_ = process.findAtMostOneThreadNamed('Compositor'); 20 this.rasterWorkerThreads_ = process.findAllThreadsMatching(function(t) { 31 ChromeRendererHelper.isRenderProcess = function(process) { 32 if (!process.findAtMostOneThreadNamed('CrRendererMain')) 34 if (!process.findAtMostOneThreadNamed('Compositor'))
|
/external/opencv3/modules/java/src/ |
photo+MergeDebevec.java | 20 // C++: void process(vector_Mat src, Mat& dst, Mat times, Mat response) 23 //javadoc: MergeDebevec::process(src, dst, times, response) 24 public void process(List<Mat> src, Mat dst, Mat times, Mat response) method in class:MergeDebevec 34 // C++: void process(vector_Mat src, Mat& dst, Mat times) 37 //javadoc: MergeDebevec::process(src, dst, times) 38 public void process(List<Mat> src, Mat dst, Mat times) method in class:MergeDebevec 54 // C++: void process(vector_Mat src, Mat& dst, Mat times, Mat response) 57 // C++: void process(vector_Mat src, Mat& dst, Mat times)
|
photo+MergeRobertson.java | 20 // C++: void process(vector_Mat src, Mat& dst, Mat times, Mat response) 23 //javadoc: MergeRobertson::process(src, dst, times, response) 24 public void process(List<Mat> src, Mat dst, Mat times, Mat response) method in class:MergeRobertson 34 // C++: void process(vector_Mat src, Mat& dst, Mat times) 37 //javadoc: MergeRobertson::process(src, dst, times) 38 public void process(List<Mat> src, Mat dst, Mat times) method in class:MergeRobertson 54 // C++: void process(vector_Mat src, Mat& dst, Mat times, Mat response) 57 // C++: void process(vector_Mat src, Mat& dst, Mat times)
|
/external/valgrind/gdbserver_tests/ |
nlgone_abrt.stdinB.gdb | 3 echo vgdb launched process attached\n 5 # see process get a fatal signal
|
nlsigvgdb.stderrB.exp | 1 relaying data between gdb and process .... 5 monitor command request to kill this process
|
/frameworks/base/docs/html/distribute/essentials/ |
_project.yaml | 3 description: "A focus on quality should be part of your entire app delivery process: from initial concept through app and UI design, coding and testing and onto a process of monitoring feedback and making improvement after launch."
|
/external/elfutils/libdwfl/ |
dwfl_frame.c | 46 Ebl *ebl = state->thread->process->ebl; 90 Ebl *ebl = thread->process->ebl; 110 __libdwfl_process_free (Dwfl_Process *process) 112 Dwfl *dwfl = process->dwfl; 113 if (process->callbacks->detach != NULL) 114 process->callbacks->detach (dwfl, process->callbacks_arg); 115 assert (dwfl->process == process); 116 dwfl->process = NULL 127 Dwfl_Process *process = malloc (sizeof (*process)); local 196 Dwfl_Process *process = dwfl->process; local 262 Dwfl_Process *process = dwfl->process; local 339 Dwfl_Process *process = dwfl->process; local 428 Dwfl_Process *process = thread->process; local [all...] |
/external/libchrome/base/process/ |
process_handle_mac.cc | 5 #include "base/process/process_handle.h" 16 ProcessId GetParentProcessId(ProcessHandle process) { 19 int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, process }; 29 FilePath GetProcessExecutablePath(ProcessHandle process) { 31 if (!proc_pidpath(process, pathbuf, sizeof(pathbuf)))
|
process_posix.cc | 5 #include "base/process/process.h" 15 #include "base/process/kill.h" 30 // than |wait| for the process to exit. The child process may 36 // When a child process terminates a SIGCHLD signal is sent to the parent. 40 // Our strategy is to call waitpid() once up front to check if the process 62 // If the process hasn't exited yet, then sleep and try again. 70 // Sleep for a bit while we wait for the process to finish. 109 // If the process wasn't found, it must be dead [all...] |
/external/v8/test/mjsunit/regress/ |
regress-arm64-spillslots.js | 22 function Process(input) { 30 Process(input); 31 Process(input); 32 %OptimizeFunctionOnNextCall(Process); 33 var result = Process(input);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/ |
Processes_Suite.py | 51 """application process - A process launched from an application file """ 54 """application file - a reference to the application file from which this process was launched """ 61 """desk accessory process - A process launched from an desk accessory file """ 64 """desk accessory file - a reference to the desk accessory file from which this process was launched """ 70 class process(aetools.ComponentItem): class in inherits:aetools.ComponentItem 71 """process - A process running on this computer """ 74 """accepts high level events - Is the process high-level event aware (accepts open application, open document, print document, and quit)? "" [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/ |
Processes_Suite.py | 51 """application process - A process launched from an application file """ 54 """application file - a reference to the application file from which this process was launched """ 61 """desk accessory process - A process launched from an desk accessory file """ 64 """desk accessory file - a reference to the desk accessory file from which this process was launched """ 70 class process(aetools.ComponentItem): class in inherits:aetools.ComponentItem 71 """process - A process running on this computer """ 74 """accepts high level events - Is the process high-level event aware (accepts open application, open document, print document, and quit)? "" [all...] |
/external/ltrace/ |
proc.h | 59 STATE_IGNORED /* ignore this process (it's a fork and no -f was used) */ 84 * have struct process for the whole group and struct task (or struct 87 struct process { struct 89 struct process *parent; /* needed by STATE_BEING_CREATED */ 98 int mask_32bit; /* 1 if 64-bit ltrace is tracing 32-bit process */ 136 * Process chaining. 138 struct process *next; 140 /* LEADER points to the leader thread of the POSIX.1 process. 142 process structures chained by NEXT represent other threads, 145 that case this process is waiting to be collected. * [all...] |
/libcore/ojluni/src/main/java/java/lang/ |
Process.java | 33 * methods create a native process and return an instance of a 34 * subclass of {@code Process} that can be used to control the process 35 * and obtain information about it. The class {@code Process} 36 * provides methods for performing input from the process, performing 37 * output to the process, waiting for the process to complete, 38 * checking the exit status of the process, and destroying (killing) 39 * the process. 48 * operations will be redirected to the parent process, where they ca [all...] |
/external/vogar/src/vogar/commands/ |
Command.java | 43 * An out of process executable. 56 private volatile Process process; field in class:Command 99 process = processBuilder.start(); 103 return process != null; 111 return process.getInputStream(); 131 int exitValue = process.waitFor(); 145 throw new RuntimeException("Failed to execute process: " + args, e); 147 throw new RuntimeException("Interrupted while executing process: " + args, e); 152 * Executes a command with a specified timeout. If the process does no 171 Process process = this.process; local 332 Process process = Command.this.process; local [all...] |
/frameworks/base/core/java/com/android/internal/os/ |
KernelWakelockReader.java | 18 import android.os.Process; 36 Process.PROC_TAB_TERM|Process.PROC_OUT_STRING| // 0: name 37 Process.PROC_QUOTES, 38 Process.PROC_TAB_TERM|Process.PROC_OUT_LONG, // 1: count 39 Process.PROC_TAB_TERM, 40 Process.PROC_TAB_TERM, 41 Process.PROC_TAB_TERM, 42 Process.PROC_TAB_TERM|Process.PROC_OUT_LONG, // 5: totalTim [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
Legacy_suite.py | 83 """application process - A process launched from an application file """ 86 """<Inheritance> - inherits some of its properties from the process class """ 90 """application file - the application file from which this process was launched """ 97 """desk accessory process - A process launched from a desk accessory file """ 100 """desk accessory file - the desk accessory file from which this process was launched """ 106 class process(aetools.ComponentItem): class in inherits:aetools.ComponentItem 107 """process - A process running on this computer "" [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
Legacy_suite.py | 83 """application process - A process launched from an application file """ 86 """<Inheritance> - inherits some of its properties from the process class """ 90 """application file - the application file from which this process was launched """ 97 """desk accessory process - A process launched from a desk accessory file """ 100 """desk accessory file - the desk accessory file from which this process was launched """ 106 class process(aetools.ComponentItem): class in inherits:aetools.ComponentItem 107 """process - A process running on this computer "" [all...] |
/frameworks/base/core/tests/coretests/src/android/os/ |
BinderThreadPriorityTest.java | 78 mSavedPriority = Process.getThreadPriority(Process.myTid()); 79 Process.setThreadPriority(mSavedPriority); // To realign priority & cgroup, if needed 88 Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND); 89 Process.setThreadPriority(mSavedPriority); 90 assertEquals(mSavedPriority, Process.getThreadPriority(Process.myTid())); 98 String fn = "/proc/" + Process.myPid() + "/task/" + Process.myTid() + "/cgroup" [all...] |
/cts/tests/ProcessTest/ |
AndroidManifest.xml | 17 package="com.android.cts.process" 18 android:sharedUserId="com.android.cts.process.uidpid_test"> 22 android:targetPackage="com.android.cts.process" 23 android:label="Test process"/> 29 android:process=":shareProcess"/> 31 android:process=":shareProcess"/> 33 android:process=":noShareProcess"/>
|
/system/core/libmemunreachable/ |
README.md | 6 libmemunreachable is a zero-overhead native memory leak detector. It uses an imprecise mark-and-sweep garbage collector pass over all native memory, reporting any unreachable blocks as leaks. It is similar to the [Heap Checker from tcmalloc](http://htmlpreview.github.io/?https://github.com/gperftools/gperftools/blob/master/doc/heap_checker.html), but with a few key differences to remove the overhead. Instead of instrumenting every call to malloc and free, it queries the allocator (jemalloc) for active allocations when leak detection is requested. In addition, it performs a very short stop-the-world data collection on the main process, and then forks a copy of the process to perform the mark-and-sweep, minimizing disruption to the original process. 35 The sequence of steps required to perform a leak detection pass is divided into three processes - the original process, the collection process, and the sweeper process. 37 1. *Original process*: Leak detection is requested by calling `GetUnreachableMemory()` 39 3. The collection process is spawned. The collection process is similar to a normal `fork()` child process, except that it shares the address space of the parent - any writes by the original process are vi (…) [all...] |