HomeSort by relevance Sort by last modified time
    Searched refs:processes (Results 51 - 75 of 343) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ARM/
arm-trustzone.s 8 @ Check that the assembler processes SMC instructions when TrustZone support is
  /external/webrtc/webrtc/tools/barcode_tools/
helper_functions.py 86 process_pool = multiprocessing.Pool(processes=multiprocessing.cpu_count())
  /packages/services/Car/tools/io_analysis/
check_file_read.py 41 self.processes = []
42 self.processes.append((open_time, process_name, flags))
52 self.processes.append((open_time, process_name, flags))
78 for opener in self.processes:
80 print " Processes opened this file:", ','.join(process_names)
  /external/autotest/server/hosts/
chameleon_host.py 107 """Get the list of local processes to wait for in wait_up.
115 processes = [self.CHAMELEOND_PROCESS]
116 return processes
remote.py 302 Checks if any HOSTS waitup processes are running yet on the
305 Returns True if any the waitup processes are running, False
308 processes = self.get_wait_up_processes()
309 if len(processes) == 0:
310 return True # wait up processes aren't being used
311 for procname in processes:
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
__init__.py 2 # Package analogous to 'threading.py' but using processes
7 # the API) of threading.py but uses processes instead of threads. A
163 Install support for sending connections and sockets between processes
227 def Pool(processes=None, initializer=None, initargs=(), maxtasksperchild=None):
232 return Pool(processes, initializer, initargs, maxtasksperchild)
271 child processes on Windows instead of sys.executable.
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 149 def Pool(processes=None, initializer=None, initargs=()):
151 return ThreadPool(processes, initializer, initargs)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
__init__.py 2 # Package analogous to 'threading.py' but using processes
7 # the API) of threading.py but uses processes instead of threads. A
163 Install support for sending connections and sockets between processes
227 def Pool(processes=None, initializer=None, initargs=(), maxtasksperchild=None):
232 return Pool(processes, initializer, initargs, maxtasksperchild)
271 child processes on Windows instead of sys.executable.
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 149 def Pool(processes=None, initializer=None, initargs=()):
151 return ThreadPool(processes, initializer, initargs)
  /prebuilts/go/darwin-x86/doc/progs/
gobs2.go 27 // run in different processes.
  /prebuilts/go/darwin-x86/test/
sieve.go 30 // The prime sieve: Daisy-chain Filter processes together.
  /prebuilts/go/linux-x86/doc/progs/
gobs2.go 27 // run in different processes.
  /prebuilts/go/linux-x86/test/
sieve.go 30 // The prime sieve: Daisy-chain Filter processes together.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 2 # Package analogous to 'threading.py' but using processes
7 # the API) of threading.py but uses processes instead of threads. A
163 Install support for sending connections and sockets between processes
227 def Pool(processes=None, initializer=None, initargs=(), maxtasksperchild=None):
232 return Pool(processes, initializer, initargs, maxtasksperchild)
271 child processes on Windows instead of sys.executable.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 149 def Pool(processes=None, initializer=None, initargs=()):
151 return ThreadPool(processes, initializer, initargs)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 2 # Package analogous to 'threading.py' but using processes
7 # the API) of threading.py but uses processes instead of threads. A
163 Install support for sending connections and sockets between processes
227 def Pool(processes=None, initializer=None, initargs=(), maxtasksperchild=None):
232 return Pool(processes, initializer, initargs, maxtasksperchild)
271 child processes on Windows instead of sys.executable.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 149 def Pool(processes=None, initializer=None, initargs=()):
151 return ThreadPool(processes, initializer, initargs)
  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
CompactMemInfoParserTest.java 196 JSONArray processes = json.getJSONArray("processes"); local
197 assertEquals(5, processes.length());
  /cts/suite/audio_quality/test_description/processing/
calc_delay.py 53 pool = Pool(processes = 4)
  /external/autotest/client/site_tests/power_CameraSuspend/
power_CameraSuspend.py 46 pool = multiprocessing.Pool(processes=1)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
win_pgo_profiler.py 94 """Collect the profile data for the current processes."""
  /development/scripts/
gdbclient.py 86 processes = gdbrunner.get_processes(device)
87 if process_name not in processes:
90 pids = processes[process_name]
92 msg = "multiple processes match '{}': {}".format(process_name, pids)
  /external/autotest/client/site_tests/security_ASLR/
security_ASLR.py 8 the pids in /proc/<pid>/maps. Restarts the tested processes and reads
158 """Gets processes to test for main function.
160 Called by run_once to get processes for this program to test.
314 Called when test is run. Gets processes to test and calls test on
318 error.TestFail if any processes' memory mapping addresses are the
326 processes = self.get_processes_to_test()
327 # If we don't find any of the processes we wanted to test, we fail.
328 if len(processes) == 0:
331 'Could not find any of "%s" processes to test' % proc_names)
335 for process in processes
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/tracing_agent/
cpu_tracing_agent.py 59 """Fetches the top processes returned by top command.
74 """Class for collecting information about processes on Windows.
119 processes = super(WindowsProcessCollector, self).GetProcesses()
126 for process in processes:
130 return processes
158 # In order to match other platforms, where multiple processes can have the
206 """Class for collecting information about processes on Linux.
213 '-a', # Include processes that aren't session leaders.
214 '-x', # List all processes, even those not owned by the user.
228 """Class for collecting information about processes on Mac
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/testing/
WeightWatcher.java 111 int[] processes = mMemoryService.getTrackedProcesses(); local
112 for (int i=0; i<processes.length; i++) {
114 v.setPid(processes[i]);

Completed in 3301 milliseconds

1 23 4 5 6 7 8 91011>>