HomeSort by relevance Sort by last modified time
    Searched full:process (Results 626 - 650 of 18366) sorted by null

<<21222324252627282930>>

  /system/extras/simpleperf/
workload.h 60 int start_signal_fd_; // The parent process writes 1 to start workload in the child process.
61 int exec_child_fd_; // The child process writes 1 to notify that execvp() failed.
  /system/sepolicy/
debuggerd.te 21 }:process { ptrace getattr };
27 allow debuggerd domain:process { sigstop sigkill signal };
33 # debuggerd and get redirected to the 32 bit debuggerd if the process is 32 bit.
runas.te 6 allow runas adbd:process sigchld;
26 allow runas self:process setcurrent;
27 allow runas non_system_app_set:process dyntransition; # setcon
  /external/autotest/scheduler/
drone_manager.py 62 class Process(CustomEquals):
77 return super(Process, self).__repr__() + '<%s>' % self
99 process = None variable in class:PidfileContents
108 return self.process and not self.exit_status
112 process = None variable in class:InvalidPidfile
158 # about a drone hitting process limit is sent.
167 # holds Process objects
187 # has been sent about the drone hitting process limit.
324 def _get_drone_for_process(self, process):
325 return self._drones[process.hostname
    [all...]
  /system/bt/stack/btu/
btu_hcif.c 390 ** Description Process event HCI_INQUIRY_COMP_EVT
409 ** Description Process event HCI_INQUIRY_RESULT_EVT
424 ** Description Process event HCI_INQUIRY_RSSI_RESULT_EVT
439 ** Description Process event HCI_EXTENDED_INQUIRY_RESULT_EVT
454 ** Description Process event HCI_CONNECTION_COMP_EVT
499 ** Description Process event HCI_CONNECTION_REQUEST_EVT
532 ** Description Process event HCI_DISCONNECTION_COMP_EVT
564 ** Description Process event HCI_AUTHENTICATION_COMP_EVT
584 ** Description Process event HCI_RMT_NAME_REQUEST_COMP_EVT
608 ** Description Process event HCI_ENCRYPTION_CHANGE_EV
    [all...]
  /external/opencv3/modules/photo/test/
test_hdr.cpp 98 linear->process(img, result);
104 drago->process(img, result);
110 durand->process(img, result);
116 reinhard->process(img, result);
122 mantiuk->process(img, result);
166 merge->process(images, result);
176 merge->process(images, result);
195 merge->process(images, result, times, response);
198 map->process(result, result);
199 map->process(expected, expected)
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ProcessRecord.java 43 import android.os.Process;
56 * Full information about a particular process that
63 final ApplicationInfo info; // all about the first app in the process
64 final boolean isolated; // true if this is a special isolated process
65 final int uid; // uid of process; may be different from 'info' if isolated
66 final int userId; // user of process.
67 final String processName; // name of the process
68 // List of packages running in the process
70 UidRecord uidRecord; // overall state of process's uid.
74 // are in the process of launching the app
    [all...]
  /cts/tests/camera/src/android/hardware/multiprocess/camera/cts/
CameraEvictionTest.java 41 * Tests for multi-process camera usage behavior.
50 private static final int WAIT_TIME = 2000; // Time to wait for process to launch (ms).
78 Log.i(TAG, "CameraDevice onOpened called for main CTS test process.");
87 Log.i(TAG, "CameraDevice onClosed called for main CTS test process.");
95 Log.i(TAG, "CameraDevice onDisconnected called for main CTS test process.");
101 Log.i(TAG, "CameraDevice onError called for main CTS test process with error " +
126 android.os.Process.killProcess(mProcessPid);
190 // Open camera from remote process
196 assertNotNull("Camera device not setup in remote process!", allEvents);
229 // Verify that we can no longer open the camera, as it is held by a higher priority process
    [all...]
  /external/autotest/client/site_tests/apmanager_CheckAPProcesses/
apmanager_CheckAPProcesses.py 32 """Verify the given process |process_name| is running |running|.
34 @param process_name string name of the process
35 @param expected_running bool flag indicating expected process state
36 @param timeout_seconds float number of seconds to wait for the process
51 'Process %s running status expected %r actual %r'
  /external/chromium-trace/catapult/catapult_build/
node_bootstrap.js 11 var isNode = global.process && global.process.versions.node;
17 var process = require('process'); variable
46 currentWorkingDirectory: process.cwd(),
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
sample_profiler.py 16 """An internal class for using iprofiler for a given process."""
25 if 'sample cannot examine process' in stdout:
27 'Failed to start sample for process %s\n' %
29 return 'Sampling process' in stdout
67 # The utility process may not have been started by Telemetry.
  /external/chromium-trace/catapult/tracing/tracing/extras/chrome/
chrome_auditor.html 52 this.model.getAllProcesses().forEach(function(process) {
53 if (process.labels !== undefined &&
54 process.labels.length == 1 &&
55 process.labels[0] == 'chrome://tracing')
56 process.important = false;
  /external/chromium-trace/catapult/tracing/tracing/model/
instant_event.html 17 PROCESS: 2
42 * particular process.
64 * particular process.
72 this.type = InstantEventType.PROCESS;
79 return 'Process-level instant event ' + this.title + ' @ ' +
  /external/chromium-trace/catapult/tracing/tracing/ui/analysis/
container_memory_dump_sub_view_test.html 149 // Total resident of Process 1.
155 // PSS of process 4.
161 // Malloc of process 2.
180 // Blink of Process 1.
186 // Peak total resident of Process 4.
192 // V8 of Process 3.
210 // Tracing of Process 2.
217 // Blink of Process 2.
223 // Total resident of Process 2.
240 // Tracing of Process 2
    [all...]
  /external/deqp/android/package/
AndroidManifest.xml 12 android:process=":execserverui"
18 android:process=":execserverstarter"
23 android:process=":execserver" />
26 android:label="dEQP Test Process"
29 android:process=":testercore">
  /external/kernel-headers/original/uapi/linux/
cn_proc.h 2 * cn_proc.h - process events connector
33 * From the user's point of view, the process
39 * parent process ID = parent->tgid
41 * child process ID = child->tgid
59 /* "last" is the last process event: exit,
  /external/libgdx/extensions/gdx-setup/src/com/badlogic/gdx/setup/
Executor.java 51 final Process process = new ProcessBuilder(commands).redirectErrorStream(true).directory(directory).start(); local
56 BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()), 1);
69 process.waitFor();
71 return process.exitValue() == 0;
  /external/libmicrohttpd/src/microhttpd/
connection.h 49 * @return always MHD_YES (we should continue to process the
63 * @return always MHD_YES (we should continue to process the
77 * @return MHD_YES if we should continue to process the
101 * @param connection connection to process
102 * @return MHD_YES if we should continue to process the
  /external/mockito/src/org/mockito/internal/configuration/
DefaultAnnotationEngine.java 24 * The {@link #process(Class, Object)} method implementation <strong>does not</strong> process super classes!
43 return forAnnotation(annotation).process(annotation, field);
51 public Object process(A annotation, Field field) {
61 public void process(Class<?> clazz, Object testInstance) {
  /external/mockito/src/org/mockito/internal/configuration/injection/
MockInjectionStrategy.java 54 * However if injection occurred successfully, the process should return <code>true</code>,
67 public boolean process(Field onField, Object fieldOwnedBy, Set<Object> mockCandidates) {
75 * Process actual injection.
78 * Don't call this method directly, instead call {@link #process(Field, Object, Set)}
89 return nextStrategy != null && nextStrategy.process(field, fieldOwner, mockCandidates);
  /external/proguard/examples/
proguardall.pro 2 # This ProGuard configuration file illustrates how to process ProGuard
11 # We'll read all jars from the lib directory, process them, and write the
55 # If we have ant.jar, we can properly process the Ant task.
64 # If we have the Gradle jars, we can properly process the Gradle task.
70 # If we have kenv.zip, we can process the J2ME WTK plugin.
  /frameworks/base/core/tests/coretests/src/android/os/
HandlerThreadTest.java 23 import android.os.Process;
41 mLooperTid = Process.myTid();
68 // Make sure that the process was set.
71 assertNotSame(Process.myTid(), mLooperTid);
77 assertEquals(mLooperTid, Process.myTid());
  /frameworks/base/tools/preload/
Policy.java 44 "com.google.process.content",
45 "android.process.media",
54 "com.google.process.gapps",
77 * Returns true if the given process name is a "long running" process or
  /frameworks/rs/
rsCppUtils.cpp 65 case 0: { // Child process
69 // ProcessManager in libcore can reap unclaimed SIGCHLDs in its process
81 default: { // Parent process (actual driver)
82 // Wait on child process to finish execution.
95 ALOGE("Child process \"%s\" terminated with status %d", exe, status);
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
at42qt1070.js 33 process.stdout.write("Buttons Pressed: ");
38 process.stdout.write(i + " ");
44 process.stdout.write("None");
73 process.on('SIGINT', function()
80 process.exit(0);

Completed in 854 milliseconds

<<21222324252627282930>>