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

1 2 3 4 56 7 8 91011>>

  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
pn532.js 67 process.stdout.write("UID: ");
71 process.stdout.write(toHex(byteVal, 2) + " ");
73 process.stdout.write("\n");
95 process.exit(0);
99 process.on('SIGINT', function()
mhz16.js 37 process.exit(0);
69 process.on('SIGINT', function()
76 process.exit(0);
nunchuck.js 38 process.exit(0);
62 process.on('SIGINT', function()
65 process.exit(0);
adc121c021.js 45 process.on('SIGINT', function()
52 process.exit(0);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
Process2Test.java 27 * java.lang.Process#getInputStream(),
28 * java.lang.Process#getErrorStream()
29 * java.lang.Process#getOutputStream()
34 Process p = javaProcessBuilder().start();
42 Process process = null; local
44 process = Runtime.getRuntime().exec(commands, null, null);
45 InputStream is = process.getErrorStream();
57 if (process != null) {
58 process.destroy()
    [all...]
  /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/
memory_dump_event_unittest.py 41 process = mock.Mock()
42 process.pid = event['pid']
43 return memory_dump_event.ProcessMemoryDumpEvent(process, [event])
49 process = mock.Mock()
50 process.pid = 1234
53 pid=process.pid, allocators={
62 pid=process.pid, allocators={
72 memory_dump = memory_dump_event.ProcessMemoryDumpEvent(process, events)
123 process = mock.Mock()
124 process.pid = 123
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
rendering_stats.py 43 def GetLatencyEvents(process, timeline_range):
44 """Get LatencyInfo trace events from the process's trace buffer that are
54 if not process:
57 process.IterAllAsyncSlicesStartsWithName('InputLatency'),
58 process.IterAllAsyncSlicesStartsWithName('Latency')):
108 def HasRenderingStats(process):
109 """ Returns True if the process contains at least one
112 if not process:
114 for event in process.IterAllSlicesOfName(
118 for event in process.IterAllSlicesOfName
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
Optimizer.java 59 * @param rmeth method to process
80 * @param rmeth method to process
120 * @param rmeth method to process
155 MoveParamCombiner.process(ssaMeth);
159 SCCP.process(ssaMeth);
160 DeadCodeRemover.process(ssaMeth);
165 LiteralOpUpgrader.process(ssaMeth);
166 DeadCodeRemover.process(ssaMeth);
175 EscapeAnalysis.process(ssaMeth);
176 DeadCodeRemover.process(ssaMeth)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
Optimizer.java 60 * @param rmeth method to process
81 * @param rmeth method to process
121 * @param rmeth method to process
156 MoveParamCombiner.process(ssaMeth);
160 SCCP.process(ssaMeth);
161 DeadCodeRemover.process(ssaMeth);
166 LiteralOpUpgrader.process(ssaMeth);
167 DeadCodeRemover.process(ssaMeth);
176 EscapeAnalysis.process(ssaMeth);
177 DeadCodeRemover.process(ssaMeth)
    [all...]
  /external/icu/icu4c/source/layout/
SinglePositioningSubtables.h 26 le_uint32 process(const LEReferenceTo<SinglePositioningSubtable> &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const;
34 le_uint32 process(const LEReferenceTo<SinglePositioningFormat1Subtable> &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const;
43 le_uint32 process(const LEReferenceTo<SinglePositioningFormat2Subtable> &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const;
GlyphPositioningTables.cpp 19 void GlyphPositioningTableHeader::process(const LEReferenceTo<GlyphPositioningTableHeader> &base, LEGlyphStorage &glyphStorage, GlyphPositionAdjustments *glyphPositionAdjustments, le_bool rightToLeft, function in class:GlyphPositioningTableHeader
33 processor.process(glyphStorage, glyphPositionAdjustments, rightToLeft, glyphDefinitionTableHeader, fontInstance, success);
GlyphSubstitutionTables.cpp 20 le_int32 GlyphSubstitutionTableHeader::process(const LEReferenceTo<GlyphSubstitutionTableHeader> &base, function in class:GlyphSubstitutionTableHeader
37 return processor.process(glyphStorage, NULL, rightToLeft, glyphDefinitionTableHeader, NULL, success);
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
InsertHeader.java 18 import com.google.currysrc.api.process.Context;
19 import com.google.currysrc.api.process.Processor;
37 public void process(Context context, CompilationUnit cu) { method in class:InsertHeader
BaseJavadocTagJavadoc.java 18 import com.google.currysrc.api.process.JavadocUtils;
19 import com.google.currysrc.api.process.Reporter;
  /external/libchrome/base/process/
process_handle.h 22 // handle to a process.
23 // ProcessId is a number which identifies the process in the OS.
38 // Returns the id of the current process.
43 // Returns a unique ID for the current process. The ID will be unique across all
46 // a process's PID.
50 // When a process is started in a different PID namespace from the browser
51 // process, this function must be called with the process's PID in the browser's
54 // should only be called very early after process startup - ideally as soon
55 // after process creation as possible
    [all...]
port_provider_mac.cc 5 #include "base/process/port_provider_mac.h"
22 void PortProvider::NotifyObservers(ProcessHandle process) {
24 FOR_EACH_OBSERVER(Observer, observer_list_, OnReceivedTaskPort(process));
  /external/ltrace/sysdeps/linux-gnu/arm/
regs.h 38 int arm_get_register(struct process *proc, enum arm_register reg, uint32_t *lp);
41 int arm_get_register_offpc(struct process *proc, enum arm_register reg,
46 int arm_get_shifted_register(struct process *proc, uint32_t inst, int carry,
  /external/opencv3/modules/videostab/include/opencv2/videostab/
outlier_rejection.hpp 63 virtual void process(
70 virtual void process(
85 virtual void process(
  /frameworks/base/libs/hwui/thread/
TaskProcessor.h 33 virtual void process(const sp<TaskBase>& task) = 0;
45 process(task);
54 virtual void process(const sp<TaskBase>& task) override {
  /external/autotest/scheduler/
site_drone_manager.py 22 def copy_to_results_repository(self, process, source_path,
25 Copy results from the given process at source_path to destination_path
48 super(SiteDroneManager, self).copy_to_results_repository(process,
52 def kill_process(self, process):
54 Kill the given process.
56 logging.info('killing %s', process)
57 drone = self._get_drone_for_process(process)
58 drone.queue_kill_process(process)
site_drones.py 26 def queue_kill_process(self, process):
27 """Queue a process to kill/abort.
29 @param process: Process to kill/abort.
31 self._processes_to_kill.append(process)
42 If there are any processes queued to kill, kill them then process the
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
TagMatchingDeclarations.java 19 import com.google.currysrc.api.process.Context;
20 import com.google.currysrc.api.process.JavadocUtils;
21 import com.google.currysrc.api.process.Processor;
22 import com.google.currysrc.api.process.ast.BodyDeclarationLocator;
23 import com.google.currysrc.api.process.ast.StartPositionComparator;
44 @Override public void process(Context context, CompilationUnit cu) { method in class:TagMatchingDeclarations
  /frameworks/base/services/core/java/com/android/server/hdmi/
SelectRequestBuffer.java 35 public void process() {
82 public abstract void process(); method in class:SelectRequestBuffer.SelectRequest
91 public void process() { method in class:SelectRequestBuffer.DeviceSelectRequest
105 public void process() { method in class:SelectRequestBuffer.PortSelectRequest
131 public void process() { method in class:SelectRequestBuffer
133 mRequest.process();
  /external/ltrace/sysdeps/linux-gnu/s390/
plt.c 36 sym2addr(struct process *proc, struct library_symbol *sym)
42 arch_elf_add_plt_entry(struct process *proc, struct ltelf *lte,

Completed in 3531 milliseconds

1 2 3 4 56 7 8 91011>>