@@ -16,18 +16,19 @@ class File:
1616 """
1717
1818 # fmt: off
19- id : int #: Unique ID of the file in database
20- filename : str #: file path
21- exefilename : str #: file name
22- hash : str #: SHA256 hash of the file
23- functions : int #: total number of functions
24- libfunctions : int #: total number of functions identified as library
25- calls : int #: number of calls
26- basicblocks : int #: number of basic blocks
27- libbasicblocks : int #: number of basic blocks belonging to library functions
28- edges : int #: number of edges in callgraph
29- libedges : int #: number of edges in callgraph addressing a library
30- instructions : int #: number of instructions
19+ id : int #: Unique ID of the file in database
20+ filename : str #: file path
21+ exefilename : str #: file name
22+ hash : str #: SHA256 hash of the file
23+ functions : int #: total number of functions
24+ libfunctions : int #: total number of functions identified as library
25+ calls : int #: number of calls
26+ basicblocks : int #: number of basic blocks
27+ libbasicblocks : int #: number of basic blocks belonging to library functions
28+ edges : int #: number of edges in callgraph
29+ libedges : int #: number of edges in callgraph addressing a library
30+ instructions : int #: number of instructions
31+ libinstructions : int #: number of instructions in library functions
3132 # fmt: on
3233
3334
0 commit comments