Searched refs:process (Results 1 - 25 of 56) sorted by relevance

123

/frameworks/base/tools/preload/
H A DOperation.java36 final Proc process; field in class:Operation
41 /** Index of this operation relative to its process. */
57 Operation(Proc process, LoadedClass loadedClass, long startTimeNanos, argument
59 this.process = process;
H A DRoot.java55 Proc process = processes.get(record.pid);
84 o = process.endOperation(record.tid, record.className,
93 process.startOperation(record.tid, loadedClass, record.time,
98 process.startOperation(record.tid, loadedClass, record.time,
113 * Indexes information about the process from the given record.
119 // Create a new process object.
H A DLoadedClass.java116 if (operation.process.fromZygote()) {
117 names.add(operation.process.name);
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();
H A DPrintHtmlDiff.java107 for (Operation op : clazz.loads) procNames.add(op.process.name);
109 procNames.add(op.process.name);
/frameworks/base/media/libeffects/testlibs/
H A DAudioShelvingFilter.h98 void process(const audio_sample_t in[], audio_sample_t out[], function in class:android::AudioShelvingFilter
99 int frameCount) { mBiquad.process(in, out, frameCount); }
H A DAudioFormatAdapter.h32 // void process(const audio_sample_t * pIn,
39 // calling its process() function directly, work with the process() function of
44 // bufSize The maximum number of samples (single channel) to process on a
47 // overhead, resulting from multiple calls to the underlying process()
48 // per a single call to this class's process().
73 // numSamples The number of multi-channel samples to process.
74 void process(const void * pIn, void * pOut, uint32_t numSamples) { function in class:android::AudioFormatAdapter
80 mpProcessor->process(
85 mpProcessor->process(
[all...]
H A DAudioPeakingFilter.h104 void process(const audio_sample_t in[], audio_sample_t out[], function in class:android::AudioPeakingFilter
105 int frameCount) { mBiquad.process(in, out, frameCount); }
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,
H A DAudioEqualizer.cpp225 void AudioEqualizer::process(const audio_sample_t * pIn, function in class:android::AudioEqualizer
228 // LOGV("AudioEqualizer::process(frameCount=%d)", frameCount);
229 mpLowShelf->process(pIn, pOut, frameCount);
231 mpPeakingFilters[i].process(pIn, pOut, frameCount);
233 mpHighShelf->process(pIn, pOut, frameCount);
/frameworks/base/services/sensorservice/
H A DSensorInterface.h38 virtual bool process(sensors_event_t* outEvent,
59 virtual bool process(sensors_event_t* outEvent,
H A DGravitySensor.h43 virtual bool process(sensors_event_t* outEvent,
H A DLinearAccelerationSensor.h39 virtual bool process(sensors_event_t* outEvent,
H A DSensorInterface.cpp43 bool HardwareSensor::process(sensors_event_t* outEvent, function in class:android::HardwareSensor
H A DRotationVectorSensor.h47 virtual bool process(sensors_event_t* outEvent,
H A DLinearAccelerationSensor.cpp37 bool LinearAccelerationSensor::process(sensors_event_t* outEvent, function in class:android::LinearAccelerationSensor
40 bool result = mGravitySensor.process(outEvent, event);
/frameworks/base/core/java/android/util/
H A DBase64InputStream.java143 success = coder.process(EMPTY, 0, 0, true);
145 success = coder.process(inputBuffer, 0, bytesRead, false);
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
H A DBase64OutputStream.java138 if (!coder.process(b, off, len, finish)) {
/frameworks/base/libs/ui/tests/
H A DInputReader_test.cpp697 << "Expected process() to have been called.";
741 virtual void process(const RawEvent* rawEvent) { function in class:android::FakeInputMapper
1264 mDevice->process(&event);
1318 static void process(InputMapper* mapper, nsecs_t when, int32_t deviceId, int32_t type, function in class:android::InputMapperTest
1328 mapper->process(&event);
1389 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_SW, SW_LID, 0, 1, 0);
1412 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_KEY, originalScanCode, originalKeyCode, 1, 0);
1418 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_KEY, originalScanCode, originalKeyCode, 0, 0);
1440 process(mapper, ARBITRARY_TIME, DEVICE_ID,
1456 process(mappe
[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);
/frameworks/base/include/binder/
H A DIPCThreadState.h37 sp<ProcessState> process();
57 // Stop the local process.
79 // Android system process, since it expects to have background apps calling
/frameworks/base/libs/rs/
H A DrsFileA3D.h98 bool process(Context *rsc);

Completed in 306 milliseconds

123