Switch kernel header parsing to python libclang
Replace the tokenizer in cpp.py with libclang. Bug: 18937958 Change-Id: I27630904c6d2849418cd5ca3d3c612ec3078686d
This commit is contained in:
@@ -22,18 +22,18 @@
|
||||
#include <linux/ioctl.h>
|
||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
||||
#include <linux/irqnr.h>
|
||||
#define RNDGETENTCNT _IOR( 'R', 0x00, int )
|
||||
#define RNDADDTOENTCNT _IOW( 'R', 0x01, int )
|
||||
#define RNDGETPOOL _IOR( 'R', 0x02, int [2] )
|
||||
#define RNDGETENTCNT _IOR('R', 0x00, int)
|
||||
#define RNDADDTOENTCNT _IOW('R', 0x01, int)
|
||||
#define RNDGETPOOL _IOR('R', 0x02, int[2])
|
||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
||||
#define RNDADDENTROPY _IOW( 'R', 0x03, int [2] )
|
||||
#define RNDZAPENTCNT _IO( 'R', 0x04 )
|
||||
#define RNDCLEARPOOL _IO( 'R', 0x06 )
|
||||
#define RNDADDENTROPY _IOW('R', 0x03, int[2])
|
||||
#define RNDZAPENTCNT _IO('R', 0x04)
|
||||
#define RNDCLEARPOOL _IO('R', 0x06)
|
||||
struct rand_pool_info {
|
||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
||||
int entropy_count;
|
||||
int buf_size;
|
||||
__u32 buf[0];
|
||||
int entropy_count;
|
||||
int buf_size;
|
||||
__u32 buf[0];
|
||||
};
|
||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
||||
#define GRND_NONBLOCK 0x0001
|
||||
|
Reference in New Issue
Block a user