• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2018 syzkaller project authors. All rights reserved.
2 // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
3 
cover_open(cover_t * cov)4 static void cover_open(cover_t* cov)
5 {
6 }
7 
cover_enable(cover_t * cov,bool collect_comps)8 static void cover_enable(cover_t* cov, bool collect_comps)
9 {
10 }
11 
cover_reset(cover_t * cov)12 static void cover_reset(cover_t* cov)
13 {
14 }
15 
cover_collect(cover_t * cov)16 static void cover_collect(cover_t* cov)
17 {
18 }
19 
20 #if SYZ_EXECUTOR_USES_SHMEM
cover_check(uint32 pc)21 static bool cover_check(uint32 pc)
22 {
23 	return true;
24 }
25 
cover_check(uint64 pc)26 static bool cover_check(uint64 pc)
27 {
28 	return true;
29 }
30 #endif
31