Searched defs:output (Results 126 - 150 of 178) sorted by relevance

12345678

/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyService.cpp70 // start output activity command thread
434 volume %f, output %d", data->mStream, data->mVolume, data->mIO);
453 ALOGV("AudioCommandThread() processing stop output %d",
465 ALOGV("AudioCommandThread() processing release output %d",
660 audio_io_handle_t output,
668 data->mIO = output;
671 ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d",
672 stream, volume, output);
704 void AudioPolicyService::AudioCommandThread::stopOutputCommand(audio_io_handle_t output, argument
711 data->mIO = output;
658 volumeCommand(audio_stream_type_t stream, float volume, audio_io_handle_t output, int delayMs) argument
719 releaseOutputCommand(audio_io_handle_t output, audio_stream_type_t stream, audio_session_t session) argument
1059 setStreamVolume(audio_stream_type_t stream, float volume, audio_io_handle_t output, int delayMs) argument
[all...]
/frameworks/base/core/java/android/content/
H A DContentProvider.java1112 // and reflected in the Cursor output. For example, if QUERY_ARG_OFFSET were included
1805 * @param output The pipe where data should be written. This will be
1812 public void writeDataToPipe(@NonNull ParcelFileDescriptor output, @NonNull Uri uri, argument
/frameworks/base/core/java/android/text/
H A DHtml.java91 Editable output, XMLReader xmlReader);
551 // Don't output the dummy character underlying the image.
90 handleTag(boolean opening, String tag, Editable output, XMLReader xmlReader) argument
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java2037 public String debug(String output) { argument
2038 return output + "LinearLayout.LayoutParams={width=" + sizeToString(width) +
H A DRelativeLayout.java1397 public String debug(String output) { argument
1398 return output + "ViewGroup.LayoutParams={ width=" + sizeToString(width) +
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.cpp174 GLFrameBufferHandle* output) {
175 // TODO: This can be optimized: If the input and output are the same, as in
185 // Focus the FBO of the output
186 if (!output->FocusFrameBuffer()) {
217 bool ShaderProgram::Process(const std::vector<const GLFrame*>& input, GLFrame* output) { argument
220 return Process(textures, output);
559 // Clear output, if requested
173 Process(const std::vector<const GLTextureHandle*>& input, GLFrameBufferHandle* output) argument
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java250 public void process(FrameImage2D input, FrameImage2D output) { argument
252 RenderTarget renderTarget = output.lockRenderTarget();
255 output.getWidth(),
256 output.getHeight());
258 output.unlock();
261 public void processMulti(FrameImage2D[] inputs, FrameImage2D output) { argument
266 RenderTarget renderTarget = output.lockRenderTarget();
269 output.getWidth(),
270 output.getHeight());
274 output
291 processNoInput(FrameImage2D output) argument
[all...]
/frameworks/native/libs/gui/
H A DBufferQueueProducer.cpp751 const QueueBufferInput &input, QueueBufferOutput *output) {
891 output->bufferReplaced = false;
918 output->bufferReplaced = true;
935 output->width = mCore->mDefaultWidth;
936 output->height = mCore->mDefaultHeight;
937 output->transformHint = mCore->mTransformHint;
938 output->numPendingBuffers = static_cast<uint32_t>(mCore->mQueue.size());
939 output->nextFrameNumber = mCore->mFrameCounter + 1;
1007 getFrameTimestamps ? &output->frameTimestamps : nullptr);
1130 int api, bool producerControlledByApp, QueueBufferOutput *output) {
750 queueBuffer(int slot, const QueueBufferInput &input, QueueBufferOutput *output) argument
1129 connect(const sp<IProducerListener>& listener, int api, bool producerControlledByApp, QueueBufferOutput *output) argument
[all...]
H A DSurface.cpp661 IGraphicBufferProducer::QueueBufferOutput output; local
730 status_t err = mGraphicBufferProducer->queueBuffer(i, input, &output);
737 mFrameEventHistory->applyDelta(output.frameTimestamps);
751 mDefaultWidth = output.width;
752 mDefaultHeight = output.height;
753 mNextFrameNumber = output.nextFrameNumber;
757 mTransformHint = output.transformHint;
760 mConsumerRunningBehind = (output.numPendingBuffers >= 2);
1152 IGraphicBufferProducer::QueueBufferOutput output; local
1154 int err = mGraphicBufferProducer->connect(listener, api, mProducerControlledByApp, &output);
[all...]
/frameworks/native/libs/gui/bufferqueue/1.0/
H A DH2BGraphicBufferProducer.cpp1009 "Invalid output fence");
1014 "Invalid output timestamps");
1038 "Invalid output fence");
1043 "Invalid output buffer");
1066 QueueBufferOutput* output) {
1076 [&fnStatus, output] (
1080 if (!convertTo(output, tOutput)) {
1082 "Invalid output");
1118 bool producerControlledByApp, QueueBufferOutput* output) {
1124 [&fnStatus, output] (
1063 queueBuffer( int slot, const QueueBufferInput& input, QueueBufferOutput* output) argument
1116 connect( const sp<IProducerListener>& listener, int api, bool producerControlledByApp, QueueBufferOutput* output) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dprimitives.cpp870 // output lists (we need 2, which we use back and forth)
879 // 3 input vertices, 0 in the output list, first plane
894 // pointers to our output list (head and current)
896 vertex_t** output = ovl; local
910 *output++ = p;
916 *output++ = buf++;
927 *output++ = buf++;
932 *output++ = p;
941 // output list become the new input list
960 // pointers to our output lis
962 vertex_t** output = ovl; local
[all...]
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp106 bool mix(int32_t *output, int head, int tail, int sampleRate);
236 bool AudioStream::mix(int32_t *output, int head, int tail, int sampleRate) argument
257 output[i - head] += mBuffer[i & mBufferMask];
793 size_t output = 0; local
795 if (AudioTrack::getMinFrameCount(&output, AUDIO_STREAM_VOICE_CALL,
796 sampleRate) != NO_ERROR || output <= 0 ||
802 ALOGD("reported frame count: output %zu, input %zu", output, input);
804 if (output < sampleCount * 2) {
805 output
875 int16_t output[sampleCount]; local
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.c542 * Writes the header of the output file.
545 * @param[out] pOutput The output from the conversion process.
591 * @param[out] pOutput The output from the conversion process.
825 * Encrypts the given character and writes it to the output buffer.
829 * @param[in,out] pOutput The output from the conversion process.
863 * @param[in,out] pOutput The output from the conversion process.
875 // to the output buffer and start over.
886 // The current character isn't part of the delimiter. Write it to the output buffer.
931 * @param[in,out] pOutput The output from the conversion process.
1072 * @param[in,out] pOutput The output fro
1269 FwdLockConv_Output_t output; local
[all...]
/frameworks/av/media/libaudioclient/
H A DAudioSystem.cpp160 audio_io_handle_t output)
165 af->setStreamVolume(stream, value, output);
179 audio_io_handle_t output)
184 *volume = af->streamVolume(stream, output);
258 audio_io_handle_t output; local
264 output = getOutput(streamType);
265 if (output == 0) {
269 return getSamplingRate(output, samplingRate);
295 audio_io_handle_t output; local
301 output
159 setStreamVolume(audio_stream_type_t stream, float value, audio_io_handle_t output) argument
178 getStreamVolume(audio_stream_type_t stream, float* volume, audio_io_handle_t output) argument
332 audio_io_handle_t output; local
346 getLatency(audio_io_handle_t output, uint32_t* latency) argument
380 getRenderPosition(audio_io_handle_t output, uint32_t *halFrames, uint32_t *dspFrames) argument
815 getOutputForAttr(const audio_attributes_t *attr, audio_io_handle_t *output, audio_session_t session, audio_stream_type_t *stream, uid_t uid, const audio_config_t *config, audio_output_flags_t flags, audio_port_handle_t selectedDeviceId, audio_port_handle_t *portId) argument
832 startOutput(audio_io_handle_t output, audio_stream_type_t stream, audio_session_t session) argument
841 stopOutput(audio_io_handle_t output, audio_stream_type_t stream, audio_session_t session) argument
850 releaseOutput(audio_io_handle_t output, audio_stream_type_t stream, audio_session_t session) argument
[all...]
H A DAudioTrack.cpp133 // audio_io_handle_t output
141 ALOGE("Unable to query output sample rate for stream type %d; status %d",
148 ALOGE("Unable to query output frame count for stream type %d; status %d",
155 ALOGE("Unable to query output latency for stream type %d; status %d",
765 // An offload output can be re-used between two audio tracks having
1264 audio_io_handle_t output; local
1277 status = AudioSystem::getOutputForAttr(attr, &output,
1282 if (status != NO_ERROR || output == AUDIO_IO_HANDLE_NONE) {
1283 ALOGE("Could not get audio output for session %d, stream type %d, usage %d, sample rate %u,"
1294 status = AudioSystem::getLatency(output,
2688 audio_io_handle_t output = getOutput(); local
[all...]
H A DIAudioFlinger.cpp106 audio_io_handle_t output,
132 data.writeInt32((int32_t) output);
288 virtual audio_format_t format(audio_io_handle_t output) const
292 data.writeInt32((int32_t) output);
306 virtual uint32_t latency(audio_io_handle_t output) const
310 data.writeInt32((int32_t) output);
350 audio_io_handle_t output)
356 data.writeInt32((int32_t) output);
371 virtual float streamVolume(audio_stream_type_t stream, audio_io_handle_t output) const
376 data.writeInt32((int32_t) output);
98 createTrack( audio_stream_type_t streamType, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t *pFrameCount, audio_output_flags_t *flags, const sp<IMemory>& sharedBuffer, audio_io_handle_t output, pid_t pid, pid_t tid, audio_session_t *sessionId, int clientUid, status_t *status, audio_port_handle_t portId) argument
349 setStreamVolume(audio_stream_type_t stream, float value, audio_io_handle_t output) argument
456 openOutput(audio_module_handle_t module, audio_io_handle_t *output, audio_config_t *config, audio_devices_t *devices, const String8& address, uint32_t *latencyMs, audio_output_flags_t flags) argument
503 closeOutput(audio_io_handle_t output) argument
512 suspendOutput(audio_io_handle_t output) argument
521 restoreOutput(audio_io_handle_t output) argument
716 createEffect( effect_descriptor_t *pDesc, const sp<IEffectClient>& client, int32_t priority, audio_io_handle_t output, audio_session_t sessionId, const String16& opPackageName, pid_t pid, status_t *status, int *id, int *enabled) argument
984 audio_io_handle_t output = (audio_io_handle_t) data.readInt32(); local
1090 audio_io_handle_t output = (audio_io_handle_t) data.readInt32(); local
1103 int output = data.readInt32(); local
1171 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; local
1248 audio_io_handle_t output = (audio_io_handle_t) data.readInt32(); local
1324 audio_io_handle_t output = (audio_io_handle_t) data.readInt32(); local
[all...]
H A DIAudioPolicyService.cpp188 audio_io_handle_t *output,
209 if (output == NULL) {
210 ALOGE("getOutputForAttr NULL output - shouldn't happen");
243 *output = (audio_io_handle_t)reply.readInt32();
252 virtual status_t startOutput(audio_io_handle_t output, argument
258 data.writeInt32(output);
265 virtual status_t stopOutput(audio_io_handle_t output, argument
271 data.writeInt32(output);
278 virtual void releaseOutput(audio_io_handle_t output, argument
284 data.writeInt32(output);
187 getOutputForAttr(const audio_attributes_t *attr, audio_io_handle_t *output, audio_session_t session, audio_stream_type_t *stream, uid_t uid, const audio_config_t *config, audio_output_flags_t flags, audio_port_handle_t selectedDeviceId, audio_port_handle_t *portId) argument
920 audio_io_handle_t output = getOutput(stream, local
951 audio_io_handle_t output = 0; local
965 audio_io_handle_t output = static_cast <audio_io_handle_t>(data.readInt32()); local
977 audio_io_handle_t output = static_cast <audio_io_handle_t>(data.readInt32()); local
989 audio_io_handle_t output = static_cast <audio_io_handle_t>(data.readInt32()); local
1099 audio_io_handle_t output = getOutputForEffect(&desc); local
[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/core/java/android/view/
H A DRenderNode.java780 * tools to output display lists for selected nodes to the log.
782 public void output() { method in class:RenderNode
H A DWindowManager.java2373 public String debug(String output) { argument
2374 output += "Contents of " + this + ":";
2375 Log.d("Debug", output);
2376 output = super.debug("");
2377 Log.d("Debug", output);
/frameworks/base/media/jni/
H A Dandroid_media_MediaDrm.cpp1315 Vector<uint8_t> output; local
1317 status_t err = drm->encrypt(sessionId, keyId, input, iv, output);
1323 return VectorToJByteArray(env, output);
1346 Vector<uint8_t> output; local
1348 status_t err = drm->decrypt(sessionId, keyId, input, iv, output);
1353 return VectorToJByteArray(env, output);
/frameworks/native/cmds/dumpstate/
H A Dutils.cpp594 int read_file_as_long(const char *path, long int *output) { argument
611 *output = atoi(buffer);
751 /* redirect output to a service control socket */
/frameworks/native/libs/hwc2on1adapter/
H A DHWC2On1Adapter.cpp359 std::stringstream output; local
361 output << "-- HWC2On1Adapter --\n";
363 output << "Adapting to a HWC 1." << static_cast<int>(mHwc1MinorVersion) <<
373 output << "Capabilities: None\n";
375 output << "Capabilities:\n";
377 output << " " << to_string(capability) << '\n';
381 output << "Displays:\n";
384 output << display->dump();
386 output << '\n';
393 output << "HWC
1377 std::stringstream output; local
1397 std::stringstream output; local
1406 std::stringstream output; local
1426 std::stringstream output; local
1486 std::stringstream output; local
1508 std::stringstream output; local
1656 std::string output; local
2069 std::stringstream output; local
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp647 audio_io_handle_t output,
707 PlaybackThread *thread = checkPlaybackThread_l(output);
709 ALOGE("no playback thread found for output handle %d", output);
725 // output thread and move it here.
728 if (mPlaybackThreads.keyAt(i) != output) {
751 // move effect chain to this output thread if an effect on same session was waiting
810 audio_format_t AudioFlinger::format(audio_io_handle_t output) const
813 PlaybackThread *thread = checkPlaybackThread_l(output);
815 ALOGW("format() unknown thread %d", output);
639 createTrack( audio_stream_type_t streamType, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t *frameCount, audio_output_flags_t *flags, const sp<IMemory>& sharedBuffer, audio_io_handle_t output, pid_t pid, pid_t tid, audio_session_t *sessionId, int clientUid, status_t *status, audio_port_handle_t portId) argument
1054 setStreamVolume(audio_stream_type_t stream, float value, audio_io_handle_t output) argument
1929 openOutput_l(audio_module_handle_t module, audio_io_handle_t *output, audio_config_t *config, audio_devices_t devices, const String8& address, audio_output_flags_t flags) argument
2018 openOutput(audio_module_handle_t module, audio_io_handle_t *output, audio_config_t *config, audio_devices_t *devices, const String8& address, uint32_t *latencyMs, audio_output_flags_t flags) argument
2092 closeOutput(audio_io_handle_t output) argument
2097 closeOutput_nonvirtual(audio_io_handle_t output) argument
2181 suspendOutput(audio_io_handle_t output) argument
2196 restoreOutput(audio_io_handle_t output) argument
2737 AudioStreamOut *output = thread->getOutput(); local
[all...]

Completed in 306 milliseconds

12345678