Searched refs:output (Results 126 - 150 of 393) sorted by relevance

1234567891011>>

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DCameraTestResultPrinter.java81 Bundle output = new Bundle();
82 output.putString(KEY_NUM_ATTEMPTS, String.valueOf(numAttempts));
83 output.putString(KEY_ITERATION, String.valueOf(iteration));
85 output.putString(KEY_CAMERA_ID, cameraId);
87 mInst.sendStatus(INST_STATUS_IN_PROGRESS, output);
91 // Format output in a form of pairs of key and value
/frameworks/base/tools/obbtool/
H A Dmkobb.sh94 unset output
102 output="${output}${c}"
105 eval $outvar="$output"
106 unset output
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/
H A DImageUtils.java182 File output = new File(getFailureDir(), "delta-" + imageName);
183 if (output.exists()) {
184 boolean deleted = output.delete();
187 ImageIO.write(deltaImage, "PNG", output);
188 error += " - see details in " + output.getPath() + "\n";
323 File output = new File(getFailureDir(), getName(relativePath));
324 if (output.exists()) {
325 boolean deleted = output.delete();
328 ImageIO.write(image, "PNG", output);
329 initialMessage += "Thumbnail for current rendering stored at " + output
[all...]
/frameworks/rs/script_api/include/
H A Drs_for_each.rsh107 * rs_kernel argument. If the specified kernel returns a value, an output allocation
109 * and the output allocation if it exists, must have the same dimensions.
114 * to the output allocation.
136 * output: Allocation to write date into.
141 * ...: Input and output allocations
145 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData,
151 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData);
156 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData,
162 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData,
168 rsForEach(rs_script script, rs_allocation input, rs_allocation output);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
H A DEventBus.java663 StringBuilder output = new StringBuilder();
664 output.append(prefix);
665 output.append("Registered class types:");
666 output.append("\n");
676 output.append(innerPrefix);
677 output.append(clz.getSimpleName());
678 output.append("\n");
680 output.append(prefix);
681 output.append("Event map:");
682 output
[all...]
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreSignatureSpiBase.java269 byte[] output;
271 output = mMessageStreamer.update(b, off, len);
276 if (output.length != 0) {
278 "Update operation unexpectedly produced output: " + output.length + " bytes");
354 byte[] output = mMessageStreamer.doFinal(
359 if (output.length != 0) {
361 "Signature verification unexpected produced output: " + output.length
H A DAndroidKeyStoreHmacSpi.java215 byte[] output;
217 output = mChunkedStreamer.update(input, offset, len);
221 if ((output != null) && (output.length != 0)) {
222 throw new ProviderException("Update operation unexpectedly produced output");
/frameworks/av/services/audiopolicy/
H A DAudioPolicyInterface.h32 // configuration of audio input and output streams.
40 // return a handler on an output that has been selected, configured and opened by the audio policy manager and that
43 // to close or reconfigure the output depending on other streams using this output and current system state.
46 // applicable to each output as a function of platform specific settings and current output route (destination device). It
111 // request an output appropriate for playback of the supplied stream type and parameters
119 audio_io_handle_t *output,
127 // indicates to the audio policy manager that the output starts being used by corresponding stream.
128 virtual status_t startOutput(audio_io_handle_t output,
[all...]
/frameworks/av/media/libstagefright/codec2/tests/
H A DC2Param_test.cpp744 bool canSetPort(T &o, bool output) { return o.setPort(output); } argument
799 // C2NumberPortTuning::output: kIndex | tun | port | output (args)
804 static_assert(C2NumberPortTuning::output::baseIndex ==
806 static_assert(C2NumberPortTuning::output::typeIndex ==
809 static_assert(sizeof(C2NumberPortTuning::output) == 12, "bad size");
813 static_assert(offsetof(C2NumberPortTuning::output, _mSize) == 0, "bad size");
814 static_assert(offsetof(C2NumberPortTuning::output, _mIndex) == 4, "bad offset");
815 static_assert(offsetof(C2NumberPortTuning::output, mNumbe
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/storage/
H A DCacheQuotaStrategyTest.java116 Pair<Long, List<CacheQuotaHint>> output =
119 assertThat(output.first).isEqualTo(1000);
120 assertThat(output.second).containsExactly(buildCacheQuotaHint("uuid", 0, 100),
/frameworks/native/include/private/gui/
H A DLayerState.h77 status_t write(Parcel& output) const;
117 status_t write(Parcel& output) const;
149 status_t write(Parcel& output) const;
/frameworks/rs/tests/lldb/cpp/KernelVariables/
H A DKernelVariables.cpp81 uint32_t * output = new uint32_t[size*size]; local
82 b->copy2DRangeTo(0, 0, size, size, output);
83 delete [] output;
/frameworks/rs/tests/lldb/jni/KernelVariables/jnikernelvariables/
H A Djnikernelvariables.cpp90 uint32_t * output = new uint32_t[size*size]; local
91 b->copy2DRangeTo(0, 0, size, size, output);
92 delete [] output;
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DLegacyCameraDevice.java314 * Configure the device with a set of output surfaces.
330 Surface output = outputs.valueAt(i);
331 if (output == null) {
335 if (!output.isValid()) {
336 Log.e(TAG, "configureOutputs - invalid output surfaces are not allowed");
344 Size s = getSurfaceSize(output);
345 int surfaceType = detectSurfaceType(output);
347 boolean flexibleConsumer = isFlexibleConsumer(output);
354 // IMPLEMENTATION_DEFINED output sizes, and is publicly visible in the
364 sizedSurfaces.add(new Pair<>(output,
588 isFlexibleConsumer(Surface output) argument
601 isPreviewConsumer(Surface output) argument
619 isVideoEncoderConsumer(Surface output) argument
[all...]
/frameworks/av/media/libstagefright/
H A DMediaCodecSource.cpp395 Mutexed<Output>::Locked output(mOutput);
398 while (output->mBufferQueue.size() == 0 && !output->mEncoderReachedEOS) {
399 output.waitForCondition(output->mCond);
401 if (!output->mEncoderReachedEOS) {
402 *buffer = *output->mBufferQueue.begin();
403 output->mBufferQueue.erase(output->mBufferQueue.begin());
406 return output
[all...]
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/
H A DAndroid.mk33 LOCAL_JACK_FLAGS := -D jack.dex.output.policy=minimal-multidex -D jack.dex.output.multidex.legacy=true
/frameworks/base/libs/hwui/service/
H A DGraphicsStatsService.h56 static bool parseFromFile(const std::string& path, service::GraphicsStatsProto* output);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DGrainFilter.java165 // Create output frame
166 Frame output = context.getFrameManager().newFrame(inputFormat);
184 mGrainProgram.process(inputs, output);
186 // Push output
187 pushOutput("image", output);
190 output.release();
H A DRedEyeFilter.java116 // Create output frame
117 Frame output = context.getFrameManager().newFrame(inputFormat);
133 mProgram.process(inputs, output);
135 // Push output
136 pushOutput("image", output);
139 output.release();
H A DRotateFilter.java104 // Create output frame
109 Frame output = context.getFrameManager().newFrame(outputFormat);
112 mProgram.process(input, output);
114 // Push output
115 pushOutput("image", output);
118 output.release();
H A DStraightenFilter.java96 // Create output frame
103 Frame output = context.getFrameManager().newFrame(inputFormat);
106 mProgram.process(input, output);
108 // Push output
109 pushOutput("image", output);
112 output.release();
/frameworks/compile/slang/lit-tests/
H A Dscriptc-filecheck-wrapper.sh8 help_str="Usage: %s --output=<output-dir> \
21 --output=*)
/frameworks/native/services/surfaceflinger/
H A DMonitoredProducer.cpp93 QueueBufferOutput* output) {
94 return mProducer->queueBuffer(slot, input, output);
106 int api, bool producerControlledByApp, QueueBufferOutput* output) {
107 return mProducer->connect(listener, api, producerControlledByApp, output);
92 queueBuffer(int slot, const QueueBufferInput& input, QueueBufferOutput* output) argument
105 connect(const sp<IProducerListener>& listener, int api, bool producerControlledByApp, QueueBufferOutput* output) argument
/frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
H A DRegion.java159 public void heal(ScriptC_healing healing, RenderScript rs, Bitmap image, Bitmap output) { argument
165 h.heal(healing, rs, image, output);
169 public void undo(Bitmap output) { argument
170 Canvas c = new Canvas(output);
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java158 Map<String, ClassReader> output = new TreeMap<>();
160 parseZip(mOsDestJar, output, filesFound);
162 for (ClassReader cr: output.values()) {
204 Map<String, ClassReader> output = new TreeMap<>();
205 parseZip(mOsDestJar, output, new TreeMap<>());
207 for (ClassReader cr: output.values()) {
241 Map<String, ClassReader> output = new TreeMap<>();
243 parseZip(mOsDestJar, output, filesFound);
244 for (String s : output.keySet()) {
275 Map<String, ClassReader> output
[all...]

Completed in 914 milliseconds

1234567891011>>