├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md └── workflows │ ├── codechecker_master_analysis.yml │ ├── codechecker_pr_analysis.yml │ ├── config_coverage.yml │ ├── config_label_check.py │ ├── docker.yml │ ├── install-deps.sh │ ├── pypi.yml │ ├── snap.yml │ └── test.yml ├── .gitignore ├── .gitmessage ├── .pylintrc ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE.TXT ├── MANIFEST.in ├── Makefile ├── SECURITY.md ├── alembic.ini ├── analyzer ├── Makefile ├── codechecker_analyzer │ ├── __init__.py │ ├── analysis_manager.py │ ├── analyzer.py │ ├── analyzer_context.py │ ├── analyzers │ │ ├── __init__.py │ │ ├── analyzer_base.py │ │ ├── analyzer_types.py │ │ ├── clangsa │ │ │ ├── __init__.py │ │ │ ├── analyzer.py │ │ │ ├── config_handler.py │ │ │ ├── ctu_manager.py │ │ │ ├── ctu_triple_arch.py │ │ │ ├── result_handler.py │ │ │ └── statistics.py │ │ ├── clangtidy │ │ │ ├── __init__.py │ │ │ ├── analyzer.py │ │ │ ├── config_handler.py │ │ │ └── result_handler.py │ │ ├── config_handler.py │ │ ├── cppcheck │ │ │ ├── __init__.py │ │ │ ├── analyzer.py │ │ │ ├── config_handler.py │ │ │ └── result_handler.py │ │ ├── flag.py │ │ ├── gcc │ │ │ ├── __init__.py │ │ │ ├── analyzer.py │ │ │ ├── config_handler.py │ │ │ └── result_handler.py │ │ ├── infer │ │ │ ├── LICENSE.txt │ │ │ ├── __init__.py │ │ │ ├── analyzer.py │ │ │ ├── config_handler.py │ │ │ ├── descriptions.json │ │ │ └── result_handler.py │ │ └── result_handler_base.py │ ├── arg.py │ ├── buildlog │ │ ├── __init__.py │ │ ├── build_action.py │ │ ├── build_manager.py │ │ ├── host_check.py │ │ └── log_parser.py │ ├── checkers.py │ ├── cli │ │ ├── __init__.py │ │ ├── analyze.py │ │ ├── analyzer_version.py │ │ ├── analyzers.py │ │ ├── check.py │ │ ├── checkers.py │ │ ├── fixit.py │ │ ├── log.py │ │ └── parse.py │ ├── compilation_database.py │ ├── env.py │ ├── gcc_toolchain.py │ ├── host_check.py │ ├── makefile.py │ ├── pre_analysis_manager.py │ ├── suppress_file_handler.py │ └── suppress_handler.py ├── config │ └── analyzer_version.json ├── pytest.ini ├── requirements.txt ├── requirements_py │ ├── dev │ │ └── requirements.txt │ └── osx │ │ └── requirements.txt ├── tests │ ├── Makefile │ ├── functional │ │ ├── __init__.py │ │ ├── analyze │ │ │ ├── __init__.py │ │ │ ├── test_analyze.py │ │ │ └── test_files │ │ │ │ ├── checker_config.cpp │ │ │ │ ├── compiler_warning.c │ │ │ │ ├── extra_args.cpp │ │ │ │ ├── failure.c │ │ │ │ ├── includes │ │ │ │ └── simple.h │ │ │ │ ├── saargs │ │ │ │ ├── simple.c │ │ │ │ ├── simple.cpp │ │ │ │ ├── success.c │ │ │ │ └── tidyargs │ │ ├── analyze_and_parse │ │ │ ├── __init__.py │ │ │ ├── test_analyze_and_parse.py │ │ │ └── test_files │ │ │ │ ├── Makefile │ │ │ │ ├── all_checkers_off_except_return_stack_address.c │ │ │ │ ├── all_checkers_off_except_return_stack_address.output │ │ │ │ ├── compiler_error.cpp │ │ │ │ ├── compiler_error.output │ │ │ │ ├── compiler_error_disabled.output │ │ │ │ ├── compiler_warning.cpp │ │ │ │ ├── compiler_warning_default_checker_priority.output │ │ │ │ ├── compiler_warning_simple.output │ │ │ │ ├── compiler_warning_wno_group.output │ │ │ │ ├── compiler_warning_wno_simple1.output │ │ │ │ ├── compiler_warning_wno_simple2.output │ │ │ │ ├── compiler_warning_wunused.output │ │ │ │ ├── context_free_hash_clang_tidy.output │ │ │ │ ├── context_free_hash_clangsa.output │ │ │ │ ├── context_free_hash_v2_clang_tidy.output │ │ │ │ ├── context_free_hash_v2_clangsa.output │ │ │ │ ├── context_hash.cpp │ │ │ │ ├── context_sensitive_hash_clang.output │ │ │ │ ├── context_sensitive_hash_clang_tidy.output │ │ │ │ ├── cppcheck_args.cpp │ │ │ │ ├── cppcheck_args.noforward.output │ │ │ │ ├── cppcheck_args.output │ │ │ │ ├── cppcheck_include.cpp │ │ │ │ ├── cppcheck_include.output │ │ │ │ ├── cppcheck_multiple.cpp │ │ │ │ ├── cppcheck_multiple_error.output │ │ │ │ ├── cppcheck_multiple_warning.output │ │ │ │ ├── cppcheck_undef_include.output │ │ │ │ ├── diagnostic_message_hash_clang_tidy.output │ │ │ │ ├── diagnostic_message_hash_clangsa.output │ │ │ │ ├── filename_collision.output │ │ │ │ ├── filename_collision │ │ │ │ ├── a │ │ │ │ │ └── f.cpp │ │ │ │ ├── b │ │ │ │ │ └── f.cpp │ │ │ │ └── main.cpp │ │ │ │ ├── gcc_simple.cpp │ │ │ │ ├── gcc_simple.output │ │ │ │ ├── gcc_simple_checker_disable.output │ │ │ │ ├── includes │ │ │ │ └── simple.h │ │ │ │ ├── infer_simple.cpp │ │ │ │ ├── infer_simple.output │ │ │ │ ├── macros.output │ │ │ │ ├── mixed_arch_driver.c │ │ │ │ ├── multi_error.cpp │ │ │ │ ├── multi_error.en1.output │ │ │ │ ├── multi_error.en2.output │ │ │ │ ├── multi_error.en3.output │ │ │ │ ├── multi_error.output │ │ │ │ ├── multi_error.steps.output │ │ │ │ ├── multi_error_skipped.output │ │ │ │ ├── multi_error_skipped_in_cmd.HPP │ │ │ │ ├── multi_error_skipped_in_cmd.cpp │ │ │ │ ├── multi_error_skipped_in_cmd.h │ │ │ │ ├── multi_error_skipped_in_cmd.output │ │ │ │ ├── multi_error_suppress.cpp │ │ │ │ ├── multi_error_suppress.output │ │ │ │ ├── multi_error_suppress_cstyle.cpp │ │ │ │ ├── multi_error_suppress_cstyle.output │ │ │ │ ├── multi_error_suppress_typo.cpp │ │ │ │ ├── multi_error_suppress_typo.output │ │ │ │ ├── multiple_input.output │ │ │ │ ├── multiple_input_filter.output │ │ │ │ ├── multiple_input_filter_all.output │ │ │ │ ├── nofail.cpp │ │ │ │ ├── nofail.output │ │ │ │ ├── nofail.steps.output │ │ │ │ ├── notes.output │ │ │ │ ├── saargs_forward.cpp │ │ │ │ ├── saargs_forward.noforward.output │ │ │ │ ├── saargs_forward.output │ │ │ │ ├── saargs_forward.saargs.txt │ │ │ │ ├── simple.c │ │ │ │ ├── simple1.cpp │ │ │ │ ├── simple1.deduplication.output │ │ │ │ ├── simple1.output │ │ │ │ ├── simple1.steps.output │ │ │ │ ├── simple1_review_status1.yaml │ │ │ │ ├── simple1_review_status1_glob.yaml │ │ │ │ ├── simple1_review_status1_hash.yaml │ │ │ │ ├── simple1_review_status_file.output │ │ │ │ ├── simple1_review_status_file_glob.output │ │ │ │ ├── simple1_review_status_file_hash.output │ │ │ │ ├── simple2.cpp │ │ │ │ ├── simple2.output │ │ │ │ ├── simple2.steps.output │ │ │ │ ├── skipall.txt │ │ │ │ ├── skiplist.txt │ │ │ │ ├── source_code_comments.cpp │ │ │ │ ├── source_code_comments.output │ │ │ │ ├── source_code_comments_all.output │ │ │ │ ├── source_code_comments_all_empty_filter.output │ │ │ │ ├── source_code_comments_confirmed.output │ │ │ │ ├── source_code_comments_false_positive.output │ │ │ │ ├── test_dir │ │ │ │ └── simple1.cpp │ │ │ │ ├── tidy_alias.cpp │ │ │ │ ├── tidy_alias.output │ │ │ │ ├── tidy_check.cpp │ │ │ │ └── tidy_check.output │ │ ├── cmdline │ │ │ ├── __init__.py │ │ │ └── test_cmdline.py │ │ ├── config │ │ │ ├── __init__.py │ │ │ └── test_config.py │ │ ├── ctu │ │ │ ├── __init__.py │ │ │ ├── test_ctu.py │ │ │ ├── test_files_c │ │ │ │ ├── buildlog.json │ │ │ │ ├── complex_buildlog.json │ │ │ │ ├── lib.c │ │ │ │ └── main.c │ │ │ └── test_files_cpp │ │ │ │ ├── buildlog.json │ │ │ │ ├── compile_commands.json │ │ │ │ ├── space_in_lookup_name.cpp │ │ │ │ └── space_in_lookup_name_trigger.cpp │ │ ├── ctu_failure │ │ │ ├── __init__.py │ │ │ └── test_ctu_failure.py │ │ ├── fixit │ │ │ ├── __init__.py │ │ │ └── test_fixit.py │ │ ├── host_check │ │ │ ├── __init__.py │ │ │ └── test_host_check.py │ │ ├── skip │ │ │ ├── __init__.py │ │ │ ├── test_files │ │ │ │ ├── multiple │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── a.cpp │ │ │ │ │ ├── b.cpp │ │ │ │ │ └── lib.h │ │ │ │ ├── similar │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── simple.c │ │ │ │ │ └── simple.cpp │ │ │ │ ├── simple │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── file_to_be_skipped.cpp │ │ │ │ │ ├── skip.h │ │ │ │ │ ├── skip_header.cpp │ │ │ │ │ ├── skipfile │ │ │ │ │ └── skipfile_drop │ │ │ │ └── skip_folder │ │ │ │ │ ├── Makefile │ │ │ │ │ └── skipme │ │ │ │ │ └── skipme.cpp │ │ │ └── test_skip.py │ │ ├── suppress │ │ │ ├── __init__.py │ │ │ ├── duplicated_suppress.skip │ │ │ ├── suppress.expected │ │ │ ├── suppress_already_confirmed.skip │ │ │ ├── suppress_by_all.skip │ │ │ ├── suppress_by_all_in_two_lines.skip │ │ │ ├── suppress_export.skip │ │ │ ├── suppress_without_bug.skip │ │ │ └── test_suppress.py │ │ └── z3 │ │ │ ├── __init__.py │ │ │ └── test_z3.py │ ├── libtest │ │ ├── __init__.py │ │ ├── cmd_line.py │ │ ├── codechecker.py │ │ ├── ctu_decorators.py │ │ ├── decorators.py │ │ ├── env.py │ │ └── project.py │ ├── projects │ │ ├── __init__.py │ │ ├── ctu_failure │ │ │ ├── buildlog.json │ │ │ ├── ctu_failure.saargs │ │ │ ├── lib.c │ │ │ └── main.c │ │ ├── ctu_failure_with_headers │ │ │ ├── buildlog.json │ │ │ ├── ctu_failure.saargs │ │ │ ├── lib.c │ │ │ ├── lib.h │ │ │ └── main.c │ │ ├── macros │ │ │ ├── macros.cpp │ │ │ └── macros.plist │ │ ├── notes │ │ │ ├── notes.cpp │ │ │ └── notes.plist │ │ └── suppress │ │ │ ├── Makefile │ │ │ ├── duplicated_suppress.cpp │ │ │ ├── project_info.json │ │ │ ├── suppress_already_confirmed.cpp │ │ │ ├── suppress_duplicated_by_all.cpp │ │ │ ├── suppress_duplicated_in_two_lines.cpp │ │ │ ├── suppress_export.cpp │ │ │ └── suppress_without_bug.cpp │ └── unit │ │ ├── __init__.py │ │ ├── logparser_test_files │ │ ├── include.json │ │ ├── intercept-new-space.json │ │ ├── intercept-new.json │ │ ├── intercept-old-space.json │ │ ├── intercept-old.json │ │ ├── ldlogger response.rsp │ │ ├── ldlogger-new-at.json │ │ ├── ldlogger-new-response.json │ │ ├── ldlogger-new-space.json │ │ ├── ldlogger-new.json │ │ └── ldlogger-old.json │ │ ├── remove_report_test_files │ │ ├── files │ │ │ ├── empty.h │ │ │ ├── x.cpp │ │ │ ├── x.h │ │ │ └── y.h │ │ ├── keep_only_empty.expected.plist │ │ ├── keep_only_empty.txt │ │ ├── skip_all_header.expected.plist │ │ ├── skip_all_header.txt │ │ ├── skip_x_header.expected.plist │ │ ├── skip_x_header.txt │ │ └── x.plist │ │ ├── source_code_comment_test_files │ │ ├── test_file_1 │ │ ├── test_file_2 │ │ └── test_file_3 │ │ ├── test_analyzer_command.py │ │ ├── test_buildcmd_escaping.py │ │ ├── test_checker_handling.py │ │ ├── test_checker_labels.py │ │ ├── test_checker_option_parsing.py │ │ ├── test_checkers.py │ │ ├── test_clangsa_version_parsing.py │ │ ├── test_compilation_database.py │ │ ├── test_cppcheck_version_parsing.py │ │ ├── test_env_var.py │ │ ├── test_flag.py │ │ ├── test_gcc_toolchain.py │ │ ├── test_guidelines.py │ │ ├── test_log_parser.py │ │ ├── test_option_parser.py │ │ ├── test_remove_report_from_plist.py │ │ ├── test_result_handler.py │ │ ├── test_review_status_config.py │ │ ├── test_source_code_comment.py │ │ ├── test_subprocess_timeout.py │ │ └── test_triple_arch.py └── tools │ ├── build-logger │ ├── .pylintrc │ ├── Makefile │ ├── README.md │ ├── pytest.ini │ ├── requirements_py │ │ └── dev │ │ │ └── requirements.txt │ ├── src │ │ ├── ldlogger-hooks.c │ │ ├── ldlogger-hooks.h │ │ ├── ldlogger-logger.c │ │ ├── ldlogger-tool-gcc.c │ │ ├── ldlogger-tool-javac.c │ │ ├── ldlogger-tool.c │ │ ├── ldlogger-tool.h │ │ ├── ldlogger-util.c │ │ └── ldlogger-util.h │ └── tests │ │ ├── Makefile │ │ └── unit │ │ ├── __init__.py │ │ ├── makefile_test_proj │ │ ├── Makefile │ │ └── dir │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── test_escaping.py │ │ └── test_paths.py │ ├── merge_clang_extdef_mappings │ ├── .gitignore │ ├── .pylintrc │ ├── .pypirc │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── Makefile │ ├── README.md │ ├── codechecker_merge_clang_extdef_mappings │ │ ├── __init__.py │ │ ├── cli.py │ │ └── merge_clang_extdef_mappings.py │ ├── pytest.ini │ ├── requirements_py │ │ └── dev │ │ │ └── requirements.txt │ ├── setup.py │ └── tests │ │ ├── Makefile │ │ └── unit │ │ ├── __init__.py │ │ └── merge_clang_extdef_mappings │ │ ├── __init__.py │ │ └── test_merge_clang_extdef_mappings.py │ └── statistics_collector │ ├── .gitignore │ ├── .pylintrc │ ├── .pypirc │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── Makefile │ ├── README.md │ ├── codechecker_statistics_collector │ ├── __init__.py │ ├── cli.py │ ├── collectors │ │ ├── __init__.py │ │ ├── return_value.py │ │ └── special_return_value.py │ └── post_process_stats.py │ ├── pytest.ini │ ├── requirements_py │ └── dev │ │ └── requirements.txt │ ├── setup.py │ └── tests │ ├── Makefile │ └── unit │ ├── __init__.py │ └── statistics_collector │ ├── __init__.py │ └── statistics_collector_test.py ├── bin └── CodeChecker ├── ci └── github_analysis │ ├── codechecker_gate_master.sh │ ├── codechecker_gate_pr.sh │ └── pylint_analyze.sh ├── codechecker_common ├── __init__.py ├── arg.py ├── checker_labels.py ├── cli.py ├── cli_commands │ ├── __init__.py │ └── version.py ├── cmd_config.py ├── compatibility │ ├── __init__.py │ └── multiprocessing.py ├── guidelines.py ├── logger.py ├── output │ └── __init__.py ├── process.py ├── requirements_py │ └── dev │ │ └── requirements.txt ├── review_status_handler.py ├── singleton.py ├── skiplist_handler.py ├── source_code_comment_handler.py ├── tests │ └── Makefile ├── typehints.py └── util.py ├── config ├── config.json ├── config.md ├── config_files │ ├── codechecker.json │ └── codechecker.yml ├── guidelines │ ├── cwe-top-25-2024.yaml │ ├── memory-safety.yaml │ ├── mitre.license │ ├── owasp-top-10-2021.yaml │ ├── sei-cert-c.yaml │ └── sei-cert-cpp.yaml ├── labels │ ├── analyzers │ │ ├── asan.json │ │ ├── clang-tidy.json │ │ ├── clangsa.json │ │ ├── coccinelle.json │ │ ├── cppcheck.json │ │ ├── gcc.json │ │ ├── golint.json │ │ ├── infer.json │ │ ├── kernel-doc.json │ │ ├── lsan.json │ │ ├── mdl.json │ │ ├── msan.json │ │ ├── pyflakes.json │ │ ├── pylint.json │ │ ├── smatch.json │ │ ├── sparse.json │ │ ├── sphinx.json │ │ ├── tsan.json │ │ └── ubsan.json │ └── descriptions.json ├── logger.conf └── package_layout.json ├── docker ├── Dockerfile.test.sqlite.clang11.bionic ├── Dockerfile.test.sqlite.clang11.xenial ├── entrypoint.sh └── thrift │ ├── Dockerfile.thrift.noble │ └── README.md ├── docs ├── README.md ├── analyzer │ ├── checker_and_analyzer_configuration.md │ ├── false_positives.md │ ├── gcc_incompatibilities.md │ ├── report_identification.md │ └── user_guide.md ├── architecture.md ├── config_file.md ├── deps.md ├── docker.md ├── examples │ ├── Makefile │ ├── incl │ │ └── divide.h │ └── src │ │ ├── divide.c │ │ └── main.c ├── feature_comparison.md ├── gitlab_integration.md ├── images │ ├── architecture-drawio.xml │ ├── architecture.png │ ├── bug_path_events.png │ ├── buglist.png │ ├── demo.gif │ ├── docker.jpg │ ├── gerrit_jenkins │ │ ├── build_trigger.png │ │ ├── gerrit_plugin_restapi.png │ │ ├── gerrit_plugin_values.png │ │ ├── gerrit_review_report.png │ │ ├── gerrit_review_reports.png │ │ ├── http_request_changed_files.png │ │ ├── http_request_post_review.png │ │ └── source_code_management.png │ ├── github-actions.png │ ├── kubernetes.png │ ├── macro_expansion.png │ ├── note.png │ ├── report_annotation.png │ ├── static_html.png │ ├── usage_flow.png │ ├── usage_flow.svg │ ├── viewer.png │ ├── vscode.gif │ └── vscode.png ├── install_macosx.md ├── jenkins_gerrit_integration.md ├── logging.md ├── logo │ ├── logo.svg │ ├── logo_blue.png │ └── logo_white.png ├── package_layout.md ├── release.md ├── script_daily.md ├── script_update.md ├── supported_code_analyzers.md ├── tests.md ├── tools │ ├── bazel.md │ ├── plist.md │ ├── report-converter.md │ └── tu_collector.md ├── usage.md └── web │ ├── api │ └── README.md │ ├── authentication.md │ ├── background_tasks.md │ ├── db_schema_guide.md │ ├── diff.md │ ├── docker.md │ ├── images │ ├── newproduct.png │ ├── permissions.png │ ├── productconfigicons.png │ └── products.png │ ├── permissions.md │ ├── postgresql_setup.md │ ├── products.md │ ├── server_config.md │ └── user_guide.md ├── mkdocs.yml ├── readthedocs.yml ├── requirements_py └── docs │ └── requirements.txt ├── scripts ├── build │ ├── __init__.py │ ├── extend_version_file.py │ └── wrap_binary_in_venv.py ├── create_new_subcommand.py ├── debug_tools │ ├── README.md │ ├── __init__.py │ ├── crash_clustering │ │ ├── README.md │ │ ├── __init__.py │ │ ├── cluster_crashes.py │ │ └── requirements.txt │ ├── failure_lib.py │ ├── prepare_all_cmd_for_ctu.py │ ├── prepare_analyzer_cmd.py │ ├── prepare_compile_cmd.py │ ├── prepare_compiler_info.py │ └── renew_info_files.py ├── gerrit_changed_files_to_skipfile.py ├── labels │ ├── __init__.py │ ├── __main__.py │ ├── checker_labels.py │ ├── codechecker.py │ ├── doc_url │ │ ├── __init__.py │ │ ├── generate_tool │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── tool.py │ │ ├── generators │ │ │ ├── __init__.py │ │ │ ├── analyser_selection.py │ │ │ ├── base.py │ │ │ ├── clang_diagnostic.py │ │ │ ├── clang_tidy.py │ │ │ ├── clangsa.py │ │ │ └── markdownlint.py │ │ ├── output.py │ │ ├── verifiers │ │ │ ├── __init__.py │ │ │ ├── analyser_selection.py │ │ │ ├── clang_diagnostic.py │ │ │ ├── clang_tidy.py │ │ │ ├── clangsa.py │ │ │ ├── generic.py │ │ │ └── status.py │ │ └── verify_tool │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── action.py │ │ │ ├── report.py │ │ │ └── tool.py │ ├── exception.py │ ├── http_.py │ ├── output.py │ ├── projects │ │ ├── __init__.py │ │ ├── llvm │ │ │ ├── __init__.py │ │ │ ├── clang_diagnostic.py │ │ │ └── releases.py │ │ └── markdownlint.py │ ├── requirements.txt │ ├── severity │ │ ├── __init__.py │ │ ├── generate_tool │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── tool.py │ │ ├── generators │ │ │ ├── __init__.py │ │ │ ├── analyser_selection.py │ │ │ ├── base.py │ │ │ ├── clang_diagnostic.py │ │ │ ├── cppcheck.py │ │ │ ├── markdownlint.py │ │ │ └── pylint.py │ │ └── output.py │ ├── transformer.py │ └── util.py ├── resources │ ├── __init__.py │ ├── command_template.py │ └── entrypoint_template.py ├── result_listing │ ├── __init__.py │ ├── compare_results.py │ └── query_all_reports.py ├── send_log_config.py ├── test │ ├── __init__.py │ ├── add_new_func_test.py │ ├── add_new_unit_test.py │ ├── check_clang.py │ ├── func_template │ │ ├── __init__.py │ │ ├── template__init__.py │ │ └── template_test.py │ └── run_server_performance_test.py └── thrift │ ├── README.md │ ├── __init__.py │ └── client.py ├── setup.py ├── snap └── snapcraft.yaml ├── tests └── functional │ └── binary_package │ ├── __init__.py │ └── test_binary_package.py ├── tools ├── bazel │ ├── .gitignore │ ├── .pypirc │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── Makefile │ ├── bazel_compile_commands │ │ ├── __init__.py │ │ └── bazel_compile_commands.py │ ├── pytest.ini │ ├── requirements_py │ │ └── dev │ │ │ └── requirements.txt │ ├── setup.py │ └── tests │ │ ├── Makefile │ │ ├── projects │ │ ├── BUILD │ │ ├── WORKSPACE │ │ ├── inc │ │ │ └── inc.h │ │ └── main.cc │ │ └── unit │ │ ├── __init__.py │ │ └── test_compile_commands.py ├── report-converter │ ├── .gitignore │ ├── .pylintrc │ ├── .pypirc │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── Makefile │ ├── README.md │ ├── codechecker_report_converter │ │ ├── __init__.py │ │ ├── analyzers │ │ │ ├── __init__.py │ │ │ ├── analyzer_result.py │ │ │ ├── clang_tidy │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── clang_tidy_yaml │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── coccinelle │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── cppcheck │ │ │ │ ├── __init__.py │ │ │ │ └── analyzer_result.py │ │ │ ├── cpplint │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── eslint │ │ │ │ ├── __init__.py │ │ │ │ └── analyzer_result.py │ │ │ ├── gcc │ │ │ │ ├── __init__.py │ │ │ │ └── analyzer_result.py │ │ │ ├── golint │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── infer │ │ │ │ ├── __init__.py │ │ │ │ └── analyzer_result.py │ │ │ ├── jscpd │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── kerneldoc │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── markdownlint │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── parser.py │ │ │ ├── pvs_studio │ │ │ │ ├── __init__.py │ │ │ │ └── analyzer_result.py │ │ │ ├── pyflakes │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── pylint │ │ │ │ ├── __init__.py │ │ │ │ └── analyzer_result.py │ │ │ ├── roslynator │ │ │ │ ├── __init__.py │ │ │ │ └── analyzer_result.py │ │ │ ├── sanitizers │ │ │ │ ├── __init__.py │ │ │ │ ├── address │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── analyzer_result.py │ │ │ │ │ └── parser.py │ │ │ │ ├── leak │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── analyzer_result.py │ │ │ │ │ └── parser.py │ │ │ │ ├── memory │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── analyzer_result.py │ │ │ │ │ └── parser.py │ │ │ │ ├── parser.py │ │ │ │ ├── thread │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── analyzer_result.py │ │ │ │ │ └── parser.py │ │ │ │ └── ub │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── analyzer_result.py │ │ │ │ │ └── parser.py │ │ │ ├── smatch │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── sparse │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── sphinx │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer_result.py │ │ │ │ └── parser.py │ │ │ ├── spotbugs │ │ │ │ ├── __init__.py │ │ │ │ └── analyzer_result.py │ │ │ └── tslint │ │ │ │ ├── __init__.py │ │ │ │ └── analyzer_result.py │ │ ├── cli.py │ │ ├── report │ │ │ ├── __init__.py │ │ │ ├── checker_labels.py │ │ │ ├── hash.py │ │ │ ├── output │ │ │ │ ├── __init__.py │ │ │ │ ├── baseline.py │ │ │ │ ├── codeclimate.py │ │ │ │ ├── gerrit.py │ │ │ │ ├── html │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cli.py │ │ │ │ │ ├── html.py │ │ │ │ │ └── static │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── buglist.css │ │ │ │ │ │ ├── bugview.css │ │ │ │ │ │ ├── icon.css │ │ │ │ │ │ ├── statistics.css │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ └── table.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── browsersupport.js │ │ │ │ │ │ ├── buglist.js │ │ │ │ │ │ └── bugviewer.js │ │ │ │ │ │ ├── layout.html │ │ │ │ │ │ └── statistics.html │ │ │ │ ├── json.py │ │ │ │ ├── plaintext.py │ │ │ │ └── sarif.py │ │ │ ├── parser │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── plist.py │ │ │ │ └── sarif.py │ │ │ ├── report_file.py │ │ │ ├── reports.py │ │ │ └── statistics.py │ │ ├── twodim.py │ │ └── util.py │ ├── pytest.ini │ ├── requirements_py │ │ └── dev │ │ │ └── requirements.txt │ ├── setup.py │ └── tests │ │ ├── Makefile │ │ ├── functional │ │ ├── __init__.py │ │ └── cmdline │ │ │ ├── __init__.py │ │ │ ├── test_cmdline.py │ │ │ └── test_files │ │ │ ├── Makefile │ │ │ ├── files │ │ │ ├── b │ │ │ │ └── simple.go │ │ │ └── simple.go │ │ │ ├── simple.out │ │ │ └── test_outputs │ │ │ ├── simple1.out │ │ │ └── subdir │ │ │ ├── simple2.out │ │ │ └── simple3.out │ │ ├── libtest │ │ ├── __init__.py │ │ └── env.py │ │ ├── projects │ │ ├── cpp │ │ │ ├── multi_error.cpp │ │ │ └── multi_error.plist │ │ ├── inclusion │ │ │ ├── Makefile │ │ │ ├── a.cpp │ │ │ ├── a.cpp_clang-tidy.plist │ │ │ ├── b.cpp │ │ │ ├── b.cpp_clang-tidy.plist │ │ │ └── f.h │ │ ├── macros │ │ │ ├── macros.cpp │ │ │ └── macros.plist │ │ ├── notes │ │ │ ├── notes.cpp │ │ │ └── notes.plist │ │ └── simple │ │ │ ├── simple.cpp │ │ │ └── simple.plist │ │ └── unit │ │ ├── __init__.py │ │ ├── analyzers │ │ ├── __init__.py │ │ ├── asan_output_test_files │ │ │ ├── asan.out │ │ │ ├── asan.plist │ │ │ └── files │ │ │ │ └── asan.cpp │ │ ├── coccinelle_output_test_files │ │ │ ├── files │ │ │ │ └── sample.c │ │ │ ├── sample.expected.plist │ │ │ └── sample.out │ │ ├── cppcheck_output_test_files │ │ │ ├── divide_zero.expected.plist │ │ │ ├── files │ │ │ │ └── divide_zero.cpp │ │ │ └── out │ │ │ │ └── divide_zero.plist │ │ ├── cpplint_output_test_files │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── sample.cpp │ │ │ ├── sample.expected.plist │ │ │ └── sample.out │ │ ├── eslint_output_test_files │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── .eslintrc │ │ │ │ └── index.js │ │ │ ├── reports.expected.plist │ │ │ └── reports.json │ │ ├── gcc_output_test_files │ │ │ ├── double_free.cpp.sarif │ │ │ ├── double_free.expected.plist │ │ │ └── files │ │ │ │ └── double_free.cpp │ │ ├── golint_output_test_files │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── simple.go │ │ │ ├── simple.expected.plist │ │ │ └── simple.out │ │ ├── infer_output_test_files │ │ │ ├── NullDereference.java.plist │ │ │ ├── dead_store.cpp.plist │ │ │ ├── files │ │ │ │ ├── NullDereference.java │ │ │ │ └── dead_store.cpp │ │ │ ├── infer-out-dead_store │ │ │ │ └── report.json │ │ │ └── infer-out-null_dereference │ │ │ │ └── report.json │ │ ├── jscpd_output_test_files │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── duplicate1.c │ │ │ │ └── duplicate2.c │ │ │ ├── jscpd-report.json │ │ │ └── test_jscpd.plist │ │ ├── kerneldoc_output_test_files │ │ │ ├── files │ │ │ │ └── sample.c │ │ │ ├── sample.expected.plist │ │ │ └── sample.out │ │ ├── lsan_output_test_files │ │ │ ├── files │ │ │ │ └── lsan.c │ │ │ ├── lsan.out │ │ │ └── lsan.plist │ │ ├── mdl_output_test_files │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── readme.md │ │ │ ├── readme.expected.plist │ │ │ └── readme.out │ │ ├── msan_output_test_files │ │ │ ├── files │ │ │ │ └── msan.cpp │ │ │ ├── msan.out │ │ │ └── msan.plist │ │ ├── pvs_studio_output_test_files │ │ │ ├── files │ │ │ │ └── sample.cpp │ │ │ ├── sample.json │ │ │ └── sample.plist │ │ ├── pyflakes_output_test_files │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── simple.py │ │ │ ├── simple.expected.plist │ │ │ └── simple.out │ │ ├── pylint_output_test_files │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── simple.py │ │ │ ├── simple.expected.plist │ │ │ └── simple.json │ │ ├── roslynator_output_test_files │ │ │ ├── Makefile │ │ │ ├── Sample.cs.expected.plist │ │ │ ├── files │ │ │ │ ├── .gitignore │ │ │ │ ├── Sample.cs │ │ │ │ └── files.csproj │ │ │ └── out.xml │ │ ├── smatch_output_test_files │ │ │ ├── files │ │ │ │ └── sample.c │ │ │ ├── sample.expected.plist │ │ │ └── sample.out │ │ ├── sparse_output_test_files │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── sample.c │ │ │ │ └── sample.h │ │ │ ├── sample.c.expected.plist │ │ │ ├── sample.h.expected.plist │ │ │ └── sample.out │ │ ├── sphinx_output_test_files │ │ │ ├── files │ │ │ │ └── sample.rst │ │ │ ├── sample.expected.plist │ │ │ └── sample.out │ │ ├── spotbugs_output_test_files │ │ │ ├── Makefile │ │ │ ├── assign.plist │ │ │ ├── assign.xml │ │ │ └── files │ │ │ │ └── Assign.java │ │ ├── test_asan_parser.py │ │ ├── test_clang_tidy_parser.py │ │ ├── test_clang_tidy_yaml_parser.py │ │ ├── test_coccinelle_parser.py │ │ ├── test_cppcheck_parser.py │ │ ├── test_cpplint_parser.py │ │ ├── test_eslint_parser.py │ │ ├── test_gcc_parser.py │ │ ├── test_golint_parser.py │ │ ├── test_infer_parser.py │ │ ├── test_jscpd_parser.py │ │ ├── test_kerneldoc_parser.py │ │ ├── test_lsan_parser.py │ │ ├── test_mdl_parser.py │ │ ├── test_msan_parser.py │ │ ├── test_pvs_studio_parser.py │ │ ├── test_pyflakes_parser.py │ │ ├── test_pylint_parser.py │ │ ├── test_roslynator_parser.py │ │ ├── test_smatch_parser.py │ │ ├── test_sparse_parser.py │ │ ├── test_sphinx_parser.py │ │ ├── test_spotbugs_parser.py │ │ ├── test_tsan_parser.py │ │ ├── test_tslint_parser.py │ │ ├── test_ubsan_parser.py │ │ ├── tidy_output_test_files │ │ │ ├── abs.out │ │ │ ├── empty.plist │ │ │ ├── empty1.out │ │ │ ├── empty2.out │ │ │ ├── files │ │ │ │ ├── Makefile │ │ │ │ ├── test.cpp │ │ │ │ ├── test2.cpp │ │ │ │ ├── test3.cpp │ │ │ │ ├── test3.hh │ │ │ │ ├── test4.cpp │ │ │ │ └── test7.cpp │ │ │ ├── tidy1.out │ │ │ ├── tidy1.plist │ │ │ ├── tidy1_v6.out │ │ │ ├── tidy2.out │ │ │ ├── tidy2.plist │ │ │ ├── tidy2_v6.out │ │ │ ├── tidy3-clang17.out │ │ │ ├── tidy3.out │ │ │ ├── tidy3_cpp.plist │ │ │ ├── tidy3_hh.plist │ │ │ ├── tidy4.out │ │ │ ├── tidy5.out │ │ │ ├── tidy5_v6.out │ │ │ ├── tidy6.out │ │ │ ├── tidy7.out │ │ │ └── tidy7.plist │ │ ├── tidy_yaml_output_test_files │ │ │ ├── empty.plist │ │ │ ├── empty1.out │ │ │ ├── empty2.out │ │ │ ├── files │ │ │ │ ├── Makefile │ │ │ │ ├── test.cpp │ │ │ │ ├── test2.cpp │ │ │ │ ├── test3.cpp │ │ │ │ ├── test3.hh │ │ │ │ └── test7.cpp │ │ │ ├── tidy1.out │ │ │ ├── tidy1.plist │ │ │ ├── tidy2.out │ │ │ ├── tidy2.plist │ │ │ ├── tidy3.out │ │ │ ├── tidy3_cpp.plist │ │ │ ├── tidy3_hh.plist │ │ │ ├── tidy7.out │ │ │ └── tidy7.plist │ │ ├── tsan_output_test_files │ │ │ ├── files │ │ │ │ └── tsan.cpp │ │ │ ├── tsan.out │ │ │ └── tsan.plist │ │ ├── tslint_output_test_files │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── index.ts │ │ │ │ └── tslint.json │ │ │ ├── reports.expected.plist │ │ │ └── reports.json │ │ └── ubsan_output_test_files │ │ │ ├── Makefile │ │ │ ├── abs.out │ │ │ ├── empty.plist │ │ │ ├── empty1.out │ │ │ ├── empty2.out │ │ │ ├── ubsan1.cpp │ │ │ ├── ubsan1.out │ │ │ ├── ubsan1.plist │ │ │ ├── ubsan1_nonmatching_msg.out │ │ │ ├── ubsan1_nonmatching_msg.plist │ │ │ ├── ubsan2.cpp │ │ │ ├── ubsan2.out │ │ │ └── ubsan2.plist │ │ ├── output │ │ ├── __init__.py │ │ ├── gerrit │ │ │ ├── __init__.py │ │ │ ├── test_files │ │ │ │ ├── lib.cpp │ │ │ │ └── main.cpp │ │ │ └── test_gerrit_converter.py │ │ └── html │ │ │ ├── __init__.py │ │ │ └── plist_to_html_test.py │ │ ├── parser │ │ ├── __init__.py │ │ ├── plist │ │ │ ├── __init__.py │ │ │ ├── plist_test_files │ │ │ │ ├── clang-3.7-noerror.plist │ │ │ │ ├── clang-3.7.plist │ │ │ │ ├── clang-3.8-trunk.plist │ │ │ │ ├── clang-4.0.plist │ │ │ │ ├── clang-5.0-trunk.plist │ │ │ │ ├── empty_file.plist │ │ │ │ └── gen_plist │ │ │ │ │ ├── gen_noerror_plist │ │ │ │ │ ├── gen_plist │ │ │ │ │ ├── gen_plist.md │ │ │ │ │ ├── noerror.cpp │ │ │ │ │ ├── test.cpp │ │ │ │ │ └── test.h │ │ │ └── test_plist_parser.py │ │ └── sarif │ │ │ ├── __init__.py │ │ │ ├── sarif_test_files │ │ │ ├── 1-Introduction │ │ │ │ ├── simple-example.js │ │ │ │ └── simple-example.sarif │ │ │ ├── 2-Basics │ │ │ │ └── empty-log.sarif.json │ │ │ ├── 3-Beyond-basics │ │ │ │ ├── automation-details.sarif │ │ │ │ ├── bad-eval-related-locations.sarif │ │ │ │ ├── bad-eval-with-code-flow.py │ │ │ │ ├── bad-eval-with-code-flow.sarif │ │ │ │ ├── bad-eval.py │ │ │ │ ├── bad-eval.sarif │ │ │ │ ├── link-to-location.sarif │ │ │ │ ├── message-from-metadata.sarif │ │ │ │ ├── message-with-arguments.sarif │ │ │ │ └── standard-taxonomy.sarif │ │ │ ├── Baseline.sarif │ │ │ ├── CodeFlows.sarif │ │ │ ├── ContextRegion.sarif │ │ │ ├── DefaultRuleConfiguration.sarif │ │ │ ├── EmbeddedBinaryContent.sarif │ │ │ ├── EmbeddedTextContent.sarif │ │ │ ├── ExceptionalConditions │ │ │ │ ├── Catastrophic configuration error.sarif │ │ │ │ ├── Catastrophic execution error.sarif │ │ │ │ ├── Empty runs.sarif │ │ │ │ ├── No runs.sarif │ │ │ │ ├── One run empty results.sarif │ │ │ │ ├── One run no results.sarif │ │ │ │ ├── One run with results.sarif │ │ │ │ └── README.md │ │ │ ├── LICENSE-CODE │ │ │ ├── Notifications.sarif │ │ │ ├── OriginalUriBaseIds.sarif │ │ │ ├── RegionVariants.sarif │ │ │ ├── ResultStacks.sarif │ │ │ ├── RuleMetadata.sarif │ │ │ ├── Suppressions.sarif │ │ │ ├── Taxonomies.sarif │ │ │ ├── TextFile.txt │ │ │ ├── _template.sarif │ │ │ ├── code │ │ │ │ └── example.cs │ │ │ ├── collections │ │ │ │ ├── example.cs │ │ │ │ └── list.h │ │ │ ├── default.txt │ │ │ ├── explicit.txt │ │ │ └── test.json │ │ │ └── test_sarif_parser.py │ │ ├── report_hash │ │ ├── __init__.py │ │ ├── codechecker_report_hash_test.py │ │ └── remove_whitespace_test.py │ │ └── util │ │ ├── __init__.py │ │ ├── newline │ │ ├── test_fileread.py │ │ └── test_trim_path_prefix.py └── tu_collector │ ├── .gitignore │ ├── .pylintrc │ ├── .pypirc │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── Makefile │ ├── pytest.ini │ ├── requirements_py │ └── dev │ │ └── requirements.txt │ ├── setup.py │ ├── tests │ ├── Makefile │ ├── projects │ │ ├── compile_command.json │ │ ├── ctu.cpp │ │ ├── hello.c │ │ ├── main.c │ │ ├── main.cpp │ │ ├── zero.cpp │ │ └── zero.h │ └── unit │ │ ├── __init__.py │ │ └── tu_collector_test.py │ └── tu_collector │ ├── __init__.py │ └── tu_collector.py └── web ├── Makefile ├── api ├── Makefile ├── README.md ├── authentication.thrift ├── change-api-version.sh ├── codechecker_api_shared.thrift ├── configuration.thrift ├── js │ └── codechecker-api-node │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ └── codechecker-api-6.67.0.tgz │ │ └── package.json ├── products.thrift ├── py │ ├── codechecker_api │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ └── codechecker_api.tar.gz │ │ └── setup.py │ └── codechecker_api_shared │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ └── codechecker_api_shared.tar.gz │ │ └── setup.py ├── report_server.thrift ├── server_info.thrift └── tasks.thrift ├── client ├── codechecker_client │ ├── __init__.py │ ├── blame_info.py │ ├── cli │ │ ├── __init__.py │ │ ├── cmd.py │ │ └── store.py │ ├── client.py │ ├── cmd_line.py │ ├── cmd_line_client.py │ ├── credential_manager.py │ ├── helpers │ │ ├── __init__.py │ │ ├── authentication.py │ │ ├── base.py │ │ ├── configuration.py │ │ ├── product.py │ │ ├── results.py │ │ └── tasks.py │ ├── metadata.py │ ├── permission_client.py │ ├── product.py │ ├── product_client.py │ ├── report_type_converter.py │ ├── source_component_client.py │ ├── suppress_file_handler.py │ ├── task_client.py │ ├── thrift_call.py │ └── token_client.py └── tests │ ├── Makefile │ └── unit │ ├── __init__.py │ └── test_report_converter.py ├── codechecker_web ├── __init__.py ├── cli │ ├── __init__.py │ └── web_version.py ├── server │ ├── __init__.py │ └── oauth_templates.py └── shared │ ├── __init__.py │ ├── convert.py │ ├── database_status.py │ ├── env.py │ ├── host_check.py │ ├── pgpass.py │ ├── version.py │ └── webserver_context.py ├── config ├── git_commit_urls.json ├── session_client.json ├── system_comment_kinds.json └── web_version.json ├── docker ├── Dockerfile ├── entrypoint.sh ├── hooks │ ├── after_build.sh │ └── before_build.sh └── services │ ├── config │ └── nginx │ │ └── nginx.conf │ ├── docker-compose.psql.auth.yml │ ├── docker-compose.psql.yml │ ├── docker-compose.sqlite.yml │ ├── docker-compose.swarm.yml │ └── secrets │ ├── pgpass │ └── postgres-passwd ├── pytest.ini ├── requirements.txt ├── requirements_py ├── auth │ └── requirements.txt ├── db_pg8000 │ └── requirements.txt ├── db_psycopg2 │ └── requirements.txt ├── dev │ └── requirements.txt └── osx │ └── requirements.txt ├── server ├── codechecker_server │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── authentication.py │ │ ├── common.py │ │ ├── config_handler.py │ │ ├── mass_store_run.py │ │ ├── product_server.py │ │ ├── report_annotations.py │ │ ├── report_server.py │ │ ├── server_info_handler.py │ │ ├── tasks.py │ │ └── thrift_enum_helper.py │ ├── auth │ │ ├── __init__.py │ │ ├── cc_ldap.py │ │ └── cc_pam.py │ ├── cli │ │ ├── __init__.py │ │ └── server.py │ ├── database │ │ ├── __init__.py │ │ ├── config_db_model.py │ │ ├── database.py │ │ ├── db_cleanup.py │ │ └── run_db_model.py │ ├── instance_manager.py │ ├── metadata.py │ ├── migrations │ │ ├── __init__.py │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── env.py │ │ │ ├── script.py.mako │ │ │ └── versions │ │ │ │ ├── 00099e8bc212_store_limit.py │ │ │ │ ├── 04cd4df82fb5_adds_oauth_sessions_and_oauth_tokens_.py │ │ │ │ ├── 126fa3f55e4b_added_permission_for_product_view.py │ │ │ │ ├── 150800b30447_share_sessions_through_the_database.py │ │ │ │ ├── 302693c76eb8_remove_db_version_table.py │ │ │ │ ├── 3335ff7593cc_disable_review_status_change.py │ │ │ │ ├── 4964142b58d2_authentication_session_tokens.py │ │ │ │ ├── 4db450cf38af_add_extra_product_detail_columns.py │ │ │ │ ├── 5e1501dfd333_implemented_keeping_track_of_background_.py │ │ │ │ ├── 6b9f832d0b20_add_user_name_and_group_to_session.py │ │ │ │ ├── 7829789fc19c_global_permission_to_get_access_controls.py │ │ │ │ ├── 7ed50f8b3fb8_new_table_for_personal_access_tokens.py │ │ │ │ ├── 8268fc7ca7f4_initial_schema.py │ │ │ │ ├── __init__.py │ │ │ │ ├── bb5278995f41_run_limitation_for_products.py │ │ │ │ ├── cf025b6d7998_add_confidentiality.py │ │ │ │ ├── dec6feb991e6_new_table_for_server_config.py │ │ │ │ └── f59dfe4623fa_clear_legacy_web_sessions.py │ │ ├── logging.py │ │ └── report │ │ │ ├── __init__.py │ │ │ ├── env.py │ │ │ ├── script.py.mako │ │ │ └── versions │ │ │ ├── 080349e895d7_add_check_command_to_run_history.py │ │ │ ├── 101a9cb747de_add_bug_event_and_point_report_index.py │ │ │ ├── 2185167f8568_content_hash_index_for_files.py │ │ │ ├── 3793e361a752_source_components.py │ │ │ ├── 39f9e96071c0_analyzer_statistics.py │ │ │ ├── 3e91d0612422_off_and_unavailable_detection_statuses.py │ │ │ ├── 4b38fa14c27b_file_id_index_for_reports.py │ │ │ ├── 5f8a443a51e5_add_description_for_run_history.py │ │ │ ├── 6cb6a3a41967_system_comments.py │ │ │ ├── 75ae226b5d88_review_status_for_each_report.py │ │ │ ├── 82ca43f05c10_initial_schema.py │ │ │ ├── 9987aa593ca7_add_codechecker_version_to_run_history.py │ │ │ ├── 9d956a0fae8d_report_annotations.py │ │ │ ├── __init__.py │ │ │ ├── a24461972d2e_add_index_for_report_and_history_id_columns.py │ │ │ ├── a79677f54e48_remove_db_version_table.py │ │ │ ├── ad2a567e513a_git_blame_info.py │ │ │ ├── af5d8a21c1e4_add_analyzer_name_for_report.py │ │ │ ├── c042e02cca99_extended_report_data.py │ │ │ ├── c3dad71f8e6b_store_information_about_enabled_and_disabled_checkers_for_a_run.py │ │ │ ├── dabc6998b8f0_analysis_info_table.py │ │ │ ├── dd9c97ead24_share_the_locking_of_runs.py │ │ │ ├── e89887e7d3f0_add_bug_path_length.py │ │ │ ├── f8291ab1d6be_fix_setting_analysis_info_id_seq.py │ │ │ └── fb356f0eefed_cleanup_plan.py │ ├── permissions.py │ ├── product.py │ ├── profiler.py │ ├── routing.py │ ├── server.py │ ├── session_manager.py │ └── task_executors │ │ ├── __init__.py │ │ ├── abstract_task.py │ │ ├── main.py │ │ └── task_manager.py ├── config │ └── server_config.json ├── tests │ ├── Makefile │ └── unit │ │ ├── __init__.py │ │ ├── metadata_test_files │ │ ├── v1.5.json │ │ ├── v1.json │ │ ├── v2.json │ │ ├── v2_multiple.json │ │ └── v2_multiple_cppcheck.json │ │ ├── test_ccldap.py │ │ ├── test_credentials.py │ │ ├── test_git_commit_url.py │ │ ├── test_metadata_merge.py │ │ ├── test_metadata_parser.py │ │ ├── test_request_routing.py │ │ ├── test_slugify_file_name.py │ │ ├── test_url_understanding.py │ │ └── unit_test.template └── vue-cli │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .npmrc │ ├── config │ ├── helpers.js │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js │ ├── e2e │ ├── __codechecker │ │ ├── codechecker.passwords.json │ │ └── projects │ │ │ ├── Makefile │ │ │ ├── macros │ │ │ └── macros.cpp │ │ │ ├── simple │ │ │ └── divide_zero.cpp │ │ │ └── suppress │ │ │ └── suppress.cpp │ ├── commands │ │ ├── clearAndSetValue.js │ │ ├── getTableRows.js │ │ └── setCheckboxValue.js │ ├── init.db.js │ ├── init.reports.js │ ├── init.workspace.js │ ├── pages │ │ ├── header.js │ │ ├── login.js │ │ ├── product.js │ │ ├── report.js │ │ ├── reportDetail.js │ │ ├── reviewStatusRule.js │ │ └── runs.js │ └── specs │ │ ├── login.js │ │ ├── products.js │ │ ├── reportDetail.js │ │ ├── reports.js │ │ ├── reviewStatusRule.js │ │ └── runs.js │ ├── jsconfig.json │ ├── nightwatch.conf.js │ ├── package-lock.json │ ├── package.json │ └── src │ ├── App.vue │ ├── assets │ ├── ericsson.png │ ├── favicon.ico │ ├── logo.png │ └── userguide │ │ ├── images │ │ ├── new_features │ │ │ ├── 6.10.0 │ │ │ │ └── bug_path_length_filter.png │ │ │ ├── 6.17.0 │ │ │ │ └── git_blame.png │ │ │ ├── 6.25.0 │ │ │ │ ├── guideline_statistics.png │ │ │ │ └── infer.png │ │ │ ├── 6.26.0 │ │ │ │ ├── oauth.png │ │ │ │ └── personal_access_token.png │ │ │ ├── 6.7.0 │ │ │ │ ├── component_filter.png │ │ │ │ └── plist_to_html_index.png │ │ │ ├── 6.8.0 │ │ │ │ ├── analysis_statistics.png │ │ │ │ └── report_hash_filter.png │ │ │ └── 6.9.1 │ │ │ │ └── macro_expansion.png │ │ ├── products │ │ │ ├── confidentiality.png │ │ │ ├── disable_review_status_change.png │ │ │ ├── edit_announcement_btn.png │ │ │ ├── edit_product.png │ │ │ ├── new_product.png │ │ │ ├── no_permission.png │ │ │ ├── notificaiton_dialog.png │ │ │ ├── notification.png │ │ │ ├── product_permissions.png │ │ │ ├── products.png │ │ │ └── remove_product.png │ │ ├── report │ │ │ ├── bug_path.png │ │ │ ├── button_pane.png │ │ │ ├── checker_documentation.png │ │ │ ├── comment.png │ │ │ ├── report_navigation_tree.png │ │ │ ├── review_status_change.png │ │ │ ├── review_status_message.png │ │ │ ├── review_status_unreviewed.png │ │ │ └── same_reports.png │ │ ├── reports │ │ │ ├── assign_report_to_cleanup_plan.png │ │ │ ├── assign_reports_to_cleanup_plan.png │ │ │ ├── cleanup_plan_filter.png │ │ │ ├── clear_all_filters.png │ │ │ ├── clear_report_filters.png │ │ │ ├── compare_runs.png │ │ │ ├── compare_tags.png │ │ │ ├── detection_status_flow_chart.png │ │ │ ├── detection_status_flow_chart.svg │ │ │ ├── detection_statuses.png │ │ │ ├── filter_runs.png │ │ │ ├── filters.png │ │ │ ├── list_of_cleanup_plans.png │ │ │ ├── list_of_source_components.png │ │ │ ├── manage_source_components.png │ │ │ ├── remove_filtered_reports.png │ │ │ ├── reports.png │ │ │ ├── review_statuses.png │ │ │ ├── severity_levels.png │ │ │ └── unqiue_reports.png │ │ ├── review_status_rules │ │ │ └── review_status.rules.png │ │ ├── runs │ │ │ ├── analyzer_statistics.png │ │ │ ├── check_command.png │ │ │ ├── compare_runs.png │ │ │ ├── delete_runs.png │ │ │ ├── filter_run_history_events.png │ │ │ ├── filter_runs.png │ │ │ ├── runs.png │ │ │ ├── show_analyzer_statistics_btn.png │ │ │ ├── show_check_command_btn.png │ │ │ ├── show_description.png │ │ │ ├── show_run_history.png │ │ │ └── sort_runs.png │ │ └── statistics │ │ │ ├── checker_statistics.png │ │ │ ├── component_statistics.png │ │ │ ├── component_statistics_expanded.png │ │ │ ├── product_overview.png │ │ │ └── severity_statistics.png │ │ └── userguide.md │ ├── browsersupport.js │ ├── components │ ├── Alerts.vue │ ├── AnalysisInfo │ │ ├── Checker.vue │ │ ├── CheckerGroup.vue │ │ ├── CheckerRows.vue │ │ └── index.js │ ├── AnalysisInfoDialog.vue │ ├── BulbMessage.vue │ ├── CheckerDocumentationDialog.vue │ ├── ConfirmDialog.vue │ ├── CopyBtn.vue │ ├── CountChips.vue │ ├── DateTimePicker.vue │ ├── Errors.vue │ ├── Icons │ │ ├── AnalyzerStatisticsIcon.vue │ │ ├── ConfidentialityIcon.vue │ │ ├── DetectionStatusIcon.vue │ │ ├── ReportStatusIcon.vue │ │ ├── ReportStepEnumIcon.vue │ │ ├── ReviewStatusIcon.vue │ │ ├── SeverityIcon.vue │ │ ├── UserIcon.vue │ │ └── index.js │ ├── Layout │ │ ├── HeaderMenuItems.vue │ │ ├── PersonalAccessTokenBtn.vue │ │ ├── TheHeader.vue │ │ ├── UserInfoMenu.vue │ │ └── index.js │ ├── NewFeatures │ │ ├── NewFeatureItem.vue │ │ ├── NewReleaseItem.vue │ │ └── index.js │ ├── Product │ │ ├── DeleteProductBtn.vue │ │ ├── EditAnnouncementBtn.vue │ │ ├── EditProductBtn.vue │ │ ├── NewProductBtn.vue │ │ ├── Permission │ │ │ ├── BaseProductPermission.vue │ │ │ ├── EditGlobalPermission.vue │ │ │ ├── EditGlobalPermissionBtn.vue │ │ │ ├── EditProductPermission.vue │ │ │ ├── PopulatePermissions.mixin.js │ │ │ ├── ProductGroupPermission.vue │ │ │ ├── ProductUserPermission.vue │ │ │ └── index.js │ │ ├── ProductConfigForm.vue │ │ ├── ProductNameColumn.vue │ │ ├── SelectConfidentialityItem.vue │ │ └── index.js │ ├── Report │ │ ├── AnalysisInfoBtn.vue │ │ ├── CleanupPlan │ │ │ ├── CleanupPlanList.vue │ │ │ ├── CleanupPlanSubtitle.vue │ │ │ ├── CleanupPlanTab.mixin.js │ │ │ ├── CleanupPlanTab.vue │ │ │ ├── DueDate.vue │ │ │ ├── DueDateMenu.vue │ │ │ ├── EditCleanupPlanDialog.vue │ │ │ ├── ListCleanupPlans.vue │ │ │ ├── ListCleanupPlansTable.vue │ │ │ ├── ManageCleanupPlanDialog.vue │ │ │ ├── RemoveCleanupPlanDialog.vue │ │ │ ├── SetCleanupPlanBtn.vue │ │ │ └── index.js │ │ ├── Comment │ │ │ ├── EditCommentBtn.vue │ │ │ ├── EditCommentDialog.vue │ │ │ ├── NewComment.vue │ │ │ ├── RemoveCommentBtn.vue │ │ │ ├── RemoveCommentDialog.vue │ │ │ ├── ReportComments.vue │ │ │ ├── SystemComment.vue │ │ │ ├── UserComment.vue │ │ │ └── index.js │ │ ├── Git │ │ │ ├── GitBlame.js │ │ │ ├── GitBlameLine.vue │ │ │ └── ToggleBlameViewBtn.vue │ │ ├── Report.vue │ │ ├── ReportFilter │ │ │ ├── ClearAllFilters.vue │ │ │ ├── DefaultReportFilterValues.js │ │ │ ├── Filters │ │ │ │ ├── AnalyzerNameFilter.vue │ │ │ │ ├── BaseFilter.mixin.js │ │ │ │ ├── BaseSelectOptionFilter.mixin.js │ │ │ │ ├── BaselineOpenReportsDateFilter.vue │ │ │ │ ├── BaselineRunFilter.vue │ │ │ │ ├── BaselineTagItems.vue │ │ │ │ ├── BugPathLengthFilter.vue │ │ │ │ ├── CheckerMessageFilter.vue │ │ │ │ ├── CheckerNameFilter.vue │ │ │ │ ├── CleanupPlanFilter.vue │ │ │ │ ├── ComparedToDiffTypeFilter.vue │ │ │ │ ├── ComparedToOpenReportsDateFilter.vue │ │ │ │ ├── ComparedToRunFilter.vue │ │ │ │ ├── DetectionDateFilter.vue │ │ │ │ ├── DetectionDateFilterIcon.vue │ │ │ │ ├── DetectionDateFilterItems.js │ │ │ │ ├── DetectionStatusFilter.vue │ │ │ │ ├── FilePathFilter.vue │ │ │ │ ├── FixDateFilter.vue │ │ │ │ ├── Layout │ │ │ │ │ └── FilterToolbar.vue │ │ │ │ ├── ReportHashFilter.vue │ │ │ │ ├── ReportStatusFilter.vue │ │ │ │ ├── ReviewStatusFilter.vue │ │ │ │ ├── SelectOption │ │ │ │ │ ├── AnywhereOnReportPath.vue │ │ │ │ │ ├── Items.vue │ │ │ │ │ ├── ItemsSelected.vue │ │ │ │ │ ├── ReportFilterModeSelector.vue │ │ │ │ │ ├── SelectOption.vue │ │ │ │ │ ├── SelectedToolbarTitleItems.vue │ │ │ │ │ └── index.js │ │ │ │ ├── SeverityFilter.vue │ │ │ │ ├── SourceComponentFilter.vue │ │ │ │ ├── TestcaseFilter.vue │ │ │ │ ├── UniqueFilter.vue │ │ │ │ └── index.js │ │ │ ├── RemoveFilteredReports.vue │ │ │ ├── ReportCount.vue │ │ │ ├── ReportFilter.vue │ │ │ └── index.js │ │ ├── ReportInfo │ │ │ ├── ReportInfo.vue │ │ │ ├── ReportInfoButton.vue │ │ │ ├── ShowReportInfoDialog.vue │ │ │ └── index.js │ │ ├── ReportStepMessage.vue │ │ ├── ReportTree │ │ │ ├── ReportDetailFormatter.js │ │ │ ├── ReportStepIcon.vue │ │ │ ├── ReportStepIconType.js │ │ │ ├── ReportTree.vue │ │ │ ├── ReportTreeIcon.vue │ │ │ ├── ReportTreeKind.js │ │ │ ├── ReportTreeLabel.vue │ │ │ ├── ReportTreeRootItem.js │ │ │ └── index.js │ │ ├── SelectReviewStatus.vue │ │ ├── SelectReviewStatusItem.vue │ │ ├── SelectSameReport.vue │ │ ├── SelectSameReportItem.vue │ │ ├── SourceComponent │ │ │ ├── EditSourceComponentDialog.vue │ │ │ ├── ListSourceComponents.vue │ │ │ ├── ManageSourceComponentDialog.vue │ │ │ ├── RemoveSourceComponentDialog.vue │ │ │ ├── SourceComponentTooltip.vue │ │ │ └── index.js │ │ └── index.js │ ├── ReviewStatus │ │ ├── EditReviewStatusRuleDialog.vue │ │ ├── ListReviewStatusRules.vue │ │ ├── RemoveFilteredRulesDialog.vue │ │ ├── RemoveReviewStatusRuleDialog.vue │ │ ├── ReviewStatusLabel.vue │ │ ├── ReviewStatusRuleFilter.vue │ │ ├── SelectReviewStatus.vue │ │ └── index.js │ ├── Run │ │ ├── AnalysisInfoBtn.vue │ │ ├── AnalyzerStatisticsBtn.vue │ │ ├── AnalyzerStatisticsDialog.vue │ │ ├── DeleteRunBtn.vue │ │ ├── ExpandedRun.vue │ │ ├── RunDescription.vue │ │ ├── RunFilterToolbar.vue │ │ ├── RunNameColumn.vue │ │ ├── ShowStatisticsBtn.vue │ │ ├── VersionTag.vue │ │ └── index.js │ ├── Statistics │ │ ├── BaseStatistics.vue │ │ ├── BaseStatisticsTable.vue │ │ ├── Checker │ │ │ ├── CheckerStatistics.vue │ │ │ └── CheckerStatisticsTable.vue │ │ ├── CheckerCoverage │ │ │ ├── CheckerCoverageStatistics.vue │ │ │ └── CheckerCoverageStatisticsTable.vue │ │ ├── Component │ │ │ ├── ComponentStatistics.vue │ │ │ ├── ComponentStatisticsTable.vue │ │ │ └── ExpandedItem.vue │ │ ├── DefaultStatisticsFilterValues.js │ │ ├── Guideline │ │ │ ├── GuidelineStatistics.vue │ │ │ └── GuidelineStatisticsTable.vue │ │ ├── Overview │ │ │ ├── FailedFilesDialog.vue │ │ │ ├── OutstandingReportsChart.vue │ │ │ ├── Overview.vue │ │ │ ├── Reports.vue │ │ │ └── SingleLineWidget.vue │ │ ├── ReportDiffCount.vue │ │ ├── Severity │ │ │ ├── ComponentSeverityStatistics │ │ │ │ ├── ComponentSeverityStatistics.vue │ │ │ │ ├── ComponentSeverityStatisticsChart.vue │ │ │ │ ├── ComponentSeverityStatisticsTable.vue │ │ │ │ └── index.js │ │ │ ├── SeverityStatistics.vue │ │ │ └── SeverityStatisticsTable.vue │ │ ├── StatisticsDialog.vue │ │ ├── StatisticsHelper.js │ │ ├── UniqueStatWarning.vue │ │ ├── index.js │ │ └── style.scss │ ├── TooltipHelpIcon.vue │ └── index.js │ ├── directives │ ├── FillHeightDirective.js │ └── index.js │ ├── filters │ ├── __tests__ │ │ ├── prettify-date.test.js │ │ └── truncate.test.js │ ├── from-unix-time.js │ ├── index.js │ ├── prettify-date.js │ └── truncate.js │ ├── index.html │ ├── main.js │ ├── mixins │ ├── __tests__ │ │ ├── bug-path-length-color.mixin.test.js │ │ ├── detection-status.mixin.test.js │ │ ├── review-status.mixin.test.js │ │ ├── severity.mixin.test.js │ │ └── str-to-color.mixin.test.js │ ├── api │ │ ├── analysis-info-handling.mixin.js │ │ └── index.js │ ├── bug-path-length-color.mixin.js │ ├── confidentiality.mixin.js │ ├── date.mixin.js │ ├── detection-status.mixin.js │ ├── index.js │ ├── report-status.mixin.js │ ├── review-status.mixin.js │ ├── severity.mixin.js │ ├── str-to-color.mixin.js │ ├── to-csv.mixin.js │ └── version.mixin.js │ ├── plugins │ └── vuetify.js │ ├── router │ ├── __tests__ │ │ └── backward-compatible-url.test.js │ ├── backward-compatible-url.js │ └── index.js │ ├── services │ └── api │ │ ├── _base.service.js │ │ ├── auth.service.js │ │ ├── cc.service.js │ │ ├── config.service.js │ │ ├── index.js │ │ ├── product.service.js │ │ └── server-info.service.js │ ├── static.js │ ├── store │ ├── actions.type.js │ ├── index.js │ ├── modules │ │ ├── auth.js │ │ ├── base-filter.js │ │ ├── config.js │ │ ├── error.js │ │ ├── product.js │ │ ├── report.js │ │ ├── run.js │ │ ├── server-info.js │ │ ├── statistics.js │ │ └── url.js │ └── mutations.type.js │ ├── variables.scss │ └── views │ ├── CleanupPlan.vue │ ├── Login.vue │ ├── NewFeatures.vue │ ├── NotFound.vue │ ├── OAuthLogin.vue │ ├── ProductDetail.vue │ ├── Products.vue │ ├── ReportDetail.vue │ ├── Reports.vue │ ├── ReviewStatusRules.vue │ ├── RunDetail.vue │ ├── RunList.vue │ ├── SourceComponent.vue │ ├── Statistics.vue │ └── Userguide.vue └── tests ├── Makefile ├── functional ├── __init__.py ├── authentication │ ├── __init__.py │ ├── clang-5.0-trunk.plist │ ├── oauth_server.py │ ├── test_authentication.py │ ├── test_permission_management.py │ └── test_permission_view.py ├── blame │ ├── __init__.py │ └── test_blame_info.py ├── cleanup_plan │ ├── __init__.py │ └── test_cleanup_plan.py ├── cli_config │ ├── __init__.py │ ├── test_server_config.py │ └── test_store_config.py ├── cmdline │ ├── __init__.py │ └── test_cmdline.py ├── comment │ ├── __init__.py │ └── test_comment.py ├── component │ ├── __init__.py │ └── test_component.py ├── cppcheck │ ├── __init__.py │ ├── test_cppcheck.py │ └── test_proj │ │ ├── Makefile │ │ ├── divide_zero.cpp │ │ ├── divide_zero.plist │ │ └── lib.h ├── db_cleanup │ ├── __init__.py │ └── test_db_cleanup.py ├── delete_runs │ ├── __init__.py │ └── test_delete_runs.py ├── detection_status │ ├── __init__.py │ └── test_detection_status.py ├── diff_cmdline │ ├── __init__.py │ └── test_diff_cmdline.py ├── diff_local │ ├── __init__.py │ └── test_diff_local.py ├── diff_local_remote │ ├── __init__.py │ └── test_diff_local_remote.py ├── diff_local_remote_suppress │ ├── __init__.py │ ├── test_diff_local_remote_suppress.py │ └── test_diff_local_remote_suppress_rule.py ├── diff_remote │ ├── __init__.py │ └── test_diff_remote.py ├── dynamic_results │ ├── __init__.py │ └── test_dynamic_results.py ├── export_import │ ├── __init__.py │ └── test_export_import.py ├── extended_report_data │ ├── __init__.py │ └── test_extended_report_data.py ├── instance_manager │ ├── __init__.py │ └── test_instances.py ├── products │ ├── __init__.py │ ├── test_config_db_share.py │ └── test_products.py ├── report_viewer_api │ ├── __init__.py │ ├── test_files │ │ ├── main.cpp │ │ ├── main2.cpp │ │ ├── metadata.json │ │ └── run.plist │ ├── test_get_lines_in_file.py │ ├── test_get_run_results.py │ ├── test_hash_clash.py │ ├── test_remove_run_results.py │ ├── test_report_counting.py │ ├── test_report_filter.py │ └── test_run_data.py ├── review_status │ ├── __init__.py │ ├── review_status_files │ │ ├── Makefile │ │ ├── divide_zero.cpp │ │ └── divide_zero.plist │ └── test_review_status.py ├── run_tag │ ├── __init__.py │ └── test_run_tag.py ├── server_configuration │ ├── __init__.py │ └── test_server_configuration.py ├── skip │ ├── __init__.py │ └── test_skip.py ├── source_change │ ├── __init__.py │ └── test_source_change.py ├── ssl │ ├── __init__.py │ └── test_ssl.py ├── statistics │ ├── __init__.py │ └── test_statistics.py ├── storage_of_analysis_statistics │ ├── __init__.py │ └── test_storage_of_analysis_statistics.py ├── store │ ├── __init__.py │ ├── test_proj │ │ ├── divide_zero │ │ │ ├── Makefile │ │ │ ├── divide_zero.cpp │ │ │ ├── divide_zero.plist │ │ │ ├── lib.h │ │ │ └── project_info.json │ │ ├── double_suppress │ │ │ ├── Makefile │ │ │ ├── double_suppress.cpp │ │ │ ├── double_suppress.plist │ │ │ └── project_info.json │ │ └── same_headers │ │ │ ├── lib1 │ │ │ └── header.h │ │ │ ├── lib2 │ │ │ └── header.h │ │ │ ├── same_headers1.cpp │ │ │ ├── same_headers2.cpp │ │ │ └── same_headers3.cpp │ └── test_store.py ├── suppress │ ├── __init__.py │ ├── suppress.expected │ └── test_suppress_generation.py ├── tasks │ ├── __init__.py │ └── test_task_management.py └── update │ ├── __init__.py │ ├── test_proj │ ├── Makefile │ ├── main.cpp │ └── reports │ │ ├── base │ │ └── base.plist │ │ └── disabled │ │ └── disabled.plist │ └── test_update_mode.py ├── libtest ├── __init__.py ├── codechecker.py ├── debug_printer.py ├── env.py ├── plist_test.py ├── project.py ├── result_compare.py └── thrift_client_to_db.py ├── projects ├── README.md ├── cpp │ ├── Makefile │ ├── calculate.h │ ├── call_and_message.cpp │ ├── divide_zero.cpp │ ├── divide_zero_duplicate.cpp │ ├── file_to_be_skipped.cpp │ ├── has a space.cpp │ ├── new_delete.cpp │ ├── null_dereference.cpp │ ├── path_begin.cpp │ ├── path_begin1.cpp │ ├── path_begin2.cpp │ ├── path_end.h │ ├── project_info.json │ ├── same_origin.cpp │ ├── skip.h │ ├── skip_header.cpp │ ├── stack_address_escape.cpp │ └── statistical_checkers.cpp ├── dynamic │ ├── main.c │ ├── main.c_clang-tidy_0212cbc2c7194b7a5d431a18ff51bb1c.plist │ ├── main.c_clangsa_0212cbc2c7194b7a5d431a18ff51bb1c.plist │ └── main.c_cppcheck_0212cbc2c7194b7a5d431a18ff51bb1c.plist ├── macros │ ├── macros.cpp │ └── macros.plist ├── notes │ ├── notes.cpp │ └── notes.plist ├── objc │ ├── DeallocUseAfterFreeErrors.m │ └── Makefile ├── simple │ ├── Makefile │ ├── main.cpp │ └── project_info.json ├── single_bug │ ├── Makefile │ ├── bug.cpp │ └── project_info.json └── suppress │ ├── Makefile │ ├── project_info.json │ └── suppress.cpp ├── ssl_example_cert ├── .sh ├── cert.pem └── key.pem └── tools ├── __init__.py └── add_unicode_comment.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codechecker_master_analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.github/workflows/codechecker_master_analysis.yml -------------------------------------------------------------------------------- /.github/workflows/codechecker_pr_analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.github/workflows/codechecker_pr_analysis.yml -------------------------------------------------------------------------------- /.github/workflows/config_coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.github/workflows/config_coverage.yml -------------------------------------------------------------------------------- /.github/workflows/config_label_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.github/workflows/config_label_check.py -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.github/workflows/install-deps.sh -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/snap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.github/workflows/snap.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.gitmessage -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/.pylintrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/Makefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/SECURITY.md -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/alembic.ini -------------------------------------------------------------------------------- /analyzer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/Makefile -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/__init__.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/analysis_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/analysis_manager.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/analyzer.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/analyzer_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/analyzer_context.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/analyzers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/analyzers/__init__.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/analyzers/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/analyzers/flag.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/analyzers/infer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/arg.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/buildlog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/buildlog/__init__.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/buildlog/host_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/buildlog/host_check.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/buildlog/log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/buildlog/log_parser.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/checkers.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/cli/__init__.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/cli/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/cli/analyze.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/cli/analyzer_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/cli/analyzer_version.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/cli/analyzers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/cli/analyzers.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/cli/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/cli/check.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/cli/checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/cli/checkers.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/cli/fixit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/cli/fixit.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/cli/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/cli/log.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/cli/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/cli/parse.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/compilation_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/compilation_database.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/env.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/gcc_toolchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/gcc_toolchain.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/host_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/host_check.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/makefile.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/pre_analysis_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/pre_analysis_manager.py -------------------------------------------------------------------------------- /analyzer/codechecker_analyzer/suppress_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/codechecker_analyzer/suppress_handler.py -------------------------------------------------------------------------------- /analyzer/config/analyzer_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/config/analyzer_version.json -------------------------------------------------------------------------------- /analyzer/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/pytest.ini -------------------------------------------------------------------------------- /analyzer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/requirements.txt -------------------------------------------------------------------------------- /analyzer/requirements_py/dev/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/requirements_py/dev/requirements.txt -------------------------------------------------------------------------------- /analyzer/requirements_py/osx/requirements.txt: -------------------------------------------------------------------------------- 1 | scan-build==2.0.19 2 | 3 | -r ../../requirements.txt 4 | -------------------------------------------------------------------------------- /analyzer/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/Makefile -------------------------------------------------------------------------------- /analyzer/tests/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/analyze/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze/test_analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/analyze/test_analyze.py -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze/test_files/includes/simple.h: -------------------------------------------------------------------------------- 1 | #define EXAMPLE 1 2 | -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze/test_files/saargs: -------------------------------------------------------------------------------- 1 | -DSAARGS 2 | -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze/test_files/simple.c: -------------------------------------------------------------------------------- 1 | #include 2 | int main() 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze/test_files/simple.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze/test_files/success.c: -------------------------------------------------------------------------------- 1 | int main(){ 2 | return 1/0;//division by zero 3 | } 4 | -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze/test_files/tidyargs: -------------------------------------------------------------------------------- 1 | --extra-arg=-DTIDYARGS '-config={"Checks": "modernize-avoid-bind"}' 2 | -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze_and_parse/test_files/compiler_error.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0 4 | } 5 | -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze_and_parse/test_files/includes/simple.h: -------------------------------------------------------------------------------- 1 | #define SIMPLE 1 2 | -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze_and_parse/test_files/nofail.cpp: -------------------------------------------------------------------------------- 1 | int main() { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze_and_parse/test_files/saargs_forward.saargs.txt: -------------------------------------------------------------------------------- 1 | -DHAVE_NULL_DEREFERENCE=1 -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze_and_parse/test_files/simple.c: -------------------------------------------------------------------------------- 1 | int main(void) { 2 | return 0; 3 | } -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze_and_parse/test_files/skipall.txt: -------------------------------------------------------------------------------- 1 | -* -------------------------------------------------------------------------------- /analyzer/tests/functional/analyze_and_parse/test_files/skiplist.txt: -------------------------------------------------------------------------------- 1 | -*/multi_error.cpp -------------------------------------------------------------------------------- /analyzer/tests/functional/cmdline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/cmdline/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/functional/cmdline/test_cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/cmdline/test_cmdline.py -------------------------------------------------------------------------------- /analyzer/tests/functional/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/config/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/functional/config/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/config/test_config.py -------------------------------------------------------------------------------- /analyzer/tests/functional/ctu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/ctu/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/functional/ctu/test_ctu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/ctu/test_ctu.py -------------------------------------------------------------------------------- /analyzer/tests/functional/ctu/test_files_c/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/ctu/test_files_c/lib.c -------------------------------------------------------------------------------- /analyzer/tests/functional/ctu/test_files_c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/ctu/test_files_c/main.c -------------------------------------------------------------------------------- /analyzer/tests/functional/ctu/test_files_cpp/compile_commands.json: -------------------------------------------------------------------------------- 1 | buildlog.json -------------------------------------------------------------------------------- /analyzer/tests/functional/ctu_failure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/ctu_failure/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/functional/fixit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/fixit/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/functional/fixit/test_fixit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/fixit/test_fixit.py -------------------------------------------------------------------------------- /analyzer/tests/functional/host_check/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/host_check/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/functional/skip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/skip/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/functional/skip/test_files/multiple/a.cpp: -------------------------------------------------------------------------------- 1 | #include "lib.h" 2 | 3 | void foo() { 4 | myDiv(1); 5 | } 6 | -------------------------------------------------------------------------------- /analyzer/tests/functional/skip/test_files/multiple/b.cpp: -------------------------------------------------------------------------------- 1 | #include "lib.h" 2 | 3 | void bar() { 4 | myDiv(2); 5 | } 6 | -------------------------------------------------------------------------------- /analyzer/tests/functional/skip/test_files/simple/skipfile_drop: -------------------------------------------------------------------------------- 1 | -*file_to_be_skipped.cpp 2 | -------------------------------------------------------------------------------- /analyzer/tests/functional/skip/test_skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/skip/test_skip.py -------------------------------------------------------------------------------- /analyzer/tests/functional/suppress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/suppress/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/functional/suppress/duplicated_suppress.skip: -------------------------------------------------------------------------------- 1 | +*duplicated_suppress.cpp 2 | -* -------------------------------------------------------------------------------- /analyzer/tests/functional/suppress/suppress.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/suppress/suppress.expected -------------------------------------------------------------------------------- /analyzer/tests/functional/suppress/suppress_already_confirmed.skip: -------------------------------------------------------------------------------- 1 | +*suppress_already_confirmed.cpp 2 | -* -------------------------------------------------------------------------------- /analyzer/tests/functional/suppress/suppress_by_all.skip: -------------------------------------------------------------------------------- 1 | +*suppress_duplicated_by_all.cpp 2 | -* -------------------------------------------------------------------------------- /analyzer/tests/functional/suppress/suppress_by_all_in_two_lines.skip: -------------------------------------------------------------------------------- 1 | +*suppress_duplicated_in_two_lines.cpp 2 | -* -------------------------------------------------------------------------------- /analyzer/tests/functional/suppress/suppress_export.skip: -------------------------------------------------------------------------------- 1 | +*suppress_export.cpp 2 | -* 3 | -------------------------------------------------------------------------------- /analyzer/tests/functional/suppress/suppress_without_bug.skip: -------------------------------------------------------------------------------- 1 | +*suppress_without_bug.cpp 2 | -* -------------------------------------------------------------------------------- /analyzer/tests/functional/suppress/test_suppress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/suppress/test_suppress.py -------------------------------------------------------------------------------- /analyzer/tests/functional/z3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/z3/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/functional/z3/test_z3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/functional/z3/test_z3.py -------------------------------------------------------------------------------- /analyzer/tests/libtest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/libtest/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/libtest/cmd_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/libtest/cmd_line.py -------------------------------------------------------------------------------- /analyzer/tests/libtest/codechecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/libtest/codechecker.py -------------------------------------------------------------------------------- /analyzer/tests/libtest/ctu_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/libtest/ctu_decorators.py -------------------------------------------------------------------------------- /analyzer/tests/libtest/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/libtest/decorators.py -------------------------------------------------------------------------------- /analyzer/tests/libtest/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/libtest/env.py -------------------------------------------------------------------------------- /analyzer/tests/libtest/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/libtest/project.py -------------------------------------------------------------------------------- /analyzer/tests/projects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/projects/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/projects/ctu_failure/buildlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/projects/ctu_failure/buildlog.json -------------------------------------------------------------------------------- /analyzer/tests/projects/ctu_failure/ctu_failure.saargs: -------------------------------------------------------------------------------- 1 | -Xclang -analyzer-checker=debug.ExprInspection 2 | -------------------------------------------------------------------------------- /analyzer/tests/projects/ctu_failure/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/projects/ctu_failure/lib.c -------------------------------------------------------------------------------- /analyzer/tests/projects/ctu_failure/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/projects/ctu_failure/main.c -------------------------------------------------------------------------------- /analyzer/tests/projects/ctu_failure_with_headers/ctu_failure.saargs: -------------------------------------------------------------------------------- 1 | -Xclang -analyzer-checker=debug.ExprInspection 2 | -------------------------------------------------------------------------------- /analyzer/tests/projects/ctu_failure_with_headers/lib.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void bar(); 4 | -------------------------------------------------------------------------------- /analyzer/tests/projects/macros/macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/projects/macros/macros.cpp -------------------------------------------------------------------------------- /analyzer/tests/projects/macros/macros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/projects/macros/macros.plist -------------------------------------------------------------------------------- /analyzer/tests/projects/notes/notes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/projects/notes/notes.cpp -------------------------------------------------------------------------------- /analyzer/tests/projects/notes/notes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/projects/notes/notes.plist -------------------------------------------------------------------------------- /analyzer/tests/projects/suppress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/projects/suppress/Makefile -------------------------------------------------------------------------------- /analyzer/tests/projects/suppress/project_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/projects/suppress/project_info.json -------------------------------------------------------------------------------- /analyzer/tests/projects/suppress/suppress_export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/projects/suppress/suppress_export.cpp -------------------------------------------------------------------------------- /analyzer/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/__init__.py -------------------------------------------------------------------------------- /analyzer/tests/unit/logparser_test_files/include.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/logparser_test_files/include.json -------------------------------------------------------------------------------- /analyzer/tests/unit/remove_report_test_files/keep_only_empty.txt: -------------------------------------------------------------------------------- 1 | +files/empty.h 2 | -* 3 | -------------------------------------------------------------------------------- /analyzer/tests/unit/remove_report_test_files/skip_all_header.txt: -------------------------------------------------------------------------------- 1 | -*files/*.h 2 | -------------------------------------------------------------------------------- /analyzer/tests/unit/remove_report_test_files/skip_x_header.txt: -------------------------------------------------------------------------------- 1 | -*files/x.h 2 | -------------------------------------------------------------------------------- /analyzer/tests/unit/remove_report_test_files/x.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/remove_report_test_files/x.plist -------------------------------------------------------------------------------- /analyzer/tests/unit/test_analyzer_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_analyzer_command.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_buildcmd_escaping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_buildcmd_escaping.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_checker_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_checker_handling.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_checker_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_checker_labels.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_checker_option_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_checker_option_parsing.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_checkers.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_clangsa_version_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_clangsa_version_parsing.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_compilation_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_compilation_database.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_cppcheck_version_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_cppcheck_version_parsing.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_env_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_env_var.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_flag.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_gcc_toolchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_gcc_toolchain.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_guidelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_guidelines.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_log_parser.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_option_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_option_parser.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_remove_report_from_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_remove_report_from_plist.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_result_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_result_handler.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_review_status_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_review_status_config.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_source_code_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_source_code_comment.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_subprocess_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_subprocess_timeout.py -------------------------------------------------------------------------------- /analyzer/tests/unit/test_triple_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tests/unit/test_triple_arch.py -------------------------------------------------------------------------------- /analyzer/tools/build-logger/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/.pylintrc -------------------------------------------------------------------------------- /analyzer/tools/build-logger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/Makefile -------------------------------------------------------------------------------- /analyzer/tools/build-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/README.md -------------------------------------------------------------------------------- /analyzer/tools/build-logger/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/pytest.ini -------------------------------------------------------------------------------- /analyzer/tools/build-logger/src/ldlogger-hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/src/ldlogger-hooks.c -------------------------------------------------------------------------------- /analyzer/tools/build-logger/src/ldlogger-hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/src/ldlogger-hooks.h -------------------------------------------------------------------------------- /analyzer/tools/build-logger/src/ldlogger-logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/src/ldlogger-logger.c -------------------------------------------------------------------------------- /analyzer/tools/build-logger/src/ldlogger-tool-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/src/ldlogger-tool-gcc.c -------------------------------------------------------------------------------- /analyzer/tools/build-logger/src/ldlogger-tool-javac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/src/ldlogger-tool-javac.c -------------------------------------------------------------------------------- /analyzer/tools/build-logger/src/ldlogger-tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/src/ldlogger-tool.c -------------------------------------------------------------------------------- /analyzer/tools/build-logger/src/ldlogger-tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/src/ldlogger-tool.h -------------------------------------------------------------------------------- /analyzer/tools/build-logger/src/ldlogger-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/src/ldlogger-util.c -------------------------------------------------------------------------------- /analyzer/tools/build-logger/src/ldlogger-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/src/ldlogger-util.h -------------------------------------------------------------------------------- /analyzer/tools/build-logger/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/tests/Makefile -------------------------------------------------------------------------------- /analyzer/tools/build-logger/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/tests/unit/__init__.py -------------------------------------------------------------------------------- /analyzer/tools/build-logger/tests/unit/makefile_test_proj/Makefile: -------------------------------------------------------------------------------- 1 | export HELLO=world 2 | all: 3 | make -C dir 4 | -------------------------------------------------------------------------------- /analyzer/tools/build-logger/tests/unit/makefile_test_proj/dir/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | int i = 1 / 0; 4 | } 5 | -------------------------------------------------------------------------------- /analyzer/tools/build-logger/tests/unit/test_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/build-logger/tests/unit/test_paths.py -------------------------------------------------------------------------------- /analyzer/tools/merge_clang_extdef_mappings/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | merge_clang_extdef_mappings.egg-info 4 | -------------------------------------------------------------------------------- /analyzer/tools/merge_clang_extdef_mappings/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/merge_clang_extdef_mappings/.pylintrc -------------------------------------------------------------------------------- /analyzer/tools/merge_clang_extdef_mappings/.pypirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/merge_clang_extdef_mappings/.pypirc -------------------------------------------------------------------------------- /analyzer/tools/merge_clang_extdef_mappings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/merge_clang_extdef_mappings/Makefile -------------------------------------------------------------------------------- /analyzer/tools/merge_clang_extdef_mappings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/merge_clang_extdef_mappings/README.md -------------------------------------------------------------------------------- /analyzer/tools/merge_clang_extdef_mappings/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/merge_clang_extdef_mappings/pytest.ini -------------------------------------------------------------------------------- /analyzer/tools/merge_clang_extdef_mappings/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/merge_clang_extdef_mappings/setup.py -------------------------------------------------------------------------------- /analyzer/tools/statistics_collector/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | statistics_collector.egg-info 4 | -------------------------------------------------------------------------------- /analyzer/tools/statistics_collector/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/statistics_collector/.pylintrc -------------------------------------------------------------------------------- /analyzer/tools/statistics_collector/.pypirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/statistics_collector/.pypirc -------------------------------------------------------------------------------- /analyzer/tools/statistics_collector/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/statistics_collector/LICENSE.txt -------------------------------------------------------------------------------- /analyzer/tools/statistics_collector/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/statistics_collector/MANIFEST.in -------------------------------------------------------------------------------- /analyzer/tools/statistics_collector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/statistics_collector/Makefile -------------------------------------------------------------------------------- /analyzer/tools/statistics_collector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/statistics_collector/README.md -------------------------------------------------------------------------------- /analyzer/tools/statistics_collector/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/statistics_collector/pytest.ini -------------------------------------------------------------------------------- /analyzer/tools/statistics_collector/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/statistics_collector/setup.py -------------------------------------------------------------------------------- /analyzer/tools/statistics_collector/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/analyzer/tools/statistics_collector/tests/Makefile -------------------------------------------------------------------------------- /bin/CodeChecker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/bin/CodeChecker -------------------------------------------------------------------------------- /ci/github_analysis/codechecker_gate_master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/ci/github_analysis/codechecker_gate_master.sh -------------------------------------------------------------------------------- /ci/github_analysis/codechecker_gate_pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/ci/github_analysis/codechecker_gate_pr.sh -------------------------------------------------------------------------------- /ci/github_analysis/pylint_analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/ci/github_analysis/pylint_analyze.sh -------------------------------------------------------------------------------- /codechecker_common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/__init__.py -------------------------------------------------------------------------------- /codechecker_common/arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/arg.py -------------------------------------------------------------------------------- /codechecker_common/checker_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/checker_labels.py -------------------------------------------------------------------------------- /codechecker_common/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/cli.py -------------------------------------------------------------------------------- /codechecker_common/cli_commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/cli_commands/__init__.py -------------------------------------------------------------------------------- /codechecker_common/cli_commands/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/cli_commands/version.py -------------------------------------------------------------------------------- /codechecker_common/cmd_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/cmd_config.py -------------------------------------------------------------------------------- /codechecker_common/compatibility/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/compatibility/__init__.py -------------------------------------------------------------------------------- /codechecker_common/compatibility/multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/compatibility/multiprocessing.py -------------------------------------------------------------------------------- /codechecker_common/guidelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/guidelines.py -------------------------------------------------------------------------------- /codechecker_common/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/logger.py -------------------------------------------------------------------------------- /codechecker_common/output/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/output/__init__.py -------------------------------------------------------------------------------- /codechecker_common/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/process.py -------------------------------------------------------------------------------- /codechecker_common/review_status_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/review_status_handler.py -------------------------------------------------------------------------------- /codechecker_common/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/singleton.py -------------------------------------------------------------------------------- /codechecker_common/skiplist_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/skiplist_handler.py -------------------------------------------------------------------------------- /codechecker_common/source_code_comment_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/source_code_comment_handler.py -------------------------------------------------------------------------------- /codechecker_common/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/tests/Makefile -------------------------------------------------------------------------------- /codechecker_common/typehints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/typehints.py -------------------------------------------------------------------------------- /codechecker_common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/codechecker_common/util.py -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/config.json -------------------------------------------------------------------------------- /config/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/config.md -------------------------------------------------------------------------------- /config/config_files/codechecker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/config_files/codechecker.json -------------------------------------------------------------------------------- /config/config_files/codechecker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/config_files/codechecker.yml -------------------------------------------------------------------------------- /config/guidelines/cwe-top-25-2024.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/guidelines/cwe-top-25-2024.yaml -------------------------------------------------------------------------------- /config/guidelines/memory-safety.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/guidelines/memory-safety.yaml -------------------------------------------------------------------------------- /config/guidelines/mitre.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/guidelines/mitre.license -------------------------------------------------------------------------------- /config/guidelines/owasp-top-10-2021.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/guidelines/owasp-top-10-2021.yaml -------------------------------------------------------------------------------- /config/guidelines/sei-cert-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/guidelines/sei-cert-c.yaml -------------------------------------------------------------------------------- /config/guidelines/sei-cert-cpp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/guidelines/sei-cert-cpp.yaml -------------------------------------------------------------------------------- /config/labels/analyzers/asan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/asan.json -------------------------------------------------------------------------------- /config/labels/analyzers/clang-tidy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/clang-tidy.json -------------------------------------------------------------------------------- /config/labels/analyzers/clangsa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/clangsa.json -------------------------------------------------------------------------------- /config/labels/analyzers/coccinelle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/coccinelle.json -------------------------------------------------------------------------------- /config/labels/analyzers/cppcheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/cppcheck.json -------------------------------------------------------------------------------- /config/labels/analyzers/gcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/gcc.json -------------------------------------------------------------------------------- /config/labels/analyzers/golint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/golint.json -------------------------------------------------------------------------------- /config/labels/analyzers/infer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/infer.json -------------------------------------------------------------------------------- /config/labels/analyzers/kernel-doc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/kernel-doc.json -------------------------------------------------------------------------------- /config/labels/analyzers/lsan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/lsan.json -------------------------------------------------------------------------------- /config/labels/analyzers/mdl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/mdl.json -------------------------------------------------------------------------------- /config/labels/analyzers/msan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/msan.json -------------------------------------------------------------------------------- /config/labels/analyzers/pyflakes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/pyflakes.json -------------------------------------------------------------------------------- /config/labels/analyzers/pylint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/pylint.json -------------------------------------------------------------------------------- /config/labels/analyzers/smatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/smatch.json -------------------------------------------------------------------------------- /config/labels/analyzers/sparse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/sparse.json -------------------------------------------------------------------------------- /config/labels/analyzers/sphinx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/sphinx.json -------------------------------------------------------------------------------- /config/labels/analyzers/tsan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/tsan.json -------------------------------------------------------------------------------- /config/labels/analyzers/ubsan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/analyzers/ubsan.json -------------------------------------------------------------------------------- /config/labels/descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/labels/descriptions.json -------------------------------------------------------------------------------- /config/logger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/logger.conf -------------------------------------------------------------------------------- /config/package_layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/config/package_layout.json -------------------------------------------------------------------------------- /docker/Dockerfile.test.sqlite.clang11.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docker/Dockerfile.test.sqlite.clang11.bionic -------------------------------------------------------------------------------- /docker/Dockerfile.test.sqlite.clang11.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docker/Dockerfile.test.sqlite.clang11.xenial -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docker/thrift/Dockerfile.thrift.noble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docker/thrift/Dockerfile.thrift.noble -------------------------------------------------------------------------------- /docker/thrift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docker/thrift/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/analyzer/checker_and_analyzer_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/analyzer/checker_and_analyzer_configuration.md -------------------------------------------------------------------------------- /docs/analyzer/false_positives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/analyzer/false_positives.md -------------------------------------------------------------------------------- /docs/analyzer/gcc_incompatibilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/analyzer/gcc_incompatibilities.md -------------------------------------------------------------------------------- /docs/analyzer/report_identification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/analyzer/report_identification.md -------------------------------------------------------------------------------- /docs/analyzer/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/analyzer/user_guide.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/config_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/config_file.md -------------------------------------------------------------------------------- /docs/deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/deps.md -------------------------------------------------------------------------------- /docs/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/docker.md -------------------------------------------------------------------------------- /docs/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/examples/Makefile -------------------------------------------------------------------------------- /docs/examples/incl/divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/examples/incl/divide.h -------------------------------------------------------------------------------- /docs/examples/src/divide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/examples/src/divide.c -------------------------------------------------------------------------------- /docs/examples/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/examples/src/main.c -------------------------------------------------------------------------------- /docs/feature_comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/feature_comparison.md -------------------------------------------------------------------------------- /docs/gitlab_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/gitlab_integration.md -------------------------------------------------------------------------------- /docs/images/architecture-drawio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/architecture-drawio.xml -------------------------------------------------------------------------------- /docs/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/architecture.png -------------------------------------------------------------------------------- /docs/images/bug_path_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/bug_path_events.png -------------------------------------------------------------------------------- /docs/images/buglist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/buglist.png -------------------------------------------------------------------------------- /docs/images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/demo.gif -------------------------------------------------------------------------------- /docs/images/docker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/docker.jpg -------------------------------------------------------------------------------- /docs/images/gerrit_jenkins/build_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/gerrit_jenkins/build_trigger.png -------------------------------------------------------------------------------- /docs/images/gerrit_jenkins/gerrit_plugin_restapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/gerrit_jenkins/gerrit_plugin_restapi.png -------------------------------------------------------------------------------- /docs/images/gerrit_jenkins/gerrit_plugin_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/gerrit_jenkins/gerrit_plugin_values.png -------------------------------------------------------------------------------- /docs/images/gerrit_jenkins/gerrit_review_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/gerrit_jenkins/gerrit_review_report.png -------------------------------------------------------------------------------- /docs/images/gerrit_jenkins/gerrit_review_reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/gerrit_jenkins/gerrit_review_reports.png -------------------------------------------------------------------------------- /docs/images/gerrit_jenkins/source_code_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/gerrit_jenkins/source_code_management.png -------------------------------------------------------------------------------- /docs/images/github-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/github-actions.png -------------------------------------------------------------------------------- /docs/images/kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/kubernetes.png -------------------------------------------------------------------------------- /docs/images/macro_expansion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/macro_expansion.png -------------------------------------------------------------------------------- /docs/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/note.png -------------------------------------------------------------------------------- /docs/images/report_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/report_annotation.png -------------------------------------------------------------------------------- /docs/images/static_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/static_html.png -------------------------------------------------------------------------------- /docs/images/usage_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/usage_flow.png -------------------------------------------------------------------------------- /docs/images/usage_flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/usage_flow.svg -------------------------------------------------------------------------------- /docs/images/viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/viewer.png -------------------------------------------------------------------------------- /docs/images/vscode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/vscode.gif -------------------------------------------------------------------------------- /docs/images/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/images/vscode.png -------------------------------------------------------------------------------- /docs/install_macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/install_macosx.md -------------------------------------------------------------------------------- /docs/jenkins_gerrit_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/jenkins_gerrit_integration.md -------------------------------------------------------------------------------- /docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/logging.md -------------------------------------------------------------------------------- /docs/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/logo/logo.svg -------------------------------------------------------------------------------- /docs/logo/logo_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/logo/logo_blue.png -------------------------------------------------------------------------------- /docs/logo/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/logo/logo_white.png -------------------------------------------------------------------------------- /docs/package_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/package_layout.md -------------------------------------------------------------------------------- /docs/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/release.md -------------------------------------------------------------------------------- /docs/script_daily.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/script_daily.md -------------------------------------------------------------------------------- /docs/script_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/script_update.md -------------------------------------------------------------------------------- /docs/supported_code_analyzers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/supported_code_analyzers.md -------------------------------------------------------------------------------- /docs/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/tests.md -------------------------------------------------------------------------------- /docs/tools/bazel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/tools/bazel.md -------------------------------------------------------------------------------- /docs/tools/plist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/tools/plist.md -------------------------------------------------------------------------------- /docs/tools/report-converter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/tools/report-converter.md -------------------------------------------------------------------------------- /docs/tools/tu_collector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/tools/tu_collector.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/usage.md -------------------------------------------------------------------------------- /docs/web/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/api/README.md -------------------------------------------------------------------------------- /docs/web/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/authentication.md -------------------------------------------------------------------------------- /docs/web/background_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/background_tasks.md -------------------------------------------------------------------------------- /docs/web/db_schema_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/db_schema_guide.md -------------------------------------------------------------------------------- /docs/web/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/diff.md -------------------------------------------------------------------------------- /docs/web/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/docker.md -------------------------------------------------------------------------------- /docs/web/images/newproduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/images/newproduct.png -------------------------------------------------------------------------------- /docs/web/images/permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/images/permissions.png -------------------------------------------------------------------------------- /docs/web/images/productconfigicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/images/productconfigicons.png -------------------------------------------------------------------------------- /docs/web/images/products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/images/products.png -------------------------------------------------------------------------------- /docs/web/permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/permissions.md -------------------------------------------------------------------------------- /docs/web/postgresql_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/postgresql_setup.md -------------------------------------------------------------------------------- /docs/web/products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/products.md -------------------------------------------------------------------------------- /docs/web/server_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/server_config.md -------------------------------------------------------------------------------- /docs/web/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/docs/web/user_guide.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /requirements_py/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs==1.5.3 2 | -------------------------------------------------------------------------------- /scripts/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/build/__init__.py -------------------------------------------------------------------------------- /scripts/build/extend_version_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/build/extend_version_file.py -------------------------------------------------------------------------------- /scripts/build/wrap_binary_in_venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/build/wrap_binary_in_venv.py -------------------------------------------------------------------------------- /scripts/create_new_subcommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/create_new_subcommand.py -------------------------------------------------------------------------------- /scripts/debug_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/debug_tools/README.md -------------------------------------------------------------------------------- /scripts/debug_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/debug_tools/__init__.py -------------------------------------------------------------------------------- /scripts/debug_tools/crash_clustering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/debug_tools/crash_clustering/README.md -------------------------------------------------------------------------------- /scripts/debug_tools/crash_clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/debug_tools/crash_clustering/__init__.py -------------------------------------------------------------------------------- /scripts/debug_tools/crash_clustering/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/debug_tools/crash_clustering/requirements.txt -------------------------------------------------------------------------------- /scripts/debug_tools/failure_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/debug_tools/failure_lib.py -------------------------------------------------------------------------------- /scripts/debug_tools/prepare_all_cmd_for_ctu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/debug_tools/prepare_all_cmd_for_ctu.py -------------------------------------------------------------------------------- /scripts/debug_tools/prepare_analyzer_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/debug_tools/prepare_analyzer_cmd.py -------------------------------------------------------------------------------- /scripts/debug_tools/prepare_compile_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/debug_tools/prepare_compile_cmd.py -------------------------------------------------------------------------------- /scripts/debug_tools/prepare_compiler_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/debug_tools/prepare_compiler_info.py -------------------------------------------------------------------------------- /scripts/debug_tools/renew_info_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/debug_tools/renew_info_files.py -------------------------------------------------------------------------------- /scripts/gerrit_changed_files_to_skipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/gerrit_changed_files_to_skipfile.py -------------------------------------------------------------------------------- /scripts/labels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/__init__.py -------------------------------------------------------------------------------- /scripts/labels/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/__main__.py -------------------------------------------------------------------------------- /scripts/labels/checker_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/checker_labels.py -------------------------------------------------------------------------------- /scripts/labels/codechecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/codechecker.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/__init__.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/generate_tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/generate_tool/__init__.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/generate_tool/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/generate_tool/__main__.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/generate_tool/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/generate_tool/tool.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/generators/__init__.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/generators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/generators/base.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/generators/clang_diagnostic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/generators/clang_diagnostic.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/generators/clang_tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/generators/clang_tidy.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/generators/clangsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/generators/clangsa.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/generators/markdownlint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/generators/markdownlint.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/output.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/verifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/verifiers/__init__.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/verifiers/clang_diagnostic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/verifiers/clang_diagnostic.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/verifiers/clang_tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/verifiers/clang_tidy.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/verifiers/clangsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/verifiers/clangsa.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/verifiers/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/verifiers/generic.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/verifiers/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/verifiers/status.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/verify_tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/verify_tool/__init__.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/verify_tool/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/verify_tool/__main__.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/verify_tool/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/verify_tool/action.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/verify_tool/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/verify_tool/report.py -------------------------------------------------------------------------------- /scripts/labels/doc_url/verify_tool/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/doc_url/verify_tool/tool.py -------------------------------------------------------------------------------- /scripts/labels/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/exception.py -------------------------------------------------------------------------------- /scripts/labels/http_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/http_.py -------------------------------------------------------------------------------- /scripts/labels/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/output.py -------------------------------------------------------------------------------- /scripts/labels/projects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/projects/__init__.py -------------------------------------------------------------------------------- /scripts/labels/projects/llvm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/projects/llvm/__init__.py -------------------------------------------------------------------------------- /scripts/labels/projects/llvm/clang_diagnostic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/projects/llvm/clang_diagnostic.py -------------------------------------------------------------------------------- /scripts/labels/projects/llvm/releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/projects/llvm/releases.py -------------------------------------------------------------------------------- /scripts/labels/projects/markdownlint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/projects/markdownlint.py -------------------------------------------------------------------------------- /scripts/labels/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/requirements.txt -------------------------------------------------------------------------------- /scripts/labels/severity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/severity/__init__.py -------------------------------------------------------------------------------- /scripts/labels/severity/generate_tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/severity/generate_tool/__init__.py -------------------------------------------------------------------------------- /scripts/labels/severity/generate_tool/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/severity/generate_tool/__main__.py -------------------------------------------------------------------------------- /scripts/labels/severity/generate_tool/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/severity/generate_tool/tool.py -------------------------------------------------------------------------------- /scripts/labels/severity/generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/severity/generators/__init__.py -------------------------------------------------------------------------------- /scripts/labels/severity/generators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/severity/generators/base.py -------------------------------------------------------------------------------- /scripts/labels/severity/generators/cppcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/severity/generators/cppcheck.py -------------------------------------------------------------------------------- /scripts/labels/severity/generators/markdownlint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/severity/generators/markdownlint.py -------------------------------------------------------------------------------- /scripts/labels/severity/generators/pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/severity/generators/pylint.py -------------------------------------------------------------------------------- /scripts/labels/severity/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/severity/output.py -------------------------------------------------------------------------------- /scripts/labels/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/transformer.py -------------------------------------------------------------------------------- /scripts/labels/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/labels/util.py -------------------------------------------------------------------------------- /scripts/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/resources/__init__.py -------------------------------------------------------------------------------- /scripts/resources/command_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/resources/command_template.py -------------------------------------------------------------------------------- /scripts/resources/entrypoint_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/resources/entrypoint_template.py -------------------------------------------------------------------------------- /scripts/result_listing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/result_listing/__init__.py -------------------------------------------------------------------------------- /scripts/result_listing/compare_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/result_listing/compare_results.py -------------------------------------------------------------------------------- /scripts/result_listing/query_all_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/result_listing/query_all_reports.py -------------------------------------------------------------------------------- /scripts/send_log_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/send_log_config.py -------------------------------------------------------------------------------- /scripts/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/test/__init__.py -------------------------------------------------------------------------------- /scripts/test/add_new_func_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/test/add_new_func_test.py -------------------------------------------------------------------------------- /scripts/test/add_new_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/test/add_new_unit_test.py -------------------------------------------------------------------------------- /scripts/test/check_clang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/test/check_clang.py -------------------------------------------------------------------------------- /scripts/test/func_template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/test/func_template/__init__.py -------------------------------------------------------------------------------- /scripts/test/func_template/template__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/test/func_template/template__init__.py -------------------------------------------------------------------------------- /scripts/test/func_template/template_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/test/func_template/template_test.py -------------------------------------------------------------------------------- /scripts/test/run_server_performance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/test/run_server_performance_test.py -------------------------------------------------------------------------------- /scripts/thrift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/thrift/README.md -------------------------------------------------------------------------------- /scripts/thrift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/thrift/__init__.py -------------------------------------------------------------------------------- /scripts/thrift/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/scripts/thrift/client.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/setup.py -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /tests/functional/binary_package/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tests/functional/binary_package/__init__.py -------------------------------------------------------------------------------- /tools/bazel/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | *.egg-info 4 | -------------------------------------------------------------------------------- /tools/bazel/.pypirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/.pypirc -------------------------------------------------------------------------------- /tools/bazel/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/LICENSE.txt -------------------------------------------------------------------------------- /tools/bazel/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/MANIFEST.in -------------------------------------------------------------------------------- /tools/bazel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/Makefile -------------------------------------------------------------------------------- /tools/bazel/bazel_compile_commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/bazel_compile_commands/__init__.py -------------------------------------------------------------------------------- /tools/bazel/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/pytest.ini -------------------------------------------------------------------------------- /tools/bazel/requirements_py/dev/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/requirements_py/dev/requirements.txt -------------------------------------------------------------------------------- /tools/bazel/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/setup.py -------------------------------------------------------------------------------- /tools/bazel/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/tests/Makefile -------------------------------------------------------------------------------- /tools/bazel/tests/projects/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/tests/projects/BUILD -------------------------------------------------------------------------------- /tools/bazel/tests/projects/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/bazel/tests/projects/inc/inc.h: -------------------------------------------------------------------------------- 1 | #define THING 0 2 | -------------------------------------------------------------------------------- /tools/bazel/tests/projects/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/tests/projects/main.cc -------------------------------------------------------------------------------- /tools/bazel/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/tests/unit/__init__.py -------------------------------------------------------------------------------- /tools/bazel/tests/unit/test_compile_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/bazel/tests/unit/test_compile_commands.py -------------------------------------------------------------------------------- /tools/report-converter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/.gitignore -------------------------------------------------------------------------------- /tools/report-converter/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/.pylintrc -------------------------------------------------------------------------------- /tools/report-converter/.pypirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/.pypirc -------------------------------------------------------------------------------- /tools/report-converter/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/LICENSE.txt -------------------------------------------------------------------------------- /tools/report-converter/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/MANIFEST.in -------------------------------------------------------------------------------- /tools/report-converter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/Makefile -------------------------------------------------------------------------------- /tools/report-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/README.md -------------------------------------------------------------------------------- /tools/report-converter/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/pytest.ini -------------------------------------------------------------------------------- /tools/report-converter/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/setup.py -------------------------------------------------------------------------------- /tools/report-converter/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/tests/Makefile -------------------------------------------------------------------------------- /tools/report-converter/tests/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/tests/functional/__init__.py -------------------------------------------------------------------------------- /tools/report-converter/tests/libtest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/tests/libtest/__init__.py -------------------------------------------------------------------------------- /tools/report-converter/tests/libtest/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/tests/libtest/env.py -------------------------------------------------------------------------------- /tools/report-converter/tests/projects/inclusion/a.cpp: -------------------------------------------------------------------------------- 1 | #include "f.h" 2 | 3 | int a() { 4 | foo(); 5 | } 6 | -------------------------------------------------------------------------------- /tools/report-converter/tests/projects/inclusion/b.cpp: -------------------------------------------------------------------------------- 1 | #include "f.h" 2 | 3 | int b() { 4 | return foo(); 5 | } 6 | -------------------------------------------------------------------------------- /tools/report-converter/tests/projects/inclusion/f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/tests/projects/inclusion/f.h -------------------------------------------------------------------------------- /tools/report-converter/tests/projects/notes/notes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/tests/projects/notes/notes.cpp -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/tests/unit/__init__.py -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/analyzers/eslint_output_test_files/files/index.js: -------------------------------------------------------------------------------- 1 | function foo() { 2 | return 1; 3 | x = 10; 4 | } 5 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/analyzers/kerneldoc_output_test_files/sample.out: -------------------------------------------------------------------------------- 1 | ./files/sample.c:1: warning: no structured comments found 2 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/analyzers/roslynator_output_test_files/files/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/analyzers/sphinx_output_test_files/sample.out: -------------------------------------------------------------------------------- 1 | /files/sample.rst:2: WARNING: Title underline too short. 2 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/analyzers/tidy_output_test_files/empty1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/analyzers/tidy_yaml_output_test_files/empty1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/analyzers/ubsan_output_test_files/empty1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/output/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/tests/unit/output/__init__.py -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/output/gerrit/test_files/main.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | sizeof(42); 4 | } 5 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/tests/unit/parser/__init__.py -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/parser/plist/plist_test_files/empty_file.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/parser/plist/plist_test_files/gen_plist/noerror.cpp: -------------------------------------------------------------------------------- 1 | int main(){ 2 | return 0; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/parser/sarif/sarif_test_files/1-Introduction/simple-example.js: -------------------------------------------------------------------------------- 1 | var x = 42 2 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/parser/sarif/sarif_test_files/TextFile.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/parser/sarif/sarif_test_files/code/example.cs: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/parser/sarif/sarif_test_files/collections/example.cs: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/parser/sarif/sarif_test_files/collections/list.h: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/parser/sarif/sarif_test_files/default.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/parser/sarif/sarif_test_files/explicit.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/parser/sarif/sarif_test_files/test.json: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/tests/unit/util/__init__.py -------------------------------------------------------------------------------- /tools/report-converter/tests/unit/util/newline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/report-converter/tests/unit/util/newline -------------------------------------------------------------------------------- /tools/tu_collector/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | tu_collector.egg-info 4 | -------------------------------------------------------------------------------- /tools/tu_collector/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/.pylintrc -------------------------------------------------------------------------------- /tools/tu_collector/.pypirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/.pypirc -------------------------------------------------------------------------------- /tools/tu_collector/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/LICENSE.txt -------------------------------------------------------------------------------- /tools/tu_collector/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/MANIFEST.in -------------------------------------------------------------------------------- /tools/tu_collector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/Makefile -------------------------------------------------------------------------------- /tools/tu_collector/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/pytest.ini -------------------------------------------------------------------------------- /tools/tu_collector/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/setup.py -------------------------------------------------------------------------------- /tools/tu_collector/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/tests/Makefile -------------------------------------------------------------------------------- /tools/tu_collector/tests/projects/ctu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/tests/projects/ctu.cpp -------------------------------------------------------------------------------- /tools/tu_collector/tests/projects/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/tests/projects/hello.c -------------------------------------------------------------------------------- /tools/tu_collector/tests/projects/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/tests/projects/main.c -------------------------------------------------------------------------------- /tools/tu_collector/tests/projects/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/tests/projects/main.cpp -------------------------------------------------------------------------------- /tools/tu_collector/tests/projects/zero.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | int zero() { return 0; } 3 | -------------------------------------------------------------------------------- /tools/tu_collector/tests/projects/zero.h: -------------------------------------------------------------------------------- 1 | int zero(); 2 | -------------------------------------------------------------------------------- /tools/tu_collector/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/tests/unit/__init__.py -------------------------------------------------------------------------------- /tools/tu_collector/tests/unit/tu_collector_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/tests/unit/tu_collector_test.py -------------------------------------------------------------------------------- /tools/tu_collector/tu_collector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/tu_collector/__init__.py -------------------------------------------------------------------------------- /tools/tu_collector/tu_collector/tu_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/tools/tu_collector/tu_collector/tu_collector.py -------------------------------------------------------------------------------- /web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/Makefile -------------------------------------------------------------------------------- /web/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/Makefile -------------------------------------------------------------------------------- /web/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/README.md -------------------------------------------------------------------------------- /web/api/authentication.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/authentication.thrift -------------------------------------------------------------------------------- /web/api/change-api-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/change-api-version.sh -------------------------------------------------------------------------------- /web/api/codechecker_api_shared.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/codechecker_api_shared.thrift -------------------------------------------------------------------------------- /web/api/configuration.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/configuration.thrift -------------------------------------------------------------------------------- /web/api/js/codechecker-api-node/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | -------------------------------------------------------------------------------- /web/api/js/codechecker-api-node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/js/codechecker-api-node/LICENSE -------------------------------------------------------------------------------- /web/api/js/codechecker-api-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/js/codechecker-api-node/README.md -------------------------------------------------------------------------------- /web/api/js/codechecker-api-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/js/codechecker-api-node/package.json -------------------------------------------------------------------------------- /web/api/products.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/products.thrift -------------------------------------------------------------------------------- /web/api/py/codechecker_api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/py/codechecker_api/.gitignore -------------------------------------------------------------------------------- /web/api/py/codechecker_api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/py/codechecker_api/LICENSE -------------------------------------------------------------------------------- /web/api/py/codechecker_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/py/codechecker_api/README.md -------------------------------------------------------------------------------- /web/api/py/codechecker_api/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/py/codechecker_api/setup.py -------------------------------------------------------------------------------- /web/api/py/codechecker_api_shared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/py/codechecker_api_shared/.gitignore -------------------------------------------------------------------------------- /web/api/py/codechecker_api_shared/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/py/codechecker_api_shared/LICENSE -------------------------------------------------------------------------------- /web/api/py/codechecker_api_shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/py/codechecker_api_shared/README.md -------------------------------------------------------------------------------- /web/api/py/codechecker_api_shared/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/py/codechecker_api_shared/setup.py -------------------------------------------------------------------------------- /web/api/report_server.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/report_server.thrift -------------------------------------------------------------------------------- /web/api/server_info.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/server_info.thrift -------------------------------------------------------------------------------- /web/api/tasks.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/api/tasks.thrift -------------------------------------------------------------------------------- /web/client/codechecker_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/__init__.py -------------------------------------------------------------------------------- /web/client/codechecker_client/blame_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/blame_info.py -------------------------------------------------------------------------------- /web/client/codechecker_client/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/cli/__init__.py -------------------------------------------------------------------------------- /web/client/codechecker_client/cli/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/cli/cmd.py -------------------------------------------------------------------------------- /web/client/codechecker_client/cli/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/cli/store.py -------------------------------------------------------------------------------- /web/client/codechecker_client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/client.py -------------------------------------------------------------------------------- /web/client/codechecker_client/cmd_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/cmd_line.py -------------------------------------------------------------------------------- /web/client/codechecker_client/cmd_line_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/cmd_line_client.py -------------------------------------------------------------------------------- /web/client/codechecker_client/credential_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/credential_manager.py -------------------------------------------------------------------------------- /web/client/codechecker_client/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/helpers/__init__.py -------------------------------------------------------------------------------- /web/client/codechecker_client/helpers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/helpers/base.py -------------------------------------------------------------------------------- /web/client/codechecker_client/helpers/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/helpers/product.py -------------------------------------------------------------------------------- /web/client/codechecker_client/helpers/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/helpers/results.py -------------------------------------------------------------------------------- /web/client/codechecker_client/helpers/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/helpers/tasks.py -------------------------------------------------------------------------------- /web/client/codechecker_client/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/metadata.py -------------------------------------------------------------------------------- /web/client/codechecker_client/permission_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/permission_client.py -------------------------------------------------------------------------------- /web/client/codechecker_client/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/product.py -------------------------------------------------------------------------------- /web/client/codechecker_client/product_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/product_client.py -------------------------------------------------------------------------------- /web/client/codechecker_client/task_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/task_client.py -------------------------------------------------------------------------------- /web/client/codechecker_client/thrift_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/thrift_call.py -------------------------------------------------------------------------------- /web/client/codechecker_client/token_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/codechecker_client/token_client.py -------------------------------------------------------------------------------- /web/client/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/tests/Makefile -------------------------------------------------------------------------------- /web/client/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/tests/unit/__init__.py -------------------------------------------------------------------------------- /web/client/tests/unit/test_report_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/client/tests/unit/test_report_converter.py -------------------------------------------------------------------------------- /web/codechecker_web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/__init__.py -------------------------------------------------------------------------------- /web/codechecker_web/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/cli/__init__.py -------------------------------------------------------------------------------- /web/codechecker_web/cli/web_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/cli/web_version.py -------------------------------------------------------------------------------- /web/codechecker_web/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/server/__init__.py -------------------------------------------------------------------------------- /web/codechecker_web/server/oauth_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/server/oauth_templates.py -------------------------------------------------------------------------------- /web/codechecker_web/shared/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/shared/__init__.py -------------------------------------------------------------------------------- /web/codechecker_web/shared/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/shared/convert.py -------------------------------------------------------------------------------- /web/codechecker_web/shared/database_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/shared/database_status.py -------------------------------------------------------------------------------- /web/codechecker_web/shared/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/shared/env.py -------------------------------------------------------------------------------- /web/codechecker_web/shared/host_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/shared/host_check.py -------------------------------------------------------------------------------- /web/codechecker_web/shared/pgpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/shared/pgpass.py -------------------------------------------------------------------------------- /web/codechecker_web/shared/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/shared/version.py -------------------------------------------------------------------------------- /web/codechecker_web/shared/webserver_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/codechecker_web/shared/webserver_context.py -------------------------------------------------------------------------------- /web/config/git_commit_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/config/git_commit_urls.json -------------------------------------------------------------------------------- /web/config/session_client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/config/session_client.json -------------------------------------------------------------------------------- /web/config/system_comment_kinds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/config/system_comment_kinds.json -------------------------------------------------------------------------------- /web/config/web_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/config/web_version.json -------------------------------------------------------------------------------- /web/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/docker/Dockerfile -------------------------------------------------------------------------------- /web/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/docker/entrypoint.sh -------------------------------------------------------------------------------- /web/docker/hooks/after_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/docker/hooks/after_build.sh -------------------------------------------------------------------------------- /web/docker/hooks/before_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/docker/hooks/before_build.sh -------------------------------------------------------------------------------- /web/docker/services/config/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/docker/services/config/nginx/nginx.conf -------------------------------------------------------------------------------- /web/docker/services/docker-compose.psql.auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/docker/services/docker-compose.psql.auth.yml -------------------------------------------------------------------------------- /web/docker/services/docker-compose.psql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/docker/services/docker-compose.psql.yml -------------------------------------------------------------------------------- /web/docker/services/docker-compose.sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/docker/services/docker-compose.sqlite.yml -------------------------------------------------------------------------------- /web/docker/services/docker-compose.swarm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/docker/services/docker-compose.swarm.yml -------------------------------------------------------------------------------- /web/docker/services/secrets/pgpass: -------------------------------------------------------------------------------- 1 | *:5432:*:*:@S3cr3t -------------------------------------------------------------------------------- /web/docker/services/secrets/postgres-passwd: -------------------------------------------------------------------------------- 1 | @S3cr3t -------------------------------------------------------------------------------- /web/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/pytest.ini -------------------------------------------------------------------------------- /web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/requirements.txt -------------------------------------------------------------------------------- /web/requirements_py/auth/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/requirements_py/auth/requirements.txt -------------------------------------------------------------------------------- /web/requirements_py/db_pg8000/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/requirements_py/db_pg8000/requirements.txt -------------------------------------------------------------------------------- /web/requirements_py/db_psycopg2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/requirements_py/db_psycopg2/requirements.txt -------------------------------------------------------------------------------- /web/requirements_py/dev/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/requirements_py/dev/requirements.txt -------------------------------------------------------------------------------- /web/requirements_py/osx/requirements.txt: -------------------------------------------------------------------------------- 1 | -r ../../requirements.txt 2 | -------------------------------------------------------------------------------- /web/server/codechecker_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/__init__.py -------------------------------------------------------------------------------- /web/server/codechecker_server/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/api/__init__.py -------------------------------------------------------------------------------- /web/server/codechecker_server/api/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/api/authentication.py -------------------------------------------------------------------------------- /web/server/codechecker_server/api/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/api/common.py -------------------------------------------------------------------------------- /web/server/codechecker_server/api/config_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/api/config_handler.py -------------------------------------------------------------------------------- /web/server/codechecker_server/api/mass_store_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/api/mass_store_run.py -------------------------------------------------------------------------------- /web/server/codechecker_server/api/product_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/api/product_server.py -------------------------------------------------------------------------------- /web/server/codechecker_server/api/report_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/api/report_server.py -------------------------------------------------------------------------------- /web/server/codechecker_server/api/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/api/tasks.py -------------------------------------------------------------------------------- /web/server/codechecker_server/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/auth/__init__.py -------------------------------------------------------------------------------- /web/server/codechecker_server/auth/cc_ldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/auth/cc_ldap.py -------------------------------------------------------------------------------- /web/server/codechecker_server/auth/cc_pam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/auth/cc_pam.py -------------------------------------------------------------------------------- /web/server/codechecker_server/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/cli/__init__.py -------------------------------------------------------------------------------- /web/server/codechecker_server/cli/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/cli/server.py -------------------------------------------------------------------------------- /web/server/codechecker_server/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/database/__init__.py -------------------------------------------------------------------------------- /web/server/codechecker_server/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/database/database.py -------------------------------------------------------------------------------- /web/server/codechecker_server/database/db_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/database/db_cleanup.py -------------------------------------------------------------------------------- /web/server/codechecker_server/instance_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/instance_manager.py -------------------------------------------------------------------------------- /web/server/codechecker_server/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/metadata.py -------------------------------------------------------------------------------- /web/server/codechecker_server/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/migrations/__init__.py -------------------------------------------------------------------------------- /web/server/codechecker_server/migrations/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/migrations/logging.py -------------------------------------------------------------------------------- /web/server/codechecker_server/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/permissions.py -------------------------------------------------------------------------------- /web/server/codechecker_server/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/product.py -------------------------------------------------------------------------------- /web/server/codechecker_server/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/profiler.py -------------------------------------------------------------------------------- /web/server/codechecker_server/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/routing.py -------------------------------------------------------------------------------- /web/server/codechecker_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/server.py -------------------------------------------------------------------------------- /web/server/codechecker_server/session_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/session_manager.py -------------------------------------------------------------------------------- /web/server/codechecker_server/task_executors/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/codechecker_server/task_executors/main.py -------------------------------------------------------------------------------- /web/server/config/server_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/config/server_config.json -------------------------------------------------------------------------------- /web/server/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/Makefile -------------------------------------------------------------------------------- /web/server/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/__init__.py -------------------------------------------------------------------------------- /web/server/tests/unit/metadata_test_files/v1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/metadata_test_files/v1.5.json -------------------------------------------------------------------------------- /web/server/tests/unit/metadata_test_files/v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/metadata_test_files/v1.json -------------------------------------------------------------------------------- /web/server/tests/unit/metadata_test_files/v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/metadata_test_files/v2.json -------------------------------------------------------------------------------- /web/server/tests/unit/test_ccldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/test_ccldap.py -------------------------------------------------------------------------------- /web/server/tests/unit/test_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/test_credentials.py -------------------------------------------------------------------------------- /web/server/tests/unit/test_git_commit_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/test_git_commit_url.py -------------------------------------------------------------------------------- /web/server/tests/unit/test_metadata_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/test_metadata_merge.py -------------------------------------------------------------------------------- /web/server/tests/unit/test_metadata_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/test_metadata_parser.py -------------------------------------------------------------------------------- /web/server/tests/unit/test_request_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/test_request_routing.py -------------------------------------------------------------------------------- /web/server/tests/unit/test_slugify_file_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/test_slugify_file_name.py -------------------------------------------------------------------------------- /web/server/tests/unit/test_url_understanding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/test_url_understanding.py -------------------------------------------------------------------------------- /web/server/tests/unit/unit_test.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/tests/unit/unit_test.template -------------------------------------------------------------------------------- /web/server/vue-cli/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/.babelrc -------------------------------------------------------------------------------- /web/server/vue-cli/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /web/server/vue-cli/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/.eslintrc.js -------------------------------------------------------------------------------- /web/server/vue-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/.gitignore -------------------------------------------------------------------------------- /web/server/vue-cli/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true 2 | -------------------------------------------------------------------------------- /web/server/vue-cli/config/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/config/helpers.js -------------------------------------------------------------------------------- /web/server/vue-cli/config/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/config/webpack.common.js -------------------------------------------------------------------------------- /web/server/vue-cli/config/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/config/webpack.dev.js -------------------------------------------------------------------------------- /web/server/vue-cli/config/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/config/webpack.prod.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/commands/clearAndSetValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/commands/clearAndSetValue.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/commands/getTableRows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/commands/getTableRows.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/commands/setCheckboxValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/commands/setCheckboxValue.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/init.db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/init.db.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/init.reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/init.reports.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/init.workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/init.workspace.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/pages/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/pages/header.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/pages/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/pages/login.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/pages/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/pages/product.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/pages/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/pages/report.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/pages/reportDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/pages/reportDetail.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/pages/reviewStatusRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/pages/reviewStatusRule.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/pages/runs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/pages/runs.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/specs/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/specs/login.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/specs/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/specs/products.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/specs/reportDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/specs/reportDetail.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/specs/reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/specs/reports.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/specs/reviewStatusRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/specs/reviewStatusRule.js -------------------------------------------------------------------------------- /web/server/vue-cli/e2e/specs/runs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/e2e/specs/runs.js -------------------------------------------------------------------------------- /web/server/vue-cli/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/jsconfig.json -------------------------------------------------------------------------------- /web/server/vue-cli/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/nightwatch.conf.js -------------------------------------------------------------------------------- /web/server/vue-cli/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/package-lock.json -------------------------------------------------------------------------------- /web/server/vue-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/package.json -------------------------------------------------------------------------------- /web/server/vue-cli/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/App.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/assets/ericsson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/assets/ericsson.png -------------------------------------------------------------------------------- /web/server/vue-cli/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/assets/favicon.ico -------------------------------------------------------------------------------- /web/server/vue-cli/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/assets/logo.png -------------------------------------------------------------------------------- /web/server/vue-cli/src/assets/userguide/userguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/assets/userguide/userguide.md -------------------------------------------------------------------------------- /web/server/vue-cli/src/browsersupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/browsersupport.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Alerts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Alerts.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/BulbMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/BulbMessage.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/ConfirmDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/ConfirmDialog.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/CopyBtn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/CopyBtn.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/CountChips.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/CountChips.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/DateTimePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/DateTimePicker.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Errors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Errors.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Icons/UserIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Icons/UserIcon.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Icons/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Layout/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Product/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Report/Report.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Report/Report.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Report/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Report/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Run/ExpandedRun.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Run/ExpandedRun.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Run/VersionTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Run/VersionTag.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Run/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Run/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/Statistics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/Statistics/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/TooltipHelpIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/TooltipHelpIcon.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/components/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/directives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/directives/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/filters/from-unix-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/filters/from-unix-time.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/filters/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/filters/prettify-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/filters/prettify-date.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/filters/truncate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/filters/truncate.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/index.html -------------------------------------------------------------------------------- /web/server/vue-cli/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/main.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/mixins/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/mixins/api/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/mixins/date.mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/mixins/date.mixin.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/mixins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/mixins/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/mixins/report-status.mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/mixins/report-status.mixin.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/mixins/review-status.mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/mixins/review-status.mixin.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/mixins/severity.mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/mixins/severity.mixin.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/mixins/str-to-color.mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/mixins/str-to-color.mixin.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/mixins/to-csv.mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/mixins/to-csv.mixin.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/mixins/version.mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/mixins/version.mixin.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/plugins/vuetify.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/router/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/services/api/_base.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/services/api/_base.service.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/services/api/auth.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/services/api/auth.service.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/services/api/cc.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/services/api/cc.service.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/services/api/config.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/services/api/config.service.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/services/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/services/api/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/static.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/actions.type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/actions.type.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/index.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/modules/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/modules/auth.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/modules/base-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/modules/base-filter.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/modules/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/modules/config.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/modules/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/modules/error.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/modules/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/modules/product.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/modules/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/modules/report.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/modules/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/modules/run.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/modules/server-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/modules/server-info.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/modules/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/modules/statistics.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/modules/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/modules/url.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/store/mutations.type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/store/mutations.type.js -------------------------------------------------------------------------------- /web/server/vue-cli/src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/variables.scss -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/CleanupPlan.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/CleanupPlan.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/Login.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/NewFeatures.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/NewFeatures.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/NotFound.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/OAuthLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/OAuthLogin.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/ProductDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/ProductDetail.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/Products.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/Products.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/ReportDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/ReportDetail.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/Reports.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/Reports.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/ReviewStatusRules.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/ReviewStatusRules.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/RunDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/RunDetail.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/RunList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/RunList.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/SourceComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/SourceComponent.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/Statistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/Statistics.vue -------------------------------------------------------------------------------- /web/server/vue-cli/src/views/Userguide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/server/vue-cli/src/views/Userguide.vue -------------------------------------------------------------------------------- /web/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/Makefile -------------------------------------------------------------------------------- /web/tests/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/authentication/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/authentication/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/authentication/oauth_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/authentication/oauth_server.py -------------------------------------------------------------------------------- /web/tests/functional/blame/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/blame/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/blame/test_blame_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/blame/test_blame_info.py -------------------------------------------------------------------------------- /web/tests/functional/cleanup_plan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/cleanup_plan/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/cli_config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/cli_config/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/cli_config/test_server_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/cli_config/test_server_config.py -------------------------------------------------------------------------------- /web/tests/functional/cli_config/test_store_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/cli_config/test_store_config.py -------------------------------------------------------------------------------- /web/tests/functional/cmdline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/cmdline/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/cmdline/test_cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/cmdline/test_cmdline.py -------------------------------------------------------------------------------- /web/tests/functional/comment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/comment/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/comment/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/comment/test_comment.py -------------------------------------------------------------------------------- /web/tests/functional/component/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/component/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/component/test_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/component/test_component.py -------------------------------------------------------------------------------- /web/tests/functional/cppcheck/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/cppcheck/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/cppcheck/test_cppcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/cppcheck/test_cppcheck.py -------------------------------------------------------------------------------- /web/tests/functional/cppcheck/test_proj/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/cppcheck/test_proj/Makefile -------------------------------------------------------------------------------- /web/tests/functional/cppcheck/test_proj/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/cppcheck/test_proj/lib.h -------------------------------------------------------------------------------- /web/tests/functional/db_cleanup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/db_cleanup/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/db_cleanup/test_db_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/db_cleanup/test_db_cleanup.py -------------------------------------------------------------------------------- /web/tests/functional/delete_runs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/delete_runs/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/delete_runs/test_delete_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/delete_runs/test_delete_runs.py -------------------------------------------------------------------------------- /web/tests/functional/detection_status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/detection_status/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/diff_cmdline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/diff_cmdline/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/diff_local/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/diff_local/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/diff_local/test_diff_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/diff_local/test_diff_local.py -------------------------------------------------------------------------------- /web/tests/functional/diff_local_remote/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/diff_local_remote/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/diff_remote/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/diff_remote/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/dynamic_results/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/dynamic_results/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/export_import/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/export_import/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/instance_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/instance_manager/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/products/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/products/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/products/test_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/products/test_products.py -------------------------------------------------------------------------------- /web/tests/functional/report_viewer_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/report_viewer_api/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/report_viewer_api/test_files/main.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | int i = 1 / 0; 4 | } 5 | -------------------------------------------------------------------------------- /web/tests/functional/report_viewer_api/test_files/main2.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | int i = 1 / 0; 4 | } 5 | -------------------------------------------------------------------------------- /web/tests/functional/review_status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/review_status/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/run_tag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/run_tag/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/run_tag/test_run_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/run_tag/test_run_tag.py -------------------------------------------------------------------------------- /web/tests/functional/skip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/skip/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/skip/test_skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/skip/test_skip.py -------------------------------------------------------------------------------- /web/tests/functional/source_change/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/source_change/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/ssl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/ssl/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/ssl/test_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/ssl/test_ssl.py -------------------------------------------------------------------------------- /web/tests/functional/statistics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/statistics/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/statistics/test_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/statistics/test_statistics.py -------------------------------------------------------------------------------- /web/tests/functional/store/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/store/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/store/test_proj/same_headers/same_headers1.cpp: -------------------------------------------------------------------------------- 1 | #include "lib1/header.h" 2 | 3 | int main() 4 | { 5 | function(); 6 | } 7 | -------------------------------------------------------------------------------- /web/tests/functional/store/test_proj/same_headers/same_headers2.cpp: -------------------------------------------------------------------------------- 1 | #include "lib2/header.h" 2 | 3 | int main() 4 | { 5 | function(); 6 | } 7 | -------------------------------------------------------------------------------- /web/tests/functional/store/test_proj/same_headers/same_headers3.cpp: -------------------------------------------------------------------------------- 1 | #include "lib2/header.h" 2 | 3 | int main() 4 | { 5 | function(); 6 | } 7 | -------------------------------------------------------------------------------- /web/tests/functional/store/test_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/store/test_store.py -------------------------------------------------------------------------------- /web/tests/functional/suppress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/suppress/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/suppress/suppress.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/suppress/suppress.expected -------------------------------------------------------------------------------- /web/tests/functional/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/tasks/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/tasks/test_task_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/tasks/test_task_management.py -------------------------------------------------------------------------------- /web/tests/functional/update/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/update/__init__.py -------------------------------------------------------------------------------- /web/tests/functional/update/test_proj/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/update/test_proj/Makefile -------------------------------------------------------------------------------- /web/tests/functional/update/test_proj/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/update/test_proj/main.cpp -------------------------------------------------------------------------------- /web/tests/functional/update/test_update_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/functional/update/test_update_mode.py -------------------------------------------------------------------------------- /web/tests/libtest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/libtest/__init__.py -------------------------------------------------------------------------------- /web/tests/libtest/codechecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/libtest/codechecker.py -------------------------------------------------------------------------------- /web/tests/libtest/debug_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/libtest/debug_printer.py -------------------------------------------------------------------------------- /web/tests/libtest/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/libtest/env.py -------------------------------------------------------------------------------- /web/tests/libtest/plist_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/libtest/plist_test.py -------------------------------------------------------------------------------- /web/tests/libtest/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/libtest/project.py -------------------------------------------------------------------------------- /web/tests/libtest/result_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/libtest/result_compare.py -------------------------------------------------------------------------------- /web/tests/libtest/thrift_client_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/libtest/thrift_client_to_db.py -------------------------------------------------------------------------------- /web/tests/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/README.md -------------------------------------------------------------------------------- /web/tests/projects/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/Makefile -------------------------------------------------------------------------------- /web/tests/projects/cpp/calculate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/calculate.h -------------------------------------------------------------------------------- /web/tests/projects/cpp/call_and_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/call_and_message.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/divide_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/divide_zero.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/divide_zero_duplicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/divide_zero_duplicate.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/file_to_be_skipped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/file_to_be_skipped.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/has a space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/has a space.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/new_delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/new_delete.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/null_dereference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/null_dereference.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/path_begin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/path_begin.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/path_begin1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/path_begin1.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/path_begin2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/path_begin2.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/path_end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/path_end.h -------------------------------------------------------------------------------- /web/tests/projects/cpp/project_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/project_info.json -------------------------------------------------------------------------------- /web/tests/projects/cpp/same_origin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/same_origin.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/skip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/skip.h -------------------------------------------------------------------------------- /web/tests/projects/cpp/skip_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/skip_header.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/stack_address_escape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/stack_address_escape.cpp -------------------------------------------------------------------------------- /web/tests/projects/cpp/statistical_checkers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/cpp/statistical_checkers.cpp -------------------------------------------------------------------------------- /web/tests/projects/dynamic/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/dynamic/main.c -------------------------------------------------------------------------------- /web/tests/projects/macros/macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/macros/macros.cpp -------------------------------------------------------------------------------- /web/tests/projects/macros/macros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/macros/macros.plist -------------------------------------------------------------------------------- /web/tests/projects/notes/notes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/notes/notes.cpp -------------------------------------------------------------------------------- /web/tests/projects/notes/notes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/notes/notes.plist -------------------------------------------------------------------------------- /web/tests/projects/objc/DeallocUseAfterFreeErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/objc/DeallocUseAfterFreeErrors.m -------------------------------------------------------------------------------- /web/tests/projects/objc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/objc/Makefile -------------------------------------------------------------------------------- /web/tests/projects/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/simple/Makefile -------------------------------------------------------------------------------- /web/tests/projects/simple/main.cpp: -------------------------------------------------------------------------------- 1 | int main() { return 0; } 2 | -------------------------------------------------------------------------------- /web/tests/projects/simple/project_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/simple/project_info.json -------------------------------------------------------------------------------- /web/tests/projects/single_bug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/single_bug/Makefile -------------------------------------------------------------------------------- /web/tests/projects/single_bug/bug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/single_bug/bug.cpp -------------------------------------------------------------------------------- /web/tests/projects/single_bug/project_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/single_bug/project_info.json -------------------------------------------------------------------------------- /web/tests/projects/suppress/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | $(CXX) suppress.cpp 3 | clean: 4 | rm a.out 5 | -------------------------------------------------------------------------------- /web/tests/projects/suppress/project_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/suppress/project_info.json -------------------------------------------------------------------------------- /web/tests/projects/suppress/suppress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/projects/suppress/suppress.cpp -------------------------------------------------------------------------------- /web/tests/ssl_example_cert/.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/ssl_example_cert/.sh -------------------------------------------------------------------------------- /web/tests/ssl_example_cert/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/ssl_example_cert/cert.pem -------------------------------------------------------------------------------- /web/tests/ssl_example_cert/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/ssl_example_cert/key.pem -------------------------------------------------------------------------------- /web/tests/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/tools/__init__.py -------------------------------------------------------------------------------- /web/tests/tools/add_unicode_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ericsson/codechecker/HEAD/web/tests/tools/add_unicode_comment.py --------------------------------------------------------------------------------