Searched defs:output (Results 1 - 15 of 15) sorted by relevance

/hardware/msm7k/libaudio-qdsp5v2/
H A DAudioPolicyManager.cpp129 // when forcing to speaker output
218 // output routing
236 float AudioPolicyManager::computeVolume(int stream, int index, audio_io_handle_t output, uint32_t device) argument
238 // force volume on A2DP output to maximum if playing through car dock speakers
241 if (output == mA2dpOutput &&
247 float volume = AudioPolicyManagerBase::computeVolume(stream, index, output, device);
/hardware/msm7k/libaudio-qsd8k/
H A DAudioPolicyManager.cpp129 // when forcing to speaker output
218 // output routing
236 float AudioPolicyManager::computeVolume(int stream, int index, audio_io_handle_t output, uint32_t device) argument
242 return AudioPolicyManagerBase::computeVolume(stream, index, output, device);
245 // force volume on A2DP output to maximum if playing through car dock speakers
248 if (output == mA2dpOutput &&
254 float volume = AudioPolicyManagerBase::computeVolume(stream, index, output, device);
/hardware/invensense/libsensors_iio/software/core/mllite/
H A Dml_math_func.h31 float output; member in struct:__anon135
94 void inv_convert_to_body(unsigned short orientation, const long *input, long *output);
95 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output);
96 void inv_convert_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output);
H A Dml_math_func.c68 * @return the computed magnitude squared output of the gyroscope.
611 * @param[out] output Output vector, length 3
613 void inv_convert_to_body(unsigned short orientation, const long *input, long *output) argument
615 output[0] = input[orientation & 0x03] * SIGNSET(orientation & 0x004);
616 output[1] = input[(orientation>>3) & 0x03] * SIGNSET(orientation & 0x020);
617 output[2] = input[(orientation>>6) & 0x03] * SIGNSET(orientation & 0x100);
623 * @param[out] output Output vector, length 3
625 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output) argument
627 output[orientation & 0x03] = input[0] * SIGNSET(orientation & 0x004);
628 output[(orientatio
640 inv_convert_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output) argument
[all...]
/hardware/invensense/libsensors_iio/software/simple_apps/mpu_iio/
H A Diio_utils.h28 * @generic_name: the output generic channel name
61 * @index: the channel index in the buffer output
62 * @bytes: number of bytes occupied in buffer output
63 * @mask: a bit mask for the raw output
85 * @is_signed: output whether channel is signed
86 * @bytes: output how many bytes the channel storage occupies
87 * @mask: output a bit mask for the raw data
192 inline int iioutils_get_param_float(float *output, argument
235 fscanf(sysfsfp, "%f", output);
/hardware/invensense/mlsdk/mllite/
H A Dcompass.c185 static int update(yas_filter_handle_t *t, float *input, float *output) argument
189 if (t == NULL || input == NULL || output == NULL) {
194 output[i] = adaptive_filter_filter(&t->adap_filter[i], input[i]);
195 output[i] = thresh_filter_filter(&t->thresh_filter[i], output[i]);
/hardware/libhardware_legacy/audio/
H A DAudioPolicyCompatClient.cpp57 status_t AudioPolicyCompatClient::closeOutput(audio_io_handle_t output) argument
59 return mServiceOps->close_output(mService, output);
62 status_t AudioPolicyCompatClient::suspendOutput(audio_io_handle_t output) argument
64 return mServiceOps->suspend_output(mService, output);
67 status_t AudioPolicyCompatClient::restoreOutput(audio_io_handle_t output) argument
69 return mServiceOps->restore_output(mService, output);
88 audio_io_handle_t output)
91 output);
123 audio_io_handle_t output,
127 volume, output, delayM
87 setStreamOutput(AudioSystem::stream_type stream, audio_io_handle_t output) argument
120 setStreamVolume( AudioSystem::stream_type stream, float volume, audio_io_handle_t output, int delayMs) argument
[all...]
H A Daudio_policy_hal.cpp151 static int ap_start_output(struct audio_policy *pol, audio_io_handle_t output, argument
155 return lap->apm->startOutput(output, (AudioSystem::stream_type)stream,
159 static int ap_stop_output(struct audio_policy *pol, audio_io_handle_t output, argument
163 return lap->apm->stopOutput(output, (AudioSystem::stream_type)stream,
168 audio_io_handle_t output)
171 lap->apm->releaseOutput(output);
167 ap_release_output(struct audio_policy *pol, audio_io_handle_t output) argument
H A DAudioPolicyManagerBase.cpp61 // handle output devices
77 // save a copy of the opened output descriptors before any output is opened or closed
82 // handle output device connection
124 // handle output device disconnection
132 // remove device from available output devices
318 // check for device and output changes triggered by new phone state
337 // delay the device change command by twice the output latency to have some margin
368 // setting output device above
444 // check for device and output change
449 audio_io_handle_t output = mOutputs.keyAt(i); local
514 audio_io_handle_t output = 0; local
664 startOutput(audio_io_handle_t output, AudioSystem::stream_type stream, int session) argument
731 stopOutput(audio_io_handle_t output, AudioSystem::stream_type stream, int session) argument
788 releaseOutput(audio_io_handle_t output) argument
1329 audio_io_handle_t output = mpClientInterface->openOutput( local
1553 testOutputIndex(audio_io_handle_t output) argument
1627 audio_io_handle_t output = mpClientInterface->openOutput(profile->mModule->mHandle, local
1767 closeOutput(audio_io_handle_t output) argument
1972 getNewDevice(audio_io_handle_t output, bool fromCache) argument
2350 setOutputDevice(audio_io_handle_t output, audio_devices_t device, bool force, int delayMs) argument
2695 computeVolume(int stream, int index, audio_io_handle_t output, audio_devices_t device) argument
2759 checkAndSetVolume(int stream, int index, audio_io_handle_t output, audio_devices_t device, int delayMs, bool force) argument
2817 applyStreamVolumes(audio_io_handle_t output, audio_devices_t device, int delayMs, bool force) argument
2834 setStrategyMute(routing_strategy strategy, bool on, audio_io_handle_t output, int delayMs, audio_devices_t device) argument
2848 setStreamMute(int stream, bool on, audio_io_handle_t output, int delayMs, audio_devices_t device) argument
[all...]
/hardware/ril/mock-ril/src/cpp/
H A Dmsgheader.pb.cpp255 ::google::protobuf::io::CodedOutputStream* output) const {
258 ::google::protobuf::internal::WireFormatLite::WriteUInt32(1, this->cmd(), output);
263 ::google::protobuf::internal::WireFormatLite::WriteUInt32(2, this->length_data(), output);
268 ::google::protobuf::internal::WireFormatLite::WriteUInt32(3, this->status(), output);
273 ::google::protobuf::internal::WireFormatLite::WriteUInt64(4, this->token(), output);
278 unknown_fields(), output); local
/hardware/libhardware/modules/audio/
H A Daudio_policy.c107 static int ap_start_output(struct audio_policy *pol, audio_io_handle_t output, argument
113 static int ap_stop_output(struct audio_policy *pol, audio_io_handle_t output, argument
120 audio_io_handle_t output)
203 audio_io_handle_t output,
119 ap_release_output(struct audio_policy *pol, audio_io_handle_t output) argument
201 ap_register_effect(struct audio_policy *pol, const struct effect_descriptor_s *desc, audio_io_handle_t output, uint32_t strategy, int session, int id) argument
/hardware/qcom/audio/alsa_sound/
H A Daudio_policy_hal.cpp147 static void ap_pause_session(struct audio_policy *pol, audio_io_handle_t output, argument
151 qap->apm->pauseSession(output, (AudioSystem::stream_type)stream);
154 static void ap_resume_session(struct audio_policy *pol, audio_io_handle_t output, argument
158 qap->apm->resumeSession(output, (AudioSystem::stream_type)stream);
161 static void ap_release_session(struct audio_policy *pol, audio_io_handle_t output) argument
164 qap->apm->releaseSession(output);
183 static int ap_start_output(struct audio_policy *pol, audio_io_handle_t output, argument
187 return qap->apm->startOutput(output, (AudioSystem::stream_type)stream,
191 static int ap_stop_output(struct audio_policy *pol, audio_io_handle_t output, argument
195 return qap->apm->stopOutput(output, (AudioSyste
199 ap_release_output(struct audio_policy *pol, audio_io_handle_t output) argument
[all...]
/hardware/ti/omap4xxx/camera/
H A DAppCallbackNotifier.cpp1072 structConvImage output = {mVideoWidth, local
1080 VT_resizeFrame_Video_opt2_lp(&input, &output, NULL, 0);
/hardware/samsung_slsi/exynos5/libcamera/
H A DExynosCamera.cpp2368 int ExynosCamera::getFocusDistances(float *output) argument
/hardware/samsung_slsi/exynos5/include/
H A Dvideodev2.h262 #define V4L2_CAP_VIDEO_OUTPUT 0x00000002 /* Is a video output device */
265 #define V4L2_CAP_VBI_OUTPUT 0x00000020 /* Is a raw VBI output device */
267 #define V4L2_CAP_SLICED_VBI_OUTPUT 0x00000080 /* Is a sliced VBI output device */
269 #define V4L2_CAP_VIDEO_OUTPUT_OVERLAY 0x00000200 /* Can do video output overlay */
275 /* Is a video output device that supports multiplanar formats */
555 * output. Unless you exactly know what
1124 __u32 index; /* Which output */
1126 __u32 type; /* Type of output */
2201 * @vbi: raw VBI capture or output parameters
2202 * @sliced: sliced VBI capture or output parameter
2223 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon1469
[all...]

Completed in 171 milliseconds