Searched defs:lStatus (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/libs/audioflinger/
H A DAudioHardwareGeneric.cpp80 status_t lStatus = out->set(this, mFd, devices, format, channels, sampleRate); local
82 *status = lStatus;
84 if (lStatus == NO_ERROR) {
120 status_t lStatus = in->set(this, mFd, devices, format, channels, sampleRate, acoustics); local
122 *status = lStatus;
124 if (lStatus == NO_ERROR) {
H A DAudioHardwareStub.cpp49 status_t lStatus = out->set(format, channels, sampleRate); local
51 *status = lStatus;
53 if (lStatus == NO_ERROR)
74 status_t lStatus = in->set(format, channels, sampleRate, acoustics); local
76 *status = lStatus;
78 if (lStatus == NO_ERROR)
H A DAudioFlinger.cpp290 status_t lStatus; local
294 lStatus = BAD_VALUE;
303 lStatus = BAD_VALUE;
316 channelCount, frameCount, sharedBuffer, &lStatus);
318 if (lStatus == NO_ERROR) {
329 *status = lStatus;
1054 status_t lStatus; local
1060 lStatus = BAD_VALUE;
1067 lStatus = BAD_VALUE;
1074 lStatus
3153 status_t lStatus; local
[all...]
/frameworks/base/media/libmedia/
H A DToneGenerator.cpp884 status_t lStatus; local
908 lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3));
909 if (lStatus != NO_ERROR) {
910 LOGE("--- start wait for stop timed out, status %d", lStatus);
927 lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3));
928 if (lStatus != NO_ERROR) {
929 LOGE("--- Immediate start timed out, status %d", lStatus);
940 lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3));
941 if (lStatus == NO_ERROR) {
947 LOGE("--- Delayed start timed out, status %d", lStatus);
979 status_t lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3)); local
[all...]
H A DIAudioFlinger.cpp100 status_t lStatus = remote()->transact(CREATE_TRACK, data, &reply); local
101 if (lStatus != NO_ERROR) {
102 LOGE("createTrack error: %s", strerror(-lStatus));
104 lStatus = reply.readInt32();
108 *status = lStatus;
133 status_t lStatus = remote()->transact(OPEN_RECORD, data, &reply); local
134 if (lStatus != NO_ERROR) {
135 LOGE("openRecord error: %s", strerror(-lStatus));
137 lStatus = reply.readInt32();
141 *status = lStatus;
[all...]

Completed in 103 milliseconds