• Home
  • Raw
  • Download

Lines Matching refs:status

72     status_t status = AudioEffect::setEnabled(enabled);  in setEnabled()  local
74 if (status == NO_ERROR) { in setEnabled()
88 return status; in setEnabled()
144 status_t status = setParameter(p); in setCaptureSize() local
146 ALOGV("setCaptureSize size %d status %d p->status %d", size, status, p->status); in setCaptureSize()
148 if (status == NO_ERROR) { in setCaptureSize()
149 status = p->status; in setCaptureSize()
150 if (status == NO_ERROR) { in setCaptureSize()
155 return status; in setCaptureSize()
173 status_t status = setParameter(p); in setScalingMode() local
175 ALOGV("setScalingMode mode %d status %d p->status %d", mode, status, p->status); in setScalingMode()
177 if (status == NO_ERROR) { in setScalingMode()
178 status = p->status; in setScalingMode()
179 if (status == NO_ERROR) { in setScalingMode()
184 return status; in setScalingMode()
196 status_t status = NO_ERROR; in getWaveForm() local
199 status = command(VISUALIZER_CMD_CAPTURE, 0, NULL, &replySize, waveform); in getWaveForm()
200 ALOGV("getWaveForm() command returned %d", status); in getWaveForm()
201 if ((status == NO_ERROR) && (replySize == 0)) { in getWaveForm()
202 status = NOT_ENOUGH_DATA; in getWaveForm()
208 return status; in getWaveForm()
220 status_t status = NO_ERROR; in getFft() local
223 status = getWaveForm(buf); in getFft()
224 if (status == NO_ERROR) { in getFft()
225 status = doFft(fft, buf); in getFft()
230 return status; in getFft()
270 status_t status = getWaveForm(waveform); in periodicCapture() local
271 if (status != NO_ERROR) { in periodicCapture()
276 status = doFft(fft, waveform); in periodicCapture()
278 if (status != NO_ERROR) { in periodicCapture()
305 status_t status = getParameter(p); in initCaptureSize() local
307 if (status == NO_ERROR) { in initCaptureSize()
308 status = p->status; in initCaptureSize()
312 if (status == NO_ERROR) { in initCaptureSize()
317 ALOGV("initCaptureSize size %d status %d", mCaptureSize, status); in initCaptureSize()