Searched refs:process (Results 76 - 100 of 197) sorted by relevance

12345678

/frameworks/base/tools/preload/
H A DPrintCsv.java84 procNames.add(op.process.name);
86 procNames.add(op.process.name);
H A DMemoryUsage.java232 final Process process = Runtime.getRuntime().exec(commands);
234 final InputStream err = process.getErrorStream();
247 new InputStreamReader(process.getInputStream()));
258 process.destroy();
/frameworks/native/services/sensorservice/
H A DRotationVectorSensor.cpp46 bool RotationVectorSensor::process(sensors_event_t* outEvent, function in class:android::RotationVectorSensor
132 bool GyroDriftSensor::process(sensors_event_t* outEvent, function in class:android::GyroDriftSensor
H A DCorrectedGyroSensor.cpp55 bool CorrectedGyroSensor::process(sensors_event_t* outEvent, function in class:android::CorrectedGyroSensor
H A DGravitySensor.cpp54 bool GravitySensor::process(sensors_event_t* outEvent, function in class:android::GravitySensor
H A DOrientationSensor.cpp47 bool OrientationSensor::process(sensors_event_t* outEvent, function in class:android::OrientationSensor
H A DSensorFusion.h64 void process(const sensors_event_t& event);
H A DSensorInterface.cpp55 bool HardwareSensor::process(sensors_event_t* outEvent, function in class:android::HardwareSensor
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp843 << "Expected process() to have been called.";
887 virtual void process(const RawEvent* rawEvent) { function in class:android::FakeInputMapper
1380 mDevice->process(&event, 1);
1441 static void process(InputMapper* mapper, nsecs_t when, int32_t deviceId, int32_t type, function in class:android::InputMapperTest
1449 mapper->process(&event);
1523 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_SW, SW_LID, 1);
1524 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_SW, SW_JACK_PHYSICAL_INSERT, 1);
1525 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_SW, SW_HEADPHONE_INSERT, 0);
1526 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_SYN, SYN_REPORT, 0);
1550 process(mappe
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioBiquadFilter.h77 // frameCount Number of multi-channel samples to process.
78 void process(const audio_sample_t in[], audio_sample_t out[],
95 // the process() method.
111 // In the process of smooth transition to bypass state.
113 // In the process of smooth transition to normal (enabled) state.
H A DAudioEqualizer.h184 // frameCount Number of frames to produce on each call to process().
185 void process(const audio_sample_t * pIn, audio_sample_t * pOut,
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DGLTextureSource.java67 // Release frame, so that it is recreated during the next process call
75 public void process(FilterContext context) { method in class:GLTextureSource
H A DGLTextureTarget.java46 public void process(FilterContext context) { method in class:GLTextureTarget
H A DObjectSource.java54 public void process(FilterContext context) { method in class:ObjectSource
82 // Release our internal frame, so that it is regenerated on the next call to process().
H A DRetargetFilter.java60 public void process(FilterContext context) { method in class:RetargetFilter
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/numeric/
H A DSinWaveFilter.java57 public void process(FilterContext env) { method in class:SinWaveFilter
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
H A DThroughputFilter.java71 public void process(FilterContext context) { method in class:ThroughputFilter
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationIntrusivenessExtractor.java41 public RankingReconsideration process(NotificationRecord record) { method in class:NotificationIntrusivenessExtractor
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
H A DAvgBrightnessFilterTest.java52 process();
H A DContrastRatioFilterTest.java60 process();
H A DExposureFilterTest.java56 process();
/frameworks/base/core/java/android/app/
H A DUiAutomationConnection.java283 java.lang.Process process = null;
286 process = Runtime.getRuntime().exec(command);
288 in = process.getInputStream();
302 if (process != null) {
303 process.destroy();
343 // process is gone the client calling in will be killed.
356 // process is gone the client calling in will be killed.
369 // process is gone the client calling in will be killed.
381 // process is gone the client calling in will be killed.
385 // process i
[all...]
/frameworks/base/core/java/android/util/
H A DBase64.java81 * @param finish true if this is the final call to process for
88 public abstract boolean process(byte[] input, int offset, int len, boolean finish); method in class:Base64.Coder
91 * @return the maximum number of bytes a call to process()
160 if (!decoder.process(input, offset, len, true)) {
263 public boolean process(byte[] input, int offset, int len, boolean finish) { method in class:Base64.Decoder
535 encoder.process(input, offset, len, true);
603 public boolean process(byte[] input, int offset, int len, boolean finish) { method in class:Base64.Encoder
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/
H A DBackDropperFilter.java569 throw new RuntimeException("Attempting to process input frame with unknown size");
697 public void process(FilterContext context) { method in class:BackDropperFilter
724 copyShaderProgram.process(video, mVideoInput);
725 copyShaderProgram.process(background, mBgInput);
736 copyShaderProgram.process(mVideoInput, mBgMean[inputIndex]);
742 mBgDistProgram.process(distInputs, mDistance);
747 mBgMaskProgram.process(mDistance, mMask);
753 mAutomaticWhiteBalanceProgram.process(autoWBInputs, mAutoWB);
760 copyShaderProgram.process(mMask, mMaskVerify[outputIndex]);
772 mMaskVerifyProgram.process(maskVerifyInput
[all...]
/frameworks/base/core/tests/coretests/src/android/util/
H A DBase64Test.java248 encoder.process(input, 0, 3, false);
252 encoder.process(input, 0, 3, false);
256 encoder.process(input, 0, 1, false);
260 encoder.process(input, 0, 1, false);
264 encoder.process(input, 0, 1, false);
268 encoder.process(input, 0, 2, false);
272 encoder.process(input, 0, 2, false);
276 encoder.process(input, 0, 2, false);
280 encoder.process(input, 0, 1, true);

Completed in 372 milliseconds

12345678