Home | History | Annotate | Download | only in libcameraservice

Lines Matching refs:Status

150     ALOGI("%s: Status changed for cameraId=%d, newStatus=%d", __FUNCTION__,
159 ALOGE("%s: State transition to the same status 0x%x not allowed",
204 static_cast<ICameraServiceListener::Status>(newStatus), cameraId);
345 ICameraServiceListener::Status currentStatus = getStatus(cameraId);
419 status_t status = validateConnect(cameraId, /*inout*/clientUid);
420 if (status != OK) {
421 return status;
471 status_t status = connectFinishUnsafe(client, client->getRemote());
472 if (status != OK) {
476 return status;
492 status_t status = client->initialize(mModule);
493 if (status != OK) {
494 return status;
515 status_t status = validateConnect(cameraId, /*inout*/clientUid);
516 if (status != OK) {
517 return status;
555 status_t status = connectFinishUnsafe(client, client->getRemote());
556 if (status != OK) {
557 return status;
586 status_t status = validateConnect(cameraId, /*inout*/clientUid);
587 if (status != OK) {
588 return status;
633 status_t status = connectFinishUnsafe(client, client->getRemote());
634 if (status != OK) {
638 return status;
676 /* Immediately signal current status to this listener only */
1278 void CameraService::updateStatus(ICameraServiceListener::Status status,
1285 ICameraServiceListener::Status oldStatus = mStatusList[cameraId];
1287 mStatusList[cameraId] = status;
1289 if (oldStatus != status) {
1290 ALOGV("%s: Status has changed for camera ID %d from 0x%x to 0x%x",
1291 __FUNCTION__, cameraId, (uint32_t)oldStatus, (uint32_t)status);
1294 (status != ICameraServiceListener::STATUS_PRESENT &&
1295 status != ICameraServiceListener::STATUS_ENUMERATING)) {
1314 ALOGV("%s: Rejecting status transition for Camera ID %d, "
1328 if (status == ICameraServiceListener::STATUS_NOT_AVAILABLE) {
1342 (*it)->onStatusChanged(status, cameraId);
1347 ICameraServiceListener::Status CameraService::getStatus(int cameraId) const {