xref: /aosp_15_r20/system/nfc/src/fuzzers/inc/statslog.h (revision 7eba2f3b06c51ae21384f6a4f14577b668a869b3)
1 #ifndef __STATS_LOG_H__
2 #define __STATS_LOG_H__
3 
4 #include <log/log.h>
5 #include <sys/time.h>
6 
7 // Dummy definitions to get rid of unnecessary dependency
8 
9 namespace android {
10 namespace util {
11 enum {
12   NFC_HCE_TRANSACTION_OCCURRED,
13   NFC_ERROR_OCCURRED,
14 };
15 
16 void stats_write(int32_t, ...);
17 }  // namespace util
18 }  // namespace android
19 
20 #endif
21