| /external/clang/www/analyzer/ |
| D | scan-build.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 5 <title>scan-build: running the analyzer from the command line</title> 13 <!--#include virtual="menu.html.incl"--> 16 <h1>scan-build: running the analyzer from the command line</h1> 18 <table style="margin-top:0px" width="100%" cellpadding="0px" cellspacing="0"> 22 <p><b>scan-build</b> is a command line utility that enables a user to run the 23 static analyzer over their codebase as part of performing a regular build (from 27 <p>During a project build, as source files are compiled they are also analyzed 30 <p>Upon completion of the build, results are then presented to the user within a 33 <h3>Will it work with any build system?</h3> [all …]
|
| D | installation.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 13 <!--#include virtual="menu.html.incl"--> 20 href="/scan-build.html">instructions</a> on using <tt>scan-build</tt> to 25 <p>Semi-regular pre-built binaries of the analyzer are available on Mac 28 <p>Builds are released frequently. Often the differences between build 31 builds, especially if the build you are using is more than a couple 34 <p>The latest build is: 35 <!--#include virtual="latest_checker.html.incl"--> 42 href="http://lists.llvm.org/mailman/listinfo/cfe-dev">Clang 47 <p>To use a package build, simply unpack it anywhere. If the build [all …]
|
| /external/clang/tools/scan-build/ |
| D | CMakeLists.txt | 1 option(CLANG_INSTALL_SCANBUILD "Install the scan-build tool" ON) 7 scan-build.bat) 9 ccc-analyzer.bat 10 c++-analyzer.bat) 13 scan-build) 15 ccc-analyzer 16 c++-analyzer) 19 set-xcode-analyzer) 24 scan-build.1) 34 COMMAND ${CMAKE_COMMAND} -E make_directory [all …]
|
| /external/selinux/scripts/ |
| D | run-scan-build | 2 # Run clang's static analyzer (scan-build) and record its output in output-scan-build/ 4 # Allow overriding binariy names, like clang-12 5 export CC=${CC:-clang} 6 SCAN_BUILD=${SCAN_BUILD:-scan-build} 9 cd "$(dirname -- "$0")" || exit $? 11 OUTPUTDIR="$(pwd)/output-scan-build" 14 set -x -e 17 if [ -z "$DESTDIR" ] ; then 18 DESTDIR="$(mktemp --tmpdir -d scan-build-destdir-XXXXXXXXXX)" 21 # Make sure to use the newly-installed libraries when running tests [all …]
|
| /external/google-cloud-java/java-websecurityscanner/google-cloud-websecurityscanner/src/test/java/com/google/cloud/websecurityscanner/it/v1beta/ |
| D | VPCServiceControlPositiveTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 53 /** Positive Integration Tests for VPC-SC */ 62 "https://www.googleapis.com/auth/cloud-platform"; 108 test0DisplayName = "vpcsctest-" + currentTime + "-0"; in setUp() 109 test1DisplayName = "vpcsctest-" + currentTime + "-1"; in setUp() 118 .build(); in getWssSettingWithCredentials() 122 // If google-credentials is not passed explicitly then google apis uses the authentication in getWssSettingWithDefaultCredentials() 124 return WebSecurityScannerSettings.newBuilder().build(); in getWssSettingWithDefaultCredentials() 145 // 0. Create scan-config in test() 146 // 1. Make sure that created scan-config is present in test() [all …]
|
| /external/clang/tools/scan-build-py/ |
| D | README.md | 1 scan-build chapter 4 A package designed to wrap a build so that all calls to gcc/clang are 6 the clang static analyzer. Includes intercept-build tool, which logs 7 the build, as well as scan-build tool, which logs the build and runs 11 ----------- 15 - It has been tested on FreeBSD, GNU/Linux and OS X. 16 - Prepared to work on windows, but need help to make it. 20 ------------- 26 ---------- 30 $ scan-build <your build command> [all …]
|
| /external/clang/tools/scan-build-py/tests/functional/cases/ |
| D | test_from_cmd.py | 1 # -*- coding: utf-8 -*- 21 ['scan-build', '--intercept-first', '-o', outdir] + args, 39 outdir = self.run_analyzer(tmpdir, ['--keep-empty'], make) 47 return len(glob.glob(os.path.join(directory, 'report-*.plist'))) 53 ['scan-build', '--plist', '-o', tmpdir, '--override-compiler'], 63 ['scan-build', '--plist', '-o', tmpdir, '--intercept-first', 64 '--override-compiler'], 74 ['scan-build', '--plist', '-o', tmpdir, '--intercept-first'], 87 command = ' '.join([compiler, '-c', src_file, '-o', obj_file]) 88 return ['sh', '-c', command] [all …]
|
| /external/webp/infra/ |
| D | run_static_analysis.sh | 32 set -xe 36 readonly WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webp.scanbuild.XXX)"} 45 MODE supported scan modes: (shallow|deep) 47 WORKSPACE directory where the build is done. 52 # Wrap clang-tools scan-build. 54 # OUTPUT_DIR target directory where scan-build report is generated. 55 # MODE scan-build mode 57 # $* scan-build additional args. 59 # scan-build retcode 62 scan-build -o "${OUTPUT_DIR}" --use-analyzer="$(command -v clang)" \ [all …]
|
| /external/libbpf/scripts/ |
| D | coverity.sh | 2 # Taken from: https://scan.coverity.com/scripts/travisci_build_coverity_scan.sh 5 set -e 8 echo -e "\033[33;1mNote: COVERITY_SCAN_PROJECT_NAME and COVERITY_SCAN_TOKEN are available on Projec… 9 [ -z "$COVERITY_SCAN_PROJECT_NAME" ] && echo "ERROR: COVERITY_SCAN_PROJECT_NAME must be set" && exi… 10 [ -z "$COVERITY_SCAN_NOTIFICATION_EMAIL" ] && echo "ERROR: COVERITY_SCAN_NOTIFICATION_EMAIL must be… 11 [ -z "$COVERITY_SCAN_BRANCH_PATTERN" ] && echo "ERROR: COVERITY_SCAN_BRANCH_PATTERN must be set" &&… 12 [ -z "$COVERITY_SCAN_BUILD_COMMAND" ] && echo "ERROR: COVERITY_SCAN_BUILD_COMMAND must be set" && e… 13 [ -z "$COVERITY_SCAN_TOKEN" ] && echo "ERROR: COVERITY_SCAN_TOKEN must be set" && exit 1 18 TOOL_ARCHIVE=/var//tmp/cov-analysis-${PLATFORM}.tgz 19 TOOL_URL=https://scan.coverity.com/download/${PLATFORM} [all …]
|
| /external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/ |
| D | BasicScanTest.java | 97 .addAttribute(String.class, a -> a.name("id") 101 .addAttribute(Integer.class, a -> a.name("sort") 105 .build(); 109 .mapToObj(i -> new Record().setId("id-value").setSort(i)) 114 .mapToObj(i -> { 116 nestedTestRecord.setOuterAttribOne("id-value-" + i); 119 innerAttributeRecord.setAttribOne("attribOne-"+i); 129 .build(); 131 …private DynamoDbTable<Record> mappedTable = enhancedClient.table(getConcreteTableName("table-name"… 133 …stedTestRecord> mappedNestedTable = enhancedClient.table(getConcreteTableName("nested-table-name"), [all …]
|
| D | AsyncBasicScanTest.java | 90 .addAttribute(String.class, a -> a.name("id") 94 .addAttribute(Integer.class, a -> a.name("sort") 98 .build(); 102 .mapToObj(i -> new Record().setId("id-value").setSort(i)) 108 .build(); 110 …<Record> mappedTable = enhancedAsyncClient.table(getConcreteTableName("table-name"), TABLE_SCHEMA); 113 RECORDS.forEach(record -> mappedTable.putItem(r -> r.item(record)).join()); in insertRecords() 118 … mappedTable.createTable(r -> r.provisionedThroughput(getDefaultProvisionedThroughput())).join(); in createTable() 124 … .tableName(getConcreteTableName("table-name")) in deleteTable() 125 .build()).join(); in deleteTable() [all …]
|
| /external/tpm2-tss/.ci/ |
| D | travis.run | 3 set -e 5 # if no DOCKER_TAG is set, warn and default to fedora-30 6 if [ -z "$DOCKER_TAG" ]; then 7 echo "WARN: DOCKER_TAG is not set, defaulting to fedora-30" 8 export DOCKER_TAG="fedora-30" 13 # We want those changes IN the docker image, so use the -v option to mount the 16 # Also, pass in any env variables required for the build via .ci/docker.env file 18 # Execute the build and test procedure by running .ci/docker.run 21 echo "Running non-coverity build" 23 ci_env=$(bash <(curl -s https://codecov.io/env)) [all …]
|
| /external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/document/ |
| D | BasicScanTest.java | 71 private final String tableName = getConcreteTableName("doc-table-name"); 72 private final String nestedTableName = getConcreteTableName("doc-nested-table-name"); 82 .build(); in createTable() 93 .build()); in createTable() 106 .build()); in createTable() 112 .mapToObj(i -> EnhancedDocument.builder() 113 .putString("id", "id-value") 116 .build() 122 .mapToObj(i -> EnhancedDocument.builder() 124 .putString("id", "id-value") [all …]
|
| /external/sdv/vsomeip/third_party/boost/date_time/ |
| D | README.md | 12 ### Build Status 14 Branch | Travis | Appveyor | Coverity Scan | codecov.io | Deps | Docs | Tests | 15 :-------------: | ------ | -------- | ------------- | ---------- | ---- | ---- | ----- | 16 …Build Status](https://travis-ci.org/boostorg/date_time.svg?branch=master)](https://travis-ci.org/b… 17 …Build Status](https://travis-ci.org/boostorg/date_time.svg?branch=develop)](https://travis-ci.org/… 22 | --------- | ------------------------------ | 23 | `build` | build script for link library | 34 * [Ask questions](http://stackoverflow.com/questions/ask?tags=c%2B%2B,boost,boost-date_time): Be su…
|
| /external/libpcap/ |
| D | .ci-coverity-scan-build.sh | 3 set -e 6 …CT_NAME and COVERITY_SCAN_TOKEN are available on Project Settings page on scan.coverity.com\033[0m… 7 [ -z "$COVERITY_SCAN_PROJECT_NAME" ] && echo "ERROR: COVERITY_SCAN_PROJECT_NAME must be set" && exi… 8 #[ -z "$COVERITY_SCAN_NOTIFICATION_EMAIL" ] && echo "ERROR: COVERITY_SCAN_NOTIFICATION_EMAIL must b… 9 [ -z "$COVERITY_SCAN_BUILD_COMMAND" ] && echo "ERROR: COVERITY_SCAN_BUILD_COMMAND must be set" && e… 10 [ -z "$COVERITY_SCAN_TOKEN" ] && echo "ERROR: COVERITY_SCAN_TOKEN must be set" && exit 1 13 TOOL_ARCHIVE=/tmp/cov-analysis-${PLATFORM}.tgz 14 TOOL_URL=https://scan.coverity.com/download/cxx/${PLATFORM} 15 TOOL_BASE=/tmp/coverity-scan-analysis 16 UPLOAD_URL="https://scan.coverity.com/builds" [all …]
|
| /external/tcpdump/ |
| D | .ci-coverity-scan-build.sh | 3 set -e 6 …CT_NAME and COVERITY_SCAN_TOKEN are available on Project Settings page on scan.coverity.com\033[0m… 7 [ -z "$COVERITY_SCAN_PROJECT_NAME" ] && echo "ERROR: COVERITY_SCAN_PROJECT_NAME must be set" && exi… 8 #[ -z "$COVERITY_SCAN_NOTIFICATION_EMAIL" ] && echo "ERROR: COVERITY_SCAN_NOTIFICATION_EMAIL must b… 9 [ -z "$COVERITY_SCAN_BUILD_COMMAND" ] && echo "ERROR: COVERITY_SCAN_BUILD_COMMAND must be set" && e… 10 [ -z "$COVERITY_SCAN_TOKEN" ] && echo "ERROR: COVERITY_SCAN_TOKEN must be set" && exit 1 13 TOOL_ARCHIVE=/tmp/cov-analysis-${PLATFORM}.tgz 14 TOOL_URL=https://scan.coverity.com/download/cxx/${PLATFORM} 15 TOOL_BASE=/tmp/coverity-scan-analysis 16 UPLOAD_URL="https://scan.coverity.com/builds" [all …]
|
| /external/ot-br-posix/tests/scripts/ |
| D | check-scan-build | 30 set -euxo pipefail 34 SCAN_TMPDIR=./scan-tmp 35 (mkdir -p scan-build \ 36 && cd scan-build \ 37 && scan-build cmake -GNinja \ 38 -DBUILD_TESTING=OFF \ 39 -DCMAKE_CXX_COMPILER=clang++ \ 40 -DCMAKE_C_COMPILER=clang \ 41 -DOTBR_DBUS=ON \ 42 -DOTBR_FEATURE_FLAGS=ON \ [all …]
|
| /external/sdv/vsomeip/third_party/boost/mpl/ |
| D | README.md | 1 …/github.com/boostorg), provides a general-purpose, high-level C++ template metaprogramming framewo… 12 ### Build Status 14 Branch | Travis | Appveyor | Coverity Scan | codecov.io | Deps | Docs | Tests | 15 :-------------: | ------ | -------- | ------------- | ---------- | ---- | ---- | ----- | 16 …Build Status](https://travis-ci.org/boostorg/mpl.svg?branch=master)](https://travis-ci.org/boostor… 17 …Build Status](https://travis-ci.org/boostorg/mpl.svg?branch=develop)](https://travis-ci.org/boosto… 22 | ----------- | ------------------------------ | 30 * [Ask questions](http://stackoverflow.com/questions/ask?tags=c%2B%2B,boost,boost-mpl)
|
| /external/sdv/vsomeip/third_party/boost/concept_check/ |
| D | README.md | 11 * Header-only 13 ### Build Status 15 Branch | Travis | Appveyor | Coverity Scan | codecov.io | Deps | Docs | Tests | 16 :-------------: | ------ | -------- | ------------- | ---------- | ---- | ---- | ----- | 17 …Build Status](https://travis-ci.org/boostorg/concept_check.svg?branch=master)](https://travis-ci.o… 18 …Build Status](https://travis-ci.org/boostorg/concept_check.svg?branch=develop)](https://travis-ci.… 23 | ----------- | ------------------------------ | 30 * [Ask questions](http://stackoverflow.com/questions/ask?tags=c%2B%2B,boost,boost-concept_check)
|
| /external/sdv/vsomeip/third_party/boost/pool/ |
| D | README.md | 1 …ithub.com/boostorg), provides an efficient way to handle memory suballocation for fixed-size items. 12 ### Build Status 14 Branch | Travis | Appveyor | Coverity Scan | codecov.io | Deps | Docs | Tests | 15 :-------------: | ------ | -------- | ------------- | ---------- | ---- | ---- | ----- | 16 …Build Status](https://travis-ci.org/boostorg/pool.svg?branch=master)](https://travis-ci.org/boosto… 17 …Build Status](https://travis-ci.org/boostorg/pool.svg?branch=develop)](https://travis-ci.org/boost… 22 | ----------- | ------------------------------ | 30 * [Ask questions](http://stackoverflow.com/questions/ask?tags=c%2B%2B,boost,boost-pool)
|
| /external/sdv/vsomeip/third_party/boost/rational/ |
| D | README.md | 10 * Header-Only 12 ### Build Status 14 Branch | Travis | Appveyor | Coverity Scan | codecov.io | Deps | Docs | Tests | 15 :-------------: | ------ | -------- | ------------- | ---------- | ---- | ---- | ----- | 16 …Build Status](https://travis-ci.org/boostorg/rational.svg?branch=master)](https://travis-ci.org/bo… 17 …Build Status](https://travis-ci.org/boostorg/rational.svg?branch=develop)](https://travis-ci.org/b… 22 | ----------- | ------------------------------ | 28 * [Ask questions](http://stackoverflow.com/questions/ask?tags=c%2B%2B,boost,boost-rational)
|
| /external/sdv/vsomeip/third_party/boost/numeric/interval/ |
| D | README.md | 10 * Header-only 12 ### Build Status 14 Branch | Travis | Appveyor | Coverity Scan | codecov.io | Deps | Docs | Tests | 15 :-------------: | ------ | -------- | ------------- | ---------- | ---- | ---- | ----- | 16 …Build Status](https://travis-ci.org/boostorg/interval.svg?branch=master)](https://travis-ci.org/bo… 17 …Build Status](https://travis-ci.org/boostorg/interval.svg?branch=develop)](https://travis-ci.org/b… 22 | ----------- | ------------------------------ | 30 * [Ask questions](http://stackoverflow.com/questions/ask?tags=c%2B%2B,boost,boost-interval): Be sur…
|
| /external/sdv/vsomeip/third_party/boost/move/ |
| D | README.md | 10 * Header-Only 12 ### Build Status 14 Branch | Travis | Appveyor | Coverity Scan | codecov.io | Deps | Docs | Tests | 15 :-------------: | ------ | -------- | ------------- | ---------- | ---- | ---- | ----- | 16 …Build Status](https://travis-ci.org/boostorg/move.svg?branch=master)](https://travis-ci.org/boosto… 17 …Build Status](https://travis-ci.org/boostorg/move.svg?branch=develop)](https://travis-ci.org/boost… 22 | ----------- | ------------------------------ | 31 * [Ask questions](http://stackoverflow.com/questions/ask?tags=c%2B%2B,boost,boost-move)
|
| /external/mobly-bundled-snippets/src/main/java/com/google/android/mobly/snippet/bundled/ |
| D | BluetoothLeScannerSnippet.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 26 import android.os.Build; 47 @TargetApi(Build.VERSION_CODES.LOLLIPOP_MR1) 68 * Start a BLE scan. 82 * Settings for the scan. E.g. 91 @RpcMinSdk(Build.VERSION_CODES.LOLLIPOP_MR1) 92 @AsyncRpc(description = "Start BLE scan.") 100 "Bluetooth is disabled, cannot start BLE scan."); in bleStartScan() 118 * Stop a BLE scan. 121 * BluetoothLeScannerSnippet#bleStartScan} call that started the scan. [all …]
|
| /external/elfutils/tests/ |
| D | run-debuginfod-artifact-running.sh | 3 # Copyright (C) 2019-2021 Red Hat, Inc. 19 . $srcdir/debuginfod-subr.sh 22 set -x 24 # This variable is essential and ensures no time-race for claiming ports occurs 25 # set base to a unique multiple of 100 not used in any other 'run-debuginfod-*' test 35 gcc -Wl,--build-id -g -o prog ${PWD}/prog.c 36 testrun ${abs_top_builddir}/src/strip -g -f prog.debug ${PWD}/prog 39 -a prog | grep 'Build ID' | cut -d ' ' -f 7` 41 …ATH=$ldpath ${abs_builddir}/../debuginfod/debuginfod $VERBOSE -d $DB -F -p $PORT1 -t0 -g0 -v F > v… 48 # And the initial scan should have been done before moving [all …]
|