Home | History | Annotate | Download | only in audioflinger

Lines Matching full:fx_param

1148     effect_param_t *fx_param = (effect_param_t *)malloc(totSize);
1157 int *ptr = (int *)fx_param->data;
1162 fx_param->psize = sizeof(int);
1163 fx_param->vsize = sizeof(int);
1164 return fx_param;
1172 fx_param->psize = 0;
1176 size_t size = readParamValue(param, (char *)fx_param, &curSize, &totSize);
1180 fx_param->psize += size;
1187 fx_param->vsize = 0;
1191 size_t size = readParamValue(value, (char *)fx_param, &curSize, &totSize);
1195 fx_param->vsize += size;
1199 return fx_param;
1202 delete fx_param;