@@ -16,18 +16,19 @@ class File:
16
16
"""
17
17
18
18
# 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
31
32
# fmt: on
32
33
33
34
0 commit comments