Lines Matching full:prop
328 int16_t *prop = (int16_t *)value;
329 prop[0] = (int16_t)equalizer_get_preset(eq_ctxt);
330 prop[1] = (int16_t)NUM_EQ_BANDS;
332 prop[2 + i] = (int16_t)equalizer_get_band_level(eq_ctxt, i);
384 int16_t *prop = (int16_t *)value;
385 if ((int)prop[0] >= equalizer_get_num_presets(eq_ctxt)) {
389 if (prop[0] >= 0) {
390 equalizer_set_preset(eq_ctxt, (int)prop[0]);
392 if ((int)prop[1] != NUM_EQ_BANDS) {
397 equalizer_set_band_level(eq_ctxt, i, (int)prop[2 + i]);