microsoft / vscode-cpptools

Official repository for the Microsoft C/C++ extension for VS Code.
Other
5.4k stars 1.51k forks source link

Language Service Features Not Working on Remote #11716

Open charliesabino opened 7 months ago

charliesabino commented 7 months ago

Environment

Bug Summary and Steps to Reproduce

Bug Summary: Language service features (autocomplete, syntax highlighting, etc) are not working/working incredibly slowly on a machine I'm using VS Code Remote to connect to. It was previously working on this project/machine, and I did not change anything, but it suddenly stopped working.

If I let it sit for a while, the language features seem to start working. However, after some time, it will randomly stop working again.

Steps to reproduce:

  1. Connet to host
  2. Open project directory
  3. Open C file
  4. No language service features working, C/C++ extension "Searching include path..." for #include directives

Expected behavior: Language service functioning and providing features quickly

Configuration and Logs

Configurations in c_cpp_properties.json

{
    "configurations": [
        {
            "name": "Linux",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [],
            "compilerPath": "/usr/bin/clang",
            "cStandard": "c17",
            "cppStandard": "c++14",
            "intelliSenseMode": "linux-clang-x64"
        }
    ],
    "version": 4
}

Logs from running C/C++: Log Diagnostics from the VS Code command palette

-------- Diagnostics - 11/19/2023, 3:31:44 PM
Version: 1.18.5
Current Configuration:
{
    "name": "Linux",
    "includePath": [
        "/home/sabinoc/cs230/group_repo/**"
    ],
    "defines": [],
    "compilerPath": "/usr/bin/clang",
    "cStandard": "c17",
    "cppStandard": "c++14",
    "intelliSenseMode": "linux-clang-x64",
    "compilerPathIsExplicit": true,
    "cStandardIsExplicit": true,
    "cppStandardIsExplicit": true,
    "intelliSenseModeIsExplicit": true,
    "compilerPathInCppPropertiesJson": "/usr/bin/clang",
    "mergeConfigurations": false,
    "browse": {
        "path": [],
        "limitSymbolsToIncludedHeaders": true
    }
}
cpptools version (native): 1.18.3.0
Translation Unit Mappings:
[ /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c ]:
    /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
    /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.h *
Translation Unit Configurations:
[ /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c ]:
    Process ID: 3689692
    Memory Usage: 33 MB
    Compiler Path: /usr/bin/clang
    Includes:
        /usr/local/include
        /usr/lib/llvm-10/lib/clang/10.0.0/include
        /usr/include/x86_64-linux-gnu
        /usr/include
        /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src
        /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel
        /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib
    Standard Version: c17
    IntelliSense Mode: linux-clang-x64
    Other Flags:
        --clang
        --clang_version=100000
Total Memory Usage: 33 MB

------- Workspace parsing diagnostics -------
Number of files discovered (not excluded): 25756

------- Potential include path issues --------
Some headers exist in multiple locations. If IntelliSense is behaving incorrectly,
try adding one of the alternate paths to the "includePath" in your configuration in
c_cpp_properties.json to override the automatic path discovery for that header.

Using: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.h
    Alternative: "/home/sabinoc/cs230/group_repo/pintos-p1/pintos-raw/src"

Logs from language server logging:

loggingLevel: Debug
LSP: (received) cpptools/initialize (id: 1)
LSP: (invoked) cpptools/initialize (id: 1)
cpptools version (TypeScript): 1.18.5
cpptools version (native): 1.18.3.0
Autocomplete is enabled.
Error squiggles are enabled if all header dependencies are resolved.
Hover is enabled.
IntelliSense Engine = default.
LSP: (received) cpptools/queryCompilerDefaults (id: 2)
LSP: (invoked) cpptools/queryCompilerDefaults (id: 2)
LSP: (received) cpptools/didChangeCppProperties (id: 3)
LSP: (received) cpptools/queryCompilerDefaults (id: 4)
Querying compiler for default C++ language standard using command line: /usr/bin/clang -x c++ -E -dM /dev/null
Detected language standard version: c++14
Querying compiler's default target using command line: "/usr/bin/clang" -dumpmachine
Compiler returned default target value: x86_64-pc-linux-gnu
Compiler query command line: /usr/bin/clang -std=c17 -m64 -Wp,-v -fno-blocks -E -dM -x c /dev/null
Attempting to get defaults from C compiler in "compilerPath" property: '/usr/bin/clang'
Compiler query command line: /usr/bin/clang -std=c++14 -m64 -Wp,-v -fno-blocks -E -dM -x c++ /dev/null
Attempting to get defaults from C++ compiler in "compilerPath" property: '/usr/bin/clang'
LSP: (invoked) cpptools/didChangeCppProperties (id: 3)
Code browsing service initialized
  Folder: /usr/include/ will be indexed
  Folder: /usr/lib/llvm-10/lib/clang/10.0.0/include/ will be indexed
  Folder: /usr/local/include/ will be indexed
  Folder: /home/sabinoc/cs230/group_repo/ will be indexed
LSP: (invoked) cpptools/queryCompilerDefaults (id: 4)
Discovering files...
LSP: (received) cpptools/didChangeCppProperties (id: 5)
LSP: (invoked) cpptools/didChangeCppProperties (id: 5)
LSP: (received) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 6)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 7)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 8)
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 9)
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 10)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 6)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 8)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 9)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 10)
LSP: (received) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 11)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 12)
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 13)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 14)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 7)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 12)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 14)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 13)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 15)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 16)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 15)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 17)
LSP: (received) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 18)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 19)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 20)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 21)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 17)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 21)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 20)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 18)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 22)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 23)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 24)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 25)
LSP: (received) cpptools/textEditorSelectionChange
LSP: $/cancelRequest (cpptools/getCodeActions, id: 22)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 23)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 26)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 26)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 24)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 25)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 27)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 27)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 28)
LSP: (received) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 29)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 30)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 31)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 32)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 28)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 32)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 31)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 29)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 33)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 34)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 33)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 34)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 35)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 36)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 37)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 35)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 37)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 36)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 38)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 39)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 40)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 38)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 39)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 40)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 41)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 42)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 43)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 44)
  Processing folder (recursive): /usr/include/
LSP: $/cancelRequest (cpptools/getCodeActions, id: 41)
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 6)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 7)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 8)
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 9)
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 10)
LSP: (invoked) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 11)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 12)
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 13)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 8)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 12)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 14)
Checking for syntax errors: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 15)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 16)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 7)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 17)
  tag parsing file: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: $/cancelRequest (textDocument/documentHighlight, id: 44)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 43)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 42)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 45)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 46)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 45)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 46)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 47)
LSP: (received) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 48)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 49)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 50)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 51)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 47)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 51)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 50)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 48)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 52)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 53)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 54)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 55)
LSP: (received) cpptools/textEditorSelectionChange
LSP: $/cancelRequest (cpptools/getCodeActions, id: 52)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 56)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 57)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 53)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 54)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 57)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 56)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 55)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 58)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 59)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 60)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 61)
LSP: (received) cpptools/textEditorSelectionChange
LSP: $/cancelRequest (cpptools/getCodeActions, id: 58)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 59)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 62)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 63)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 63)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 62)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 60)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 61)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 64)
LSP: (received) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 65)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 66)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 67)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 68)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 64)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 69)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 69)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 67)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 68)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 65)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 70)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 71)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 72)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 73)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 70)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 73)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 72)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 71)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 74)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 75)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 76)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 77)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 78)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 74)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 75)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 78)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 76)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 77)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 79)
LSP: (received) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 80)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 81)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 82)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 18)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 19)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 20)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 21)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 22)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 23)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 24)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 23)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 25)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 26)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 27)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 16)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 28)
LSP: (invoked) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
Checking for syntax errors: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 29)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 30)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 31)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 32)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 33)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 34)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 35)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 34)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 36)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 37)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 38)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 27)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 39)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 40)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 41)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 40)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 42)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 43)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 31)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 44)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 45)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 46)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 47)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 46)
LSP: (invoked) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 48)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 49)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 50)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 51)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 52)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 53)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 54)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 53)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 55)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 56)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 43)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 57)
idle loop: reparsing the active document
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 58)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 79)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 83)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 59)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 60)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 59)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 61)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 62)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 50)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 63)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 64)
LSP: (invoked) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
Checking for syntax errors: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 65)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 66)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 67)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 68)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 69)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 70)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 69)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 71)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 72)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 62)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 73)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 74)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 84)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 75)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 76)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 75)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 77)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 78)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 67)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 79)
LSP: (invoked) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 80)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 81)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 82)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 83)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 84)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 82)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 80)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 85)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 85)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 86)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 87)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 86)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 87)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 78)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 88)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 88)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 89)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 89)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 87)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 90)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 90)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 91)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 92)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 93)
Database safe to open.
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 91)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 92)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 72)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 93)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 94)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 94)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 95)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 95)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 92)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 96)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 96)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 97)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 98)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 99)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 97)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 98)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 56)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 99)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 98)
idle loop: reparsing the active document
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 100)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 100)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 101)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 101)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 102)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 98)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 102)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 103)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 103)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 101)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 104)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 104)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 105)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 106)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 105)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 106)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 107)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 107)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 38)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 108)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 108)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 109)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 109)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 107)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 110)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 110)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 111)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 112)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 113)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 111)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 112)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 20)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 113)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 114)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 114)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 115)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 115)
idle loop: reparsing the active document
Checking for syntax errors: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: $/cancelRequest (cpptools/getInlayHints, id: 112)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 116)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 116)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 117)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 117)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 118)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 118)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 107)
idle loop: reparsing the active document
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 119)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 119)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 120)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 120)
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 121)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 121)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 122)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 122)
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 123)
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 123)
  tag parsing file: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 124)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 124)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 125)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 125)
LSP: (received) textDocument/willSaveWaitUntil: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 126)
LSP: (invoked) textDocument/willSaveWaitUntil: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 126)
willSaveWaitUntil: 0ms
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 127)
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 127)
  tag parsing file: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) textDocument/didSave: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) textDocument/didSave: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) cpptools/fileChanged: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) cpptools/fileChanged: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: $/cancelRequest (cpptools/getInlayHints, id: 118)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 128)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 128)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 118)
  tag parsing file: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
idle loop: reparsing the active document
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 129)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 129)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 130)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 130)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 131)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 131)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 132)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 132)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
idle loop: reparsing the active document
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 133)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 133)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 128)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 134)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 134)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 135)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 135)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 136)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 136)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 137)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 137)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 138)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 138)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 139)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 139)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 140)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 140)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 141)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 141)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 142)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 142)
LSP: $/cancelRequest (<unknown/completed>, id: 142)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 143)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 143)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 133)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 144)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 144)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 145)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 145)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 146)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 146)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 147)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 147)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 148)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 148)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 149)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 149)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 150)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 150)
LSP: $/cancelRequest (<unknown/completed>, id: 150)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 151)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 151)
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 152)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 152)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 153)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 153)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 143)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 154)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 154)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 155)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 155)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 153)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 156)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c (id: 156)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 155)
LSP: $/cancelRequest (cpptools/getSemanticTokens, id: 11)
LSP: (received) textDocument/didClose: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: (invoked) textDocument/didClose: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/lib/kernel/bitmap.c
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 11)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 156)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 157)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 157)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 158)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 158)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 159)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 159)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 112)
Database safe to open.
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 160)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 160)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 161)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 161)
idle loop: reparsing the active document
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 162)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 162)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 163)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 163)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 164)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 164)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 165)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 165)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 166)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 166)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 167)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 167)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 168)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 168)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 169)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 169)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 170)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 170)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 171)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 171)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 172)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 172)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 173)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 173)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 159)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 174)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 174)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 159)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 175)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 175)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 174)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 176)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 176)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 177)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 177)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 175)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 178)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 178)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 177)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 179)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 179)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 180)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 180)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 181)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 181)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 178)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 182)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 182)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 181)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 183)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 183)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 182)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 184)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 184)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 183)
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 185)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 185)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 186)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 186)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 184)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 187)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 187)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 186)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 188)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 188)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 189)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 189)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 190)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 190)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 191)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 191)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 187)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 192)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 192)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 193)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 193)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 194)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 194)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 195)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 195)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 196)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 196)
LSP: (received) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 197)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 198)
LSP: (invoked) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 199)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 200)
Checking for syntax errors: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 197)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 198)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 199)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 200)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 201)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 201)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 202)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 202)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 199)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 203)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 203)
LSP: (received) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 204)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 205)
LSP: (invoked) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 204)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 205)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 206)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 206)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 207)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 207)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 208)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 208)
Checking for syntax errors: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 209)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 209)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: $/cancelRequest (cpptools/getInlayHints, id: 206)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 210)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 210)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 206)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 211)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 211)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 210)
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 212)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 212)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (received) textDocument/definition: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 213)
LSP: (invoked) textDocument/definition: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 213)
IntelliSense client not available, using Tag Parser for go to definition.
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 214)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 214)
LSP: (received) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 215)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 216)
LSP: (invoked) textDocument/didOpen: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 217)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 215)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getSemanticTokens: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 216)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 217)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 218)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 218)
Checking for syntax errors: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 219)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 219)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 220)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 220)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 218)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 221)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 221)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 222)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 222)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 223)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 223)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 82)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 224)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 224)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 225)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 225)
idle loop: reparsing the active document
Checking for syntax errors: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: $/cancelRequest (cpptools/getInlayHints, id: 223)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 226)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 226)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 227)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 227)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 87)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 228)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 228)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 229)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 229)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 227)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 230)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 230)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 231)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 231)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 232)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 232)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 92)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 233)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 233)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 234)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 234)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 232)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 235)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 235)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 236)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 236)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 227)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 237)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 237)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 238)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.h (id: 238)
idle loop: reparsing the active document
LSP: $/cancelRequest (cpptools/getInlayHints, id: 236)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 239)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 239)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 240)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 240)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 241)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 241)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 232)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 242)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 242)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 243)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 243)
idle loop: reparsing the active document
Checking for syntax errors: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: $/cancelRequest (cpptools/getInlayHints, id: 241)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 244)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 244)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 245)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 245)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 246)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 246)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 101)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 247)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 247)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 248)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 248)
idle loop: reparsing the active document
LSP: $/cancelRequest (cpptools/getInlayHints, id: 246)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 249)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 249)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 250)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 250)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 251)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 251)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 191)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 252)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 252)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 253)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 253)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 251)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 254)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 254)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 255)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 255)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 256)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 256)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 246)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 257)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 257)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 258)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h (id: 258)
idle loop: reparsing the active document
LSP: $/cancelRequest (cpptools/getInlayHints, id: 256)
LSP: $/cancelRequest (cpptools/getSemanticTokens, id: 30)
LSP: (received) textDocument/didClose: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: (invoked) textDocument/didClose: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.h
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 30)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 256)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 259)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 259)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 260)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 260)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 261)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 261)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 251)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 262)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 262)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 263)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c (id: 263)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 261)
LSP: $/cancelRequest (cpptools/getSemanticTokens, id: 19)
LSP: (received) textDocument/didClose: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: (invoked) textDocument/didClose: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/free-map.c
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 19)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 261)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 264)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 264)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 265)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 265)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 266)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 266)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 241)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 267)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/file.c (id: 267)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 266)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 268)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 268)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 269)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 269)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 270)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 270)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 199)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 271)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 271)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 272)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.h (id: 272)
idle loop: reparsing the active document
LSP: $/cancelRequest (cpptools/getInlayHints, id: 270)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 273)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 273)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 274)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 274)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 211)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 275)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 275)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 276)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/directory.c (id: 276)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 274)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 277)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 277)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 278)
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 278)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 279)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/filesys.c (id: 279)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 218)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 279)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 280)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 280)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 281)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 281)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 223)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 282)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 282)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 283)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 283)
idle loop: reparsing the active document
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 284)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 281)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 284)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 281)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 285)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 285)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 284)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 286)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 286)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 285)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 287)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 287)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 286)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 288)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 288)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 287)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 289)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 289)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 288)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 290)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 290)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 291)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 291)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 292)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 292)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 293)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 293)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 294)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 294)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 295)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 295)
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 296)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 296)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 297)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 297)
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 298)
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 298)
  tag parsing file: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 299)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 299)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 289)
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 300)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 300)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: $/cancelRequest (textDocument/hover, id: 300)
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 301)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 301)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
Database safe to open.
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 302)
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 302)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (received) textDocument/definition: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 303)
LSP: (invoked) textDocument/definition: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 303)
IntelliSense client not available, using Tag Parser for go to definition.
LSP: (received) textDocument/willSaveWaitUntil: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 304)
LSP: (invoked) textDocument/willSaveWaitUntil: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 304)
willSaveWaitUntil: 0ms
LSP: (received) textDocument/didSave: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) textDocument/didSave: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/fileChanged: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/fileChanged: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
idle loop: reparsing the active document
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 305)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 305)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 299)
  Processing folder (recursive): /usr/lib/llvm-10/lib/clang/10.0.0/include/
  Processing folder (recursive): /usr/local/include/
  Processing folder (recursive): /home/sabinoc/cs230/group_repo/
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 306)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 306)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 305)
LSP: (received) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/activeDocumentChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 307)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 307)
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 308)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 308)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 309)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 309)
LSP: (received) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 310)
LSP: $/cancelRequest (textDocument/hover, id: 310)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 311)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 311)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 312)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 312)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 313)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 313)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 314)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 309)
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 315)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 315)
LSP: (received) textDocument/completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 316)
LSP: $/cancelRequest (cpptools/getInlayHints, id: 314)
LSP: $/cancelRequest (textDocument/completion, id: 316)
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 317)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 317)
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 318)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 318)
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 319)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 319)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 320)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 321)
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 322)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 323)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 324)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 320)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 321)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 324)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 325)
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: $/cancelRequest (cpptools/getCodeActions, id: 325)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 326)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 327)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 322)
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 328)
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 329)
LSP: (received) textDocument/willSaveWaitUntil: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 330)
LSP: (invoked) textDocument/willSaveWaitUntil: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 330)
willSaveWaitUntil: 0ms
LSP: (received) textDocument/didSave: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/fileChanged: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) textDocument/hover: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 310)
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 311)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 312)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 313)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 314)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 306)
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 315)
LSP: (invoked) textDocument/completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 316)
auto_complete::handle_completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (92:2)
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 317)
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 318)
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 319)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 320)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 321)
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 322)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 323)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 321)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 314)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 324)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 325)
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 326)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 327)
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 328)
LSP: (invoked) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 329)
LSP: Request canceled by server (cpptools/getInlayHints, code: -32802, id: 323)
LSP: (invoked) textDocument/didSave: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/fileChanged: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
  tag parsing file: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
idle loop: reparsing the active document
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 331)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 331)
LSP: (received) textDocument/completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 332)
LSP: (invoked) textDocument/completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 332)
auto_complete::handle_completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (92:2)
Offering completion
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 333)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 333)
LSP: (received) completionItem/resolve (id: 334)
LSP: (invoked) completionItem/resolve (id: 334)
  tag parsing file: /home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 335)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 335)
LSP: (received) textDocument/completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 336)
LSP: (invoked) textDocument/completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 336)
auto_complete::handle_completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (92:4)
Offering completion
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 337)
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 337)
LSP: (received) textDocument/completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 338)
LSP: (invoked) textDocument/completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 338)
auto_complete::handle_completion: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (92:5)
Offering completion
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 339)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 339)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 340)
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 341)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 328)
LSP: (received) cpptools/textEditorSelectionChange
LSP: (received) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 342)
LSP: $/cancelRequest (cpptools/getCodeActions, id: 339)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 340)
LSP: $/cancelRequest (textDocument/documentHighlight, id: 342)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 343)
LSP: (received) textDocument/didChange: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/textEditorSelectionChange
LSP: $/cancelRequest (cpptools/getCodeActions, id: 343)
LSP: (received) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 344)
LSP: (received) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 345)
LSP: (received) textDocument/willSaveWaitUntil: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 346)
LSP: (invoked) textDocument/willSaveWaitUntil: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 346)
willSaveWaitUntil: 0ms
LSP: (received) textDocument/didSave: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 347)
LSP: $/cancelRequest (cpptools/getDocumentSymbols, id: 341)
LSP: (received) cpptools/fileChanged: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c
LSP: (received) cpptools/getInlayHints: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 348)
LSP: (invoked) cpptools/getFoldingRanges: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 340)
LSP: (invoked) cpptools/getDocumentSymbols: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 341)
LSP: (invoked) cpptools/textEditorSelectionChange
LSP: (invoked) textDocument/documentHighlight: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 342)
LSP: Request canceled by server (<unknown/completed>, code: -32802, id: 340)
LSP: (invoked) cpptools/getCodeActions: file:///home/sabinoc/cs230/group_repo/pintos-p4/pintos-raw/src/filesys/inode.c (id: 343)

Other Extensions

No response

Additional context

No response

heikopanjas commented 6 months ago

@sean-mcmanus Please state the issue of which this issue is a duplicate.