OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StatusInternal
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/services/camera/libcameraservice/
CameraService.h
434
enum class
StatusInternal
: int32_t {
466
StatusInternal
getStatus() const;
479
void updateStatus(
StatusInternal
status,
481
std::initializer_list<
StatusInternal
> rejectSourceStates,
512
StatusInternal
mStatus; // protected by mStatusLock
762
void updateStatus(
StatusInternal
status,
764
std::initializer_list<
StatusInternal
>
766
void updateStatus(
StatusInternal
status,
[
all
...]
CameraService.cpp
273
StatusInternal
newStatus = mapToInternal(newHalStatus);
278
if (newStatus ==
StatusInternal
::PRESENT) {
292
StatusInternal
oldStatus = state->getStatus();
299
if (newStatus ==
StatusInternal
::NOT_PRESENT) {
305
updateStatus(
StatusInternal
::NOT_PRESENT, id);
335
if (oldStatus ==
StatusInternal
::NOT_PRESENT) {
685
CameraService::
StatusInternal
CameraService::mapToInternal(CameraDeviceStatus status) {
686
StatusInternal
serviceStatus =
StatusInternal
::NOT_PRESENT;
689
serviceStatus =
StatusInternal
::NOT_PRESENT
[
all
...]
Completed in 77 milliseconds