Searched refs:lStatus (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/media/jni/audioeffect/
H A Dandroid_media_AudioEffect.cpp256 int lStatus = AUDIOEFFECT_ERROR_NO_MEMORY; local
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 local
580 jint lStatus = AUDIOEFFECT_ERROR_BAD_VALUE; local
648 jint lStatus = AUDIOEFFECT_ERROR_BAD_VALUE; local
[all...]
H A Dandroid_media_Visualizer.cpp342 int lStatus = VISUALIZER_ERROR_NO_MEMORY; local
364 lStatus = VISUALIZER_ERROR_BAD_VALUE;
378 lStatus = translateError(lpVisualizer->initCheck());
379 if (lStatus != VISUALIZER_SUCCESS && lStatus != VISUALIZER_ERROR_ALREADY_EXISTS) {
380 ALOGE("Visualizer initCheck failed %d", lStatus);
387 lStatus = VISUALIZER_ERROR_BAD_VALUE;
417 return lStatus;
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp457 status_t lStatus; local
464 lStatus = BAD_VALUE;
472 lStatus = BAD_VALUE;
482 lStatus = BAD_VALUE;
515 channelMask, frameCount, sharedBuffer, lSessionId, flags, tid, clientUid, &lStatus);
516 LOG_ALWAYS_FATAL_IF((lStatus == NO_ERROR) && (track == 0));
517 // we don't abort yet if lStatus != NO_ERROR; there is still work to be done regardless
521 if (lStatus == NO_ERROR && effectThread != NULL) {
531 if (lStatus == NO_ERROR) {
542 if (lStatus
1242 status_t lStatus; local
2089 status_t lStatus = NO_ERROR; local
[all...]
H A DThreads.cpp747 status_t lStatus; local
753 lStatus = initCheck();
754 if (lStatus != NO_ERROR) {
770 lStatus = BAD_VALUE;
779 lStatus = BAD_VALUE;
806 lStatus = AudioSystem::registerEffect(desc, mId, chain->strategy(), sessionId, id);
807 if (lStatus != NO_ERROR) {
813 lStatus = effect->status();
814 if (lStatus != NO_ERROR) {
819 lStatus
1194 status_t lStatus; local
4676 status_t lStatus; local
[all...]
H A DEffects.cpp72 int lStatus; local
80 lStatus = init();
81 if (lStatus < 0) {
82 mStatus = lStatus;
/frameworks/av/media/libmedia/
H A DIAudioFlinger.cpp126 status_t lStatus = remote()->transact(CREATE_TRACK, data, &reply); local
127 if (lStatus != NO_ERROR) {
128 ALOGE("createTrack error: %s", strerror(-lStatus));
139 lStatus = reply.readInt32();
143 *status = lStatus;
175 status_t lStatus = remote()->transact(OPEN_RECORD, data, &reply); local
176 if (lStatus != NO_ERROR) {
177 ALOGE("openRecord error: %s", strerror(-lStatus));
187 lStatus = reply.readInt32();
189 if (lStatus
672 status_t lStatus = remote()->transact(CREATE_EFFECT, data, &reply); local
[all...]
H A DToneGenerator.cpp878 status_t lStatus; local
906 lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3));
907 if (lStatus != NO_ERROR) {
908 ALOGE("--- start wait for stop timed out, status %d", lStatus);
928 lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3));
929 if (lStatus != NO_ERROR) {
930 ALOGE("--- Immediate start timed out, status %d", lStatus);
942 lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3));
943 if (lStatus == NO_ERROR) {
949 ALOGE("--- Delayed start timed out, status %d", lStatus);
1006 status_t lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3)); local
[all...]

Completed in 1744 milliseconds