• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2021 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef FUZZ_BASE_H
17 #define FUZZ_BASE_H
18 
19 #include "camera.h"
20 #include "types.h"
21 #include "idevice_manager.h"
22 #include "camera_metadata_info.h"
23 #include "ibuffer.h"
24 #include "securec.h"
25 #include "camera_host.h"
26 #include "camera_host_impl.h"
27 #include "camera_device.h"
28 #include "camera_device_impl.h"
29 #include "stream_operator.h"
30 #include "offline_stream_operator.h"
31 #include "camera_host_proxy.h"
32 #include "camera_host_callback.h"
33 #include "camera_device_callback.h"
34 #include "stream_operator_callback.h"
35 #include "camera_device_service_stub.h"
36 #include "camera_host_service_stub.h"
37 #include "stream_operator_service_stub.h"
38 #include "offline_stream_operator_service_stub.h"
39 #include "camera_device_proxy.h"
40 #include "utils.h"
41 #include <stdlib.h>
42 #include <limits.h>
43 #include <iostream>
44 #include <climits>
45 #include <sys/stat.h>
46 #include <fcntl.h>
47 #include <unistd.h>
48 #include <sys/ioctl.h>
49 #include <sys/wait.h>
50 #include <thread>
51 #include <stdio.h>
52 #include <sys/time.h>
53 #include <vector>
54 #include <map>
55 #include <surface.h>
56 #include <display_type.h>
57 #include <iservice_registry.h>
58 #include <iremote_proxy.h>
59 #include <hdf_log.h>
60 #include <osal_mem.h>
61 
62 #endif // FUZZ_BASE_H