Home
last modified time | relevance | path

Searched refs:parameters (Results 1 – 25 of 101) sorted by relevance

12345

/hardware/google/interfaces/media/c2/1.0/
DIConfigurable.hal36 * Queries a set of parameters from the object. Querying is performed at
37 * best effort: the object must query all supported parameters and skip
38 * unsupported ones, or parameters that could not be allocated. Any errors
49 * - OK - All parameters could be queried.
50 * - BAD_INDEX - All supported parameters could be queried, but some
51 * parameters were not supported.
53 * - BLOCKING - Querying some parameters requires blocking.
55 * parameters. (unexpected)
67 * Sets a set of parameters for the object. Tuning is performed at best
69 * effort and skip unsupported parameters. Any errors are communicated in
[all …]
/hardware/invensense/6515/libsensors_iio/software/core/mllite/
Dresults_holder.c760 void inv_set_earth_magnetic_local_field_parameter(struct local_field_t *parameters) in inv_set_earth_magnetic_local_field_parameter() argument
762 rh.mag_local_field.intensity = parameters->intensity; // radius in inv_set_earth_magnetic_local_field_parameter()
763 rh.mag_local_field.inclination = parameters->inclination; // dip angle in inv_set_earth_magnetic_local_field_parameter()
764 …rh.mag_local_field.declination = parameters->declination; // yaw deviation angle from true north in inv_set_earth_magnetic_local_field_parameter()
774 void inv_get_earth_magnetic_local_field_parameter(struct local_field_t *parameters) in inv_get_earth_magnetic_local_field_parameter() argument
776 parameters->intensity = rh.mag_local_field.intensity; // radius in inv_get_earth_magnetic_local_field_parameter()
777 parameters->inclination = rh.mag_local_field.inclination; // dip angle in inv_get_earth_magnetic_local_field_parameter()
778parameters->declination = rh.mag_local_field.declination; // yaw deviation angle from true north in inv_get_earth_magnetic_local_field_parameter()
779 parameters->mpl_match_status = rh.mag_local_field.mpl_match_status; in inv_get_earth_magnetic_local_field_parameter()
821 inv_error_t inv_set_mpl_magnetic_local_field_parameter(struct local_field_t *parameters) in inv_set_mpl_magnetic_local_field_parameter() argument
[all …]
Dresults_holder.h51 void inv_set_earth_magnetic_local_field_parameter(struct local_field_t *parameters);
52 void inv_get_earth_magnetic_local_field_parameter(struct local_field_t *parameters);
58 inv_error_t inv_set_mpl_magnetic_local_field_parameter(struct local_field_t *parameters);
59 void inv_get_mpl_magnetic_local_field_parameter(struct local_field_t *parameters);
/hardware/interfaces/media/c2/1.0/
DIConfigurable.hal45 * Queries a set of parameters from the object.
48 * parameters and skip unsupported ones (which may include parameters that
81 * - `OK` - All parameters could be queried.
82 * - `BAD_INDEX` - All supported parameters could be queried, but some
83 * parameters were not supported.
85 * - `BLOCKING` - Querying some parameters requires blocking, but
102 * Sets a set of parameters for the object.
105 * configurations at best effort and skip unsupported parameters. Any errors
118 * The final values for all parameters set are propagated back to the caller
134 * parameters, e.g., some parameter update may enable some subsequent
[all …]
/hardware/interfaces/audio/4.0/
DIDevice.hal91 * Returns audio input buffer size according to parameters passed or
92 * INVALID_ARGUMENTS if one of the parameters is not supported.
114 * @return suggestedConfig in case of invalid parameters, suggested config.
139 * @return suggestedConfig in case of invalid parameters, suggested config.
189 * @return resultPort port descriptor with all parameters filled up.
224 * The framework does not interpret the parameters, they are passed
227 * Multiple parameters can be retrieved at the same time.
228 * The implementation should return as many requested parameters
232 * @param keys keys of the requested parameters
236 * @return parameters parameter key value pairs.
[all …]
DIStream.hal141 * Convenience method for retrieving several stream parameters in
211 * The framework does not interpret the parameters, they are passed
214 * Multiple parameters can be retrieved at the same time.
215 * The implementation should return as many requested parameters
219 * @param keys keys of the requested parameters
223 * @return parameters parameter key value pairs.
227 generates (Result retval, vec<ParameterValue> parameters);
231 * The framework does not interpret the parameters, they are passed
234 * Multiple parameters can be set at the same time though this is
240 * @param parameters parameter key value pairs.
[all …]
/hardware/interfaces/audio/5.0/
DIDevice.hal91 * Returns audio input buffer size according to parameters passed or
92 * INVALID_ARGUMENTS if one of the parameters is not supported.
114 * @return suggestedConfig in case of invalid parameters, suggested config.
139 * @return suggestedConfig in case of invalid parameters, suggested config.
189 * @return resultPort port descriptor with all parameters filled up.
224 * The framework does not interpret the parameters, they are passed
227 * Multiple parameters can be retrieved at the same time.
228 * The implementation should return as many requested parameters
232 * @param keys keys of the requested parameters
236 * @return parameters parameter key value pairs.
[all …]
DIStream.hal141 * Convenience method for retrieving several stream parameters in
211 * The framework does not interpret the parameters, they are passed
214 * Multiple parameters can be retrieved at the same time.
215 * The implementation should return as many requested parameters
219 * @param keys keys of the requested parameters
223 * @return parameters parameter key value pairs.
227 generates (Result retval, vec<ParameterValue> parameters);
231 * The framework does not interpret the parameters, they are passed
234 * Multiple parameters can be set at the same time though this is
240 * @param parameters parameter key value pairs.
[all …]
/hardware/interfaces/audio/core/all-versions/default/
DParametersUtil.cpp78 std::function<void(Result retval, const hidl_vec<ParameterValue>& parameters)> cb) { in getParametersImpl()
142 const hidl_vec<ParameterValue>& parameters) { in setParametersImpl() argument
147 for (size_t i = 0; i < parameters.size(); ++i) { in setParametersImpl()
148 params.add(String8(parameters[i].key.c_str()), String8(parameters[i].value.c_str())); in setParametersImpl()
DPrimaryDevice.cpp136 Return<Result> PrimaryDevice::setParameters(const hidl_vec<ParameterValue>& parameters) { in setParameters() argument
137 return mDevice->setParameters(parameters); in setParameters()
153 const hidl_vec<ParameterValue>& parameters) { in setParameters() argument
154 return mDevice->setParameters(context, parameters); in setParameters()
DStream.cpp240 Return<Result> Stream::setParameters(const hidl_vec<ParameterValue>& parameters) { in setParameters() argument
241 return setParametersImpl({} /* context */, parameters); in setParameters()
282 const hidl_vec<ParameterValue>& parameters) { in setParameters() argument
283 return setParametersImpl(context, parameters); in setParameters()
DDevice.cpp333 Return<Result> Device::setParameters(const hidl_vec<ParameterValue>& parameters) { in setParameters() argument
334 return setParametersImpl({} /* context */, parameters); in setParameters()
343 const hidl_vec<ParameterValue>& parameters) { in setParameters() argument
344 return setParametersImpl(context, parameters); in setParameters()
/hardware/interfaces/audio/2.0/
DIDevice.hal93 * Returns audio input buffer size according to parameters passed or
94 * INVALID_ARGUMENTS if one of the parameters is not supported.
114 * @return suggestedConfig in case of invalid parameters, suggested config.
137 * @return suggestedConfig in case of invalid parameters, suggested config.
187 * @return resultPort port descriptor with all parameters filled up.
219 * The framework does not interpret the parameters, they are passed
224 * @return parameters parameter key value pairs.
227 generates (Result retval, vec<ParameterValue> parameters);
231 * The framework does not interpret the parameters, they are passed
234 * @param parameters parameter key value pairs.
[all …]
DIStream.hal124 * Convenience method for retrieving several stream parameters in
203 * The framework does not interpret the parameters, they are passed
208 * @return parameters parameter key value pairs.
211 generates (Result retval, vec<ParameterValue> parameters);
215 * The framework does not interpret the parameters, they are passed
218 * @param parameters parameter key value pairs.
221 setParameters(vec<ParameterValue> parameters) generates (Result retval);
/hardware/interfaces/audio/core/all-versions/default/include/core/default/
DParametersUtil.h47 std::function<void(Result retval, const hidl_vec<ParameterValue>& parameters)> cb);
53 const hidl_vec<ParameterValue>& parameters);
DStreamIn.h81 Return<Result> setParameters(const hidl_vec<ParameterValue>& parameters) override;
90 const hidl_vec<ParameterValue>& parameters) override;
/hardware/interfaces/broadcastradio/2.0/
DITunerCallback.hal72 * The framework does not interpret the parameters, they are passed
78 * this callback, while an internal event can change parameters
81 * @param parameters Vendor-specific key-value pairs,
84 oneway onParametersUpdated(vec<VendorKeyValue> parameters);
DITunerSession.hal140 * The framework does not interpret the parameters, they are passed
155 * parameters vector - instead, an unknown key should simply be ignored.
160 * @param parameters Vendor-specific key-value pairs.
161 * @return results Operation completion status for parameters being set.
163 setParameters(vec<VendorKeyValue> parameters)
168 * The framework does not interpret the parameters, they are passed
183 * @return parameters Vendor-specific key-value pairs.
185 getParameters(vec<string> keys) generates (vec<VendorKeyValue> parameters);
/hardware/interfaces/contexthub/1.0/
DIContexthub.hal47 * BAD_VALUE if parameters are not sane
59 * BAD_VALUE if parameters are not sane
85 * BAD_VALUE if parameters are not sane
108 * BAD_VALUE if parameters are not sane
129 * BAD_VALUE if parameters are not sane
150 * BAD_VALUE if parameters are not sane
/hardware/interfaces/camera/device/3.5/
DICameraDeviceSession.hal74 * @return halConfiguration The stream parameters desired by the HAL for
117 * the value of any advertised session parameters. Depending on the specific values
122 * This call may be done by the framework some time before the request with new parameters
139 * @param oldSessionParams Before session parameters, usually the current session parameters.
140 * @param newSessionParams The new session parameters which may be set by client.
/hardware/interfaces/bluetooth/audio/2.0/
Dtypes.hal150 /** Used for Software Encoding audio feed parameters */
158 * Used for Hardware Encoding SBC codec parameters.
172 /** Used for Hardware Encoding AAC codec parameters */
182 * Used for Hardware Encoding LDAC codec parameters
193 /** Used for Hardware Encoding AptX and AptX-HD codec parameters */
/hardware/interfaces/keymaster/3.0/
DIKeymasterDevice.hal77 * @param keyParams Key generation parameters are defined as keymaster tag/value pairs, provided
94 * @param keyParams Key generation parameters are defined as keymaster tag/value pairs, provided
189 * @param upgradeParams A parameter list containing any parameters needed to complete the
258 * @param inParams Additional parameters for the operation. This is typically used to provide
267 * @return outParams Output parameters. Used to return additional data from the operation
289 * @param inParams Additional parameters for the operation. For AEAD modes, this is used to
293 * @param input Data to be processed, per the parameters established in the call to begin().
303 * @return outParams Output parameters, used to return additional data from the operation The
304 * caller takes ownership of the output parameters array and must free it with
319 * @param inParams Additional parameters for the operation. For AEAD modes, this is used to
[all …]
/hardware/interfaces/wifi/supplicant/1.0/
DISupplicantNetwork.hal23 * parameters of a Wifi service set. Service sets are identified by their
24 * service set identitifier (SSID). The parameters for a network includes the
/hardware/interfaces/power/1.0/
DIPower.hal20 * runtime startup, such as to set default cpufreq parameters.
34 * cpufreq parameters. This function may also call the
54 * may result in adjustment of power/performance parameters of the
/hardware/interfaces/gnss/1.0/
DIAGnssRil.hal113 * @return success True if all parameters were valid and operation was
127 * @return success True is all parameters were valid and operation was
139 * @return success True if all parameters were valid and the operation was

12345