github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/pkg/coveragedb/bq-schema.json (about)

     1  [
     2    {
     3      "name": "timestamp",
     4      "type": "TIMESTAMP",
     5      "mode": "REQUIRED",
     6      "description": "the time following data was captured"
     7    },
     8    {
     9      "name": "version",
    10      "type": "INTEGER",
    11      "mode": "REQUIRED",
    12      "description": "the record version to simplify future changes"
    13    },
    14    {
    15      "name": "fuzzing_minutes",
    16      "type": "INTEGER",
    17      "mode": "REQUIRED",
    18      "description": "how many fuzzing hours are represented in the record"
    19    },
    20    {
    21      "name": "arch",
    22      "type": "STRING",
    23      "mode": "REQUIRED"
    24    },
    25    {
    26      "name": "build_id",
    27      "type": "STRING",
    28      "mode": "REQUIRED"
    29    },
    30    {
    31      "name": "manager",
    32      "type": "STRING",
    33      "mode": "REQUIRED"
    34    },
    35    {
    36      "name": "kernel_repo",
    37      "type": "STRING",
    38      "mode": "REQUIRED"
    39    },
    40    {
    41      "name": "kernel_branch",
    42      "type": "STRING",
    43      "mode": "REQUIRED"
    44    },
    45    {
    46      "name": "kernel_commit",
    47      "type": "STRING",
    48      "mode": "REQUIRED"
    49    },
    50    {
    51      "name": "file_path",
    52      "type": "STRING",
    53      "mode": "REQUIRED"
    54    },
    55    {
    56      "name": "func_name",
    57      "type": "STRING",
    58      "mode": "REQUIRED"
    59    },
    60    {
    61      "name": "sl",
    62      "type": "INTEGER",
    63      "mode": "REQUIRED",
    64      "description": "Callback position frame StartLine."
    65    },
    66    {
    67      "name": "sc",
    68      "type": "INTEGER",
    69      "mode": "REQUIRED",
    70      "description": "Callback position frame StarCol."
    71    },
    72    {
    73      "name": "el",
    74      "type": "INTEGER",
    75      "mode": "REQUIRED",
    76      "description": "Callback position frame EndLine."
    77    },
    78    {
    79      "name": "ec",
    80      "type": "INTEGER",
    81      "mode": "REQUIRED",
    82      "description": "Callback position frame EndCol."
    83    },
    84    {
    85      "name": "hit_count",
    86      "type": "INTEGER",
    87      "mode": "REQUIRED",
    88      "description": "Coverage point hit count."
    89    },
    90    {
    91      "name": "inline",
    92      "type": "BOOLEAN",
    93      "mode": "REQUIRED",
    94      "description": "TRUE if the coverage signal was received from inline function"
    95    },
    96    {
    97      "name": "pc",
    98      "type": "NUMERIC",
    99      "mode": "REQUIRED",
   100      "description": "single callback generates many coverage signals if inlined",
   101      "precision": "20",
   102      "scale": "0"
   103    }
   104  ]