/* * Copyright 2020 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef EVS_MANAGER_1_1_TEST_FUZZER_COMMON_H_ #define EVS_MANAGER_1_1_TEST_FUZZER_COMMON_H_ namespace android { namespace automotive { namespace evs { namespace V1_1 { namespace implementation { #define EVS_FUZZ_BASE_ENUM \ EVS_FUZZ_NOTIFY, /*verify notify*/ \ EVS_FUZZ_GET_HW_CAMERA, /*verify getHalCameras*/ \ EVS_FUZZ_DELIVER_FRAME, /* verify deliverFrame */ \ EVS_FUZZ_DONE_WITH_FRAME_1_0, /* verify doneWithFrame */ \ EVS_FUZZ_DONE_WITH_FRAME_1_1, /* verify doneWithFrame_1_1 */ \ EVS_FUZZ_SET_PRIMARY, /* verify setPrimary */ \ EVS_FUZZ_FORCE_PRIMARY, /* verify forcePrimary */ \ EVS_FUZZ_UNSET_PRIMARY, /* verify unsetPrimary */ \ EVS_FUZZ_SET_PARAMETER, /* verify setIntParameter */ \ EVS_FUZZ_GET_PARAMETER, /* verify getIntParameter */ \ EVS_FUZZ_API_SUM const char* kMockHWEnumeratorName = "hw/fuzzEVSMock"; const uint64_t startMockHWCameraId = 1024; const uint64_t endMockHWCameraId = 1028; const uint64_t startMockHWDisplayId = 256; const uint64_t endMockHWDisplayId = 258; } // namespace implementation } // namespace V1_1 } // namespace evs } // namespace automotive } // namespace android #endif // EVS_MANAGER_1_1_TEST_FUZZER_COMMON_H_