/external/python/cpython3/Android/ |
D | android-env.sh | 7 : ${PREFIX:-} # Path in which to find required libraries 10 # Print all messages on stderr so they're visible when running within build-wheel. 20 # When moving to a new version of the NDK, carefully review the following: 22 # * https://developer.android.com/ndk/downloads/revision_history 24 # * https://android.googlesource.com/platform/ndk/+/ndk-rXX-release/docs/BuildSystemMaintainers.md 25 # where XX is the NDK version. Do a diff against the version you're upgrading from, e.g.: 26 # https://android.googlesource.com/platform/ndk/+/ndk-r25-release..ndk-r26-release/docs/BuildSyst… 29 ndk=$ANDROID_HOME/ndk/$ndk_version 30 if ! [ -e $ndk ]; then 31 log "Installing NDK - this may take several minutes" [all …]
|
/external/jemalloc_new/android/ |
D | conf.sh | 3 # files when updating to a new version of jemalloc. 4 # The NDK argument must be a NDK at r20 or newer so that it does not 7 ndk=${1} 8 if [[ "$ndk" == "" ]]; then 10 echo "usage: conf.sh NDK ARCH" 17 echo "usage: conf.sh NDK ARCH" 21 if [[ ! -d ${ndk} ]]; then 22 echo "NDK directory ${ndk} does not exist." 25 toolchain=${ndk}/toolchains/llvm/prebuilt/linux-x86_64 26 if [[ ! -d ${toolchain} ]]; then [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/aidl/vendor/ |
D | p2p_iface.h | 2 * WPA Supplicant - P2P Iface Aidl interface 15 #include <android-base/macros.h> 36 #define P2P_MGMT_DEVICE_PREFIX "p2p-dev-" 59 ::ndk::ScopedAStatus getName(std::string* _aidl_return) override; 60 ::ndk::ScopedAStatus getType(IfaceType* _aidl_return) override; 61 ::ndk::ScopedAStatus addNetwork( 63 ::ndk::ScopedAStatus removeNetwork(int32_t in_id) override; 64 ::ndk::ScopedAStatus getNetwork( 66 ::ndk::ScopedAStatus listNetworks(std::vector<int32_t>* _aidl_return) override; 67 ::ndk::ScopedAStatus registerCallback( [all …]
|
D | p2p_iface.cpp | 2 * WPA Supplicant - P2P Iface Aidl interface 107 * isAnyEtherAddr - match any ether address 122 struct wpa_ssid* wpa_network = wpa_config_add_network(wpa_s->conf); in addGroupClientNetwork() 130 wpa_network->p2p_group = 1; in addGroupClientNetwork() 131 wpa_network->mode = wpas_mode::WPAS_MODE_INFRA; in addGroupClientNetwork() 132 wpa_network->disabled = 2; in addGroupClientNetwork() 135 wpa_network->ssid = (uint8_t *)os_malloc(ssid.size()); in addGroupClientNetwork() 136 if (wpa_network->ssid == NULL) { in addGroupClientNetwork() 137 wpa_config_remove_network(wpa_s->conf, wpa_network->id); in addGroupClientNetwork() 140 memcpy(wpa_network->ssid, ssid.data(), ssid.size()); in addGroupClientNetwork() [all …]
|
/external/google-breakpad/android/ |
D | run-checks.sh | 35 set -o posix 42 . $PROGDIR/common-functions.sh 45 VALID_ABIS="armeabi armeabi-v7a x86 mips" 60 # The following extracts the value if the option is like --name=<value>. 61 optarg=$(expr -- $opt : '^--[^=]*=\(.*\)$') 63 --abi=*) ABI=$optarg;; 64 --adb=*) ADB=$optarg;; 65 --all-tests) ALL_TESTS=true;; 66 --enable-m32) ENABLE_M32=true;; 67 --help|-h|-?) HELP=TRUE;; [all …]
|
/external/mesa3d/.gitlab-ci/container/debian/ |
D | android_build.sh | 5 # .gitlab-ci/image-tags.yml tags: 8 set -e 10 . .gitlab-ci/setup-test-env.sh 12 set -x 20 apt-get install -y --no-remove "${EPHEMERAL[@]}" 22 # Fetch the NDK and extract just the toolchain we want. 23 ndk=$ANDROID_NDK 24 curl -L --retry 4 -f --retry-all-errors --retry-delay 60 \ 25 -o $ndk.zip https://dl.google.com/android/repository/$ndk-linux.zip 26 unzip -d / $ndk.zip "$ndk/source.properties" "$ndk/build/cmake/*" "$ndk/toolchains/llvm/*" [all …]
|
/external/drm_hwcomposer/hwc3/ |
D | ComposerClient.h | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 8 * http://www.apache.org/licenses/LICENSE-2.0 49 ndk::ScopedAStatus createLayer(int64_t display, int32_t buffer_slot_count, 51 ndk::ScopedAStatus createVirtualDisplay(int32_t width, int32_t height, 55 ndk::ScopedAStatus destroyLayer(int64_t display, int64_t layer) override; 56 ndk::ScopedAStatus destroyVirtualDisplay(int64_t display) override; 57 ndk::ScopedAStatus executeCommands( 60 ndk::ScopedAStatus getActiveConfig(int64_t display, int32_t* config) override; 61 ndk::ScopedAStatus getColorModes( 63 ndk::ScopedAStatus getDataspaceSaturationMatrix( [all …]
|
/external/deqp-deps/amber/kokoro/ndk-build/ |
D | build.sh | 4 # Licensed under the Apache License, Version 2.0 (the "License"); 8 # http://www.apache.org/licenses/LICENSE-2.0 16 set -e # fail on error 17 set -x # display commands 22 # Disable git's "detected dubious ownership" error - kokoro checks out the repo with a different 24 git config --global --add safe.directory '*' 26 # NDK Path 27 export ANDROID_NDK="$BUILD_ROOT/android-ndk-r25b" 30 wget -q https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip 31 unzip -q ninja-linux.zip [all …]
|
/external/libultrahdr/.github/workflows/ |
D | cmake_android.yml | 1 name: Build CI - Android 8 runs-on: ${{ matrix.os }} 11 fail-fast: true 13 os: [ubuntu-latest] 14 abi: [armeabi-v7a, arm64-v8a, x86, x86_64] 17 - name: Checkout the repository 20 - name: Set up JDK 17 21 uses: actions/setup-java@v3 23 java-version: '17' 26 - name: Download and Setup the Android NDK [all …]
|
/external/armnn/shim/ |
D | BuildGuideShimSupportLibrary.md | 1 # How to use the Android NDK to build Arm NN 3 - [Introduction](#introduction) 4 - [Prerequisites](#prerequisites) 5 - [Download Arm NN](#download-arm-nn) 6 - [Build Arm Compute Library](#build-arm-compute-library) 7 - [Build Arm NN](#build-arm-nn) 8 - [Build Arm NN Support Library](#build-arm-nn-support-library) 9 - [Build Arm NN Shim](#build-arm-nn-shim) 19 * Android NDK r25 21 * Flatbuffer version 2.0.6 [all …]
|
/external/libese/ready_se/google/keymint/KM200/HAL/ |
D | Android.bp | 3 // Licensed under the Apache License, Version 2.0 (the "License"); 7 // http://www.apache.org/licenses/LICENSE-2.0 22 // Added automatically by a large-scale-change 23 // See: http://go/android-license-faq 28 "SPDX-license-identifier-Apache-2.0", 49 cflags: ["-O0"], 51 "android.hardware.security.keymint-V2-ndk", 52 "android.hardware.security.secureclock-V1-ndk", 53 "android.hardware.security.sharedsecret-V1-ndk", 54 "android.hardware.security.rkp-V3-ndk", [all …]
|
/external/toolchain-utils/binary_search_tool/ndk/ |
D | README.md | 1 # NDK Bisection tool 3 This is an example bisection for an NDK build system. This example specifically 4 bisects the sample NDK Teapot app. All steps (setup and otherwise) for bisection 6 process required to bisect a compiler problem in an arbitrary NDK app build 11 1. Install the NDK (known to work with r12b) 13 1. See here for NDK: https://developer.android.com/ndk/index.html 14 2. Go here for older NDK downloads: https://github.com/android-ndk/ndk/wiki 19 1. Essentially you must go into the NDK source (or where you build system 24 2. If you're using the toolchains that come with the NDK they live at: 27 `<ndk_path>/toolchains/llvm/prebuilt/linux-x86_64/bin/clang` [all …]
|
/external/cronet/stable/third_party/libc++/src/include/__locale_dir/locale_base_api/ |
D | android.h | 1 // -*- C++ -*- 2 //===-----------------------------------------------------------------------===// 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 //===----------------------------------------------------------------------===// 20 #include <android/api-level.h> 25 // If we do not have this header, we are in a platform build rather than an NDK 26 // build, which will always be at least as new as the ToT NDK, in which case we 28 #if __has_include(<android/ndk-version.h>) 29 # include <android/ndk-version.h> 30 // In NDK versions later than 16, locale-aware functions are provided by [all …]
|
/external/cronet/tot/third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/ |
D | android.h | 1 // -*- C++ -*- 2 //===-----------------------------------------------------------------------===// 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 //===----------------------------------------------------------------------===// 20 #include <__cxx03/android/api-level.h> 25 // If we do not have this header, we are in a platform build rather than an NDK 26 // build, which will always be at least as new as the ToT NDK, in which case we 28 #if __has_include(<android/ndk-version.h>) 29 # include <android/ndk-version.h> 30 // In NDK versions later than 16, locale-aware functions are provided by [all …]
|
/external/cronet/stable/third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/ |
D | android.h | 1 // -*- C++ -*- 2 //===-----------------------------------------------------------------------===// 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 //===----------------------------------------------------------------------===// 20 #include <__cxx03/android/api-level.h> 25 // If we do not have this header, we are in a platform build rather than an NDK 26 // build, which will always be at least as new as the ToT NDK, in which case we 28 #if __has_include(<android/ndk-version.h>) 29 # include <android/ndk-version.h> 30 // In NDK versions later than 16, locale-aware functions are provided by [all …]
|
/external/cronet/tot/third_party/libc++/src/include/__locale_dir/locale_base_api/ |
D | android.h | 1 // -*- C++ -*- 2 //===-----------------------------------------------------------------------===// 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 //===----------------------------------------------------------------------===// 20 #include <android/api-level.h> 25 // If we do not have this header, we are in a platform build rather than an NDK 26 // build, which will always be at least as new as the ToT NDK, in which case we 28 #if __has_include(<android/ndk-version.h>) 29 # include <android/ndk-version.h> 30 // In NDK versions later than 16, locale-aware functions are provided by [all …]
|
/external/libcxx/include/support/android/ |
D | locale_bionic.h | 1 // -*- C++ -*- 2 //===------------------- support/android/locale_bionic.h ------------------===// 9 //===----------------------------------------------------------------------===// 29 #include <android/api-level.h> 34 // If we do not have this header, we are in a platform build rather than an NDK 35 // build, which will always be at least as new as the ToT NDK, in which case we 37 #if __has_include(<android/ndk-version.h>) 38 #include <android/ndk-version.h> 39 // In NDK versions later than 16, locale-aware functions are provided by 72 #endif // __has_include(<android/ndk-version.h>)
|
/external/armnn/ |
D | BuildGuideAndroidNDK.md | 1 # How to use the Android NDK to build Arm NN 3 - [Introduction](#introduction) 4 - [Initial Setup](#initial-setup) 5 - [Download the Android NDK and make a standalone toolchain](#download-the-android-ndk-and-make-a-s… 6 - [Install Cmake](#install-cmake) 7 - [Build Flatbuffers](#build-flatbuffers) 8 - [Download Arm NN](#download-arm-nn) 9 - [Get And Build TFLite](#get-and-build-tflite) 10 - [Build Arm Compute Library](#build-arm-compute-library) 11 - [Build Arm NN](#build-arm-nn) [all …]
|
/external/grpc-grpc/examples/android/binder/java/io/grpc/binder/cpp/ |
D | README.md | 1 # gRPC-core BinderTransport example apps 5 1. Install Android SDK and NDK. Only NDK version >= 25 is supported. We tested against SDK Platform… 6 …`7.0`. Use `export OVERRIDE_BAZEL_VERSION=7.1.0` to selected a supported version listed in `bazel/… 7 3. Point environment variables to install locations of SDK and NDK 9 export ANDROID_HOME=$HOME/android-sdk 10 export ANDROID_NDK_HOME=$HOME/android-sdk/ndk/26.2.11394342 15 --extra_toolchains=@androidndk//:all \ 16 --android_platforms=//:android_x86_64,//:android_armv7,//:android_arm64 \ 17 --copt=-Wno-unknown-warning-option \ 22 bazel-bin/examples/android/binder/java/io/grpc/binder/cpp/exampleclient/app.apk` [all …]
|
/external/zstd/.github/workflows/ |
D | android-ndk-build.yml | 1 name: Android NDK Build 7 branches: [ actionsTest, '*ndk*' ] 9 permissions: read-all 13 runs-on: ubuntu-latest 16 - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1 18 - name: Set up JDK 17 19 uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0 21 java-version: '17' 24 - name: Setup Android SDK 25 uses: android-actions/setup-android@9fc6c4e9069bf8d3d10b2204b1fb8f6ef7065407 # v3.2.2 [all …]
|
/external/rust/beto-rust/nearby/presence/ |
D | README.md | 10 hyphen `-` in crate names 15 of [`LDT`](https://luca-giuzzi.unibs.it/corsi/Support/papers-cryptography/1619-2007-NIST-Submission… 16 which can use `xts-aes` as its tweakable block cipher. 25 Higher-level wrapper around the core LDT algorithm that does key derivation and 49 of [`XTS-AES`](https://luca-giuzzi.unibs.it/corsi/Support/papers-cryptography/1619-2007-NIST-Submis… 56 brew install protobuf rapidjson google-benchmark 59 We depend on OpenSSL of version at least 3.0.5 being installed on your machine 62 The in-box version of Clang which comes from XCode developer tools does not have 69 then to override the default version it needs to come before it in $PATH. first 73 $(brew --prefix llvm)/bin [all …]
|
/external/rust/crabbyavif/.github/workflows/ |
D | android-mediacodec.yml | 5 - main 13 group: ${{ github.workflow }}-${{ github.ref }} 14 cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} 17 no-default-features: 19 runs-on: ubuntu-latest 21 fail-fast: false 24 - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 26 - uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7 29 target: aarch64-linux-android 31 - name: Download and Setup the Android NDK [all …]
|
/external/libese/ready_se/google/keymint/KM300/HAL/ |
D | Android.bp | 3 // Licensed under the Apache License, Version 2.0 (the "License"); 7 // http://www.apache.org/licenses/LICENSE-2.0 22 // Added automatically by a large-scale-change 23 // See: http://go/android-license-faq 28 "SPDX-license-identifier-Apache-2.0", 49 cflags: ["-O0"], 51 "android.hardware.security.keymint-V3-ndk", 52 "android.hardware.security.secureclock-V1-ndk", 53 "android.hardware.security.sharedsecret-V1-ndk", 54 "android.hardware.security.rkp-V3-ndk", [all …]
|
/external/google-breakpad/ |
D | README.ANDROID | 9 This release requires NDK release r11c or higher. 18 I.1. Building with ndk-build: 19 ----------------------------- 21 If you're using the ndk-build build system, you can follow 27 This can be done either directly, or using ndk-build's 28 import-module feature. 41 -------------------------------------------------- 46 $GOOGLE_BREAKPAD_PATH/configure --host=arm-linux-androideabi \ 47 --disable-processor \ 48 --disable-tools [all …]
|
/external/rust/crabbyavif/ |
D | Cargo.toml | 2 "sys/aom-sys", 3 "sys/dav1d-sys", 4 "sys/libyuv-sys", 5 "sys/libgav1-sys", 6 "sys/ndk-sys", 10 name = "crabby-avif" 11 version = "0.1.0" 12 edition = "2021" # Rust version 15 crate-type = ["rlib", "cdylib"] 18 libc = { version = "0.2.152", optional = true } [all …]
|