Lines Matching refs:systemCameraKind
327 SystemCameraKind systemCameraKind) { in broadcastTorchModeStatus() argument
334 if (shouldSkipStatusUpdates(systemCameraKind, i->isVendorListener(), i->getListenerPid(), in broadcastTorchModeStatus()
655 SystemCameraKind systemCameraKind = SystemCameraKind::PUBLIC; in onTorchStatusChanged() local
656 status_t res = getSystemCameraKind(cameraId, &systemCameraKind); in onTorchStatusChanged()
663 onTorchStatusChangedLocked(cameraId, newStatus, systemCameraKind); in onTorchStatusChanged()
667 TorchModeStatus newStatus, SystemCameraKind systemCameraKind) { in onTorchStatusChanged() argument
669 onTorchStatusChangedLocked(cameraId, newStatus, systemCameraKind); in onTorchStatusChanged()
689 TorchModeStatus newStatus, SystemCameraKind systemCameraKind) { in onTorchStatusChangedLocked() argument
738 broadcastTorchModeStatus(cameraId, newStatus, systemCameraKind); in onTorchStatusChangedLocked()
750 SystemCameraKind systemCameraKind = SystemCameraKind::PUBLIC; in isAutomotiveExteriorSystemCamera() local
751 if (getSystemCameraKind(cam_id, &systemCameraKind) != OK) { in isAutomotiveExteriorSystemCamera()
757 if (systemCameraKind != SystemCameraKind::SYSTEM_ONLY_CAMERA) { in isAutomotiveExteriorSystemCamera()
2176 bool CameraService::shouldSkipStatusUpdates(SystemCameraKind systemCameraKind, in shouldSkipStatusUpdates() argument
2182 if (!isVendorListener && (systemCameraKind == SystemCameraKind::HIDDEN_SECURE_CAMERA || in shouldSkipStatusUpdates()
2183 (systemCameraKind == SystemCameraKind::SYSTEM_ONLY_CAMERA && in shouldSkipStatusUpdates()
2203 SystemCameraKind systemCameraKind = SystemCameraKind::PUBLIC; in shouldRejectSystemCameraConnection() local
2204 if (getSystemCameraKind(cameraId, &systemCameraKind) != OK) { in shouldRejectSystemCameraConnection()
2215 if (!systemClient && systemCameraKind == SystemCameraKind::HIDDEN_SECURE_CAMERA) { in shouldRejectSystemCameraConnection()
2223 if (!systemClient && systemCameraKind == SystemCameraKind::SYSTEM_ONLY_CAMERA && in shouldRejectSystemCameraConnection()
5025 const std::set<std::string>& conflicting, SystemCameraKind systemCameraKind, in CameraState() argument
5028 mSystemCameraKind(systemCameraKind), mPhysicalCameras(physicalCameras) {} in CameraState()