Home | History | Annotate | Download | only in audioeffect

Lines Matching refs:lStatus

256     int lStatus = AUDIOEFFECT_ERROR_NO_MEMORY;
287 lStatus = AUDIOEFFECT_ERROR_BAD_VALUE;
309 lStatus = AUDIOEFFECT_ERROR_BAD_VALUE;
326 lStatus = translateError(lpAudioEffect->initCheck());
327 if (lStatus != AUDIOEFFECT_SUCCESS && lStatus != AUDIOEFFECT_ERROR_ALREADY_EXISTS) {
328 ALOGE("AudioEffect initCheck failed %d", lStatus);
335 lStatus = AUDIOEFFECT_ERROR_BAD_VALUE;
422 return lStatus;
517 jint lStatus = AUDIOEFFECT_ERROR_BAD_VALUE;
555 lStatus = lpAudioEffect->setParameter(p);
556 if (lStatus == NO_ERROR) {
557 lStatus = p->status;
570 return translateError(lStatus);
580 jint lStatus = AUDIOEFFECT_ERROR_BAD_VALUE;
617 lStatus = lpAudioEffect->getParameter(p);
618 if (lStatus == NO_ERROR) {
619 lStatus = p->status;
620 if (lStatus == NO_ERROR) {
637 if (lStatus == NO_ERROR) {
640 return translateError(lStatus);
648 jint lStatus = AUDIOEFFECT_ERROR_BAD_VALUE;
682 lStatus = translateError(lpAudioEffect->command((uint32_t)cmdCode,
697 if (lStatus == NO_ERROR) {
700 return lStatus;