Home
last modified time | relevance | path

Searched full:android (Results 1 – 25 of 612) sorted by relevance

12345678910>>...25

/netbsd-src/external/bsd/wpa/dist/wpa_supplicant/binder/
H A Dsupplicant.cpp17 android::binder::Status Supplicant::CreateInterface( in CreateInterface()
18 const android::os::PersistableBundle &params, in CreateInterface()
19 android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return) in CreateInterface()
21 android::String16 driver, ifname, confname, bridge_ifname; in CreateInterface()
24 if (!params.getString(android::String16("Ifname"), &ifname)) in CreateInterface()
25 return android::binder::Status::fromServiceSpecificError( in CreateInterface()
27 android::String8("Ifname missing in params.")); in CreateInterface()
29 params.getString(android::String16("Driver"), &driver); in CreateInterface()
30 params.getString(android::String16("ConfigFile"), &confname); in CreateInterface()
31 params.getString(android::String16("BridgeIfname"), &bridge_ifname); in CreateInterface()
[all …]
H A Dsupplicant.h36 android::binder::Status CreateInterface(
37 const android::os::PersistableBundle &params,
38 android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return) override;
39 android::binder::Status
41 android::binder::Status GetInterface(
43 android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return) override;
49 std::vector<android::sp<fi::w1::wpa_supplicant::ISupplicantCallbacks>>
H A Dbinder.cpp31 android::IPCThreadState::self()->handlePolledCommands(); in wpas_binder_sock_handler()
44 android::ProcessState::self()->setThreadPoolMaxThreadCount(0); in wpas_binder_init()
45 android::IPCThreadState::self()->disableBackgroundScheduling(true); in wpas_binder_init()
46 android::IPCThreadState::self()->setupPolling(&priv->binder_fd); in wpas_binder_init()
77 android::IPCThreadState::shutdown(); in wpas_binder_deinit()
/netbsd-src/external/bsd/unbound/dist/
H A DREADME-Travis.md3 … and platforms. Compilers include Clang and GCC; while platforms include Android, iOS, Linux, and …
5 Android is tested on armv7a, aarch64, x86 and x86_64. The Android recipes build and install OpenSSL…
67 ## Android builds
69Android builds for the armv7a, aarch64, x86 and x86_64 architectures. The builds are trickier than…
71 ### Android job
77 name: Android armv7a, Linux, Amd64
84 - OPENSSL_HOST=android-arm
87 - ANDROID_PREFIX="$HOME/android$ANDROID_API-$ANDROID_CPU"
88 - ANDROID_SDK_ROOT="$HOME/android-sdk"
89 - ANDROID_NDK_ROOT="$HOME/android-ndk"
[all …]
/netbsd-src/external/bsd/unbound/dist/contrib/android/
H A D15-android.conf1 #### Android...
3 # Heavily hacked 15-android.conf based on OpenSSL's config file of the same name.
4 # This 15-android.conf avoids compiler errors using NDK-r20. This 15-android.conf
5 # requires an environment set (sourced) using setenv-android.sh.
8 "android" => {
16 "android-arm" => {
17 inherit_from => [ "android", asm("armv4_asm") ],
20 "android-arm64" => {
21 inherit_from => [ "android", asm("aarch64_asm") ],
26 "android-x86" => {
[all …]
H A Dsetenv_android.sh4 # Sets the cross compile environment for Android
6 # Based upon OpenSSL's setenv-android.sh by TH, JW, and SM.
8 # Updated by Skycoder42 for current recommendations for Android.
32 # cryptest-android.sh may run this script without sourcing.
34 echo "setenv-android.sh is usually sourced, but not this time."
72 # https://developer.android.com/ndk/guides/abis.html
88 CC="aarch64-linux-android$ANDROID_API-clang"
89 CXX="aarch64-linux-android$ANDROID_API-clang++"
90 LD="aarch64-linux-android-ld"
91 AS="aarch64-linux-android-as"
[all …]
H A Dinstall_ndk.sh19 if ! curl -L -k -s -o "$HOME/android-sdk.zip" https://dl.google.com/android/repository/commandlinet…
26 if ! curl -L -k -s -o "$HOME/android-ndk.zip" https://dl.google.com/android/repository/android-ndk-…
33 if ! unzip -qq "$HOME/android-sdk.zip" -d "$ANDROID_SDK_ROOT";
40 if ! unzip -qq "$HOME/android-ndk.zip" -d "$HOME";
46 if ! mv "$HOME/android-ndk-r20b" "$ANDROID_NDK_ROOT";
48 echo "Failed to move $HOME/android-ndk-r20b to $ANDROID_NDK_ROOT"
52 rm -f "$HOME/android-sdk.zip"
53 rm -f "$HOME/android-ndk.zip"
/netbsd-src/crypto/external/bsd/openssl/dist/
H A DNOTES-ANDROID.md1 Notes for Android platforms
7 Beside basic tools like perl and make you'll need to download the Android
17 Android is a cross-compiled target and you can't rely on `./Configure`
19 target explicitly; there are `android-arm`, `android-arm64`, `android-mips`,
20 `android-mip64`, `android-x86` and `android-x86_64` (`*MIPS` targets are no
31 will look something like `/some/where/android-sdk/ndk/<ver>`, and for a
32 standalone NDK the path will be something like `/some/where/android-ndk-<ver>`.
34 The NDK customarily supports multiple Android API levels, e.g. `android-14`,
35 `android-21`, etc. By default latest API level is chosen. If you need to target
38 to compile for Android 10 arm64 with a side-by-side NDK r20.0.5594570
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/
H A DNOTES.ANDROID2 NOTES FOR ANDROID PLATFORMS
8 Beside basic tools like perl and make you'll need to download the Android
18 Android is a naturally cross-compiled target and you can't use ./config.
20 android-arm, android-arm64, android-mips, android-mip64, android-x86
21 and android-x86_64 (*MIPS targets are no longer supported with NDK R20+).
29 something like /some/where/android-sdk/ndk/<ver>, and for a standalone
30 NDK the path will be something like /some/where/android-ndk-<ver>.
32 The NDK customarily supports multiple Android API levels, e.g. android-14,
33 android-21, etc. By default latest API level is chosen. If you need to
36 to compile for Android 10 arm64 with a side-by-side NDK r20.0.5594570
[all …]
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Dandroid3 # $File: android,v 1.24 2023/02/20 16:51:59 christos Exp $
4 # Various android related magic entries
7 # Dalvik .dex format. http://retrodev.com/android/dexformat.html
18 # Android bootimg format
19 # From https://android.googlesource.com/\
22 0 string ANDROID! Android bootimg
36 # Android Backup archive
39 # URL: https://github.com/android/platform_frameworks_base/blob/\
41 # android/server/BackupManagerService.java#L2367
43 # android-backup-extractor/perl/backupencrypt.pl
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/Configurations/
H A D15-android.conf1 #### Android...
3 # See NOTES-Android.md for details, and don't miss platform-specific
12 arm64 => "aarch64-linux-android",
13 mips => "mipsel-linux-android",
14 mips64 => "mips64el-linux-android",
15 x86 => "i686-linux-android",
16 x86_64 => "x86_64-linux-android",
21 if ($now_printing =~ m|^android|) {
60 $sysroot =~ m|/android-([0-9]+)/arch-(\w+)/?$|;
79 } glob("$ndk/platforms/android-$api");
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/Configurations/
H A D15-android.conf1 #### Android...
3 # See NOTES.ANDROID for details, and don't miss platform-specific
12 arm64 => "aarch64-linux-android",
13 mips => "mipsel-linux-android",
14 mips64 => "mips64el-linux-android",
15 x86 => "i686-linux-android",
16 x86_64 => "x86_64-linux-android",
21 if ($now_printing =~ m|^android|) {
60 $sysroot =~ m|/android-([0-9]+)/arch-(\w+)/?$|;
79 } glob("$ndk/platforms/android-$api");
[all …]
/netbsd-src/sys/external/isc/libsodium/dist/dist-build/
H A DMakefile.am3 android-build.sh \
4 android-arm.sh \
5 android-armv7-a.sh \
6 android-armv8-a.sh \
7 android-mips32.sh \
8 android-mips64.sh \
9 android-x86.sh \
10 android-x86_64.sh \
H A Dandroid-build.sh4 export NDK_PLATFORM="android-16"
7 export NDK_API_VERSION=$(echo "$NDK_PLATFORM" | sed 's/^android-//')
8 export NDK_API_VERSION_COMPAT=$(echo "$NDK_PLATFORM_COMPAT" | sed 's/^android-//')
12 echo "the Android NDK"
22 echo "You shouldn't use android-build.sh directly, use android-[arch].sh instead" >&2
28 export PREFIX="$(pwd)/libsodium-android-${TARGET_ARCH}"
29 export TOOLCHAIN_DIR="$(pwd)/android-toolchain-${TARGET_ARCH}"
H A Dandroid-mips64.sh4 CC="mips64el-linux-android-gcc" NDK_PLATFORM=android-21 ARCH=mips64 HOST_COMPILER=mips64el-linux-an…
/netbsd-src/external/apache2/llvm/dist/llvm/cmake/platforms/
H A DAndroid.cmake1 # Toolchain config for Android NDK.
2 # This is expected to be used with a standalone Android toolchain (see
8 # mkdir android; cd android
9 # cmake -DLLVM_ANDROID_TOOLCHAIN_DIR=/path/to/android/ndk \
10 # -DCMAKE_TOOLCHAIN_FILE=../../cmake/platforms/Android.cmake ../..
23 SET(ANDROID "1" CACHE STRING "ANDROID" FORCE) variable
/netbsd-src/external/apache2/llvm/dist/clang/cmake/caches/
H A DAndroid-stage2.cmake3 set(CLANG_VENDOR Android CACHE STRING "")
14 set(LLVM_BUILTIN_TARGETS "i686-linux-android;x86_64-linux-android;aarch64-linux-android;armv7-linux…
27 set(LLVM_RUNTIME_TARGETS "i686-linux-android;x86_64-linux-android;aarch64-linux-android;armv7-linux…
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DShadowCallStack.rst20 an `implementation of the runtime`_ has been added to Android's libc
26 .. _`implementation of the runtime`: https://android.googlesource.com/platform/bionic/+/808d176e7e0…
64 whose ABI reserves ``x18`` (currently Android, Darwin, Fuchsia and Windows)
68 (`example in Android`_) but this should be done with care since it risks
71 .. _`example in Android`: https://android-review.googlesource.com/c/platform/frameworks/base/+/8037…
113 The intent is that the Android runtime `will do this`_, but the platform will
118 .. _`will do this`: https://android-review.googlesource.com/c/platform/bionic/+/891622
119 .. _`changed`: https://android-review.googlesource.com/c/platform/frameworks/av/+/837745
128 runtime, which is the case on Android for example, the address must be stored
129 somewhere else instead. On Android we store the address of the start of the
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/
H A Dlinux-android.opt1 ; Android specific options.
22 Target Mask(ANDROID) Var(flag_android) Init(ANDROID_DEFAULT ? OPTION_MASK_ANDROID : 0)
23 Generate code for the Android platform.
25 tno-android-cc
28 tno-android-ld
H A Dlinux-android.h1 /* Configuration file for Linux Android targets.
31 builtin_version ("Android"); \
35 # define NOANDROID "mno-android"
41 "%{" NOANDROID "|tno-android-cc:" LINUX_SPEC ";:" ANDROID_SPEC "}"
44 "%{" NOANDROID "|tno-android-ld:" LINUX_SPEC ";:" ANDROID_SPEC "}"
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/
H A Dlinux-android.opt1 ; Android specific options.
22 Target Report Mask(ANDROID) Var(flag_android) Init(ANDROID_DEFAULT ? OPTION_MASK_ANDROID : 0)
23 Generate code for the Android platform.
25 tno-android-cc
28 tno-android-ld
H A Dlinux-android.h1 /* Configuration file for Linux Android targets.
31 builtin_version ("Android"); \
35 # define NOANDROID "mno-android"
41 "%{" NOANDROID "|tno-android-cc:" LINUX_SPEC ";:" ANDROID_SPEC "}"
44 "%{" NOANDROID "|tno-android-ld:" LINUX_SPEC ";:" ANDROID_SPEC "}"
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dsystem.d31 linux, /// All Linux Systems, except for Android
37 android, /// Android enumerator
44 else version (Android) OS os = OS.android;
/netbsd-src/external/mit/libuv/dist/.github/workflows/
H A DCI-unix.yml17 build-android:
19 container: reactnativecommunity/react-native-android:2020-5-20
24 - name: Configure android arm64
25 # see build options you can use in https://developer.android.com/ndk/guides/cmake
29 …20.0.5594570/build/cmake/android.toolchain.cmake -DCMAKE_BUILD_TYPE=Release -DANDROID_ABI="arm64-v…
30 - name: Build android arm64
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dsystem.d32 linux, /// All Linux Systems, except for Android
42 android, /// Android enumerator
50 else version (Android) OS os = OS.android;

12345678910>>...25