From 6fb438de82499acf9c34561d185b90f5a2d84dd7 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Fri, 22 Apr 2022 18:29:21 +0100 Subject: [PATCH] Initial GameActivity glue implementation This is based on the 2022.0.0 agdk-libraries release --- Cargo.toml | 4 + game-activity/.gitignore | 10 + game-activity/Cargo.toml | 29 + game-activity/LICENSE | 12 + game-activity/README.md | 208 + game-activity/build.rs | 21 + .../csrc/game-activity/GameActivity.cpp | 1304 ++ .../csrc/game-activity/GameActivity.h | 769 ++ .../native_app_glue/android_native_app_glue.c | 571 + .../native_app_glue/android_native_app_glue.h | 486 + .../csrc/game-text-input/gamecommon.h | 41 + .../csrc/game-text-input/gametextinput.cpp | 366 + .../csrc/game-text-input/gametextinput.h | 290 + game-activity/docs/LICENSE-APACHE | 176 + game-activity/docs/LICENSE-MIT | 19 + game-activity/generate-bindings.sh | 37 + game-activity/src/ffi.rs | 34 + game-activity/src/ffi_aarch64.rs | 8525 ++++++++++++ game-activity/src/ffi_arm.rs | 8993 +++++++++++++ game-activity/src/ffi_i686.rs | 10739 +++++++++++++++ game-activity/src/ffi_x86_64.rs | 10829 ++++++++++++++++ game-activity/src/input.rs | 1459 +++ game-activity/src/lib.rs | 740 ++ game-activity/wrapper.h | 3 + 24 files changed, 45665 insertions(+) create mode 100644 Cargo.toml create mode 100755 game-activity/.gitignore create mode 100755 game-activity/Cargo.toml create mode 100755 game-activity/LICENSE create mode 100755 game-activity/README.md create mode 100755 game-activity/build.rs create mode 100644 game-activity/csrc/game-activity/GameActivity.cpp create mode 100644 game-activity/csrc/game-activity/GameActivity.h create mode 100644 game-activity/csrc/game-activity/native_app_glue/android_native_app_glue.c create mode 100644 game-activity/csrc/game-activity/native_app_glue/android_native_app_glue.h create mode 100755 game-activity/csrc/game-text-input/gamecommon.h create mode 100755 game-activity/csrc/game-text-input/gametextinput.cpp create mode 100755 game-activity/csrc/game-text-input/gametextinput.h create mode 100755 game-activity/docs/LICENSE-APACHE create mode 100755 game-activity/docs/LICENSE-MIT create mode 100755 game-activity/generate-bindings.sh create mode 100755 game-activity/src/ffi.rs create mode 100755 game-activity/src/ffi_aarch64.rs create mode 100755 game-activity/src/ffi_arm.rs create mode 100755 game-activity/src/ffi_i686.rs create mode 100755 game-activity/src/ffi_x86_64.rs create mode 100755 game-activity/src/input.rs create mode 100755 game-activity/src/lib.rs create mode 100755 game-activity/wrapper.h diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..be791ab --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,4 @@ +[workspace] +members = [ + "game-activity", +] diff --git a/game-activity/.gitignore b/game-activity/.gitignore new file mode 100755 index 0000000..29f475a --- /dev/null +++ b/game-activity/.gitignore @@ -0,0 +1,10 @@ +/target +Cargo.lock + + +# Added by cargo +# +# already existing elements were commented out + +#/target +#Cargo.lock diff --git a/game-activity/Cargo.toml b/game-activity/Cargo.toml new file mode 100755 index 0000000..b8f5714 --- /dev/null +++ b/game-activity/Cargo.toml @@ -0,0 +1,29 @@ +[package] +name = "game-activity" +version = "0.1.0" +edition = "2021" +keywords = ["android", "ndk"] +readme = "../README.md" +license = "MIT OR Apache-2.0" + +[dependencies] +log = "0.4" +jni-sys = "0.3" +ndk = { version = "0.6" } +ndk-sys = { version = "0.3" } +ndk-context = { version = "0.1" } +lazy_static = "1.4.0" +num_enum = "0.5" +bitflags = "1.3" +libc = "0.2.84" + +[build-dependencies] +cc = { version = "1.0", features = ["parallel"] } + +[package.metadata.docs.rs] +targets = [ + "aarch64-linux-android", + "armv7-linux-androideabi", + "i686-linux-android", + "x86_64-linux-android", +] \ No newline at end of file diff --git a/game-activity/LICENSE b/game-activity/LICENSE new file mode 100755 index 0000000..542efc6 --- /dev/null +++ b/game-activity/LICENSE @@ -0,0 +1,12 @@ +The third-party glue code, from the Android Game Development Kit, under the csrc/ directory +is covered by the Apache 2.0 license only: + +Apache License, Version 2.0 (docs/LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) + + +All other code is dual-licensed under either + +* MIT License (docs/LICENSE-MIT or http://opensource.org/licenses/MIT) +* Apache License, Version 2.0 (docs/LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) + +at your option. \ No newline at end of file diff --git a/game-activity/README.md b/game-activity/README.md new file mode 100755 index 0000000..8d979b6 --- /dev/null +++ b/game-activity/README.md @@ -0,0 +1,208 @@ +This crate provides a "glue" layer for building native Rust applications on Android based on the Android Game Development Kit's [`GameActivity`](https://developer.android.com/games/agdk/integrate-game-activity) class. + +This serves a similar purpose to [`android_native_app_glue.c`](https://android.googlesource.com/platform/development/+/4948c163663ecc343c97e4c2a2139234f1d3273f/ndk/sources/android/native_app_glue) for `C/C++` applications but instead of being based on the `NativeActivity` class, this is instead based on `GameActivity` that itself is is based on [`AppCompatActivity`](https://developer.android.com/reference/androidx/appcompat/app/AppCompatActivity) + +This abstraction builds directly on the native glue layer provided by the [AGDK](https://developer.android.com/games/agdk) project so that it's practical to keep in sync with any upstream fixes. + +The general way in which it works internally is to spawn a dedicated thread for the main function of your Rust application and uses IPC via a pipe to marshal events from Java (such as lifecycle events) to the native application. + +Here's a minimal illustration of an Android main function and main loop based on this crate _(for portability then real applications would probably use winit which would handle some of this internally)_: + +```rust +#[no_mangle] +extern "C" fn android_main() { + android_logger::init_once( + Config::default().with_min_level(Level::Trace) + ); + + let mut quit = false; + let mut redraw_pending = true; + let mut render_state: Option<()> = Default::default(); + + let app = game_activity::android_app(); + while !quit { + app.poll_events(Some(Duration::from_millis(500)) /* timeout */, |event| { + match event { + PollEvent::Wake => { trace!("Early wake up"); }, + PollEvent::Timeout => { + trace!("Timed out"); + // Real app would probably rely on vblank sync via graphics API... + redraw_pending = true; + }, + PollEvent::Main(main_event) => { + trace!("Main event: {:?}", main_event); + match main_event { + MainEvent::SaveState { saver, .. } => { + let state = serde_json::to_vec(&AppState { uri: format!("foo://bar") }).unwrap(); + saver.store(&state); + }, + MainEvent::Pause => {}, + MainEvent::Resume { loader, .. } => { + if let Some(state) = loader.load() { + let _state: AppState = serde_json::from_slice(&state).unwrap(); + } + }, + MainEvent::InitWindow { .. } => { + render_state = Some(()); + redraw_pending = true; + }, + MainEvent::TerminateWindow { .. } => { + render_state = None; + } + MainEvent::WindowResized { .. } => { redraw_pending = true; }, + MainEvent::RedrawNeeded { ..} => { redraw_pending = true; }, + MainEvent::LowMemory => {}, + + MainEvent::Destroy => { quit = true }, + _ => { /* ... */} + } + }, + _ => {} + } + + if redraw_pending { + if let Some(_rs) = render_state { + redraw_pending = false; + + // Handle input + if let Some(buf) = app.swap_input_buffers() { + for motion in buf.motion_events_iter() { + trace!("Motion Event: {motion:?}") + } + for key in buf.key_events_iter() { + trace!("Key Event: {key:?}") + } + } + + // Render... + } + } + }); + } +} +``` + +# Motivations + +1. Firstly I'd like to write a cross-platform UI (in egui) to test a Rust Bluetooth library I've been working on. +2. Secondly I saw that Bevy's Android support needs some tlc currently ([#86](https://github.com/bevyengine/bevy/issues/86)) +3. I wanted an excuse to poke at some of the backend details for winit and see how it works with wgpu - since I'm a low-level graphics and windowing system person that likes Rust :-D + +For the Bluetooth library I notably can't directly use `NativeActivity` since I have to subclass Activity to be able to get callbacks for the result of Intents due to how Android's Companion API works. Theoretically I could subclass `NativeActivity` in Java but for testing so far I have an application that is based on [`AppCompatActivity`](https://developer.android.com/reference/androidx/appcompat/app/AppCompatActivity) which I'm inclined to keep as a base if possible. For example `AppCompatActivity` offers a better solution for receiving Intent results from another activity that doesn't require subclassing the Activity further and this API/solution simply isn't available based on `NativeActivity` or even a custom subclass. + +Although I've worked with `NativeActivity` a decent amount in the past I've only recently had to venture into needing more features than NativeActivity can support directly. From seeing how developers tend to create the Activity class for non-native development (I'm not experienced with Java/Kotlin programming on Android) it looks like [`AppCompatActivity`](https://developer.android.com/reference/androidx/appcompat/app/AppCompatActivity) along with [Jetpack](https://developer.android.com/jetpack) libraries offer a much more comprehensive foundation for developing Android applications than being based directly on `Activity`, like `NativeActivity`. I think it stands to reason that native Rust (and hybrid) applications on Android should be able to leverage the same foundations that modern Android apps have - at least as an option for times when `NativeActivity` isn't enough. + +I recently discovered Google's [Android Game Development Kit](https://developer.android.com/games/agdk) project which aims to offer a more comprehensive native development experience for game developers. The project provides native bindings that make it easier to handle text input and IME handling, as well as supporting game controllers and other fiddly details that could be particularly useful for game engines like Bevy. One of the components they provide is a [`GameActivity`](https://developer.android.com/games/agdk/integrate-game-activity) class that is essentially a modern alternative to `NativeActivity` that's based on `AppCompatActivity`. This basically just sounded ideal here and so I started looking at whether it would be feasible to create an alternative to `ndk-glue` that would support building Rust apps based on `GameActivity` along with an updated backend for winit. + + +# Compatibility + +The original intent was to copy the API of [ndk-glue](https://github.com/rust-windowing/android-ndk-rs) for the sake of being able to use with [winit](https://github.com/rust-windowing/winit) (unmodified) but as I progressed I found that wasn't going to be realistic / practical. + +In particular the way in which the glue layer needs to synchronize with the Java main thread with pre- and post- processing surrounding the handling of lifecycle events led to a different `poll_events()` API. + +The existing Android backend for winit also appeared to have a rather complex event polling scheme which I was keen to simplify and make more comparable to the Linux mio/epoll based backend where there would be a very clear, single place where the mainloop would block waiting for events. + +When I went further and added support for saving and restoring application state I found that it worked nicely to expose this via a transient `StateSaver` and `StateLoader` that's passed as part of the `SaveState` and `Resume` events, which was also a further change compared to `ndk-glue`. + +This crate does integrate with `ndk-context` like `ndk-glue` does so that other crates that just need access to the JVM and/or Activity object from Rust can work in the same way. + +Input handling is notably different between `NativeActivity` (which is based on `AInputQueue`) and `GameActivity` that does its own double buffering of key and motion events. As much as possible this crate provides an API that is compatible (the `MotionEvent` and `KeyEvent` APIs are almost identical) but it doesn't track any motion history data automatically and provides a different `swap_input_buffers` API for reading events. As an optimization `GameActivity` minimizes what axis are captured for pointer events and so there are also additional APIs exposed for applications to explicitly opt-in to additional axis values. + + +# Why not pure Rust? + +One of the appeals (imho) of the AGDK project was that they are maintaining native Android libraries that look like they could be generally useful for native Rust apps (especially game engines) and even though they are C/C++ libraries that could theoretically be re-written in pure Rust it seems more worthwhile / practical to first try and leverage these libraries directly before considering whether it makes sense to re-implement any of them. + +This crate uses the upstream glue layer written in C/C++ and provides a small Rust API on top for ergonomics. This way it's hopefully practical to keep in sync with upstream changes and bug fixes and to benefit from upstream testing. + +The C/C++ GameActivity / android_native_app_glue code isn't _that_ complex and could well be re-implemented in Rust at some point, although it's not clear how beneficial it would be. I would note that `ndk-glue` did go down the route of re-implementing the glue layer for `NativeActivity` purely in Rust but I wasn't confident about it's synchronization model is correct which imho highlights that the code should only be re-written if there are some clear technical benefits. I'll try to follow up with Github issues to discuss more but for example it looks like `ndk-glue` has race conditions with its approach to synchronizing events (like window termination) by relying on a mutex write lock to block after issuing an (async) mainloop `wake()` up, relying on a documented convention that the application should take a read lock to block that write lock (which looks likely to have already been taken before the wakeup). I might be mistaken but the original C code seemed better designed in this regard because it could surround event handlers with pre/post processing that would reliably handle synchronization without the application being responsible for anything. + + +# Synchronizing with Upstream... + +Upstream distribute `android_native_app_glue.c` and `GameActivity.cpp` code as a "prefab" that is bundled as part of a `GameActivity-release.aar` archive. The idea is that it's a build system agnostic way of bundling native glue code with archives that build systems can extract the code via a command line tool, along with some metadata to describe how it should be compiled - though tbh it feels over complicated and not very practical here. + +It's fairly easy to extract the C/C++ files and just integrate them in a way that suits Rust / Cargo better. + +`.aar` files are simply zip archives that can be unpacked and the files under `prefab/modules/game-activity/include` can be moved to `csrc/` in this repo, which will then be built by `build.rs` via the `cc` crate. + +The easiest way I found to get to the `GameActivity-release.aar` is to download the "express" agdk-libraries release from https://developer.android.com/games/agdk/download, and you should find `GameActivity-release.aar` at the top level of the archive after unpacking. + +The git repo for the source code can be found here: https://android.googlesource.com/platform/frameworks/opt/gamesdk/ with the prefab code under `GameActivity/prefab-src/modules/game-activity/include` - though it may be best to synchronize with official releases. + + +## Minor modifications + +There are a few C symbols that need to be exported from the cdylib that's built for GameActivity to load at runtime but Rust/Cargo doesn't support compiling C/C++ code in a way that can export these symbols directly and we instead have to export wrappers from Rust code. + +At the bottom of GameActivity.cpp then `Java_com_google_androidgamesdk_GameActivity_loadNativeCode` should be given a `_C` suffix like `Java_com_google_androidgamesdk_GameActivity_loadNativeCode_C` + +At the bottom of `android_native_app_glue.c` and `android_native_app_glue.h` `GameActivity_onCreate` should also be given a `_C` suffix like `GameActivity_onCreate_C` + +Since we want to call the application's main function from Rust after initializing our own `AndroidApp` state, but we want to let applications use the same `android_main` symbol name then `android_main` should be renamed to `_rust_glue_entry` in `android_native_app_glue.h` and `android_native_app_glue.c` + +One limitation discovered with the input API provided by GameActivity was that it doesn't capture keyboard scan codes which are required to properly implement a winit backend. These were the changes made to enable scan code capture: + +```diff +commit 7f7df6a670d5d6dfaa315bc956210108caac57f3 (HEAD -> master) +Author: Robert Bragg +Date: Sun May 8 02:41:48 2022 +0100 + + GameActivity PATCH: capture KeyEvent scanCode + +diff --git a/game-activity/csrc/game-activity/GameActivity.cpp b/game-activity/csrc/game-activity/GameActivity.cpp +index 2b37365..57bc4e1 100644 +--- a/game-activity/csrc/game-activity/GameActivity.cpp ++++ b/game-activity/csrc/game-activity/GameActivity.cpp +@@ -1015,6 +1015,7 @@ static struct { + jmethodID getModifiers; + jmethodID getRepeatCount; + jmethodID getKeyCode; ++ jmethodID getScanCode; + } gKeyEventClassInfo; + + extern "C" void GameActivityKeyEvent_fromJava(JNIEnv *env, jobject keyEvent, +@@ -1046,6 +1047,8 @@ extern "C" void GameActivityKeyEvent_fromJava(JNIEnv *env, jobject keyEvent, + env->GetMethodID(keyEventClass, "getRepeatCount", "()I"); + gKeyEventClassInfo.getKeyCode = + env->GetMethodID(keyEventClass, "getKeyCode", "()I"); ++ gKeyEventClassInfo.getScanCode = ++ env->GetMethodID(keyEventClass, "getScanCode", "()I"); + + gKeyEventClassInfoInitialized = true; + } +@@ -1070,7 +1073,9 @@ extern "C" void GameActivityKeyEvent_fromJava(JNIEnv *env, jobject keyEvent, + /*repeatCount=*/ + env->CallIntMethod(keyEvent, gKeyEventClassInfo.getRepeatCount), + /*keyCode=*/ +- env->CallIntMethod(keyEvent, gKeyEventClassInfo.getKeyCode)}; ++ env->CallIntMethod(keyEvent, gKeyEventClassInfo.getKeyCode), ++ /*scanCode=*/ ++ env->CallIntMethod(keyEvent, gKeyEventClassInfo.getScanCode)}; + } + + static bool onTouchEvent_native(JNIEnv *env, jobject javaGameActivity, +diff --git a/game-activity/csrc/game-activity/GameActivity.h b/game-activity/csrc/game-activity/GameActivity.h +index da102bc..7a5645c 100644 +--- a/game-activity/csrc/game-activity/GameActivity.h ++++ b/game-activity/csrc/game-activity/GameActivity.h +@@ -262,6 +262,7 @@ typedef struct GameActivityKeyEvent { + int32_t modifiers; + int32_t repeatCount; + int32_t keyCode; ++ int32_t scanCode; + } GameActivityKeyEvent; + + /** +``` + +## Generate Rust bindings + +Since we know we only care about android build targets then to simplify the build we pre-generate Rust bindings for the C/C++ headers using bindgen via `generate-bindings.sh` + +Install bindgen via `cargo install bindgen` + +`export ANDROID_NDK_ROOT=/path/to/ndk` so that `generate-bindings.sh` can find suitable sysroot headers. + +Run `./generate-bindings.sh` from the top of the repo after putting the latest prefab source/headers under `csrc/` diff --git a/game-activity/build.rs b/game-activity/build.rs new file mode 100755 index 0000000..f914c7c --- /dev/null +++ b/game-activity/build.rs @@ -0,0 +1,21 @@ + +fn main() { + cc::Build::new() + .cpp(true) + .include("csrc") + .file("csrc/game-activity/GameActivity.cpp") + .cpp_link_stdlib("c++_static") + .compile("libgame_activity.a"); + cc::Build::new() + .cpp(true) + .include("csrc") + .file("csrc/game-text-input/gametextinput.cpp") + .cpp_link_stdlib("c++_static") + .compile("libgame_text_input.a"); + cc::Build::new() + .include("csrc") + .include("csrc/game-activity/native_app_glue") + .file("csrc/game-activity/native_app_glue/android_native_app_glue.c") + .cpp_link_stdlib("c++_static") + .compile("libnative_app_glue.a"); +} \ No newline at end of file diff --git a/game-activity/csrc/game-activity/GameActivity.cpp b/game-activity/csrc/game-activity/GameActivity.cpp new file mode 100644 index 0000000..ca63915 --- /dev/null +++ b/game-activity/csrc/game-activity/GameActivity.cpp @@ -0,0 +1,1304 @@ +/* + * Copyright (C) 2010 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +#define LOG_TAG "GameActivity" + +#include "GameActivity.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +// TODO(b/187147166): these functions were extracted from the Game SDK +// (gamesdk/src/common/system_utils.h). system_utils.h/cpp should be used +// instead. +namespace { + +#if __ANDROID_API__ >= 26 +std::string getSystemPropViaCallback(const char *key, + const char *default_value = "") { + const prop_info *prop = __system_property_find(key); + if (prop == nullptr) { + return default_value; + } + std::string return_value; + auto thunk = [](void *cookie, const char * /*name*/, const char *value, + uint32_t /*serial*/) { + if (value != nullptr) { + std::string *r = static_cast(cookie); + *r = value; + } + }; + __system_property_read_callback(prop, thunk, &return_value); + return return_value; +} +#else +std::string getSystemPropViaGet(const char *key, + const char *default_value = "") { + char buffer[PROP_VALUE_MAX + 1] = ""; // +1 for terminator + int bufferLen = __system_property_get(key, buffer); + if (bufferLen > 0) + return buffer; + else + return ""; +} +#endif + +std::string GetSystemProp(const char *key, const char *default_value = "") { +#if __ANDROID_API__ >= 26 + return getSystemPropViaCallback(key, default_value); +#else + return getSystemPropViaGet(key, default_value); +#endif +} + +int GetSystemPropAsInt(const char *key, int default_value = 0) { + std::string prop = GetSystemProp(key); + return prop == "" ? default_value : strtoll(prop.c_str(), nullptr, 10); +} + +struct OwnedGameTextInputState { + OwnedGameTextInputState &operator=(const GameTextInputState &rhs) { + inner = rhs; + owned_string = std::string(rhs.text_UTF8, rhs.text_length); + inner.text_UTF8 = owned_string.data(); + return *this; + } + GameTextInputState inner; + std::string owned_string; +}; + +} // anonymous namespace + +#define ALOGE(...) __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__); +#define ALOGW(...) __android_log_print(ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__); +#define ALOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__); +#ifdef NDEBUG +#define ALOGV(...) +#else +#define ALOGV(...) \ + __android_log_print(ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__); +#endif + +/* Returns 2nd arg. Used to substitute default value if caller's vararg list + * is empty. + */ +#define __android_second(first, second, ...) second + +/* If passed multiple args, returns ',' followed by all but 1st arg, otherwise + * returns nothing. + */ +#define __android_rest(first, ...) , ##__VA_ARGS__ + +#define android_printAssert(cond, tag, fmt...) \ + __android_log_assert(cond, tag, \ + __android_second(0, ##fmt, NULL) __android_rest(fmt)) + +#define CONDITION(cond) (__builtin_expect((cond) != 0, 0)) + +#ifndef LOG_ALWAYS_FATAL_IF +#define LOG_ALWAYS_FATAL_IF(cond, ...) \ + ((CONDITION(cond)) \ + ? ((void)android_printAssert(#cond, LOG_TAG, ##__VA_ARGS__)) \ + : (void)0) +#endif + +#ifndef LOG_ALWAYS_FATAL +#define LOG_ALWAYS_FATAL(...) \ + (((void)android_printAssert(NULL, LOG_TAG, ##__VA_ARGS__))) +#endif + +/* + * Simplified macro to send a warning system log message using current LOG_TAG. + */ +#ifndef SLOGW +#define SLOGW(...) \ + ((void)__android_log_print(ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__)) +#endif + +#ifndef SLOGW_IF +#define SLOGW_IF(cond, ...) \ + ((__predict_false(cond)) \ + ? ((void)__android_log_print(ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__)) \ + : (void)0) +#endif + +/* + * Versions of LOG_ALWAYS_FATAL_IF and LOG_ALWAYS_FATAL that + * are stripped out of release builds. + */ +#if LOG_NDEBUG + +#ifndef LOG_FATAL_IF +#define LOG_FATAL_IF(cond, ...) ((void)0) +#endif +#ifndef LOG_FATAL +#define LOG_FATAL(...) ((void)0) +#endif + +#else + +#ifndef LOG_FATAL_IF +#define LOG_FATAL_IF(cond, ...) LOG_ALWAYS_FATAL_IF(cond, ##__VA_ARGS__) +#endif +#ifndef LOG_FATAL +#define LOG_FATAL(...) LOG_ALWAYS_FATAL(__VA_ARGS__) +#endif + +#endif + +/* + * Assertion that generates a log message when the assertion fails. + * Stripped out of release builds. Uses the current LOG_TAG. + */ +#ifndef ALOG_ASSERT +#define ALOG_ASSERT(cond, ...) LOG_FATAL_IF(!(cond), ##__VA_ARGS__) +#endif + +#define LOG_TRACE(...) + +#ifndef NELEM +#define NELEM(x) ((int)(sizeof(x) / sizeof((x)[0]))) +#endif + +/* + * JNI methods of the GameActivity Java class. + */ +static struct { + jmethodID finish; + jmethodID setWindowFlags; + jmethodID getWindowInsets; + jmethodID getWaterfallInsets; + jmethodID setImeEditorInfoFields; +} gGameActivityClassInfo; + +/* + * JNI fields of the androidx.core.graphics.Insets Java class. + */ +static struct { + jfieldID left; + jfieldID right; + jfieldID top; + jfieldID bottom; +} gInsetsClassInfo; + +/* + * JNI methods of the WindowInsetsCompat.Type Java class. + */ +static struct { + jmethodID methods[GAMECOMMON_INSETS_TYPE_COUNT]; + jclass clazz; +} gWindowInsetsCompatTypeClassInfo; + +/* + * Contains a command to be executed by the GameActivity + * on the application main thread. + */ +struct ActivityWork { + int32_t cmd; + int64_t arg1; + int64_t arg2; +}; + +/* + * The type of commands that can be passed to the GameActivity and that + * are executed on the application main thread. + */ +enum { + CMD_FINISH = 1, + CMD_SET_WINDOW_FORMAT, + CMD_SET_WINDOW_FLAGS, + CMD_SHOW_SOFT_INPUT, + CMD_HIDE_SOFT_INPUT, + CMD_SET_SOFT_INPUT_STATE +}; + +/* + * Write a command to be executed by the GameActivity on the application main + * thread. + */ +static void write_work(int fd, int32_t cmd, int64_t arg1 = 0, + int64_t arg2 = 0) { + ActivityWork work; + work.cmd = cmd; + work.arg1 = arg1; + work.arg2 = arg2; + + LOG_TRACE("write_work: cmd=%d", cmd); +restart: + int res = write(fd, &work, sizeof(work)); + if (res < 0 && errno == EINTR) { + goto restart; + } + + if (res == sizeof(work)) return; + + if (res < 0) { + ALOGW("Failed writing to work fd: %s", strerror(errno)); + } else { + ALOGW("Truncated writing to work fd: %d", res); + } +} + +/* + * Read commands to be executed by the GameActivity on the application main + * thread. + */ +static bool read_work(int fd, ActivityWork *outWork) { + int res = read(fd, outWork, sizeof(ActivityWork)); + // no need to worry about EINTR, poll loop will just come back again. + if (res == sizeof(ActivityWork)) return true; + + if (res < 0) { + ALOGW("Failed reading work fd: %s", strerror(errno)); + } else { + ALOGW("Truncated reading work fd: %d", res); + } + return false; +} + +/* + * Native state for interacting with the GameActivity class. + */ +struct NativeCode : public GameActivity { + NativeCode(void *_dlhandle, GameActivity_createFunc *_createFunc) { + memset((GameActivity *)this, 0, sizeof(GameActivity)); + memset(&callbacks, 0, sizeof(callbacks)); + memset(&insetsState, 0, sizeof(insetsState)); + dlhandle = _dlhandle; + createActivityFunc = _createFunc; + nativeWindow = NULL; + mainWorkRead = mainWorkWrite = -1; + gameTextInput = NULL; + } + + ~NativeCode() { + if (callbacks.onDestroy != NULL) { + callbacks.onDestroy(this); + } + if (env != NULL) { + if (javaGameActivity != NULL) { + env->DeleteGlobalRef(javaGameActivity); + } + if (javaAssetManager != NULL) { + env->DeleteGlobalRef(javaAssetManager); + } + } + GameTextInput_destroy(gameTextInput); + if (looper != NULL && mainWorkRead >= 0) { + ALooper_removeFd(looper, mainWorkRead); + } + ALooper_release(looper); + looper = NULL; + + setSurface(NULL); + if (mainWorkRead >= 0) close(mainWorkRead); + if (mainWorkWrite >= 0) close(mainWorkWrite); + if (dlhandle != NULL) { + // for now don't unload... we probably should clean this + // up and only keep one open dlhandle per proc, since there + // is really no benefit to unloading the code. + // dlclose(dlhandle); + } + } + + void setSurface(jobject _surface) { + if (nativeWindow != NULL) { + ANativeWindow_release(nativeWindow); + } + if (_surface != NULL) { + nativeWindow = ANativeWindow_fromSurface(env, _surface); + } else { + nativeWindow = NULL; + } + } + + GameActivityCallbacks callbacks; + + void *dlhandle; + GameActivity_createFunc *createActivityFunc; + + std::string internalDataPathObj; + std::string externalDataPathObj; + std::string obbPathObj; + + ANativeWindow *nativeWindow; + int32_t lastWindowWidth; + int32_t lastWindowHeight; + + // These are used to wake up the main thread to process work. + int mainWorkRead; + int mainWorkWrite; + ALooper *looper; + + // Need to hold on to a reference here in case the upper layers destroy our + // AssetManager. + jobject javaAssetManager; + + GameTextInput *gameTextInput; + // Set by users in GameActivity_setTextInputState, then passed to + // GameTextInput. + OwnedGameTextInputState gameTextInputState; + std::mutex gameTextInputStateMutex; + + ARect insetsState[GAMECOMMON_INSETS_TYPE_COUNT]; +}; + +extern "C" void GameActivity_finish(GameActivity *activity) { + NativeCode *code = static_cast(activity); + write_work(code->mainWorkWrite, CMD_FINISH, 0); +} + +extern "C" void GameActivity_setWindowFlags(GameActivity *activity, + uint32_t values, uint32_t mask) { + NativeCode *code = static_cast(activity); + write_work(code->mainWorkWrite, CMD_SET_WINDOW_FLAGS, values, mask); +} + +extern "C" void GameActivity_showSoftInput(GameActivity *activity, + uint32_t flags) { + NativeCode *code = static_cast(activity); + write_work(code->mainWorkWrite, CMD_SHOW_SOFT_INPUT, flags); +} + +extern "C" void GameActivity_setTextInputState( + GameActivity *activity, const GameTextInputState *state) { + NativeCode *code = static_cast(activity); + std::lock_guard lock(code->gameTextInputStateMutex); + code->gameTextInputState = *state; + write_work(code->mainWorkWrite, CMD_SET_SOFT_INPUT_STATE); +} + +extern "C" void GameActivity_getTextInputState( + GameActivity *activity, GameTextInputGetStateCallback callback, + void *context) { + NativeCode *code = static_cast(activity); + return GameTextInput_getState(code->gameTextInput, callback, context); +} + +extern "C" void GameActivity_hideSoftInput(GameActivity *activity, + uint32_t flags) { + NativeCode *code = static_cast(activity); + write_work(code->mainWorkWrite, CMD_HIDE_SOFT_INPUT, flags); +} + +extern "C" void GameActivity_getWindowInsets(GameActivity *activity, + GameCommonInsetsType type, + ARect *insets) { + if (type < 0 || type >= GAMECOMMON_INSETS_TYPE_COUNT) return; + NativeCode *code = static_cast(activity); + *insets = code->insetsState[type]; +} + +extern "C" GameTextInput *GameActivity_getTextInput( + const GameActivity *activity) { + const NativeCode *code = static_cast(activity); + return code->gameTextInput; +} + +/* + * Log the JNI exception, if any. + */ +static void checkAndClearException(JNIEnv *env, const char *methodName) { + if (env->ExceptionCheck()) { + ALOGE("Exception while running %s", methodName); + env->ExceptionDescribe(); + env->ExceptionClear(); + } +} + +/* + * Callback for handling native events on the application's main thread. + */ +static int mainWorkCallback(int fd, int events, void *data) { + ALOGD("************** mainWorkCallback *********"); + NativeCode *code = (NativeCode *)data; + if ((events & POLLIN) == 0) { + return 1; + } + + ActivityWork work; + if (!read_work(code->mainWorkRead, &work)) { + return 1; + } + LOG_TRACE("mainWorkCallback: cmd=%d", work.cmd); + switch (work.cmd) { + case CMD_FINISH: { + code->env->CallVoidMethod(code->javaGameActivity, + gGameActivityClassInfo.finish); + checkAndClearException(code->env, "finish"); + } break; + case CMD_SET_WINDOW_FLAGS: { + code->env->CallVoidMethod(code->javaGameActivity, + gGameActivityClassInfo.setWindowFlags, + work.arg1, work.arg2); + checkAndClearException(code->env, "setWindowFlags"); + } break; + case CMD_SHOW_SOFT_INPUT: { + GameTextInput_showIme(code->gameTextInput, work.arg1); + } break; + case CMD_SET_SOFT_INPUT_STATE: { + std::lock_guard lock(code->gameTextInputStateMutex); + GameTextInput_setState(code->gameTextInput, + &code->gameTextInputState.inner); + checkAndClearException(code->env, "setTextInputState"); + } break; + case CMD_HIDE_SOFT_INPUT: { + GameTextInput_hideIme(code->gameTextInput, work.arg1); + } break; + default: + ALOGW("Unknown work command: %d", work.cmd); + break; + } + + return 1; +} + +// ------------------------------------------------------------------------ + +static thread_local std::string g_error_msg; + +static jlong loadNativeCode_native(JNIEnv *env, jobject javaGameActivity, + jstring path, jstring funcName, + jstring internalDataDir, jstring obbDir, + jstring externalDataDir, jobject jAssetMgr, + jbyteArray savedState) { + LOG_TRACE("loadNativeCode_native"); + const char *pathStr = env->GetStringUTFChars(path, NULL); + NativeCode *code = NULL; + + void *handle = dlopen(pathStr, RTLD_LAZY); + + env->ReleaseStringUTFChars(path, pathStr); + + if (handle == nullptr) { + g_error_msg = dlerror(); + ALOGE("GameActivity dlopen(\"%s\") failed: %s", pathStr, + g_error_msg.c_str()); + return 0; + } + + const char *funcStr = env->GetStringUTFChars(funcName, NULL); + code = new NativeCode(handle, + (GameActivity_createFunc *)dlsym(handle, funcStr)); + env->ReleaseStringUTFChars(funcName, funcStr); + + if (code->createActivityFunc == nullptr) { + g_error_msg = dlerror(); + ALOGW("GameActivity_onCreate not found: %s", g_error_msg.c_str()); + delete code; + return 0; + } + + code->looper = ALooper_forThread(); + if (code->looper == nullptr) { + g_error_msg = "Unable to retrieve native ALooper"; + ALOGW("%s", g_error_msg.c_str()); + delete code; + return 0; + } + ALooper_acquire(code->looper); + + int msgpipe[2]; + if (pipe(msgpipe)) { + g_error_msg = "could not create pipe: "; + g_error_msg += strerror(errno); + + ALOGW("%s", g_error_msg.c_str()); + delete code; + return 0; + } + code->mainWorkRead = msgpipe[0]; + code->mainWorkWrite = msgpipe[1]; + int result = fcntl(code->mainWorkRead, F_SETFL, O_NONBLOCK); + SLOGW_IF(result != 0, + "Could not make main work read pipe " + "non-blocking: %s", + strerror(errno)); + result = fcntl(code->mainWorkWrite, F_SETFL, O_NONBLOCK); + SLOGW_IF(result != 0, + "Could not make main work write pipe " + "non-blocking: %s", + strerror(errno)); + ALooper_addFd(code->looper, code->mainWorkRead, 0, ALOOPER_EVENT_INPUT, + mainWorkCallback, code); + + code->GameActivity::callbacks = &code->callbacks; + if (env->GetJavaVM(&code->vm) < 0) { + ALOGW("GameActivity GetJavaVM failed"); + delete code; + return 0; + } + code->env = env; + code->javaGameActivity = env->NewGlobalRef(javaGameActivity); + + const char *dirStr = + internalDataDir ? env->GetStringUTFChars(internalDataDir, NULL) : ""; + code->internalDataPathObj = dirStr; + code->internalDataPath = code->internalDataPathObj.c_str(); + if (internalDataDir) env->ReleaseStringUTFChars(internalDataDir, dirStr); + + dirStr = + externalDataDir ? env->GetStringUTFChars(externalDataDir, NULL) : ""; + code->externalDataPathObj = dirStr; + code->externalDataPath = code->externalDataPathObj.c_str(); + if (externalDataDir) env->ReleaseStringUTFChars(externalDataDir, dirStr); + + code->javaAssetManager = env->NewGlobalRef(jAssetMgr); + code->assetManager = AAssetManager_fromJava(env, jAssetMgr); + + dirStr = obbDir ? env->GetStringUTFChars(obbDir, NULL) : ""; + code->obbPathObj = dirStr; + code->obbPath = code->obbPathObj.c_str(); + if (obbDir) env->ReleaseStringUTFChars(obbDir, dirStr); + + jbyte *rawSavedState = NULL; + jsize rawSavedSize = 0; + if (savedState != NULL) { + rawSavedState = env->GetByteArrayElements(savedState, NULL); + rawSavedSize = env->GetArrayLength(savedState); + } + code->createActivityFunc(code, rawSavedState, rawSavedSize); + + code->gameTextInput = GameTextInput_init(env, 0); + GameTextInput_setEventCallback(code->gameTextInput, + reinterpret_cast( + code->callbacks.onTextInputEvent), + code); + + if (rawSavedState != NULL) { + env->ReleaseByteArrayElements(savedState, rawSavedState, 0); + } + + return reinterpret_cast(code); +} + +static jstring getDlError_native(JNIEnv *env, jobject javaGameActivity) { + jstring result = env->NewStringUTF(g_error_msg.c_str()); + g_error_msg.clear(); + return result; +} + +static void unloadNativeCode_native(JNIEnv *env, jobject javaGameActivity, + jlong handle) { + LOG_TRACE("unloadNativeCode_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + delete code; + } +} + +static void onStart_native(JNIEnv *env, jobject javaGameActivity, + jlong handle) { + ALOGV("onStart_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onStart != NULL) { + code->callbacks.onStart(code); + } + } +} + +static void onResume_native(JNIEnv *env, jobject javaGameActivity, + jlong handle) { + LOG_TRACE("onResume_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onResume != NULL) { + code->callbacks.onResume(code); + } + } +} + +struct SaveInstanceLocals { + JNIEnv *env; + jbyteArray array; +}; + +static jbyteArray onSaveInstanceState_native(JNIEnv *env, + jobject javaGameActivity, + jlong handle) { + LOG_TRACE("onSaveInstanceState_native"); + + SaveInstanceLocals locals{ + env, NULL}; // Passed through the user's state prep function. + + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onSaveInstanceState != NULL) { + code->callbacks.onSaveInstanceState( + code, + [](const char *bytes, int len, void *context) { + auto locals = static_cast(context); + if (len > 0) { + locals->array = locals->env->NewByteArray(len); + if (locals->array != NULL) { + locals->env->SetByteArrayRegion( + locals->array, 0, len, (const jbyte *)bytes); + } + } + }, + &locals); + } + } + return locals.array; +} + +static void onPause_native(JNIEnv *env, jobject javaGameActivity, + jlong handle) { + LOG_TRACE("onPause_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onPause != NULL) { + code->callbacks.onPause(code); + } + } +} + +static void onStop_native(JNIEnv *env, jobject javaGameActivity, jlong handle) { + LOG_TRACE("onStop_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onStop != NULL) { + code->callbacks.onStop(code); + } + } +} + +static void onConfigurationChanged_native(JNIEnv *env, jobject javaGameActivity, + jlong handle) { + LOG_TRACE("onConfigurationChanged_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onConfigurationChanged != NULL) { + code->callbacks.onConfigurationChanged(code); + } + } +} + +static void onTrimMemory_native(JNIEnv *env, jobject javaGameActivity, + jlong handle, jint level) { + LOG_TRACE("onTrimMemory_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onTrimMemory != NULL) { + code->callbacks.onTrimMemory(code, level); + } + } +} + +static void onWindowFocusChanged_native(JNIEnv *env, jobject javaGameActivity, + jlong handle, jboolean focused) { + LOG_TRACE("onWindowFocusChanged_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onWindowFocusChanged != NULL) { + code->callbacks.onWindowFocusChanged(code, focused ? 1 : 0); + } + } +} + +static void onSurfaceCreated_native(JNIEnv *env, jobject javaGameActivity, + jlong handle, jobject surface) { + ALOGV("onSurfaceCreated_native"); + LOG_TRACE("onSurfaceCreated_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + code->setSurface(surface); + + if (code->nativeWindow != NULL && + code->callbacks.onNativeWindowCreated != NULL) { + code->callbacks.onNativeWindowCreated(code, code->nativeWindow); + } + } +} + +static void onSurfaceChanged_native(JNIEnv *env, jobject javaGameActivity, + jlong handle, jobject surface, jint format, + jint width, jint height) { + LOG_TRACE("onSurfaceChanged_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + ANativeWindow *oldNativeWindow = code->nativeWindow; + // Fix for window being destroyed behind the scenes on older Android + // versions. + if (oldNativeWindow != NULL) { + ANativeWindow_acquire(oldNativeWindow); + } + code->setSurface(surface); + if (oldNativeWindow != code->nativeWindow) { + if (oldNativeWindow != NULL && + code->callbacks.onNativeWindowDestroyed != NULL) { + code->callbacks.onNativeWindowDestroyed(code, oldNativeWindow); + } + if (code->nativeWindow != NULL) { + if (code->callbacks.onNativeWindowCreated != NULL) { + code->callbacks.onNativeWindowCreated(code, + code->nativeWindow); + } + + code->lastWindowWidth = + ANativeWindow_getWidth(code->nativeWindow); + code->lastWindowHeight = + ANativeWindow_getHeight(code->nativeWindow); + } + } else { + // Maybe it was resized? + int32_t newWidth = ANativeWindow_getWidth(code->nativeWindow); + int32_t newHeight = ANativeWindow_getHeight(code->nativeWindow); + if (newWidth != code->lastWindowWidth || + newHeight != code->lastWindowHeight) { + if (code->callbacks.onNativeWindowResized != NULL) { + code->callbacks.onNativeWindowResized( + code, code->nativeWindow, newWidth, newHeight); + } + } + } + // Release the window we acquired earlier. + if (oldNativeWindow != NULL) { + ANativeWindow_release(oldNativeWindow); + } + } +} + +static void onSurfaceRedrawNeeded_native(JNIEnv *env, jobject javaGameActivity, + jlong handle) { + LOG_TRACE("onSurfaceRedrawNeeded_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + if (code->nativeWindow != NULL && + code->callbacks.onNativeWindowRedrawNeeded != NULL) { + code->callbacks.onNativeWindowRedrawNeeded(code, + code->nativeWindow); + } + } +} + +static void onSurfaceDestroyed_native(JNIEnv *env, jobject javaGameActivity, + jlong handle) { + LOG_TRACE("onSurfaceDestroyed_native"); + if (handle != 0) { + NativeCode *code = (NativeCode *)handle; + if (code->nativeWindow != NULL && + code->callbacks.onNativeWindowDestroyed != NULL) { + code->callbacks.onNativeWindowDestroyed(code, code->nativeWindow); + } + code->setSurface(NULL); + } +} + +static bool enabledAxes[GAME_ACTIVITY_POINTER_INFO_AXIS_COUNT] = { + /* AMOTION_EVENT_AXIS_X */ true, + /* AMOTION_EVENT_AXIS_Y */ true, + // Disable all other axes by default (they can be enabled using + // `GameActivityPointerAxes_enableAxis`). + false}; + +extern "C" void GameActivityPointerAxes_enableAxis(int32_t axis) { + if (axis < 0 || axis >= GAME_ACTIVITY_POINTER_INFO_AXIS_COUNT) { + return; + } + + enabledAxes[axis] = true; +} + +extern "C" void GameActivityPointerAxes_disableAxis(int32_t axis) { + if (axis < 0 || axis >= GAME_ACTIVITY_POINTER_INFO_AXIS_COUNT) { + return; + } + + enabledAxes[axis] = false; +} + +extern "C" void GameActivity_setImeEditorInfo(GameActivity *activity, + int inputType, int actionId, + int imeOptions) { + JNIEnv *env; + if (activity->vm->AttachCurrentThread(&env, NULL) == JNI_OK) { + env->CallVoidMethod(activity->javaGameActivity, + gGameActivityClassInfo.setImeEditorInfoFields, + inputType, actionId, imeOptions); + } +} + +static struct { + jmethodID getDeviceId; + jmethodID getSource; + jmethodID getAction; + + jmethodID getEventTime; + jmethodID getDownTime; + + jmethodID getFlags; + jmethodID getMetaState; + + jmethodID getActionButton; + jmethodID getButtonState; + jmethodID getClassification; + jmethodID getEdgeFlags; + + jmethodID getPointerCount; + jmethodID getPointerId; + jmethodID getRawX; + jmethodID getRawY; + jmethodID getXPrecision; + jmethodID getYPrecision; + jmethodID getAxisValue; +} gMotionEventClassInfo; + +extern "C" void GameActivityMotionEvent_fromJava( + JNIEnv *env, jobject motionEvent, GameActivityMotionEvent *out_event) { + static bool gMotionEventClassInfoInitialized = false; + if (!gMotionEventClassInfoInitialized) { + int sdkVersion = GetSystemPropAsInt("ro.build.version.sdk"); + gMotionEventClassInfo = {0}; + jclass motionEventClass = env->FindClass("android/view/MotionEvent"); + gMotionEventClassInfo.getDeviceId = + env->GetMethodID(motionEventClass, "getDeviceId", "()I"); + gMotionEventClassInfo.getSource = + env->GetMethodID(motionEventClass, "getSource", "()I"); + gMotionEventClassInfo.getAction = + env->GetMethodID(motionEventClass, "getAction", "()I"); + gMotionEventClassInfo.getEventTime = + env->GetMethodID(motionEventClass, "getEventTime", "()J"); + gMotionEventClassInfo.getDownTime = + env->GetMethodID(motionEventClass, "getDownTime", "()J"); + gMotionEventClassInfo.getFlags = + env->GetMethodID(motionEventClass, "getFlags", "()I"); + gMotionEventClassInfo.getMetaState = + env->GetMethodID(motionEventClass, "getMetaState", "()I"); + if (sdkVersion >= 23) { + gMotionEventClassInfo.getActionButton = + env->GetMethodID(motionEventClass, "getActionButton", "()I"); + } + if (sdkVersion >= 14) { + gMotionEventClassInfo.getButtonState = + env->GetMethodID(motionEventClass, "getButtonState", "()I"); + } + if (sdkVersion >= 29) { + gMotionEventClassInfo.getClassification = + env->GetMethodID(motionEventClass, "getClassification", "()I"); + } + gMotionEventClassInfo.getEdgeFlags = + env->GetMethodID(motionEventClass, "getEdgeFlags", "()I"); + gMotionEventClassInfo.getPointerCount = + env->GetMethodID(motionEventClass, "getPointerCount", "()I"); + gMotionEventClassInfo.getPointerId = + env->GetMethodID(motionEventClass, "getPointerId", "(I)I"); + if (sdkVersion >= 29) { + gMotionEventClassInfo.getRawX = + env->GetMethodID(motionEventClass, "getRawX", "(I)F"); + gMotionEventClassInfo.getRawY = + env->GetMethodID(motionEventClass, "getRawY", "(I)F"); + } + gMotionEventClassInfo.getXPrecision = + env->GetMethodID(motionEventClass, "getXPrecision", "()F"); + gMotionEventClassInfo.getYPrecision = + env->GetMethodID(motionEventClass, "getYPrecision", "()F"); + gMotionEventClassInfo.getAxisValue = + env->GetMethodID(motionEventClass, "getAxisValue", "(II)F"); + + gMotionEventClassInfoInitialized = true; + } + + int pointerCount = + env->CallIntMethod(motionEvent, gMotionEventClassInfo.getPointerCount); + pointerCount = + std::min(pointerCount, GAMEACTIVITY_MAX_NUM_POINTERS_IN_MOTION_EVENT); + out_event->pointerCount = pointerCount; + for (int i = 0; i < pointerCount; ++i) { + out_event->pointers[i] = { + /*id=*/env->CallIntMethod(motionEvent, + gMotionEventClassInfo.getPointerId, i), + /*axisValues=*/{0}, + /*rawX=*/gMotionEventClassInfo.getRawX + ? env->CallFloatMethod(motionEvent, + gMotionEventClassInfo.getRawX, i) + : 0, + /*rawY=*/gMotionEventClassInfo.getRawY + ? env->CallFloatMethod(motionEvent, + gMotionEventClassInfo.getRawY, i) + : 0, + }; + + for (int axisIndex = 0; + axisIndex < GAME_ACTIVITY_POINTER_INFO_AXIS_COUNT; ++axisIndex) { + if (enabledAxes[axisIndex]) { + out_event->pointers[i].axisValues[axisIndex] = + env->CallFloatMethod(motionEvent, + gMotionEventClassInfo.getAxisValue, + axisIndex, i); + } + } + } + + out_event->deviceId = + env->CallIntMethod(motionEvent, gMotionEventClassInfo.getDeviceId); + out_event->source = + env->CallIntMethod(motionEvent, gMotionEventClassInfo.getSource); + out_event->action = + env->CallIntMethod(motionEvent, gMotionEventClassInfo.getAction); + out_event->eventTime = + env->CallLongMethod(motionEvent, gMotionEventClassInfo.getEventTime) * + 1000000; + out_event->downTime = + env->CallLongMethod(motionEvent, gMotionEventClassInfo.getDownTime) * + 1000000; + out_event->flags = + env->CallIntMethod(motionEvent, gMotionEventClassInfo.getFlags); + out_event->metaState = + env->CallIntMethod(motionEvent, gMotionEventClassInfo.getMetaState); + out_event->actionButton = + gMotionEventClassInfo.getActionButton + ? env->CallIntMethod(motionEvent, + gMotionEventClassInfo.getActionButton) + : 0; + out_event->buttonState = + gMotionEventClassInfo.getButtonState + ? env->CallIntMethod(motionEvent, + gMotionEventClassInfo.getButtonState) + : 0; + out_event->classification = + gMotionEventClassInfo.getClassification + ? env->CallIntMethod(motionEvent, + gMotionEventClassInfo.getClassification) + : 0; + out_event->edgeFlags = + env->CallIntMethod(motionEvent, gMotionEventClassInfo.getEdgeFlags); + out_event->precisionX = + env->CallFloatMethod(motionEvent, gMotionEventClassInfo.getXPrecision); + out_event->precisionY = + env->CallFloatMethod(motionEvent, gMotionEventClassInfo.getYPrecision); +} + +static struct { + jmethodID getDeviceId; + jmethodID getSource; + jmethodID getAction; + + jmethodID getEventTime; + jmethodID getDownTime; + + jmethodID getFlags; + jmethodID getMetaState; + + jmethodID getModifiers; + jmethodID getRepeatCount; + jmethodID getKeyCode; +} gKeyEventClassInfo; + +extern "C" void GameActivityKeyEvent_fromJava(JNIEnv *env, jobject keyEvent, + GameActivityKeyEvent *out_event) { + static bool gKeyEventClassInfoInitialized = false; + if (!gKeyEventClassInfoInitialized) { + int sdkVersion = GetSystemPropAsInt("ro.build.version.sdk"); + gKeyEventClassInfo = {0}; + jclass keyEventClass = env->FindClass("android/view/KeyEvent"); + gKeyEventClassInfo.getDeviceId = + env->GetMethodID(keyEventClass, "getDeviceId", "()I"); + gKeyEventClassInfo.getSource = + env->GetMethodID(keyEventClass, "getSource", "()I"); + gKeyEventClassInfo.getAction = + env->GetMethodID(keyEventClass, "getAction", "()I"); + gKeyEventClassInfo.getEventTime = + env->GetMethodID(keyEventClass, "getEventTime", "()J"); + gKeyEventClassInfo.getDownTime = + env->GetMethodID(keyEventClass, "getDownTime", "()J"); + gKeyEventClassInfo.getFlags = + env->GetMethodID(keyEventClass, "getFlags", "()I"); + gKeyEventClassInfo.getMetaState = + env->GetMethodID(keyEventClass, "getMetaState", "()I"); + if (sdkVersion >= 13) { + gKeyEventClassInfo.getModifiers = + env->GetMethodID(keyEventClass, "getModifiers", "()I"); + } + gKeyEventClassInfo.getRepeatCount = + env->GetMethodID(keyEventClass, "getRepeatCount", "()I"); + gKeyEventClassInfo.getKeyCode = + env->GetMethodID(keyEventClass, "getKeyCode", "()I"); + + gKeyEventClassInfoInitialized = true; + } + + *out_event = { + /*deviceId=*/env->CallIntMethod(keyEvent, + gKeyEventClassInfo.getDeviceId), + /*source=*/env->CallIntMethod(keyEvent, gKeyEventClassInfo.getSource), + /*action=*/env->CallIntMethod(keyEvent, gKeyEventClassInfo.getAction), + // TODO: introduce a millisecondsToNanoseconds helper: + /*eventTime=*/ + env->CallLongMethod(keyEvent, gKeyEventClassInfo.getEventTime) * + 1000000, + /*downTime=*/ + env->CallLongMethod(keyEvent, gKeyEventClassInfo.getDownTime) * 1000000, + /*flags=*/env->CallIntMethod(keyEvent, gKeyEventClassInfo.getFlags), + /*metaState=*/ + env->CallIntMethod(keyEvent, gKeyEventClassInfo.getMetaState), + /*modifiers=*/gKeyEventClassInfo.getModifiers + ? env->CallIntMethod(keyEvent, gKeyEventClassInfo.getModifiers) + : 0, + /*repeatCount=*/ + env->CallIntMethod(keyEvent, gKeyEventClassInfo.getRepeatCount), + /*keyCode=*/ + env->CallIntMethod(keyEvent, gKeyEventClassInfo.getKeyCode)}; +} + +static bool onTouchEvent_native(JNIEnv *env, jobject javaGameActivity, + jlong handle, jobject motionEvent) { + if (handle == 0) return; + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onTouchEvent == nullptr) return false; + + static GameActivityMotionEvent c_event; + GameActivityMotionEvent_fromJava(env, motionEvent, &c_event); + return code->callbacks.onTouchEvent(code, &c_event); +} + +static bool onKeyUp_native(JNIEnv *env, jobject javaGameActivity, jlong handle, + jobject keyEvent) { + if (handle == 0) return; + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onKeyUp == nullptr) return false; + + static GameActivityKeyEvent c_event; + GameActivityKeyEvent_fromJava(env, keyEvent, &c_event); + return code->callbacks.onKeyUp(code, &c_event); +} + +static bool onKeyDown_native(JNIEnv *env, jobject javaGameActivity, + jlong handle, jobject keyEvent) { + if (handle == 0) return; + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onKeyDown == nullptr) return; + + static GameActivityKeyEvent c_event; + GameActivityKeyEvent_fromJava(env, keyEvent, &c_event); + return code->callbacks.onKeyDown(code, &c_event); +} + +static void onTextInput_native(JNIEnv *env, jobject activity, jlong handle, + jobject textInputEvent) { + if (handle == 0) return; + NativeCode *code = (NativeCode *)handle; + GameTextInput_processEvent(code->gameTextInput, textInputEvent); +} + +static void onWindowInsetsChanged_native(JNIEnv *env, jobject activity, + jlong handle) { + if (handle == 0) return; + NativeCode *code = (NativeCode *)handle; + if (code->callbacks.onWindowInsetsChanged == nullptr) return; + for (int type = 0; type < GAMECOMMON_INSETS_TYPE_COUNT; ++type) { + jobject jinsets; + // Note that waterfall insets are handled differently on the Java side. + if (type == GAMECOMMON_INSETS_TYPE_WATERFALL) { + jinsets = env->CallObjectMethod( + code->javaGameActivity, + gGameActivityClassInfo.getWaterfallInsets); + } else { + jint jtype = env->CallStaticIntMethod( + gWindowInsetsCompatTypeClassInfo.clazz, + gWindowInsetsCompatTypeClassInfo.methods[type]); + jinsets = env->CallObjectMethod( + code->javaGameActivity, gGameActivityClassInfo.getWindowInsets, + jtype); + } + ARect &insets = code->insetsState[type]; + if (jinsets == nullptr) { + insets.left = 0; + insets.right = 0; + insets.top = 0; + insets.bottom = 0; + } else { + insets.left = env->GetIntField(jinsets, gInsetsClassInfo.left); + insets.right = env->GetIntField(jinsets, gInsetsClassInfo.right); + insets.top = env->GetIntField(jinsets, gInsetsClassInfo.top); + insets.bottom = env->GetIntField(jinsets, gInsetsClassInfo.bottom); + } + } + GameTextInput_processImeInsets( + code->gameTextInput, &code->insetsState[GAMECOMMON_INSETS_TYPE_IME]); + code->callbacks.onWindowInsetsChanged(code); +} + +static void setInputConnection_native(JNIEnv *env, jobject activity, + jlong handle, jobject inputConnection) { + NativeCode *code = (NativeCode *)handle; + GameTextInput_setInputConnection(code->gameTextInput, inputConnection); +} + +static const JNINativeMethod g_methods[] = { + {"loadNativeCode", + "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/" + "String;Ljava/lang/String;Landroid/content/res/AssetManager;[B)J", + (void *)loadNativeCode_native}, + {"getDlError", "()Ljava/lang/String;", (void *)getDlError_native}, + {"unloadNativeCode", "(J)V", (void *)unloadNativeCode_native}, + {"onStartNative", "(J)V", (void *)onStart_native}, + {"onResumeNative", "(J)V", (void *)onResume_native}, + {"onSaveInstanceStateNative", "(J)[B", (void *)onSaveInstanceState_native}, + {"onPauseNative", "(J)V", (void *)onPause_native}, + {"onStopNative", "(J)V", (void *)onStop_native}, + {"onConfigurationChangedNative", "(J)V", + (void *)onConfigurationChanged_native}, + {"onTrimMemoryNative", "(JI)V", (void *)onTrimMemory_native}, + {"onWindowFocusChangedNative", "(JZ)V", + (void *)onWindowFocusChanged_native}, + {"onSurfaceCreatedNative", "(JLandroid/view/Surface;)V", + (void *)onSurfaceCreated_native}, + {"onSurfaceChangedNative", "(JLandroid/view/Surface;III)V", + (void *)onSurfaceChanged_native}, + {"onSurfaceRedrawNeededNative", "(JLandroid/view/Surface;)V", + (void *)onSurfaceRedrawNeeded_native}, + {"onSurfaceDestroyedNative", "(J)V", (void *)onSurfaceDestroyed_native}, + {"onTouchEventNative", "(JLandroid/view/MotionEvent;)Z", + (void *)onTouchEvent_native}, + {"onKeyDownNative", "(JLandroid/view/KeyEvent;)Z", + (void *)onKeyDown_native}, + {"onKeyUpNative", "(JLandroid/view/KeyEvent;)Z", (void *)onKeyUp_native}, + {"onTextInputEventNative", + "(JLcom/google/androidgamesdk/gametextinput/State;)V", + (void *)onTextInput_native}, + {"onWindowInsetsChangedNative", "(J)V", + (void *)onWindowInsetsChanged_native}, + {"setInputConnectionNative", + "(JLcom/google/androidgamesdk/gametextinput/InputConnection;)V", + (void *)setInputConnection_native}, +}; + +static const char *const kGameActivityPathName = + "com/google/androidgamesdk/GameActivity"; + +static const char *const kInsetsPathName = "androidx/core/graphics/Insets"; + +static const char *const kWindowInsetsCompatTypePathName = + "androidx/core/view/WindowInsetsCompat$Type"; + +#define FIND_CLASS(var, className) \ + var = env->FindClass(className); \ + LOG_FATAL_IF(!var, "Unable to find class %s", className); + +#define GET_METHOD_ID(var, clazz, methodName, fieldDescriptor) \ + var = env->GetMethodID(clazz, methodName, fieldDescriptor); \ + LOG_FATAL_IF(!var, "Unable to find method %s", methodName); + +#define GET_STATIC_METHOD_ID(var, clazz, methodName, fieldDescriptor) \ + var = env->GetStaticMethodID(clazz, methodName, fieldDescriptor); \ + LOG_FATAL_IF(!var, "Unable to find static method %s", methodName); + +#define GET_FIELD_ID(var, clazz, fieldName, fieldDescriptor) \ + var = env->GetFieldID(clazz, fieldName, fieldDescriptor); \ + LOG_FATAL_IF(!var, "Unable to find field %s" fieldName); + +static int jniRegisterNativeMethods(JNIEnv *env, const char *className, + const JNINativeMethod *methods, + int numMethods) { + ALOGV("Registering %s's %d native methods...", className, numMethods); + jclass clazz = env->FindClass(className); + LOG_FATAL_IF(clazz == nullptr, + "Native registration unable to find class '%s'; aborting...", + className); + int result = env->RegisterNatives(clazz, methods, numMethods); + env->DeleteLocalRef(clazz); + if (result == 0) { + return 0; + } + + // Failure to register natives is fatal. Try to report the corresponding + // exception, otherwise abort with generic failure message. + jthrowable thrown = env->ExceptionOccurred(); + if (thrown != NULL) { + env->ExceptionDescribe(); + env->DeleteLocalRef(thrown); + } + LOG_FATAL("RegisterNatives failed for '%s'; aborting...", className); +} + +extern "C" int GameActivity_register(JNIEnv *env) { + ALOGD("GameActivity_register"); + jclass activity_class; + FIND_CLASS(activity_class, kGameActivityPathName); + GET_METHOD_ID(gGameActivityClassInfo.finish, activity_class, "finish", + "()V"); + GET_METHOD_ID(gGameActivityClassInfo.setWindowFlags, activity_class, + "setWindowFlags", "(II)V"); + GET_METHOD_ID(gGameActivityClassInfo.getWindowInsets, activity_class, + "getWindowInsets", "(I)Landroidx/core/graphics/Insets;"); + GET_METHOD_ID(gGameActivityClassInfo.getWaterfallInsets, activity_class, + "getWaterfallInsets", "()Landroidx/core/graphics/Insets;"); + GET_METHOD_ID(gGameActivityClassInfo.setImeEditorInfoFields, activity_class, + "setImeEditorInfoFields", "(III)V"); + jclass insets_class; + FIND_CLASS(insets_class, kInsetsPathName); + GET_FIELD_ID(gInsetsClassInfo.left, insets_class, "left", "I"); + GET_FIELD_ID(gInsetsClassInfo.right, insets_class, "right", "I"); + GET_FIELD_ID(gInsetsClassInfo.top, insets_class, "top", "I"); + GET_FIELD_ID(gInsetsClassInfo.bottom, insets_class, "bottom", "I"); + jclass windowInsetsCompatType_class; + FIND_CLASS(windowInsetsCompatType_class, kWindowInsetsCompatTypePathName); + gWindowInsetsCompatTypeClassInfo.clazz = + (jclass)env->NewGlobalRef(windowInsetsCompatType_class); + // These names must match, in order, the GameCommonInsetsType enum fields + // Note that waterfall is handled differently by the insets API, so we + // exclude it here. + const char *methodNames[GAMECOMMON_INSETS_TYPE_WATERFALL] = { + "captionBar", + "displayCutout", + "ime", + "mandatorySystemGestures", + "navigationBars", + "statusBars", + "systemBars", + "systemGestures", + "tappableElement"}; + for (int i = 0; i < GAMECOMMON_INSETS_TYPE_WATERFALL; ++i) { + GET_STATIC_METHOD_ID(gWindowInsetsCompatTypeClassInfo.methods[i], + windowInsetsCompatType_class, methodNames[i], + "()I"); + } + return jniRegisterNativeMethods(env, kGameActivityPathName, g_methods, + NELEM(g_methods)); +} + +// Register this method so that GameActiviy_register does not need to be called +// manually. +extern "C" jlong Java_com_google_androidgamesdk_GameActivity_loadNativeCode( + JNIEnv *env, jobject javaGameActivity, jstring path, jstring funcName, + jstring internalDataDir, jstring obbDir, jstring externalDataDir, + jobject jAssetMgr, jbyteArray savedState) { + GameActivity_register(env); + jlong nativeCode = loadNativeCode_native( + env, javaGameActivity, path, funcName, internalDataDir, obbDir, + externalDataDir, jAssetMgr, savedState); + return nativeCode; +} diff --git a/game-activity/csrc/game-activity/GameActivity.h b/game-activity/csrc/game-activity/GameActivity.h new file mode 100644 index 0000000..da102bc --- /dev/null +++ b/game-activity/csrc/game-activity/GameActivity.h @@ -0,0 +1,769 @@ +/* + * Copyright (C) 2021 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * @addtogroup GameActivity Game Activity + * The interface to use GameActivity. + * @{ + */ + +/** + * @file GameActivity.h + */ + +#ifndef ANDROID_GAME_SDK_GAME_ACTIVITY_H +#define ANDROID_GAME_SDK_GAME_ACTIVITY_H + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "game-text-input/gametextinput.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * {@link GameActivityCallbacks} + */ +struct GameActivityCallbacks; + +/** + * This structure defines the native side of an android.app.GameActivity. + * It is created by the framework, and handed to the application's native + * code as it is being launched. + */ +typedef struct GameActivity { + /** + * Pointer to the callback function table of the native application. + * You can set the functions here to your own callbacks. The callbacks + * pointer itself here should not be changed; it is allocated and managed + * for you by the framework. + */ + struct GameActivityCallbacks* callbacks; + + /** + * The global handle on the process's Java VM. + */ + JavaVM* vm; + + /** + * JNI context for the main thread of the app. Note that this field + * can ONLY be used from the main thread of the process; that is, the + * thread that calls into the GameActivityCallbacks. + */ + JNIEnv* env; + + /** + * The GameActivity object handle. + */ + jobject javaGameActivity; + + /** + * Path to this application's internal data directory. + */ + const char* internalDataPath; + + /** + * Path to this application's external (removable/mountable) data directory. + */ + const char* externalDataPath; + + /** + * The platform's SDK version code. + */ + int32_t sdkVersion; + + /** + * This is the native instance of the application. It is not used by + * the framework, but can be set by the application to its own instance + * state. + */ + void* instance; + + /** + * Pointer to the Asset Manager instance for the application. The + * application uses this to access binary assets bundled inside its own .apk + * file. + */ + AAssetManager* assetManager; + + /** + * Available starting with Honeycomb: path to the directory containing + * the application's OBB files (if any). If the app doesn't have any + * OBB files, this directory may not exist. + */ + const char* obbPath; +} GameActivity; + +/** + * The maximum number of axes supported in an Android MotionEvent. + * See https://developer.android.com/ndk/reference/group/input. + */ +#define GAME_ACTIVITY_POINTER_INFO_AXIS_COUNT 48 + +/** + * \brief Describe information about a pointer, found in a + * GameActivityMotionEvent. + * + * You can read values directly from this structure, or use helper functions + * (`GameActivityPointerAxes_getX`, `GameActivityPointerAxes_getY` and + * `GameActivityPointerAxes_getAxisValue`). + * + * The X axis and Y axis are enabled by default but any other axis that you want + * to read **must** be enabled first, using + * `GameActivityPointerAxes_enableAxis`. + * + * \see GameActivityMotionEvent + */ +typedef struct GameActivityPointerAxes { + int32_t id; + float axisValues[GAME_ACTIVITY_POINTER_INFO_AXIS_COUNT]; + float rawX; + float rawY; +} GameActivityPointerAxes; + +/** \brief Get the current X coordinate of the pointer. */ +inline float GameActivityPointerAxes_getX( + const GameActivityPointerAxes* pointerInfo) { + return pointerInfo->axisValues[AMOTION_EVENT_AXIS_X]; +} + +/** \brief Get the current Y coordinate of the pointer. */ +inline float GameActivityPointerAxes_getY( + const GameActivityPointerAxes* pointerInfo) { + return pointerInfo->axisValues[AMOTION_EVENT_AXIS_Y]; +} + +/** + * \brief Enable the specified axis, so that its value is reported in the + * GameActivityPointerAxes structures stored in a motion event. + * + * You must enable any axis that you want to read, apart from + * `AMOTION_EVENT_AXIS_X` and `AMOTION_EVENT_AXIS_Y` that are enabled by + * default. + * + * If the axis index is out of range, nothing is done. + */ +void GameActivityPointerAxes_enableAxis(int32_t axis); + +/** + * \brief Disable the specified axis. Its value won't be reported in the + * GameActivityPointerAxes structures stored in a motion event anymore. + * + * Apart from X and Y, any axis that you want to read **must** be enabled first, + * using `GameActivityPointerAxes_enableAxis`. + * + * If the axis index is out of range, nothing is done. + */ +void GameActivityPointerAxes_disableAxis(int32_t axis); + +/** + * \brief Get the value of the requested axis. + * + * Apart from X and Y, any axis that you want to read **must** be enabled first, + * using `GameActivityPointerAxes_enableAxis`. + * + * Find the valid enums for the axis (`AMOTION_EVENT_AXIS_X`, + * `AMOTION_EVENT_AXIS_Y`, `AMOTION_EVENT_AXIS_PRESSURE`...) + * in https://developer.android.com/ndk/reference/group/input. + * + * @param pointerInfo The structure containing information about the pointer, + * obtained from GameActivityMotionEvent. + * @param axis The axis to get the value from + * @return The value of the axis, or 0 if the axis is invalid or was not + * enabled. + */ +inline float GameActivityPointerAxes_getAxisValue( + GameActivityPointerAxes* pointerInfo, int32_t axis) { + if (axis < 0 || axis >= GAME_ACTIVITY_POINTER_INFO_AXIS_COUNT) { + return 0; + } + + return pointerInfo->axisValues[axis]; +} + +/** + * The maximum number of pointers returned inside a motion event. + */ +#if (defined GAMEACTIVITY_MAX_NUM_POINTERS_IN_MOTION_EVENT_OVERRIDE) +#define GAMEACTIVITY_MAX_NUM_POINTERS_IN_MOTION_EVENT \ + GAMEACTIVITY_MAX_NUM_POINTERS_IN_MOTION_EVENT_OVERRIDE +#else +#define GAMEACTIVITY_MAX_NUM_POINTERS_IN_MOTION_EVENT 8 +#endif + +/** + * \brief Describe a motion event that happened on the GameActivity SurfaceView. + * + * This is 1:1 mapping to the information contained in a Java `MotionEvent` + * (see https://developer.android.com/reference/android/view/MotionEvent). + */ +typedef struct GameActivityMotionEvent { + int32_t deviceId; + int32_t source; + int32_t action; + + int64_t eventTime; + int64_t downTime; + + int32_t flags; + int32_t metaState; + + int32_t actionButton; + int32_t buttonState; + int32_t classification; + int32_t edgeFlags; + + uint32_t pointerCount; + GameActivityPointerAxes + pointers[GAMEACTIVITY_MAX_NUM_POINTERS_IN_MOTION_EVENT]; + + float precisionX; + float precisionY; +} GameActivityMotionEvent; + +/** + * \brief Describe a key event that happened on the GameActivity SurfaceView. + * + * This is 1:1 mapping to the information contained in a Java `KeyEvent` + * (see https://developer.android.com/reference/android/view/KeyEvent). + */ +typedef struct GameActivityKeyEvent { + int32_t deviceId; + int32_t source; + int32_t action; + + int64_t eventTime; + int64_t downTime; + + int32_t flags; + int32_t metaState; + + int32_t modifiers; + int32_t repeatCount; + int32_t keyCode; +} GameActivityKeyEvent; + +/** + * A function the user should call from their callback with the data, its length + * and the library- supplied context. + */ +typedef void (*SaveInstanceStateRecallback)(const char* bytes, int len, + void* context); + +/** + * These are the callbacks the framework makes into a native application. + * All of these callbacks happen on the main thread of the application. + * By default, all callbacks are NULL; set to a pointer to your own function + * to have it called. + */ +typedef struct GameActivityCallbacks { + /** + * GameActivity has started. See Java documentation for Activity.onStart() + * for more information. + */ + void (*onStart)(GameActivity* activity); + + /** + * GameActivity has resumed. See Java documentation for Activity.onResume() + * for more information. + */ + void (*onResume)(GameActivity* activity); + + /** + * The framework is asking GameActivity to save its current instance state. + * See the Java documentation for Activity.onSaveInstanceState() for more + * information. The user should call the recallback with their data, its + * length and the provided context; they retain ownership of the data. Note + * that the saved state will be persisted, so it can not contain any active + * entities (pointers to memory, file descriptors, etc). + */ + void (*onSaveInstanceState)(GameActivity* activity, + SaveInstanceStateRecallback recallback, + void* context); + + /** + * GameActivity has paused. See Java documentation for Activity.onPause() + * for more information. + */ + void (*onPause)(GameActivity* activity); + + /** + * GameActivity has stopped. See Java documentation for Activity.onStop() + * for more information. + */ + void (*onStop)(GameActivity* activity); + + /** + * GameActivity is being destroyed. See Java documentation for + * Activity.onDestroy() for more information. + */ + void (*onDestroy)(GameActivity* activity); + + /** + * Focus has changed in this GameActivity's window. This is often used, + * for example, to pause a game when it loses input focus. + */ + void (*onWindowFocusChanged)(GameActivity* activity, bool hasFocus); + + /** + * The drawing window for this native activity has been created. You + * can use the given native window object to start drawing. + */ + void (*onNativeWindowCreated)(GameActivity* activity, + ANativeWindow* window); + + /** + * The drawing window for this native activity has been resized. You should + * retrieve the new size from the window and ensure that your rendering in + * it now matches. + */ + void (*onNativeWindowResized)(GameActivity* activity, ANativeWindow* window, + int32_t newWidth, int32_t newHeight); + + /** + * The drawing window for this native activity needs to be redrawn. To + * avoid transient artifacts during screen changes (such resizing after + * rotation), applications should not return from this function until they + * have finished drawing their window in its current state. + */ + void (*onNativeWindowRedrawNeeded)(GameActivity* activity, + ANativeWindow* window); + + /** + * The drawing window for this native activity is going to be destroyed. + * You MUST ensure that you do not touch the window object after returning + * from this function: in the common case of drawing to the window from + * another thread, that means the implementation of this callback must + * properly synchronize with the other thread to stop its drawing before + * returning from here. + */ + void (*onNativeWindowDestroyed)(GameActivity* activity, + ANativeWindow* window); + + /** + * The current device AConfiguration has changed. The new configuration can + * be retrieved from assetManager. + */ + void (*onConfigurationChanged)(GameActivity* activity); + + /** + * The system is running low on memory. Use this callback to release + * resources you do not need, to help the system avoid killing more + * important processes. + */ + void (*onTrimMemory)(GameActivity* activity, int level); + + /** + * Callback called for every MotionEvent done on the GameActivity + * SurfaceView. Ownership of `event` is maintained by the library and it is + * only valid during the callback. + */ + bool (*onTouchEvent)(GameActivity* activity, + const GameActivityMotionEvent* event); + + /** + * Callback called for every key down event on the GameActivity SurfaceView. + * Ownership of `event` is maintained by the library and it is only valid + * during the callback. + */ + bool (*onKeyDown)(GameActivity* activity, + const GameActivityKeyEvent* event); + + /** + * Callback called for every key up event on the GameActivity SurfaceView. + * Ownership of `event` is maintained by the library and it is only valid + * during the callback. + */ + bool (*onKeyUp)(GameActivity* activity, const GameActivityKeyEvent* event); + + /** + * Callback called for every soft-keyboard text input event. + * Ownership of `state` is maintained by the library and it is only valid + * during the callback. + */ + void (*onTextInputEvent)(GameActivity* activity, + const GameTextInputState* state); + + /** + * Callback called when WindowInsets of the main app window have changed. + * Call GameActivity_getWindowInsets to retrieve the insets themselves. + */ + void (*onWindowInsetsChanged)(GameActivity* activity); +} GameActivityCallbacks; + +/** + * \brief Convert a Java `MotionEvent` to a `GameActivityMotionEvent`. + * + * This is done automatically by the GameActivity: see `onTouchEvent` to set + * a callback to consume the received events. + * This function can be used if you re-implement events handling in your own + * activity. + * Ownership of out_event is maintained by the caller. + */ +void GameActivityMotionEvent_fromJava(JNIEnv* env, jobject motionEvent, + GameActivityMotionEvent* out_event); + +/** + * \brief Convert a Java `KeyEvent` to a `GameActivityKeyEvent`. + * + * This is done automatically by the GameActivity: see `onKeyUp` and `onKeyDown` + * to set a callback to consume the received events. + * This function can be used if you re-implement events handling in your own + * activity. + * Ownership of out_event is maintained by the caller. + */ +void GameActivityKeyEvent_fromJava(JNIEnv* env, jobject motionEvent, + GameActivityKeyEvent* out_event); + +/** + * This is the function that must be in the native code to instantiate the + * application's native activity. It is called with the activity instance (see + * above); if the code is being instantiated from a previously saved instance, + * the savedState will be non-NULL and point to the saved data. You must make + * any copy of this data you need -- it will be released after you return from + * this function. + */ +typedef void GameActivity_createFunc(GameActivity* activity, void* savedState, + size_t savedStateSize); + +/** + * The name of the function that NativeInstance looks for when launching its + * native code. This is the default function that is used, you can specify + * "android.app.func_name" string meta-data in your manifest to use a different + * function. + */ +extern GameActivity_createFunc GameActivity_onCreate; + +/** + * Finish the given activity. Its finish() method will be called, causing it + * to be stopped and destroyed. Note that this method can be called from + * *any* thread; it will send a message to the main thread of the process + * where the Java finish call will take place. + */ +void GameActivity_finish(GameActivity* activity); + +/** + * Flags for GameActivity_setWindowFlags, + * as per the Java API at android.view.WindowManager.LayoutParams. + */ +enum GameActivitySetWindowFlags { + /** + * As long as this window is visible to the user, allow the lock + * screen to activate while the screen is on. This can be used + * independently, or in combination with {@link + * GAMEACTIVITY_FLAG_KEEP_SCREEN_ON} and/or {@link + * GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED} + */ + GAMEACTIVITY_FLAG_ALLOW_LOCK_WHILE_SCREEN_ON = 0x00000001, + /** Everything behind this window will be dimmed. */ + GAMEACTIVITY_FLAG_DIM_BEHIND = 0x00000002, + /** + * Blur everything behind this window. + * @deprecated Blurring is no longer supported. + */ + GAMEACTIVITY_FLAG_BLUR_BEHIND = 0x00000004, + /** + * This window won't ever get key input focus, so the + * user can not send key or other button events to it. Those will + * instead go to whatever focusable window is behind it. This flag + * will also enable {@link GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL} whether or not + * that is explicitly set. + * + * Setting this flag also implies that the window will not need to + * interact with + * a soft input method, so it will be Z-ordered and positioned + * independently of any active input method (typically this means it + * gets Z-ordered on top of the input method, so it can use the full + * screen for its content and cover the input method if needed. You + * can use {@link GAMEACTIVITY_FLAG_ALT_FOCUSABLE_IM} to modify this + * behavior. + */ + GAMEACTIVITY_FLAG_NOT_FOCUSABLE = 0x00000008, + /** This window can never receive touch events. */ + GAMEACTIVITY_FLAG_NOT_TOUCHABLE = 0x00000010, + /** + * Even when this window is focusable (its + * {@link GAMEACTIVITY_FLAG_NOT_FOCUSABLE} is not set), allow any pointer + * events outside of the window to be sent to the windows behind it. + * Otherwise it will consume all pointer events itself, regardless of + * whether they are inside of the window. + */ + GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL = 0x00000020, + /** + * When set, if the device is asleep when the touch + * screen is pressed, you will receive this first touch event. Usually + * the first touch event is consumed by the system since the user can + * not see what they are pressing on. + * + * @deprecated This flag has no effect. + */ + GAMEACTIVITY_FLAG_TOUCHABLE_WHEN_WAKING = 0x00000040, + /** + * As long as this window is visible to the user, keep + * the device's screen turned on and bright. + */ + GAMEACTIVITY_FLAG_KEEP_SCREEN_ON = 0x00000080, + /** + * Place the window within the entire screen, ignoring + * decorations around the border (such as the status bar). The + * window must correctly position its contents to take the screen + * decoration into account. + */ + GAMEACTIVITY_FLAG_LAYOUT_IN_SCREEN = 0x00000100, + /** Allows the window to extend outside of the screen. */ + GAMEACTIVITY_FLAG_LAYOUT_NO_LIMITS = 0x00000200, + /** + * Hide all screen decorations (such as the status + * bar) while this window is displayed. This allows the window to + * use the entire display space for itself -- the status bar will + * be hidden when an app window with this flag set is on the top + * layer. A fullscreen window will ignore a value of {@link + * GAMEACTIVITY_SOFT_INPUT_ADJUST_RESIZE}; the window will stay + * fullscreen and will not resize. + */ + GAMEACTIVITY_FLAG_FULLSCREEN = 0x00000400, + /** + * Override {@link GAMEACTIVITY_FLAG_FULLSCREEN} and force the + * screen decorations (such as the status bar) to be shown. + */ + GAMEACTIVITY_FLAG_FORCE_NOT_FULLSCREEN = 0x00000800, + /** + * Turn on dithering when compositing this window to + * the screen. + * @deprecated This flag is no longer used. + */ + GAMEACTIVITY_FLAG_DITHER = 0x00001000, + /** + * Treat the content of the window as secure, preventing + * it from appearing in screenshots or from being viewed on non-secure + * displays. + */ + GAMEACTIVITY_FLAG_SECURE = 0x00002000, + /** + * A special mode where the layout parameters are used + * to perform scaling of the surface when it is composited to the + * screen. + */ + GAMEACTIVITY_FLAG_SCALED = 0x00004000, + /** + * Intended for windows that will often be used when the user is + * holding the screen against their face, it will aggressively + * filter the event stream to prevent unintended presses in this + * situation that may not be desired for a particular window, when + * such an event stream is detected, the application will receive + * a {@link AMOTION_EVENT_ACTION_CANCEL} to indicate this so + * applications can handle this accordingly by taking no action on + * the event until the finger is released. + */ + GAMEACTIVITY_FLAG_IGNORE_CHEEK_PRESSES = 0x00008000, + /** + * A special option only for use in combination with + * {@link GAMEACTIVITY_FLAG_LAYOUT_IN_SCREEN}. When requesting layout in + * the screen your window may appear on top of or behind screen decorations + * such as the status bar. By also including this flag, the window + * manager will report the inset rectangle needed to ensure your + * content is not covered by screen decorations. + */ + GAMEACTIVITY_FLAG_LAYOUT_INSET_DECOR = 0x00010000, + /** + * Invert the state of {@link GAMEACTIVITY_FLAG_NOT_FOCUSABLE} with + * respect to how this window interacts with the current method. + * That is, if FLAG_NOT_FOCUSABLE is set and this flag is set, + * then the window will behave as if it needs to interact with the + * input method and thus be placed behind/away from it; if {@link + * GAMEACTIVITY_FLAG_NOT_FOCUSABLE} is not set and this flag is set, + * then the window will behave as if it doesn't need to interact + * with the input method and can be placed to use more space and + * cover the input method. + */ + GAMEACTIVITY_FLAG_ALT_FOCUSABLE_IM = 0x00020000, + /** + * If you have set {@link GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL}, you + * can set this flag to receive a single special MotionEvent with + * the action + * {@link AMOTION_EVENT_ACTION_OUTSIDE} for + * touches that occur outside of your window. Note that you will not + * receive the full down/move/up gesture, only the location of the + * first down as an {@link AMOTION_EVENT_ACTION_OUTSIDE}. + */ + GAMEACTIVITY_FLAG_WATCH_OUTSIDE_TOUCH = 0x00040000, + /** + * Special flag to let windows be shown when the screen + * is locked. This will let application windows take precedence over + * key guard or any other lock screens. Can be used with + * {@link GAMEACTIVITY_FLAG_KEEP_SCREEN_ON} to turn screen on and display + * windows directly before showing the key guard window. Can be used with + * {@link GAMEACTIVITY_FLAG_DISMISS_KEYGUARD} to automatically fully + * dismisss non-secure keyguards. This flag only applies to the top-most + * full-screen window. + */ + GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED = 0x00080000, + /** + * Ask that the system wallpaper be shown behind + * your window. The window surface must be translucent to be able + * to actually see the wallpaper behind it; this flag just ensures + * that the wallpaper surface will be there if this window actually + * has translucent regions. + */ + GAMEACTIVITY_FLAG_SHOW_WALLPAPER = 0x00100000, + /** + * When set as a window is being added or made + * visible, once the window has been shown then the system will + * poke the power manager's user activity (as if the user had woken + * up the device) to turn the screen on. + */ + GAMEACTIVITY_FLAG_TURN_SCREEN_ON = 0x00200000, + /** + * When set the window will cause the keyguard to + * be dismissed, only if it is not a secure lock keyguard. Because such + * a keyguard is not needed for security, it will never re-appear if + * the user navigates to another window (in contrast to + * {@link GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED}, which will only temporarily + * hide both secure and non-secure keyguards but ensure they reappear + * when the user moves to another UI that doesn't hide them). + * If the keyguard is currently active and is secure (requires an + * unlock pattern) than the user will still need to confirm it before + * seeing this window, unless {@link GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED} has + * also been set. + */ + GAMEACTIVITY_FLAG_DISMISS_KEYGUARD = 0x00400000, +}; + +/** + * Change the window flags of the given activity. Calls getWindow().setFlags() + * of the given activity. + * Note that some flags must be set before the window decoration is created, + * see + * https://developer.android.com/reference/android/view/Window#setFlags(int,%20int). + * Note also that this method can be called from + * *any* thread; it will send a message to the main thread of the process + * where the Java finish call will take place. + */ +void GameActivity_setWindowFlags(GameActivity* activity, uint32_t addFlags, + uint32_t removeFlags); + +/** + * Flags for GameActivity_showSoftInput; see the Java InputMethodManager + * API for documentation. + */ +enum GameActivityShowSoftInputFlags { + /** + * Implicit request to show the input window, not as the result + * of a direct request by the user. + */ + GAMEACTIVITY_SHOW_SOFT_INPUT_IMPLICIT = 0x0001, + + /** + * The user has forced the input method open (such as by + * long-pressing menu) so it should not be closed until they + * explicitly do so. + */ + GAMEACTIVITY_SHOW_SOFT_INPUT_FORCED = 0x0002, +}; + +/** + * Show the IME while in the given activity. Calls + * InputMethodManager.showSoftInput() for the given activity. Note that this + * method can be called from *any* thread; it will send a message to the main + * thread of the process where the Java call will take place. + */ +void GameActivity_showSoftInput(GameActivity* activity, uint32_t flags); + +/** + * Set the text entry state (see documentation of the GameTextInputState struct + * in the Game Text Input library reference). + * + * Ownership of the state is maintained by the caller. + */ +void GameActivity_setTextInputState(GameActivity* activity, + const GameTextInputState* state); + +/** + * Get the last-received text entry state (see documentation of the + * GameTextInputState struct in the Game Text Input library reference). + * + */ +void GameActivity_getTextInputState(GameActivity* activity, + GameTextInputGetStateCallback callback, + void* context); + +/** + * Get a pointer to the GameTextInput library instance. + */ +GameTextInput* GameActivity_getTextInput(const GameActivity* activity); + +/** + * Flags for GameActivity_hideSoftInput; see the Java InputMethodManager + * API for documentation. + */ +enum GameActivityHideSoftInputFlags { + /** + * The soft input window should only be hidden if it was not + * explicitly shown by the user. + */ + GAMEACTIVITY_HIDE_SOFT_INPUT_IMPLICIT_ONLY = 0x0001, + /** + * The soft input window should normally be hidden, unless it was + * originally shown with {@link GAMEACTIVITY_SHOW_SOFT_INPUT_FORCED}. + */ + GAMEACTIVITY_HIDE_SOFT_INPUT_NOT_ALWAYS = 0x0002, +}; + +/** + * Hide the IME while in the given activity. Calls + * InputMethodManager.hideSoftInput() for the given activity. Note that this + * method can be called from *any* thread; it will send a message to the main + * thread of the process where the Java finish call will take place. + */ +void GameActivity_hideSoftInput(GameActivity* activity, uint32_t flags); + +/** + * Get the current window insets of the particular component. See + * https://developer.android.com/reference/androidx/core/view/WindowInsetsCompat.Type + * for more details. + * You can use these insets to influence what you show on the screen. + */ +void GameActivity_getWindowInsets(GameActivity* activity, + GameCommonInsetsType type, ARect* insets); + +/** + * Set options on how the IME behaves when it is requested for text input. + * See + * https://developer.android.com/reference/android/view/inputmethod/EditorInfo + * for the meaning of inputType, actionId and imeOptions. + * + * Note that this function will attach the current thread to the JVM if it is + * not already attached, so the caller must detach the thread from the JVM + * before the thread is destroyed using DetachCurrentThread. + */ +void GameActivity_setImeEditorInfo(GameActivity* activity, int inputType, + int actionId, int imeOptions); + +#ifdef __cplusplus +} +#endif + +/** @} */ + +#endif // ANDROID_GAME_SDK_GAME_ACTIVITY_H diff --git a/game-activity/csrc/game-activity/native_app_glue/android_native_app_glue.c b/game-activity/csrc/game-activity/native_app_glue/android_native_app_glue.c new file mode 100644 index 0000000..f1b385f --- /dev/null +++ b/game-activity/csrc/game-activity/native_app_glue/android_native_app_glue.c @@ -0,0 +1,571 @@ +/* + * Copyright (C) 2021 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "android_native_app_glue.h" + +#include +#include +#include +#include +#include +#include +#include + +#define LOGI(...) \ + ((void)__android_log_print(ANDROID_LOG_INFO, "threaded_app", __VA_ARGS__)) +#define LOGE(...) \ + ((void)__android_log_print(ANDROID_LOG_ERROR, "threaded_app", __VA_ARGS__)) + +/* For debug builds, always enable the debug traces in this library */ +#ifndef NDEBUG +#define LOGV(...) \ + ((void)__android_log_print(ANDROID_LOG_VERBOSE, "threaded_app", \ + __VA_ARGS__)) +#else +#define LOGV(...) ((void)0) +#endif + +static void free_saved_state(struct android_app* android_app) { + pthread_mutex_lock(&android_app->mutex); + if (android_app->savedState != NULL) { + free(android_app->savedState); + android_app->savedState = NULL; + android_app->savedStateSize = 0; + } + pthread_mutex_unlock(&android_app->mutex); +} + +int8_t android_app_read_cmd(struct android_app* android_app) { + int8_t cmd; + if (read(android_app->msgread, &cmd, sizeof(cmd)) != sizeof(cmd)) { + LOGE("No data on command pipe!"); + return -1; + } + if (cmd == APP_CMD_SAVE_STATE) free_saved_state(android_app); + return cmd; +} + +static void print_cur_config(struct android_app* android_app) { + char lang[2], country[2]; + AConfiguration_getLanguage(android_app->config, lang); + AConfiguration_getCountry(android_app->config, country); + + LOGV( + "Config: mcc=%d mnc=%d lang=%c%c cnt=%c%c orien=%d touch=%d dens=%d " + "keys=%d nav=%d keysHid=%d navHid=%d sdk=%d size=%d long=%d " + "modetype=%d modenight=%d", + AConfiguration_getMcc(android_app->config), + AConfiguration_getMnc(android_app->config), lang[0], lang[1], + country[0], country[1], + AConfiguration_getOrientation(android_app->config), + AConfiguration_getTouchscreen(android_app->config), + AConfiguration_getDensity(android_app->config), + AConfiguration_getKeyboard(android_app->config), + AConfiguration_getNavigation(android_app->config), + AConfiguration_getKeysHidden(android_app->config), + AConfiguration_getNavHidden(android_app->config), + AConfiguration_getSdkVersion(android_app->config), + AConfiguration_getScreenSize(android_app->config), + AConfiguration_getScreenLong(android_app->config), + AConfiguration_getUiModeType(android_app->config), + AConfiguration_getUiModeNight(android_app->config)); +} + +void android_app_pre_exec_cmd(struct android_app* android_app, int8_t cmd) { + switch (cmd) { + case UNUSED_APP_CMD_INPUT_CHANGED: + LOGV("UNUSED_APP_CMD_INPUT_CHANGED"); + // Do nothing. This can be used in the future to handle AInputQueue + // natively, like done in NativeActivity. + break; + + case APP_CMD_INIT_WINDOW: + LOGV("APP_CMD_INIT_WINDOW"); + pthread_mutex_lock(&android_app->mutex); + android_app->window = android_app->pendingWindow; + pthread_cond_broadcast(&android_app->cond); + pthread_mutex_unlock(&android_app->mutex); + break; + + case APP_CMD_TERM_WINDOW: + LOGV("APP_CMD_TERM_WINDOW"); + pthread_cond_broadcast(&android_app->cond); + break; + + case APP_CMD_RESUME: + case APP_CMD_START: + case APP_CMD_PAUSE: + case APP_CMD_STOP: + LOGV("activityState=%d", cmd); + pthread_mutex_lock(&android_app->mutex); + android_app->activityState = cmd; + pthread_cond_broadcast(&android_app->cond); + pthread_mutex_unlock(&android_app->mutex); + break; + + case APP_CMD_CONFIG_CHANGED: + LOGV("APP_CMD_CONFIG_CHANGED"); + AConfiguration_fromAssetManager( + android_app->config, android_app->activity->assetManager); + print_cur_config(android_app); + break; + + case APP_CMD_DESTROY: + LOGV("APP_CMD_DESTROY"); + android_app->destroyRequested = 1; + break; + } +} + +void android_app_post_exec_cmd(struct android_app* android_app, int8_t cmd) { + switch (cmd) { + case APP_CMD_TERM_WINDOW: + LOGV("APP_CMD_TERM_WINDOW"); + pthread_mutex_lock(&android_app->mutex); + android_app->window = NULL; + pthread_cond_broadcast(&android_app->cond); + pthread_mutex_unlock(&android_app->mutex); + break; + + case APP_CMD_SAVE_STATE: + LOGV("APP_CMD_SAVE_STATE"); + pthread_mutex_lock(&android_app->mutex); + android_app->stateSaved = 1; + pthread_cond_broadcast(&android_app->cond); + pthread_mutex_unlock(&android_app->mutex); + break; + + case APP_CMD_RESUME: + free_saved_state(android_app); + break; + } +} + +void app_dummy() {} + +static void android_app_destroy(struct android_app* android_app) { + LOGV("android_app_destroy!"); + free_saved_state(android_app); + pthread_mutex_lock(&android_app->mutex); + + AConfiguration_delete(android_app->config); + android_app->destroyed = 1; + pthread_cond_broadcast(&android_app->cond); + pthread_mutex_unlock(&android_app->mutex); + // Can't touch android_app object after this. +} + +static void process_cmd(struct android_app* app, + struct android_poll_source* source) { + int8_t cmd = android_app_read_cmd(app); + android_app_pre_exec_cmd(app, cmd); + if (app->onAppCmd != NULL) app->onAppCmd(app, cmd); + android_app_post_exec_cmd(app, cmd); +} + +// This is run on a separate thread (i.e: not the main thread). +static void* android_app_entry(void* param) { + struct android_app* android_app = (struct android_app*)param; + + LOGV("android_app_entry called"); + android_app->config = AConfiguration_new(); + LOGV("android_app = %p", android_app); + LOGV("config = %p", android_app->config); + LOGV("activity = %p", android_app->activity); + LOGV("assetmanager = %p", android_app->activity->assetManager); + AConfiguration_fromAssetManager(android_app->config, + android_app->activity->assetManager); + + print_cur_config(android_app); + + android_app->cmdPollSource.id = LOOPER_ID_MAIN; + android_app->cmdPollSource.app = android_app; + android_app->cmdPollSource.process = process_cmd; + + ALooper* looper = ALooper_prepare(ALOOPER_PREPARE_ALLOW_NON_CALLBACKS); + ALooper_addFd(looper, android_app->msgread, LOOPER_ID_MAIN, + ALOOPER_EVENT_INPUT, NULL, &android_app->cmdPollSource); + android_app->looper = looper; + + pthread_mutex_lock(&android_app->mutex); + android_app->running = 1; + pthread_cond_broadcast(&android_app->cond); + pthread_mutex_unlock(&android_app->mutex); + + android_main(android_app); + + android_app_destroy(android_app); + return NULL; +} + +// Codes from https://developer.android.com/reference/android/view/KeyEvent +#define KEY_EVENT_KEYCODE_VOLUME_DOWN 25 +#define KEY_EVENT_KEYCODE_VOLUME_MUTE 164 +#define KEY_EVENT_KEYCODE_VOLUME_UP 24 +#define KEY_EVENT_KEYCODE_CAMERA 27 +#define KEY_EVENT_KEYCODE_ZOOM_IN 168 +#define KEY_EVENT_KEYCODE_ZOOM_OUT 169 + +// Double-buffer the key event filter to avoid race condition. +static bool default_key_filter(const GameActivityKeyEvent* event) { + // Ignore camera, volume, etc. buttons + return !(event->keyCode == KEY_EVENT_KEYCODE_VOLUME_DOWN || + event->keyCode == KEY_EVENT_KEYCODE_VOLUME_MUTE || + event->keyCode == KEY_EVENT_KEYCODE_VOLUME_UP || + event->keyCode == KEY_EVENT_KEYCODE_CAMERA || + event->keyCode == KEY_EVENT_KEYCODE_ZOOM_IN || + event->keyCode == KEY_EVENT_KEYCODE_ZOOM_OUT); +} + +// See +// https://developer.android.com/reference/android/view/InputDevice#SOURCE_TOUCHSCREEN +#define SOURCE_TOUCHSCREEN 0x00001002 + +static bool default_motion_filter(const GameActivityMotionEvent* event) { + // Ignore any non-touch events. + return event->source == SOURCE_TOUCHSCREEN; +} + +// -------------------------------------------------------------------- +// Native activity interaction (called from main thread) +// -------------------------------------------------------------------- + +static struct android_app* android_app_create(GameActivity* activity, + void* savedState, + size_t savedStateSize) { + // struct android_app* android_app = calloc(1, sizeof(struct android_app)); + struct android_app* android_app = + (struct android_app*)malloc(sizeof(struct android_app)); + memset(android_app, 0, sizeof(struct android_app)); + android_app->activity = activity; + + pthread_mutex_init(&android_app->mutex, NULL); + pthread_cond_init(&android_app->cond, NULL); + + if (savedState != NULL) { + android_app->savedState = malloc(savedStateSize); + android_app->savedStateSize = savedStateSize; + memcpy(android_app->savedState, savedState, savedStateSize); + } + + int msgpipe[2]; + if (pipe(msgpipe)) { + LOGE("could not create pipe: %s", strerror(errno)); + return NULL; + } + android_app->msgread = msgpipe[0]; + android_app->msgwrite = msgpipe[1]; + + android_app->keyEventFilter = default_key_filter; + android_app->motionEventFilter = default_motion_filter; + + LOGV("Launching android_app_entry in a thread"); + pthread_attr_t attr; + pthread_attr_init(&attr); + pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); + pthread_create(&android_app->thread, &attr, android_app_entry, android_app); + + // Wait for thread to start. + pthread_mutex_lock(&android_app->mutex); + while (!android_app->running) { + pthread_cond_wait(&android_app->cond, &android_app->mutex); + } + pthread_mutex_unlock(&android_app->mutex); + + return android_app; +} + +static void android_app_write_cmd(struct android_app* android_app, int8_t cmd) { + if (write(android_app->msgwrite, &cmd, sizeof(cmd)) != sizeof(cmd)) { + LOGE("Failure writing android_app cmd: %s", strerror(errno)); + } +} + +static void android_app_set_window(struct android_app* android_app, + ANativeWindow* window) { + LOGV("android_app_set_window called"); + pthread_mutex_lock(&android_app->mutex); + if (android_app->pendingWindow != NULL) { + android_app_write_cmd(android_app, APP_CMD_TERM_WINDOW); + } + android_app->pendingWindow = window; + if (window != NULL) { + android_app_write_cmd(android_app, APP_CMD_INIT_WINDOW); + } + while (android_app->window != android_app->pendingWindow) { + pthread_cond_wait(&android_app->cond, &android_app->mutex); + } + pthread_mutex_unlock(&android_app->mutex); +} + +static void android_app_set_activity_state(struct android_app* android_app, + int8_t cmd) { + pthread_mutex_lock(&android_app->mutex); + android_app_write_cmd(android_app, cmd); + while (android_app->activityState != cmd) { + pthread_cond_wait(&android_app->cond, &android_app->mutex); + } + pthread_mutex_unlock(&android_app->mutex); +} + +static void android_app_free(struct android_app* android_app) { + pthread_mutex_lock(&android_app->mutex); + android_app_write_cmd(android_app, APP_CMD_DESTROY); + while (!android_app->destroyed) { + pthread_cond_wait(&android_app->cond, &android_app->mutex); + } + pthread_mutex_unlock(&android_app->mutex); + + close(android_app->msgread); + close(android_app->msgwrite); + pthread_cond_destroy(&android_app->cond); + pthread_mutex_destroy(&android_app->mutex); + free(android_app); +} + +static inline struct android_app* ToApp(GameActivity* activity) { + return (struct android_app*)activity->instance; +} + +static void onDestroy(GameActivity* activity) { + LOGV("Destroy: %p", activity); + android_app_free(ToApp(activity)); +} + +static void onStart(GameActivity* activity) { + LOGV("Start: %p", activity); + android_app_set_activity_state(ToApp(activity), APP_CMD_START); +} + +static void onResume(GameActivity* activity) { + LOGV("Resume: %p", activity); + android_app_set_activity_state(ToApp(activity), APP_CMD_RESUME); +} + +static void onSaveInstanceState(GameActivity* activity, + SaveInstanceStateRecallback recallback, + void* context) { + LOGV("SaveInstanceState: %p", activity); + + struct android_app* android_app = ToApp(activity); + void* savedState = NULL; + pthread_mutex_lock(&android_app->mutex); + android_app->stateSaved = 0; + android_app_write_cmd(android_app, APP_CMD_SAVE_STATE); + while (!android_app->stateSaved) { + pthread_cond_wait(&android_app->cond, &android_app->mutex); + } + + if (android_app->savedState != NULL) { + // Tell the Java side about our state. + recallback((const char*)android_app->savedState, + android_app->savedStateSize, context); + // Now we can free it. + free(android_app->savedState); + android_app->savedState = NULL; + android_app->savedStateSize = 0; + } + + pthread_mutex_unlock(&android_app->mutex); +} + +static void onPause(GameActivity* activity) { + LOGV("Pause: %p", activity); + android_app_set_activity_state(ToApp(activity), APP_CMD_PAUSE); +} + +static void onStop(GameActivity* activity) { + LOGV("Stop: %p", activity); + android_app_set_activity_state(ToApp(activity), APP_CMD_STOP); +} + +static void onConfigurationChanged(GameActivity* activity) { + LOGV("ConfigurationChanged: %p", activity); + android_app_write_cmd(ToApp(activity), APP_CMD_CONFIG_CHANGED); +} + +static void onTrimMemory(GameActivity* activity, int level) { + LOGV("TrimMemory: %p %d", activity, level); + android_app_write_cmd(ToApp(activity), APP_CMD_LOW_MEMORY); +} + +static void onWindowFocusChanged(GameActivity* activity, bool focused) { + LOGV("WindowFocusChanged: %p -- %d", activity, focused); + android_app_write_cmd(ToApp(activity), + focused ? APP_CMD_GAINED_FOCUS : APP_CMD_LOST_FOCUS); +} + +static void onNativeWindowCreated(GameActivity* activity, + ANativeWindow* window) { + LOGV("NativeWindowCreated: %p -- %p", activity, window); + android_app_set_window(ToApp(activity), window); +} + +static void onNativeWindowDestroyed(GameActivity* activity, + ANativeWindow* window) { + LOGV("NativeWindowDestroyed: %p -- %p", activity, window); + android_app_set_window(ToApp(activity), NULL); +} + +static void onNativeWindowRedrawNeeded(GameActivity* activity, + ANativeWindow* window) { + LOGV("NativeWindowRedrawNeeded: %p -- %p", activity, window); + android_app_write_cmd(ToApp(activity), APP_CMD_WINDOW_REDRAW_NEEDED); +} + +static void onNativeWindowResized(GameActivity* activity, ANativeWindow* window, + int32_t width, int32_t height) { + LOGV("NativeWindowResized: %p -- %p ( %d x %d )", activity, window, width, + height); + android_app_write_cmd(ToApp(activity), APP_CMD_WINDOW_RESIZED); +} + +void android_app_set_motion_event_filter(struct android_app* app, + android_motion_event_filter filter) { + pthread_mutex_lock(&app->mutex); + app->motionEventFilter = filter; + pthread_mutex_unlock(&app->mutex); +} + +static bool onTouchEvent(GameActivity* activity, + const GameActivityMotionEvent* event) { + struct android_app* android_app = ToApp(activity); + pthread_mutex_lock(&android_app->mutex); + + if (android_app->motionEventFilter != NULL && + !android_app->motionEventFilter(event)) { + pthread_mutex_unlock(&android_app->mutex); + return false; + } + + struct android_input_buffer* inputBuffer = + &android_app->inputBuffers[android_app->currentInputBuffer]; + + // Add to the list of active motion events + if (inputBuffer->motionEventsCount < + NATIVE_APP_GLUE_MAX_NUM_MOTION_EVENTS) { + int new_ix = inputBuffer->motionEventsCount; + memcpy(&inputBuffer->motionEvents[new_ix], event, + sizeof(GameActivityMotionEvent)); + ++inputBuffer->motionEventsCount; + } + pthread_mutex_unlock(&android_app->mutex); + return true; +} + +struct android_input_buffer* android_app_swap_input_buffers( + struct android_app* android_app) { + pthread_mutex_lock(&android_app->mutex); + + struct android_input_buffer* inputBuffer = + &android_app->inputBuffers[android_app->currentInputBuffer]; + + if (inputBuffer->motionEventsCount == 0 && + inputBuffer->keyEventsCount == 0) { + inputBuffer = NULL; + } else { + android_app->currentInputBuffer = + (android_app->currentInputBuffer + 1) % + NATIVE_APP_GLUE_MAX_INPUT_BUFFERS; + } + + pthread_mutex_unlock(&android_app->mutex); + + return inputBuffer; +} + +void android_app_clear_motion_events(struct android_input_buffer* inputBuffer) { + inputBuffer->motionEventsCount = 0; +} + +void android_app_set_key_event_filter(struct android_app* app, + android_key_event_filter filter) { + pthread_mutex_lock(&app->mutex); + app->keyEventFilter = filter; + pthread_mutex_unlock(&app->mutex); +} + +static bool onKey(GameActivity* activity, const GameActivityKeyEvent* event) { + struct android_app* android_app = ToApp(activity); + pthread_mutex_lock(&android_app->mutex); + + if (android_app->keyEventFilter != NULL && + !android_app->keyEventFilter(event)) { + pthread_mutex_unlock(&android_app->mutex); + return false; + } + + struct android_input_buffer* inputBuffer = + &android_app->inputBuffers[android_app->currentInputBuffer]; + + // Add to the list of active key down events + if (inputBuffer->keyEventsCount < NATIVE_APP_GLUE_MAX_NUM_KEY_EVENTS) { + int new_ix = inputBuffer->keyEventsCount; + memcpy(&inputBuffer->keyEvents[new_ix], event, + sizeof(GameActivityKeyEvent)); + ++inputBuffer->keyEventsCount; + } + + pthread_mutex_unlock(&android_app->mutex); + return true; +} + +void android_app_clear_key_events(struct android_input_buffer* inputBuffer) { + inputBuffer->keyEventsCount = 0; +} + +static void onTextInputEvent(GameActivity* activity, + const GameTextInputState* state) { + struct android_app* android_app = ToApp(activity); + pthread_mutex_lock(&android_app->mutex); + + android_app->textInputState = 1; + pthread_mutex_unlock(&android_app->mutex); +} + +static void onWindowInsetsChanged(GameActivity* activity) { + LOGV("WindowInsetsChanged: %p", activity); + android_app_write_cmd(ToApp(activity), APP_CMD_WINDOW_INSETS_CHANGED); +} + +JNIEXPORT +void GameActivity_onCreate(GameActivity* activity, void* savedState, + size_t savedStateSize) { + LOGV("Creating: %p", activity); + activity->callbacks->onDestroy = onDestroy; + activity->callbacks->onStart = onStart; + activity->callbacks->onResume = onResume; + activity->callbacks->onSaveInstanceState = onSaveInstanceState; + activity->callbacks->onPause = onPause; + activity->callbacks->onStop = onStop; + activity->callbacks->onTouchEvent = onTouchEvent; + activity->callbacks->onKeyDown = onKey; + activity->callbacks->onKeyUp = onKey; + activity->callbacks->onTextInputEvent = onTextInputEvent; + activity->callbacks->onConfigurationChanged = onConfigurationChanged; + activity->callbacks->onTrimMemory = onTrimMemory; + activity->callbacks->onWindowFocusChanged = onWindowFocusChanged; + activity->callbacks->onNativeWindowCreated = onNativeWindowCreated; + activity->callbacks->onNativeWindowDestroyed = onNativeWindowDestroyed; + activity->callbacks->onNativeWindowRedrawNeeded = + onNativeWindowRedrawNeeded; + activity->callbacks->onNativeWindowResized = onNativeWindowResized; + activity->callbacks->onWindowInsetsChanged = onWindowInsetsChanged; + LOGV("Callbacks set: %p", activity->callbacks); + + activity->instance = + android_app_create(activity, savedState, savedStateSize); +} diff --git a/game-activity/csrc/game-activity/native_app_glue/android_native_app_glue.h b/game-activity/csrc/game-activity/native_app_glue/android_native_app_glue.h new file mode 100644 index 0000000..9dfe3a5 --- /dev/null +++ b/game-activity/csrc/game-activity/native_app_glue/android_native_app_glue.h @@ -0,0 +1,486 @@ +/* + * Copyright (C) 2021 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#pragma once + +/** + * @addtogroup android_native_app_glue Native App Glue library + * The glue library to interface your game loop with GameActivity. + * @{ + */ + +#include +#include +#include +#include +#include + +#include "game-activity/GameActivity.h" + +#if (defined NATIVE_APP_GLUE_MAX_NUM_MOTION_EVENTS_OVERRIDE) +#define NATIVE_APP_GLUE_MAX_NUM_MOTION_EVENTS \ + NATIVE_APP_GLUE_MAX_NUM_MOTION_EVENTS_OVERRIDE +#else +#define NATIVE_APP_GLUE_MAX_NUM_MOTION_EVENTS 16 +#endif + +#if (defined NATIVE_APP_GLUE_MAX_NUM_KEY_EVENTS_OVERRIDE) +#define NATIVE_APP_GLUE_MAX_NUM_KEY_EVENTS \ + NATIVE_APP_GLUE_MAX_NUM_KEY_EVENTS_OVERRIDE +#else +#define NATIVE_APP_GLUE_MAX_NUM_KEY_EVENTS 4 +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The GameActivity interface provided by + * is based on a set of application-provided callbacks that will be called + * by the Activity's main thread when certain events occur. + * + * This means that each one of this callbacks _should_ _not_ block, or they + * risk having the system force-close the application. This programming + * model is direct, lightweight, but constraining. + * + * The 'android_native_app_glue' static library is used to provide a different + * execution model where the application can implement its own main event + * loop in a different thread instead. Here's how it works: + * + * 1/ The application must provide a function named "android_main()" that + * will be called when the activity is created, in a new thread that is + * distinct from the activity's main thread. + * + * 2/ android_main() receives a pointer to a valid "android_app" structure + * that contains references to other important objects, e.g. the + * GameActivity obejct instance the application is running in. + * + * 3/ the "android_app" object holds an ALooper instance that already + * listens to activity lifecycle events (e.g. "pause", "resume"). + * See APP_CMD_XXX declarations below. + * + * This corresponds to an ALooper identifier returned by + * ALooper_pollOnce with value LOOPER_ID_MAIN. + * + * Your application can use the same ALooper to listen to additional + * file-descriptors. They can either be callback based, or with return + * identifiers starting with LOOPER_ID_USER. + * + * 4/ Whenever you receive a LOOPER_ID_MAIN event, + * the returned data will point to an android_poll_source structure. You + * can call the process() function on it, and fill in android_app->onAppCmd + * to be called for your own processing of the event. + * + * Alternatively, you can call the low-level functions to read and process + * the data directly... look at the process_cmd() and process_input() + * implementations in the glue to see how to do this. + * + * See the sample named "native-activity" that comes with the NDK with a + * full usage example. Also look at the documentation of GameActivity. + */ + +struct android_app; + +/** + * Data associated with an ALooper fd that will be returned as the "outData" + * when that source has data ready. + */ +struct android_poll_source { + /** + * The identifier of this source. May be LOOPER_ID_MAIN or + * LOOPER_ID_INPUT. + */ + int32_t id; + + /** The android_app this ident is associated with. */ + struct android_app* app; + + /** + * Function to call to perform the standard processing of data from + * this source. + */ + void (*process)(struct android_app* app, + struct android_poll_source* source); +}; + +struct android_input_buffer { + /** + * Pointer to a read-only array of pointers to GameActivityMotionEvent. + * Only the first motionEventsCount events are valid. + */ + GameActivityMotionEvent motionEvents[NATIVE_APP_GLUE_MAX_NUM_MOTION_EVENTS]; + + /** + * The number of valid motion events in `motionEvents`. + */ + uint64_t motionEventsCount; + + /** + * Pointer to a read-only array of pointers to GameActivityKeyEvent. + * Only the first keyEventsCount events are valid. + */ + GameActivityKeyEvent keyEvents[NATIVE_APP_GLUE_MAX_NUM_KEY_EVENTS]; + + /** + * The number of valid "Key" events in `keyEvents`. + */ + uint64_t keyEventsCount; +}; + +/** + * Function pointer declaration for the filtering of key events. + * A function with this signature should be passed to + * android_app_set_key_event_filter and return false for any events that should + * not be handled by android_native_app_glue. These events will be handled by + * the system instead. + */ +typedef bool (*android_key_event_filter)(const GameActivityKeyEvent*); + +/** + * Function pointer definition for the filtering of motion events. + * A function with this signature should be passed to + * android_app_set_motion_event_filter and return false for any events that + * should not be handled by android_native_app_glue. These events will be + * handled by the system instead. + */ +typedef bool (*android_motion_event_filter)(const GameActivityMotionEvent*); + +/** + * This is the interface for the standard glue code of a threaded + * application. In this model, the application's code is running + * in its own thread separate from the main thread of the process. + * It is not required that this thread be associated with the Java + * VM, although it will need to be in order to make JNI calls any + * Java objects. + */ +struct android_app { + /** + * An optional pointer to application-defined state. + */ + void* userData; + + /** + * A required callback for processing main app commands (`APP_CMD_*`). + * This is called each frame if there are app commands that need processing. + */ + void (*onAppCmd)(struct android_app* app, int32_t cmd); + + /** The GameActivity object instance that this app is running in. */ + GameActivity* activity; + + /** The current configuration the app is running in. */ + AConfiguration* config; + + /** + * The last activity saved state, as provided at creation time. + * It is NULL if there was no state. You can use this as you need; the + * memory will remain around until you call android_app_exec_cmd() for + * APP_CMD_RESUME, at which point it will be freed and savedState set to + * NULL. These variables should only be changed when processing a + * APP_CMD_SAVE_STATE, at which point they will be initialized to NULL and + * you can malloc your state and place the information here. In that case + * the memory will be freed for you later. + */ + void* savedState; + + /** + * The size of the activity saved state. It is 0 if `savedState` is NULL. + */ + size_t savedStateSize; + + /** The ALooper associated with the app's thread. */ + ALooper* looper; + + /** When non-NULL, this is the window surface that the app can draw in. */ + ANativeWindow* window; + + /** + * Current content rectangle of the window; this is the area where the + * window's content should be placed to be seen by the user. + */ + ARect contentRect; + + /** + * Current state of the app's activity. May be either APP_CMD_START, + * APP_CMD_RESUME, APP_CMD_PAUSE, or APP_CMD_STOP. + */ + int activityState; + + /** + * This is non-zero when the application's GameActivity is being + * destroyed and waiting for the app thread to complete. + */ + int destroyRequested; + +#define NATIVE_APP_GLUE_MAX_INPUT_BUFFERS 2 + + /** + * This is used for buffering input from GameActivity. Once ready, the + * application thread switches the buffers and processes what was + * accumulated. + */ + struct android_input_buffer inputBuffers[NATIVE_APP_GLUE_MAX_INPUT_BUFFERS]; + + int currentInputBuffer; + + /** + * 0 if no text input event is outstanding, 1 if it is. + * Use `GameActivity_getTextInputState` to get information + * about the text entered by the user. + */ + int textInputState; + + // Below are "private" implementation of the glue code. + /** @cond INTERNAL */ + + pthread_mutex_t mutex; + pthread_cond_t cond; + + int msgread; + int msgwrite; + + pthread_t thread; + + struct android_poll_source cmdPollSource; + + int running; + int stateSaved; + int destroyed; + int redrawNeeded; + ANativeWindow* pendingWindow; + ARect pendingContentRect; + + android_key_event_filter keyEventFilter; + android_motion_event_filter motionEventFilter; + + /** @endcond */ +}; + +/** + * Looper ID of commands coming from the app's main thread, an AInputQueue or + * user-defined sources. + */ +enum NativeAppGlueLooperId { + /** + * Looper data ID of commands coming from the app's main thread, which + * is returned as an identifier from ALooper_pollOnce(). The data for this + * identifier is a pointer to an android_poll_source structure. + * These can be retrieved and processed with android_app_read_cmd() + * and android_app_exec_cmd(). + */ + LOOPER_ID_MAIN = 1, + + /** + * Unused. Reserved for future use when usage of AInputQueue will be + * supported. + */ + LOOPER_ID_INPUT = 2, + + /** + * Start of user-defined ALooper identifiers. + */ + LOOPER_ID_USER = 3, +}; + +/** + * Commands passed from the application's main Java thread to the game's thread. + */ +enum NativeAppGlueAppCmd { + /** + * Unused. Reserved for future use when usage of AInputQueue will be + * supported. + */ + UNUSED_APP_CMD_INPUT_CHANGED, + + /** + * Command from main thread: a new ANativeWindow is ready for use. Upon + * receiving this command, android_app->window will contain the new window + * surface. + */ + APP_CMD_INIT_WINDOW, + + /** + * Command from main thread: the existing ANativeWindow needs to be + * terminated. Upon receiving this command, android_app->window still + * contains the existing window; after calling android_app_exec_cmd + * it will be set to NULL. + */ + APP_CMD_TERM_WINDOW, + + /** + * Command from main thread: the current ANativeWindow has been resized. + * Please redraw with its new size. + */ + APP_CMD_WINDOW_RESIZED, + + /** + * Command from main thread: the system needs that the current ANativeWindow + * be redrawn. You should redraw the window before handing this to + * android_app_exec_cmd() in order to avoid transient drawing glitches. + */ + APP_CMD_WINDOW_REDRAW_NEEDED, + + /** + * Command from main thread: the content area of the window has changed, + * such as from the soft input window being shown or hidden. You can + * find the new content rect in android_app::contentRect. + */ + APP_CMD_CONTENT_RECT_CHANGED, + + /** + * Command from main thread: the app's activity window has gained + * input focus. + */ + APP_CMD_GAINED_FOCUS, + + /** + * Command from main thread: the app's activity window has lost + * input focus. + */ + APP_CMD_LOST_FOCUS, + + /** + * Command from main thread: the current device configuration has changed. + */ + APP_CMD_CONFIG_CHANGED, + + /** + * Command from main thread: the system is running low on memory. + * Try to reduce your memory use. + */ + APP_CMD_LOW_MEMORY, + + /** + * Command from main thread: the app's activity has been started. + */ + APP_CMD_START, + + /** + * Command from main thread: the app's activity has been resumed. + */ + APP_CMD_RESUME, + + /** + * Command from main thread: the app should generate a new saved state + * for itself, to restore from later if needed. If you have saved state, + * allocate it with malloc and place it in android_app.savedState with + * the size in android_app.savedStateSize. The will be freed for you + * later. + */ + APP_CMD_SAVE_STATE, + + /** + * Command from main thread: the app's activity has been paused. + */ + APP_CMD_PAUSE, + + /** + * Command from main thread: the app's activity has been stopped. + */ + APP_CMD_STOP, + + /** + * Command from main thread: the app's activity is being destroyed, + * and waiting for the app thread to clean up and exit before proceeding. + */ + APP_CMD_DESTROY, + + /** + * Command from main thread: the app's insets have changed. + */ + APP_CMD_WINDOW_INSETS_CHANGED, + +}; + +/** + * Call when ALooper_pollAll() returns LOOPER_ID_MAIN, reading the next + * app command message. + */ +int8_t android_app_read_cmd(struct android_app* android_app); + +/** + * Call with the command returned by android_app_read_cmd() to do the + * initial pre-processing of the given command. You can perform your own + * actions for the command after calling this function. + */ +void android_app_pre_exec_cmd(struct android_app* android_app, int8_t cmd); + +/** + * Call with the command returned by android_app_read_cmd() to do the + * final post-processing of the given command. You must have done your own + * actions for the command before calling this function. + */ +void android_app_post_exec_cmd(struct android_app* android_app, int8_t cmd); + +/** + * Call this before processing input events to get the events buffer. + * The function returns NULL if there are no events to process. + */ +struct android_input_buffer* android_app_swap_input_buffers( + struct android_app* android_app); + +/** + * Clear the array of motion events that were waiting to be handled, and release + * each of them. + * + * This method should be called after you have processed the motion events in + * your game loop. You should handle events at each iteration of your game loop. + */ +void android_app_clear_motion_events(struct android_input_buffer* inputBuffer); + +/** + * Clear the array of key events that were waiting to be handled, and release + * each of them. + * + * This method should be called after you have processed the key up events in + * your game loop. You should handle events at each iteration of your game loop. + */ +void android_app_clear_key_events(struct android_input_buffer* inputBuffer); + +/** + * This is the function that application code must implement, representing + * the main entry to the app. + */ +extern void android_main(struct android_app* app); + +/** + * Set the filter to use when processing key events. + * Any events for which the filter returns false will be ignored by + * android_native_app_glue. If filter is set to NULL, no filtering is done. + * + * The default key filter will filter out volume and camera button presses. + */ +void android_app_set_key_event_filter(struct android_app* app, + android_key_event_filter filter); + +/** + * Set the filter to use when processing touch and motion events. + * Any events for which the filter returns false will be ignored by + * android_native_app_glue. If filter is set to NULL, no filtering is done. + * + * Note that the default motion event filter will only allow touchscreen events + * through, in order to mimic NativeActivity's behaviour, so for controller + * events to be passed to the app, set the filter to NULL. + */ +void android_app_set_motion_event_filter(struct android_app* app, + android_motion_event_filter filter); + +#ifdef __cplusplus +} +#endif + +/** @} */ diff --git a/game-activity/csrc/game-text-input/gamecommon.h b/game-activity/csrc/game-text-input/gamecommon.h new file mode 100755 index 0000000..38bffff --- /dev/null +++ b/game-activity/csrc/game-text-input/gamecommon.h @@ -0,0 +1,41 @@ +/* + * Copyright (C) 2021 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * @defgroup game_common Game Common + * Common structures and functions used within AGDK + * @{ + */ + +#pragma once + +/** + * The type of a component for which to retrieve insets. See + * https://developer.android.com/reference/androidx/core/view/WindowInsetsCompat.Type + */ +typedef enum GameCommonInsetsType { + GAMECOMMON_INSETS_TYPE_CAPTION_BAR = 0, + GAMECOMMON_INSETS_TYPE_DISPLAY_CUTOUT, + GAMECOMMON_INSETS_TYPE_IME, + GAMECOMMON_INSETS_TYPE_MANDATORY_SYSTEM_GESTURES, + GAMECOMMON_INSETS_TYPE_NAVIGATION_BARS, + GAMECOMMON_INSETS_TYPE_STATUS_BARS, + GAMECOMMON_INSETS_TYPE_SYSTEM_BARS, + GAMECOMMON_INSETS_TYPE_SYSTEM_GESTURES, + GAMECOMMON_INSETS_TYPE_TAPABLE_ELEMENT, + GAMECOMMON_INSETS_TYPE_WATERFALL, + GAMECOMMON_INSETS_TYPE_COUNT +} GameCommonInsetsType; diff --git a/game-activity/csrc/game-text-input/gametextinput.cpp b/game-activity/csrc/game-text-input/gametextinput.cpp new file mode 100755 index 0000000..f25437a --- /dev/null +++ b/game-activity/csrc/game-text-input/gametextinput.cpp @@ -0,0 +1,366 @@ +/* + * Copyright (C) 2021 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +#include "game-text-input/gametextinput.h" + +#include +#include +#include +#include + +#include +#include +#include + +#define LOG_TAG "GameTextInput" + +static constexpr int32_t DEFAULT_MAX_STRING_SIZE = 1 << 16; + +// Cache of field ids in the Java GameTextInputState class +struct StateClassInfo { + jfieldID text; + jfieldID selectionStart; + jfieldID selectionEnd; + jfieldID composingRegionStart; + jfieldID composingRegionEnd; +}; + +// Main GameTextInput object. +struct GameTextInput { + public: + GameTextInput(JNIEnv *env, uint32_t max_string_size); + ~GameTextInput(); + void setState(const GameTextInputState &state); + const GameTextInputState &getState() const { return currentState_; } + void setInputConnection(jobject inputConnection); + void processEvent(jobject textInputEvent); + void showIme(uint32_t flags); + void hideIme(uint32_t flags); + void setEventCallback(GameTextInputEventCallback callback, void *context); + jobject stateToJava(const GameTextInputState &state) const; + void stateFromJava(jobject textInputEvent, + GameTextInputGetStateCallback callback, + void *context) const; + void setImeInsetsCallback(GameTextInputImeInsetsCallback callback, + void *context); + void processImeInsets(const ARect *insets); + const ARect &getImeInsets() const { return currentInsets_; } + + private: + // Copy string and set other fields + void setStateInner(const GameTextInputState &state); + static void processCallback(void *context, const GameTextInputState *state); + JNIEnv *env_ = nullptr; + // Cached at initialization from + // com/google/androidgamesdk/gametextinput/State. + jclass stateJavaClass_ = nullptr; + // The latest text input update. + GameTextInputState currentState_ = {}; + // An instance of gametextinput.InputConnection. + jclass inputConnectionClass_ = nullptr; + jobject inputConnection_ = nullptr; + jmethodID inputConnectionSetStateMethod_; + jmethodID setSoftKeyboardActiveMethod_; + void (*eventCallback_)(void *context, + const struct GameTextInputState *state) = nullptr; + void *eventCallbackContext_ = nullptr; + void (*insetsCallback_)(void *context, + const struct ARect *insets) = nullptr; + ARect currentInsets_ = {}; + void *insetsCallbackContext_ = nullptr; + StateClassInfo stateClassInfo_ = {}; + // Constant-sized buffer used to store state text. + std::vector stateStringBuffer_; +}; + +std::unique_ptr s_gameTextInput; + +extern "C" { + +/////////////////////////////////////////////////////////// +/// GameTextInputState C Functions +/////////////////////////////////////////////////////////// + +// Convert to a Java structure. +jobject currentState_toJava(const GameTextInput *gameTextInput, + const GameTextInputState *state) { + if (state == nullptr) return NULL; + return gameTextInput->stateToJava(*state); +} + +// Convert from Java structure. +void currentState_fromJava(const GameTextInput *gameTextInput, + jobject textInputEvent, + GameTextInputGetStateCallback callback, + void *context) { + gameTextInput->stateFromJava(textInputEvent, callback, context); +} + +/////////////////////////////////////////////////////////// +/// GameTextInput C Functions +/////////////////////////////////////////////////////////// + +struct GameTextInput *GameTextInput_init(JNIEnv *env, + uint32_t max_string_size) { + if (s_gameTextInput.get() != nullptr) { + __android_log_print(ANDROID_LOG_WARN, LOG_TAG, + "Warning: called GameTextInput_init twice without " + "calling GameTextInput_destroy"); + return s_gameTextInput.get(); + } + // Don't use make_unique, for C++11 compatibility + s_gameTextInput = + std::unique_ptr(new GameTextInput(env, max_string_size)); + return s_gameTextInput.get(); +} + +void GameTextInput_destroy(GameTextInput *input) { + if (input == nullptr || s_gameTextInput.get() == nullptr) return; + s_gameTextInput.reset(); +} + +void GameTextInput_setState(GameTextInput *input, + const GameTextInputState *state) { + if (state == nullptr) return; + input->setState(*state); +} + +void GameTextInput_getState(GameTextInput *input, + GameTextInputGetStateCallback callback, + void *context) { + callback(context, &input->getState()); +} + +void GameTextInput_setInputConnection(GameTextInput *input, + jobject inputConnection) { + input->setInputConnection(inputConnection); +} + +void GameTextInput_processEvent(GameTextInput *input, jobject textInputEvent) { + input->processEvent(textInputEvent); +} + +void GameTextInput_processImeInsets(GameTextInput *input, const ARect *insets) { + input->processImeInsets(insets); +} + +void GameTextInput_showIme(struct GameTextInput *input, uint32_t flags) { + input->showIme(flags); +} + +void GameTextInput_hideIme(struct GameTextInput *input, uint32_t flags) { + input->hideIme(flags); +} + +void GameTextInput_setEventCallback(struct GameTextInput *input, + GameTextInputEventCallback callback, + void *context) { + input->setEventCallback(callback, context); +} + +void GameTextInput_setImeInsetsCallback(struct GameTextInput *input, + GameTextInputImeInsetsCallback callback, + void *context) { + input->setImeInsetsCallback(callback, context); +} + +void GameTextInput_getImeInsets(const GameTextInput *input, ARect *insets) { + *insets = input->getImeInsets(); +} + +} // extern "C" + +/////////////////////////////////////////////////////////// +/// GameTextInput C++ class Implementation +/////////////////////////////////////////////////////////// + +GameTextInput::GameTextInput(JNIEnv *env, uint32_t max_string_size) + : env_(env), + stateStringBuffer_(max_string_size == 0 ? DEFAULT_MAX_STRING_SIZE + : max_string_size) { + stateJavaClass_ = (jclass)env_->NewGlobalRef( + env_->FindClass("com/google/androidgamesdk/gametextinput/State")); + inputConnectionClass_ = (jclass)env_->NewGlobalRef(env_->FindClass( + "com/google/androidgamesdk/gametextinput/InputConnection")); + inputConnectionSetStateMethod_ = + env_->GetMethodID(inputConnectionClass_, "setState", + "(Lcom/google/androidgamesdk/gametextinput/State;)V"); + setSoftKeyboardActiveMethod_ = env_->GetMethodID( + inputConnectionClass_, "setSoftKeyboardActive", "(ZI)V"); + + stateClassInfo_.text = + env_->GetFieldID(stateJavaClass_, "text", "Ljava/lang/String;"); + stateClassInfo_.selectionStart = + env_->GetFieldID(stateJavaClass_, "selectionStart", "I"); + stateClassInfo_.selectionEnd = + env_->GetFieldID(stateJavaClass_, "selectionEnd", "I"); + stateClassInfo_.composingRegionStart = + env_->GetFieldID(stateJavaClass_, "composingRegionStart", "I"); + stateClassInfo_.composingRegionEnd = + env_->GetFieldID(stateJavaClass_, "composingRegionEnd", "I"); + + return s_gameTextInput.get(); +} + +GameTextInput::~GameTextInput() { + if (stateJavaClass_ != NULL) { + env_->DeleteGlobalRef(stateJavaClass_); + stateJavaClass_ = NULL; + } + if (inputConnectionClass_ != NULL) { + env_->DeleteGlobalRef(inputConnectionClass_); + inputConnectionClass_ = NULL; + } + if (inputConnection_ != NULL) { + env_->DeleteGlobalRef(inputConnection_); + inputConnection_ = NULL; + } +} + +void GameTextInput::setState(const GameTextInputState &state) { + if (inputConnection_ == nullptr) return; + jobject jstate = stateToJava(state); + env_->CallVoidMethod(inputConnection_, inputConnectionSetStateMethod_, + jstate); + env_->DeleteLocalRef(jstate); + setStateInner(state); +} + +void GameTextInput::setStateInner(const GameTextInputState &state) { + // Check if we're setting using our own string (other parts may be + // different) + if (state.text_UTF8 == currentState_.text_UTF8) { + currentState_ = state; + return; + } + // Otherwise, copy across the string. + auto bytes_needed = + std::min(static_cast(state.text_length + 1), + static_cast(stateStringBuffer_.size())); + currentState_.text_UTF8 = stateStringBuffer_.data(); + std::copy(state.text_UTF8, state.text_UTF8 + bytes_needed - 1, + stateStringBuffer_.data()); + currentState_.text_length = state.text_length; + currentState_.selection = state.selection; + currentState_.composingRegion = state.composingRegion; + stateStringBuffer_[bytes_needed - 1] = 0; +} + +void GameTextInput::setInputConnection(jobject inputConnection) { + if (inputConnection_ != NULL) { + env_->DeleteGlobalRef(inputConnection_); + } + inputConnection_ = env_->NewGlobalRef(inputConnection); +} + +/*static*/ void GameTextInput::processCallback( + void *context, const GameTextInputState *state) { + auto thiz = static_cast(context); + if (state != nullptr) thiz->setStateInner(*state); +} + +void GameTextInput::processEvent(jobject textInputEvent) { + stateFromJava(textInputEvent, processCallback, this); + if (eventCallback_) { + eventCallback_(eventCallbackContext_, ¤tState_); + } +} + +void GameTextInput::showIme(uint32_t flags) { + if (inputConnection_ == nullptr) return; + env_->CallVoidMethod(inputConnection_, setSoftKeyboardActiveMethod_, true, + flags); +} + +void GameTextInput::setEventCallback(GameTextInputEventCallback callback, + void *context) { + eventCallback_ = callback; + eventCallbackContext_ = context; +} + +void GameTextInput::setImeInsetsCallback( + GameTextInputImeInsetsCallback callback, void *context) { + insetsCallback_ = callback; + insetsCallbackContext_ = context; +} + +void GameTextInput::processImeInsets(const ARect *insets) { + currentInsets_ = *insets; + if (insetsCallback_) { + insetsCallback_(insetsCallbackContext_, ¤tInsets_); + } +} + +void GameTextInput::hideIme(uint32_t flags) { + if (inputConnection_ == nullptr) return; + env_->CallVoidMethod(inputConnection_, setSoftKeyboardActiveMethod_, false, + flags); +} + +jobject GameTextInput::stateToJava(const GameTextInputState &state) const { + static jmethodID constructor = nullptr; + if (constructor == nullptr) { + constructor = env_->GetMethodID(stateJavaClass_, "", + "(Ljava/lang/String;IIII)V"); + if (constructor == nullptr) { + __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, + "Can't find gametextinput.State constructor"); + return nullptr; + } + } + const char *text = state.text_UTF8; + if (text == nullptr) { + static char empty_string[] = ""; + text = empty_string; + } + // Note that this expects 'modified' UTF-8 which is not the same as UTF-8 + // https://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8 + jstring jtext = env_->NewStringUTF(text); + jobject jobj = + env_->NewObject(stateJavaClass_, constructor, jtext, + state.selection.start, state.selection.end, + state.composingRegion.start, state.composingRegion.end); + env_->DeleteLocalRef(jtext); + return jobj; +} + +void GameTextInput::stateFromJava(jobject textInputEvent, + GameTextInputGetStateCallback callback, + void *context) const { + jstring text = + (jstring)env_->GetObjectField(textInputEvent, stateClassInfo_.text); + // Note this is 'modified' UTF-8, not true UTF-8. It has no NULLs in it, + // except at the end. It's actually not specified whether the value returned + // by GetStringUTFChars includes a null at the end, but it *seems to* on + // Android. + const char *text_chars = env_->GetStringUTFChars(text, NULL); + int text_len = env_->GetStringUTFLength( + text); // Length in bytes, *not* including the null. + int selectionStart = + env_->GetIntField(textInputEvent, stateClassInfo_.selectionStart); + int selectionEnd = + env_->GetIntField(textInputEvent, stateClassInfo_.selectionEnd); + int composingRegionStart = + env_->GetIntField(textInputEvent, stateClassInfo_.composingRegionStart); + int composingRegionEnd = + env_->GetIntField(textInputEvent, stateClassInfo_.composingRegionEnd); + GameTextInputState state{text_chars, + text_len, + {selectionStart, selectionEnd}, + {composingRegionStart, composingRegionEnd}}; + callback(context, &state); + env_->ReleaseStringUTFChars(text, text_chars); + env_->DeleteLocalRef(text); +} diff --git a/game-activity/csrc/game-text-input/gametextinput.h b/game-activity/csrc/game-text-input/gametextinput.h new file mode 100755 index 0000000..a85265e --- /dev/null +++ b/game-activity/csrc/game-text-input/gametextinput.h @@ -0,0 +1,290 @@ +/* + * Copyright (C) 2021 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * @defgroup game_text_input Game Text Input + * The interface to use GameTextInput. + * @{ + */ + +#pragma once + +#include +#include +#include + +#include "gamecommon.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This struct holds a span within a region of text from start (inclusive) to + * end (exclusive). An empty span or cursor position is specified with + * start==end. An undefined span is specified with start = end = SPAN_UNDEFINED. + */ +typedef struct GameTextInputSpan { + /** The start of the region (inclusive). */ + int32_t start; + /** The end of the region (exclusive). */ + int32_t end; +} GameTextInputSpan; + +/** + * Values with special meaning in a GameTextInputSpan. + */ +enum GameTextInputSpanFlag { SPAN_UNDEFINED = -1 }; + +/** + * This struct holds the state of an editable section of text. + * The text can have a selection and a composing region defined on it. + * A composing region is used by IMEs that allow input using multiple steps to + * compose a glyph or word. Use functions GameTextInput_getState and + * GameTextInput_setState to read and modify the state that an IME is editing. + */ +typedef struct GameTextInputState { + /** + * Text owned by the state, as a modified UTF-8 string. Null-terminated. + * https://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8 + */ + const char *text_UTF8; + /** + * Length in bytes of text_UTF8, *not* including the null at end. + */ + int32_t text_length; + /** + * A selection defined on the text. + */ + GameTextInputSpan selection; + /** + * A composing region defined on the text. + */ + GameTextInputSpan composingRegion; +} GameTextInputState; + +/** + * A callback called by GameTextInput_getState. + * @param context User-defined context. + * @param state State, owned by the library, that will be valid for the duration + * of the callback. + */ +typedef void (*GameTextInputGetStateCallback)( + void *context, const struct GameTextInputState *state); + +/** + * Opaque handle to the GameTextInput API. + */ +typedef struct GameTextInput GameTextInput; + +/** + * Initialize the GameTextInput library. + * If called twice without GameTextInput_destroy being called, the same pointer + * will be returned and a warning will be issued. + * @param env A JNI env valid on the calling thread. + * @param max_string_size The maximum length of a string that can be edited. If + * zero, the maximum defaults to 65536 bytes. A buffer of this size is allocated + * at initialization. + * @return A handle to the library. + */ +GameTextInput *GameTextInput_init(JNIEnv *env, uint32_t max_string_size); + +/** + * When using GameTextInput, you need to create a gametextinput.InputConnection + * on the Java side and pass it using this function to the library, unless using + * GameActivity in which case this will be done for you. See the GameActivity + * source code or GameTextInput samples for examples of usage. + * @param input A valid GameTextInput library handle. + * @param inputConnection A gametextinput.InputConnection object. + */ +void GameTextInput_setInputConnection(GameTextInput *input, + jobject inputConnection); + +/** + * Unless using GameActivity, it is required to call this function from your + * Java gametextinput.Listener.stateChanged method to convert eventState and + * trigger any event callbacks. When using GameActivity, this does not need to + * be called as event processing is handled by the Activity. + * @param input A valid GameTextInput library handle. + * @param eventState A Java gametextinput.State object. + */ +void GameTextInput_processEvent(GameTextInput *input, jobject eventState); + +/** + * Free any resources owned by the GameTextInput library. + * Any subsequent calls to the library will fail until GameTextInput_init is + * called again. + * @param input A valid GameTextInput library handle. + */ +void GameTextInput_destroy(GameTextInput *input); + +/** + * Flags to be passed to GameTextInput_showIme. + */ +enum ShowImeFlags { + SHOW_IME_UNDEFINED = 0, // Default value. + SHOW_IMPLICIT = + 1, // Indicates that the user has forced the input method open so it + // should not be closed until they explicitly do so. + SHOW_FORCED = 2 // Indicates that this is an implicit request to show the + // input window, not as the result of a direct request by + // the user. The window may not be shown in this case. +}; + +/** + * Show the IME. Calls InputMethodManager.showSoftInput(). + * @param input A valid GameTextInput library handle. + * @param flags Defined in ShowImeFlags above. For more information see: + * https://developer.android.com/reference/android/view/inputmethod/InputMethodManager + */ +void GameTextInput_showIme(GameTextInput *input, uint32_t flags); + +/** + * Flags to be passed to GameTextInput_hideIme. + */ +enum HideImeFlags { + HIDE_IME_UNDEFINED = 0, // Default value. + HIDE_IMPLICIT_ONLY = + 1, // Indicates that the soft input window should only be hidden if it + // was not explicitly shown by the user. + HIDE_NOT_ALWAYS = + 2, // Indicates that the soft input window should normally be hidden, + // unless it was originally shown with SHOW_FORCED. +}; + +/** + * Show the IME. Calls InputMethodManager.hideSoftInputFromWindow(). + * @param input A valid GameTextInput library handle. + * @param flags Defined in HideImeFlags above. For more information see: + * https://developer.android.com/reference/android/view/inputmethod/InputMethodManager + */ +void GameTextInput_hideIme(GameTextInput *input, uint32_t flags); + +/** + * Call a callback with the current GameTextInput state, which may have been + * modified by changes in the IME and calls to GameTextInput_setState. We use a + * callback rather than returning the state in order to simplify ownership of + * text_UTF8 strings. These strings are only valid during the calling of the + * callback. + * @param input A valid GameTextInput library handle. + * @param callback A function that will be called with valid state. + * @param context Context used by the callback. + */ +void GameTextInput_getState(GameTextInput *input, + GameTextInputGetStateCallback callback, + void *context); + +/** + * Set the current GameTextInput state. This state is reflected to any active + * IME. + * @param input A valid GameTextInput library handle. + * @param state The state to set. Ownership is maintained by the caller and must + * remain valid for the duration of the call. + */ +void GameTextInput_setState(GameTextInput *input, + const GameTextInputState *state); + +/** + * Type of the callback needed by GameTextInput_setEventCallback that will be + * called every time the IME state changes. + * @param context User-defined context set in GameTextInput_setEventCallback. + * @param current_state Current IME state, owned by the library and valid during + * the callback. + */ +typedef void (*GameTextInputEventCallback)( + void *context, const GameTextInputState *current_state); + +/** + * Optionally set a callback to be called whenever the IME state changes. + * Not necessary if you are using GameActivity, which handles these callbacks + * for you. + * @param input A valid GameTextInput library handle. + * @param callback Called by the library when the IME state changes. + * @param context Context passed as first argument to the callback. + */ +void GameTextInput_setEventCallback(GameTextInput *input, + GameTextInputEventCallback callback, + void *context); + +/** + * Type of the callback needed by GameTextInput_setImeInsetsCallback that will + * be called every time the IME window insets change. + * @param context User-defined context set in + * GameTextInput_setImeWIndowInsetsCallback. + * @param current_insets Current IME insets, owned by the library and valid + * during the callback. + */ +typedef void (*GameTextInputImeInsetsCallback)(void *context, + const ARect *current_insets); + +/** + * Optionally set a callback to be called whenever the IME insets change. + * Not necessary if you are using GameActivity, which handles these callbacks + * for you. + * @param input A valid GameTextInput library handle. + * @param callback Called by the library when the IME insets change. + * @param context Context passed as first argument to the callback. + */ +void GameTextInput_setImeInsetsCallback(GameTextInput *input, + GameTextInputImeInsetsCallback callback, + void *context); + +/** + * Get the current window insets for the IME. + * @param input A valid GameTextInput library handle. + * @param insets Filled with the current insets by this function. + */ +void GameTextInput_getImeInsets(const GameTextInput *input, ARect *insets); + +/** + * Unless using GameActivity, it is required to call this function from your + * Java gametextinput.Listener.onImeInsetsChanged method to + * trigger any event callbacks. When using GameActivity, this does not need to + * be called as insets processing is handled by the Activity. + * @param input A valid GameTextInput library handle. + * @param eventState A Java gametextinput.State object. + */ +void GameTextInput_processImeInsets(GameTextInput *input, const ARect *insets); + +/** + * Convert a GameTextInputState struct to a Java gametextinput.State object. + * Don't forget to delete the returned Java local ref when you're done. + * @param input A valid GameTextInput library handle. + * @param state Input state to convert. + * @return A Java object of class gametextinput.State. The caller is required to + * delete this local reference. + */ +jobject GameTextInputState_toJava(const GameTextInput *input, + const GameTextInputState *state); + +/** + * Convert from a Java gametextinput.State object into a C GameTextInputState + * struct. + * @param input A valid GameTextInput library handle. + * @param state A Java gametextinput.State object. + * @param callback A function called with the C struct, valid for the duration + * of the call. + * @param context Context passed to the callback. + */ +void GameTextInputState_fromJava(const GameTextInput *input, jobject state, + GameTextInputGetStateCallback callback, + void *context); + +#ifdef __cplusplus +} +#endif + +/** @} */ diff --git a/game-activity/docs/LICENSE-APACHE b/game-activity/docs/LICENSE-APACHE new file mode 100755 index 0000000..d9a10c0 --- /dev/null +++ b/game-activity/docs/LICENSE-APACHE @@ -0,0 +1,176 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/game-activity/docs/LICENSE-MIT b/game-activity/docs/LICENSE-MIT new file mode 100755 index 0000000..9cf1062 --- /dev/null +++ b/game-activity/docs/LICENSE-MIT @@ -0,0 +1,19 @@ +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/game-activity/generate-bindings.sh b/game-activity/generate-bindings.sh new file mode 100755 index 0000000..eb98e0b --- /dev/null +++ b/game-activity/generate-bindings.sh @@ -0,0 +1,37 @@ +#!/bin/sh + + +while read ARCH && read TARGET ; do + + # --module-raw-line 'use ' + bindgen wrapper.h -o src/ffi_$ARCH.rs \ + --blocklist-item 'JNI\w+' \ + --blocklist-item 'C?_?JNIEnv' \ + --blocklist-item '_?JavaVM' \ + --blocklist-item '_?j\w+' \ + --blocklist-item 'ALooper\w*' \ + --blocklist-function 'ALooper\w*' \ + --blocklist-item 'AAsset\w*' \ + --blocklist-item 'AAssetManager\w*' \ + --blocklist-function 'AAssetManager\w*' \ + --blocklist-item 'ANativeWindow\w*' \ + --blocklist-function 'ANativeWindow\w*' \ + --blocklist-item 'AConfiguration\w*' \ + --blocklist-function 'AConfiguration\w*' \ + --blocklist-function 'android_main' \ + --blocklist-item 'GameActivity_onCreate' \ + --blocklist-function 'GameActivity_onCreate_C' \ + --newtype-enum '\w+_(result|status)_t' \ + -- \ + -Icsrc \ + --sysroot="${ANDROID_NDK_ROOT}"/toolchains/llvm/prebuilt/linux-x86_64/sysroot/ --target=$TARGET +done << EOF +arm +arm-linux-androideabi +aarch64 +aarch64-linux-android +i686 +i686-linux-android +x86_64 +x86_64-linux-android +EOF diff --git a/game-activity/src/ffi.rs b/game-activity/src/ffi.rs new file mode 100755 index 0000000..d7be0f7 --- /dev/null +++ b/game-activity/src/ffi.rs @@ -0,0 +1,34 @@ +//! The bindings are pre-generated and the right one for the platform is selected at compile time. + +// Bindgen lints +#![allow(non_upper_case_globals)] +#![allow(non_camel_case_types)] +#![allow(non_snake_case)] +#![allow(improper_ctypes)] +#![allow(clippy::all)] +// Temporarily allow UB nullptr dereference in bindgen layout tests until fixed upstream: +// https://github.com/rust-lang/rust-bindgen/pull/2055 +// https://github.com/rust-lang/rust-bindgen/pull/2064 +#![allow(deref_nullptr)] +#![allow(dead_code)] + +use jni_sys::*; +use ndk_sys::AAssetManager; +use ndk_sys::ANativeWindow; +use ndk_sys::{ALooper, ALooper_callbackFunc, AConfiguration}; + + +#[cfg(all( + any(target_os = "android", feature = "test"), + any(target_arch = "arm", target_arch = "armv7") +))] +include!("ffi_arm.rs"); + +#[cfg(all(any(target_os = "android", feature = "test"), target_arch = "aarch64"))] +include!("ffi_aarch64.rs"); + +#[cfg(all(any(target_os = "android", feature = "test"), target_arch = "x86"))] +include!("ffi_i686.rs"); + +#[cfg(all(any(target_os = "android", feature = "test"), target_arch = "x86_64"))] +include!("ffi_x86_64.rs"); \ No newline at end of file diff --git a/game-activity/src/ffi_aarch64.rs b/game-activity/src/ffi_aarch64.rs new file mode 100755 index 0000000..6310413 --- /dev/null +++ b/game-activity/src/ffi_aarch64.rs @@ -0,0 +1,8525 @@ +/* automatically generated by rust-bindgen 0.59.2 */ + +pub const __BIONIC__: u32 = 1; +pub const __WORDSIZE: u32 = 64; +pub const __bos_level: u32 = 0; +pub const __ANDROID_API_FUTURE__: u32 = 10000; +pub const __ANDROID_API__: u32 = 10000; +pub const __ANDROID_API_G__: u32 = 9; +pub const __ANDROID_API_I__: u32 = 14; +pub const __ANDROID_API_J__: u32 = 16; +pub const __ANDROID_API_J_MR1__: u32 = 17; +pub const __ANDROID_API_J_MR2__: u32 = 18; +pub const __ANDROID_API_K__: u32 = 19; +pub const __ANDROID_API_L__: u32 = 21; +pub const __ANDROID_API_L_MR1__: u32 = 22; +pub const __ANDROID_API_M__: u32 = 23; +pub const __ANDROID_API_N__: u32 = 24; +pub const __ANDROID_API_N_MR1__: u32 = 25; +pub const __ANDROID_API_O__: u32 = 26; +pub const __ANDROID_API_O_MR1__: u32 = 27; +pub const __ANDROID_API_P__: u32 = 28; +pub const __ANDROID_API_Q__: u32 = 29; +pub const __ANDROID_API_R__: u32 = 30; +pub const __NDK_MAJOR__: u32 = 21; +pub const __NDK_MINOR__: u32 = 3; +pub const __NDK_BETA__: u32 = 0; +pub const __NDK_BUILD__: u32 = 6528147; +pub const __NDK_CANARY__: u32 = 0; +pub const WCHAR_MIN: u8 = 0u8; +pub const INT8_MIN: i32 = -128; +pub const INT8_MAX: u32 = 127; +pub const INT_LEAST8_MIN: i32 = -128; +pub const INT_LEAST8_MAX: u32 = 127; +pub const INT_FAST8_MIN: i32 = -128; +pub const INT_FAST8_MAX: u32 = 127; +pub const UINT8_MAX: u32 = 255; +pub const UINT_LEAST8_MAX: u32 = 255; +pub const UINT_FAST8_MAX: u32 = 255; +pub const INT16_MIN: i32 = -32768; +pub const INT16_MAX: u32 = 32767; +pub const INT_LEAST16_MIN: i32 = -32768; +pub const INT_LEAST16_MAX: u32 = 32767; +pub const UINT16_MAX: u32 = 65535; +pub const UINT_LEAST16_MAX: u32 = 65535; +pub const INT32_MIN: i32 = -2147483648; +pub const INT32_MAX: u32 = 2147483647; +pub const INT_LEAST32_MIN: i32 = -2147483648; +pub const INT_LEAST32_MAX: u32 = 2147483647; +pub const INT_FAST32_MIN: i32 = -2147483648; +pub const INT_FAST32_MAX: u32 = 2147483647; +pub const UINT32_MAX: u32 = 4294967295; +pub const UINT_LEAST32_MAX: u32 = 4294967295; +pub const UINT_FAST32_MAX: u32 = 4294967295; +pub const SIG_ATOMIC_MAX: u32 = 2147483647; +pub const SIG_ATOMIC_MIN: i32 = -2147483648; +pub const WINT_MAX: u32 = 4294967295; +pub const WINT_MIN: u32 = 0; +pub const __BITS_PER_LONG: u32 = 64; +pub const __FD_SETSIZE: u32 = 1024; +pub const AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT: u32 = 8; +pub const __PRI_64_prefix: &[u8; 2usize] = b"l\0"; +pub const __PRI_PTR_prefix: &[u8; 2usize] = b"l\0"; +pub const __PRI_FAST_prefix: &[u8; 2usize] = b"l\0"; +pub const PRId8: &[u8; 2usize] = b"d\0"; +pub const PRId16: &[u8; 2usize] = b"d\0"; +pub const PRId32: &[u8; 2usize] = b"d\0"; +pub const PRId64: &[u8; 3usize] = b"ld\0"; +pub const PRIdLEAST8: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST16: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST32: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST64: &[u8; 3usize] = b"ld\0"; +pub const PRIdFAST8: &[u8; 2usize] = b"d\0"; +pub const PRIdFAST16: &[u8; 3usize] = b"ld\0"; +pub const PRIdFAST32: &[u8; 3usize] = b"ld\0"; +pub const PRIdFAST64: &[u8; 3usize] = b"ld\0"; +pub const PRIdMAX: &[u8; 3usize] = b"jd\0"; +pub const PRIdPTR: &[u8; 3usize] = b"ld\0"; +pub const PRIi8: &[u8; 2usize] = b"i\0"; +pub const PRIi16: &[u8; 2usize] = b"i\0"; +pub const PRIi32: &[u8; 2usize] = b"i\0"; +pub const PRIi64: &[u8; 3usize] = b"li\0"; +pub const PRIiLEAST8: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST16: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST32: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST64: &[u8; 3usize] = b"li\0"; +pub const PRIiFAST8: &[u8; 2usize] = b"i\0"; +pub const PRIiFAST16: &[u8; 3usize] = b"li\0"; +pub const PRIiFAST32: &[u8; 3usize] = b"li\0"; +pub const PRIiFAST64: &[u8; 3usize] = b"li\0"; +pub const PRIiMAX: &[u8; 3usize] = b"ji\0"; +pub const PRIiPTR: &[u8; 3usize] = b"li\0"; +pub const PRIo8: &[u8; 2usize] = b"o\0"; +pub const PRIo16: &[u8; 2usize] = b"o\0"; +pub const PRIo32: &[u8; 2usize] = b"o\0"; +pub const PRIo64: &[u8; 3usize] = b"lo\0"; +pub const PRIoLEAST8: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST16: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST32: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST64: &[u8; 3usize] = b"lo\0"; +pub const PRIoFAST8: &[u8; 2usize] = b"o\0"; +pub const PRIoFAST16: &[u8; 3usize] = b"lo\0"; +pub const PRIoFAST32: &[u8; 3usize] = b"lo\0"; +pub const PRIoFAST64: &[u8; 3usize] = b"lo\0"; +pub const PRIoMAX: &[u8; 3usize] = b"jo\0"; +pub const PRIoPTR: &[u8; 3usize] = b"lo\0"; +pub const PRIu8: &[u8; 2usize] = b"u\0"; +pub const PRIu16: &[u8; 2usize] = b"u\0"; +pub const PRIu32: &[u8; 2usize] = b"u\0"; +pub const PRIu64: &[u8; 3usize] = b"lu\0"; +pub const PRIuLEAST8: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST16: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST32: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST64: &[u8; 3usize] = b"lu\0"; +pub const PRIuFAST8: &[u8; 2usize] = b"u\0"; +pub const PRIuFAST16: &[u8; 3usize] = b"lu\0"; +pub const PRIuFAST32: &[u8; 3usize] = b"lu\0"; +pub const PRIuFAST64: &[u8; 3usize] = b"lu\0"; +pub const PRIuMAX: &[u8; 3usize] = b"ju\0"; +pub const PRIuPTR: &[u8; 3usize] = b"lu\0"; +pub const PRIx8: &[u8; 2usize] = b"x\0"; +pub const PRIx16: &[u8; 2usize] = b"x\0"; +pub const PRIx32: &[u8; 2usize] = b"x\0"; +pub const PRIx64: &[u8; 3usize] = b"lx\0"; +pub const PRIxLEAST8: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST16: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST32: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST64: &[u8; 3usize] = b"lx\0"; +pub const PRIxFAST8: &[u8; 2usize] = b"x\0"; +pub const PRIxFAST16: &[u8; 3usize] = b"lx\0"; +pub const PRIxFAST32: &[u8; 3usize] = b"lx\0"; +pub const PRIxFAST64: &[u8; 3usize] = b"lx\0"; +pub const PRIxMAX: &[u8; 3usize] = b"jx\0"; +pub const PRIxPTR: &[u8; 3usize] = b"lx\0"; +pub const PRIX8: &[u8; 2usize] = b"X\0"; +pub const PRIX16: &[u8; 2usize] = b"X\0"; +pub const PRIX32: &[u8; 2usize] = b"X\0"; +pub const PRIX64: &[u8; 3usize] = b"lX\0"; +pub const PRIXLEAST8: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST16: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST32: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST64: &[u8; 3usize] = b"lX\0"; +pub const PRIXFAST8: &[u8; 2usize] = b"X\0"; +pub const PRIXFAST16: &[u8; 3usize] = b"lX\0"; +pub const PRIXFAST32: &[u8; 3usize] = b"lX\0"; +pub const PRIXFAST64: &[u8; 3usize] = b"lX\0"; +pub const PRIXMAX: &[u8; 3usize] = b"jX\0"; +pub const PRIXPTR: &[u8; 3usize] = b"lX\0"; +pub const SCNd8: &[u8; 4usize] = b"hhd\0"; +pub const SCNd16: &[u8; 3usize] = b"hd\0"; +pub const SCNd32: &[u8; 2usize] = b"d\0"; +pub const SCNd64: &[u8; 3usize] = b"ld\0"; +pub const SCNdLEAST8: &[u8; 4usize] = b"hhd\0"; +pub const SCNdLEAST16: &[u8; 3usize] = b"hd\0"; +pub const SCNdLEAST32: &[u8; 2usize] = b"d\0"; +pub const SCNdLEAST64: &[u8; 3usize] = b"ld\0"; +pub const SCNdFAST8: &[u8; 4usize] = b"hhd\0"; +pub const SCNdFAST16: &[u8; 3usize] = b"ld\0"; +pub const SCNdFAST32: &[u8; 3usize] = b"ld\0"; +pub const SCNdFAST64: &[u8; 3usize] = b"ld\0"; +pub const SCNdMAX: &[u8; 3usize] = b"jd\0"; +pub const SCNdPTR: &[u8; 3usize] = b"ld\0"; +pub const SCNi8: &[u8; 4usize] = b"hhi\0"; +pub const SCNi16: &[u8; 3usize] = b"hi\0"; +pub const SCNi32: &[u8; 2usize] = b"i\0"; +pub const SCNi64: &[u8; 3usize] = b"li\0"; +pub const SCNiLEAST8: &[u8; 4usize] = b"hhi\0"; +pub const SCNiLEAST16: &[u8; 3usize] = b"hi\0"; +pub const SCNiLEAST32: &[u8; 2usize] = b"i\0"; +pub const SCNiLEAST64: &[u8; 3usize] = b"li\0"; +pub const SCNiFAST8: &[u8; 4usize] = b"hhi\0"; +pub const SCNiFAST16: &[u8; 3usize] = b"li\0"; +pub const SCNiFAST32: &[u8; 3usize] = b"li\0"; +pub const SCNiFAST64: &[u8; 3usize] = b"li\0"; +pub const SCNiMAX: &[u8; 3usize] = b"ji\0"; +pub const SCNiPTR: &[u8; 3usize] = b"li\0"; +pub const SCNo8: &[u8; 4usize] = b"hho\0"; +pub const SCNo16: &[u8; 3usize] = b"ho\0"; +pub const SCNo32: &[u8; 2usize] = b"o\0"; +pub const SCNo64: &[u8; 3usize] = b"lo\0"; +pub const SCNoLEAST8: &[u8; 4usize] = b"hho\0"; +pub const SCNoLEAST16: &[u8; 3usize] = b"ho\0"; +pub const SCNoLEAST32: &[u8; 2usize] = b"o\0"; +pub const SCNoLEAST64: &[u8; 3usize] = b"lo\0"; +pub const SCNoFAST8: &[u8; 4usize] = b"hho\0"; +pub const SCNoFAST16: &[u8; 3usize] = b"lo\0"; +pub const SCNoFAST32: &[u8; 3usize] = b"lo\0"; +pub const SCNoFAST64: &[u8; 3usize] = b"lo\0"; +pub const SCNoMAX: &[u8; 3usize] = b"jo\0"; +pub const SCNoPTR: &[u8; 3usize] = b"lo\0"; +pub const SCNu8: &[u8; 4usize] = b"hhu\0"; +pub const SCNu16: &[u8; 3usize] = b"hu\0"; +pub const SCNu32: &[u8; 2usize] = b"u\0"; +pub const SCNu64: &[u8; 3usize] = b"lu\0"; +pub const SCNuLEAST8: &[u8; 4usize] = b"hhu\0"; +pub const SCNuLEAST16: &[u8; 3usize] = b"hu\0"; +pub const SCNuLEAST32: &[u8; 2usize] = b"u\0"; +pub const SCNuLEAST64: &[u8; 3usize] = b"lu\0"; +pub const SCNuFAST8: &[u8; 4usize] = b"hhu\0"; +pub const SCNuFAST16: &[u8; 3usize] = b"lu\0"; +pub const SCNuFAST32: &[u8; 3usize] = b"lu\0"; +pub const SCNuFAST64: &[u8; 3usize] = b"lu\0"; +pub const SCNuMAX: &[u8; 3usize] = b"ju\0"; +pub const SCNuPTR: &[u8; 3usize] = b"lu\0"; +pub const SCNx8: &[u8; 4usize] = b"hhx\0"; +pub const SCNx16: &[u8; 3usize] = b"hx\0"; +pub const SCNx32: &[u8; 2usize] = b"x\0"; +pub const SCNx64: &[u8; 3usize] = b"lx\0"; +pub const SCNxLEAST8: &[u8; 4usize] = b"hhx\0"; +pub const SCNxLEAST16: &[u8; 3usize] = b"hx\0"; +pub const SCNxLEAST32: &[u8; 2usize] = b"x\0"; +pub const SCNxLEAST64: &[u8; 3usize] = b"lx\0"; +pub const SCNxFAST8: &[u8; 4usize] = b"hhx\0"; +pub const SCNxFAST16: &[u8; 3usize] = b"lx\0"; +pub const SCNxFAST32: &[u8; 3usize] = b"lx\0"; +pub const SCNxFAST64: &[u8; 3usize] = b"lx\0"; +pub const SCNxMAX: &[u8; 3usize] = b"jx\0"; +pub const SCNxPTR: &[u8; 3usize] = b"lx\0"; +pub const __GNUC_VA_LIST: u32 = 1; +pub const true_: u32 = 1; +pub const false_: u32 = 0; +pub const __bool_true_false_are_defined: u32 = 1; +pub const GAME_ACTIVITY_POINTER_INFO_AXIS_COUNT: u32 = 48; +pub const GAMEACTIVITY_MAX_NUM_POINTERS_IN_MOTION_EVENT: u32 = 8; +pub const POLLIN: u32 = 1; +pub const POLLPRI: u32 = 2; +pub const POLLOUT: u32 = 4; +pub const POLLERR: u32 = 8; +pub const POLLHUP: u32 = 16; +pub const POLLNVAL: u32 = 32; +pub const POLLRDNORM: u32 = 64; +pub const POLLRDBAND: u32 = 128; +pub const POLLWRNORM: u32 = 256; +pub const POLLWRBAND: u32 = 512; +pub const POLLMSG: u32 = 1024; +pub const POLLREMOVE: u32 = 4096; +pub const POLLRDHUP: u32 = 8192; +pub const FPSIMD_MAGIC: u32 = 1179680769; +pub const ESR_MAGIC: u32 = 1163088385; +pub const EXTRA_MAGIC: u32 = 1163416577; +pub const SVE_MAGIC: u32 = 1398162689; +pub const __SVE_VQ_BYTES: u32 = 16; +pub const __SVE_VQ_MIN: u32 = 1; +pub const __SVE_VQ_MAX: u32 = 512; +pub const __SVE_VL_MIN: u32 = 16; +pub const __SVE_VL_MAX: u32 = 8192; +pub const __SVE_NUM_ZREGS: u32 = 32; +pub const __SVE_NUM_PREGS: u32 = 16; +pub const __SVE_ZREGS_OFFSET: u32 = 0; +pub const SVE_VQ_BYTES: u32 = 16; +pub const SVE_VQ_MIN: u32 = 1; +pub const SVE_VQ_MAX: u32 = 512; +pub const SVE_VL_MIN: u32 = 16; +pub const SVE_VL_MAX: u32 = 8192; +pub const SVE_NUM_ZREGS: u32 = 32; +pub const SVE_NUM_PREGS: u32 = 16; +pub const NR_OPEN: u32 = 1024; +pub const NGROUPS_MAX: u32 = 65536; +pub const ARG_MAX: u32 = 131072; +pub const LINK_MAX: u32 = 127; +pub const MAX_CANON: u32 = 255; +pub const MAX_INPUT: u32 = 255; +pub const NAME_MAX: u32 = 255; +pub const PATH_MAX: u32 = 4096; +pub const PIPE_BUF: u32 = 4096; +pub const XATTR_NAME_MAX: u32 = 255; +pub const XATTR_SIZE_MAX: u32 = 65536; +pub const XATTR_LIST_MAX: u32 = 65536; +pub const RTSIG_MAX: u32 = 32; +pub const PASS_MAX: u32 = 128; +pub const NL_ARGMAX: u32 = 9; +pub const NL_LANGMAX: u32 = 14; +pub const NL_MSGMAX: u32 = 32767; +pub const NL_NMAX: u32 = 1; +pub const NL_SETMAX: u32 = 255; +pub const NL_TEXTMAX: u32 = 255; +pub const TMP_MAX: u32 = 308915776; +pub const CHAR_BIT: u32 = 8; +pub const LONG_BIT: u32 = 64; +pub const WORD_BIT: u32 = 32; +pub const SCHAR_MAX: u32 = 127; +pub const SCHAR_MIN: i32 = -128; +pub const UCHAR_MAX: u32 = 255; +pub const CHAR_MIN: u32 = 0; +pub const CHAR_MAX: u32 = 255; +pub const USHRT_MAX: u32 = 65535; +pub const SHRT_MAX: u32 = 32767; +pub const SHRT_MIN: i32 = -32768; +pub const UINT_MAX: u32 = 4294967295; +pub const INT_MAX: u32 = 2147483647; +pub const INT_MIN: i32 = -2147483648; +pub const ULONG_MAX: i32 = -1; +pub const LONG_MAX: u64 = 9223372036854775807; +pub const LONG_MIN: i64 = -9223372036854775808; +pub const ULLONG_MAX: i32 = -1; +pub const LLONG_MAX: u64 = 9223372036854775807; +pub const LLONG_MIN: i64 = -9223372036854775808; +pub const LONG_LONG_MIN: i64 = -9223372036854775808; +pub const LONG_LONG_MAX: u64 = 9223372036854775807; +pub const ULONG_LONG_MAX: i32 = -1; +pub const UID_MAX: u32 = 4294967295; +pub const GID_MAX: u32 = 4294967295; +pub const SIZE_T_MAX: i32 = -1; +pub const SSIZE_MAX: u64 = 9223372036854775807; +pub const MB_LEN_MAX: u32 = 4; +pub const NZERO: u32 = 20; +pub const IOV_MAX: u32 = 1024; +pub const SEM_VALUE_MAX: u32 = 1073741823; +pub const _POSIX_VERSION: u32 = 200809; +pub const _POSIX2_VERSION: u32 = 200809; +pub const _XOPEN_VERSION: u32 = 700; +pub const __BIONIC_POSIX_FEATURE_MISSING: i32 = -1; +pub const _POSIX_ASYNCHRONOUS_IO: i32 = -1; +pub const _POSIX_CHOWN_RESTRICTED: u32 = 1; +pub const _POSIX_CPUTIME: u32 = 200809; +pub const _POSIX_FSYNC: u32 = 200809; +pub const _POSIX_IPV6: u32 = 200809; +pub const _POSIX_MAPPED_FILES: u32 = 200809; +pub const _POSIX_MEMLOCK_RANGE: u32 = 200809; +pub const _POSIX_MEMORY_PROTECTION: u32 = 200809; +pub const _POSIX_MESSAGE_PASSING: i32 = -1; +pub const _POSIX_MONOTONIC_CLOCK: u32 = 200809; +pub const _POSIX_NO_TRUNC: u32 = 1; +pub const _POSIX_PRIORITIZED_IO: i32 = -1; +pub const _POSIX_PRIORITY_SCHEDULING: u32 = 200809; +pub const _POSIX_RAW_SOCKETS: u32 = 200809; +pub const _POSIX_READER_WRITER_LOCKS: u32 = 200809; +pub const _POSIX_REGEXP: u32 = 1; +pub const _POSIX_SAVED_IDS: u32 = 1; +pub const _POSIX_SEMAPHORES: u32 = 200809; +pub const _POSIX_SHARED_MEMORY_OBJECTS: i32 = -1; +pub const _POSIX_SHELL: u32 = 1; +pub const _POSIX_SPORADIC_SERVER: i32 = -1; +pub const _POSIX_SYNCHRONIZED_IO: u32 = 200809; +pub const _POSIX_THREAD_ATTR_STACKADDR: u32 = 200809; +pub const _POSIX_THREAD_ATTR_STACKSIZE: u32 = 200809; +pub const _POSIX_THREAD_CPUTIME: u32 = 200809; +pub const _POSIX_THREAD_PRIO_INHERIT: i32 = -1; +pub const _POSIX_THREAD_PRIO_PROTECT: i32 = -1; +pub const _POSIX_THREAD_PRIORITY_SCHEDULING: u32 = 200809; +pub const _POSIX_THREAD_PROCESS_SHARED: u32 = 200809; +pub const _POSIX_THREAD_ROBUST_PRIO_INHERIT: i32 = -1; +pub const _POSIX_THREAD_ROBUST_PRIO_PROTECT: i32 = -1; +pub const _POSIX_THREAD_SAFE_FUNCTIONS: u32 = 200809; +pub const _POSIX_THREAD_SPORADIC_SERVER: i32 = -1; +pub const _POSIX_THREADS: u32 = 200809; +pub const _POSIX_TIMERS: u32 = 200809; +pub const _POSIX_TRACE: i32 = -1; +pub const _POSIX_TRACE_EVENT_FILTER: i32 = -1; +pub const _POSIX_TRACE_INHERIT: i32 = -1; +pub const _POSIX_TRACE_LOG: i32 = -1; +pub const _POSIX_TYPED_MEMORY_OBJECTS: i32 = -1; +pub const _POSIX_VDISABLE: u8 = 0u8; +pub const _POSIX2_C_BIND: u32 = 200809; +pub const _POSIX2_C_DEV: i32 = -1; +pub const _POSIX2_CHAR_TERM: u32 = 200809; +pub const _POSIX2_FORT_DEV: i32 = -1; +pub const _POSIX2_FORT_RUN: i32 = -1; +pub const _POSIX2_LOCALEDEF: i32 = -1; +pub const _POSIX2_SW_DEV: i32 = -1; +pub const _POSIX2_UPE: i32 = -1; +pub const _POSIX_V7_ILP32_OFF32: i32 = -1; +pub const _POSIX_V7_ILP32_OFFBIG: i32 = -1; +pub const _POSIX_V7_LP64_OFF64: u32 = 1; +pub const _POSIX_V7_LPBIG_OFFBIG: u32 = 1; +pub const _XOPEN_CRYPT: i32 = -1; +pub const _XOPEN_ENH_I18N: u32 = 1; +pub const _XOPEN_LEGACY: i32 = -1; +pub const _XOPEN_REALTIME: u32 = 1; +pub const _XOPEN_REALTIME_THREADS: u32 = 1; +pub const _XOPEN_SHM: u32 = 1; +pub const _XOPEN_STREAMS: i32 = -1; +pub const _XOPEN_UNIX: u32 = 1; +pub const _POSIX_AIO_LISTIO_MAX: u32 = 2; +pub const _POSIX_AIO_MAX: u32 = 1; +pub const _POSIX_ARG_MAX: u32 = 4096; +pub const _POSIX_CHILD_MAX: u32 = 25; +pub const _POSIX_CLOCKRES_MIN: u32 = 20000000; +pub const _POSIX_DELAYTIMER_MAX: u32 = 32; +pub const _POSIX_HOST_NAME_MAX: u32 = 255; +pub const _POSIX_LINK_MAX: u32 = 8; +pub const _POSIX_LOGIN_NAME_MAX: u32 = 9; +pub const _POSIX_MAX_CANON: u32 = 255; +pub const _POSIX_MAX_INPUT: u32 = 255; +pub const _POSIX_MQ_OPEN_MAX: u32 = 8; +pub const _POSIX_MQ_PRIO_MAX: u32 = 32; +pub const _POSIX_NAME_MAX: u32 = 14; +pub const _POSIX_NGROUPS_MAX: u32 = 8; +pub const _POSIX_OPEN_MAX: u32 = 20; +pub const _POSIX_PATH_MAX: u32 = 256; +pub const _POSIX_PIPE_BUF: u32 = 512; +pub const _POSIX_RE_DUP_MAX: u32 = 255; +pub const _POSIX_RTSIG_MAX: u32 = 8; +pub const _POSIX_SEM_NSEMS_MAX: u32 = 256; +pub const _POSIX_SEM_VALUE_MAX: u32 = 32767; +pub const _POSIX_SIGQUEUE_MAX: u32 = 32; +pub const _POSIX_SSIZE_MAX: u32 = 32767; +pub const _POSIX_STREAM_MAX: u32 = 8; +pub const _POSIX_SS_REPL_MAX: u32 = 4; +pub const _POSIX_SYMLINK_MAX: u32 = 255; +pub const _POSIX_SYMLOOP_MAX: u32 = 8; +pub const _POSIX_THREAD_DESTRUCTOR_ITERATIONS: u32 = 4; +pub const _POSIX_THREAD_KEYS_MAX: u32 = 128; +pub const _POSIX_THREAD_THREADS_MAX: u32 = 64; +pub const _POSIX_TIMER_MAX: u32 = 32; +pub const _POSIX_TRACE_EVENT_NAME_MAX: u32 = 30; +pub const _POSIX_TRACE_NAME_MAX: u32 = 8; +pub const _POSIX_TRACE_SYS_MAX: u32 = 8; +pub const _POSIX_TRACE_USER_EVENT_MAX: u32 = 32; +pub const _POSIX_TTY_NAME_MAX: u32 = 9; +pub const _POSIX_TZNAME_MAX: u32 = 6; +pub const _POSIX2_BC_BASE_MAX: u32 = 99; +pub const _POSIX2_BC_DIM_MAX: u32 = 2048; +pub const _POSIX2_BC_SCALE_MAX: u32 = 99; +pub const _POSIX2_BC_STRING_MAX: u32 = 1000; +pub const _POSIX2_CHARCLASS_NAME_MAX: u32 = 14; +pub const _POSIX2_COLL_WEIGHTS_MAX: u32 = 2; +pub const _POSIX2_EXPR_NEST_MAX: u32 = 32; +pub const _POSIX2_LINE_MAX: u32 = 2048; +pub const _POSIX2_RE_DUP_MAX: u32 = 255; +pub const _XOPEN_IOV_MAX: u32 = 16; +pub const _XOPEN_NAME_MAX: u32 = 255; +pub const _XOPEN_PATH_MAX: u32 = 1024; +pub const HOST_NAME_MAX: u32 = 255; +pub const LOGIN_NAME_MAX: u32 = 256; +pub const TTY_NAME_MAX: u32 = 32; +pub const PTHREAD_DESTRUCTOR_ITERATIONS: u32 = 4; +pub const PTHREAD_KEYS_MAX: u32 = 128; +pub const SA_RESTORER: u32 = 67108864; +pub const MINSIGSTKSZ: u32 = 5120; +pub const SIGSTKSZ: u32 = 16384; +pub const _KERNEL__NSIG: u32 = 64; +pub const _NSIG_BPW: u32 = 64; +pub const _NSIG_WORDS: u32 = 1; +pub const SIGHUP: u32 = 1; +pub const SIGINT: u32 = 2; +pub const SIGQUIT: u32 = 3; +pub const SIGILL: u32 = 4; +pub const SIGTRAP: u32 = 5; +pub const SIGABRT: u32 = 6; +pub const SIGIOT: u32 = 6; +pub const SIGBUS: u32 = 7; +pub const SIGFPE: u32 = 8; +pub const SIGKILL: u32 = 9; +pub const SIGUSR1: u32 = 10; +pub const SIGSEGV: u32 = 11; +pub const SIGUSR2: u32 = 12; +pub const SIGPIPE: u32 = 13; +pub const SIGALRM: u32 = 14; +pub const SIGTERM: u32 = 15; +pub const SIGSTKFLT: u32 = 16; +pub const SIGCHLD: u32 = 17; +pub const SIGCONT: u32 = 18; +pub const SIGSTOP: u32 = 19; +pub const SIGTSTP: u32 = 20; +pub const SIGTTIN: u32 = 21; +pub const SIGTTOU: u32 = 22; +pub const SIGURG: u32 = 23; +pub const SIGXCPU: u32 = 24; +pub const SIGXFSZ: u32 = 25; +pub const SIGVTALRM: u32 = 26; +pub const SIGPROF: u32 = 27; +pub const SIGWINCH: u32 = 28; +pub const SIGIO: u32 = 29; +pub const SIGPOLL: u32 = 29; +pub const SIGPWR: u32 = 30; +pub const SIGSYS: u32 = 31; +pub const SIGUNUSED: u32 = 31; +pub const __SIGRTMIN: u32 = 32; +pub const __SIGRTMAX: u32 = 64; +pub const SA_NOCLDSTOP: u32 = 1; +pub const SA_NOCLDWAIT: u32 = 2; +pub const SA_SIGINFO: u32 = 4; +pub const SA_ONSTACK: u32 = 134217728; +pub const SA_RESTART: u32 = 268435456; +pub const SA_NODEFER: u32 = 1073741824; +pub const SA_RESETHAND: u32 = 2147483648; +pub const SA_NOMASK: u32 = 1073741824; +pub const SA_ONESHOT: u32 = 2147483648; +pub const SIG_BLOCK: u32 = 0; +pub const SIG_UNBLOCK: u32 = 1; +pub const SIG_SETMASK: u32 = 2; +pub const SI_MAX_SIZE: u32 = 128; +pub const SI_USER: u32 = 0; +pub const SI_KERNEL: u32 = 128; +pub const SI_QUEUE: i32 = -1; +pub const SI_TIMER: i32 = -2; +pub const SI_MESGQ: i32 = -3; +pub const SI_ASYNCIO: i32 = -4; +pub const SI_SIGIO: i32 = -5; +pub const SI_TKILL: i32 = -6; +pub const SI_DETHREAD: i32 = -7; +pub const SI_ASYNCNL: i32 = -60; +pub const ILL_ILLOPC: u32 = 1; +pub const ILL_ILLOPN: u32 = 2; +pub const ILL_ILLADR: u32 = 3; +pub const ILL_ILLTRP: u32 = 4; +pub const ILL_PRVOPC: u32 = 5; +pub const ILL_PRVREG: u32 = 6; +pub const ILL_COPROC: u32 = 7; +pub const ILL_BADSTK: u32 = 8; +pub const ILL_BADIADDR: u32 = 9; +pub const __ILL_BREAK: u32 = 10; +pub const __ILL_BNDMOD: u32 = 11; +pub const NSIGILL: u32 = 11; +pub const FPE_INTDIV: u32 = 1; +pub const FPE_INTOVF: u32 = 2; +pub const FPE_FLTDIV: u32 = 3; +pub const FPE_FLTOVF: u32 = 4; +pub const FPE_FLTUND: u32 = 5; +pub const FPE_FLTRES: u32 = 6; +pub const FPE_FLTINV: u32 = 7; +pub const FPE_FLTSUB: u32 = 8; +pub const __FPE_DECOVF: u32 = 9; +pub const __FPE_DECDIV: u32 = 10; +pub const __FPE_DECERR: u32 = 11; +pub const __FPE_INVASC: u32 = 12; +pub const __FPE_INVDEC: u32 = 13; +pub const FPE_FLTUNK: u32 = 14; +pub const FPE_CONDTRAP: u32 = 15; +pub const NSIGFPE: u32 = 15; +pub const SEGV_MAPERR: u32 = 1; +pub const SEGV_ACCERR: u32 = 2; +pub const SEGV_BNDERR: u32 = 3; +pub const SEGV_PKUERR: u32 = 4; +pub const SEGV_ACCADI: u32 = 5; +pub const SEGV_ADIDERR: u32 = 6; +pub const SEGV_ADIPERR: u32 = 7; +pub const NSIGSEGV: u32 = 7; +pub const BUS_ADRALN: u32 = 1; +pub const BUS_ADRERR: u32 = 2; +pub const BUS_OBJERR: u32 = 3; +pub const BUS_MCEERR_AR: u32 = 4; +pub const BUS_MCEERR_AO: u32 = 5; +pub const NSIGBUS: u32 = 5; +pub const TRAP_BRKPT: u32 = 1; +pub const TRAP_TRACE: u32 = 2; +pub const TRAP_BRANCH: u32 = 3; +pub const TRAP_HWBKPT: u32 = 4; +pub const TRAP_UNK: u32 = 5; +pub const NSIGTRAP: u32 = 5; +pub const CLD_EXITED: u32 = 1; +pub const CLD_KILLED: u32 = 2; +pub const CLD_DUMPED: u32 = 3; +pub const CLD_TRAPPED: u32 = 4; +pub const CLD_STOPPED: u32 = 5; +pub const CLD_CONTINUED: u32 = 6; +pub const NSIGCHLD: u32 = 6; +pub const POLL_IN: u32 = 1; +pub const POLL_OUT: u32 = 2; +pub const POLL_MSG: u32 = 3; +pub const POLL_ERR: u32 = 4; +pub const POLL_PRI: u32 = 5; +pub const POLL_HUP: u32 = 6; +pub const NSIGPOLL: u32 = 6; +pub const SYS_SECCOMP: u32 = 1; +pub const NSIGSYS: u32 = 1; +pub const EMT_TAGOVF: u32 = 1; +pub const NSIGEMT: u32 = 1; +pub const SIGEV_SIGNAL: u32 = 0; +pub const SIGEV_NONE: u32 = 1; +pub const SIGEV_THREAD: u32 = 2; +pub const SIGEV_THREAD_ID: u32 = 4; +pub const SIGEV_MAX_SIZE: u32 = 64; +pub const SS_ONSTACK: u32 = 1; +pub const SS_DISABLE: u32 = 2; +pub const SS_AUTODISARM: u32 = 2147483648; +pub const SS_FLAG_BITS: u32 = 2147483648; +pub const _NSIG: u32 = 65; +pub const NSIG: u32 = 65; +pub const PAGE_SIZE: u32 = 4096; +pub const PAGE_MASK: i32 = -4096; +pub const NGREG: u32 = 34; +pub const ITIMER_REAL: u32 = 0; +pub const ITIMER_VIRTUAL: u32 = 1; +pub const ITIMER_PROF: u32 = 2; +pub const CLOCK_REALTIME: u32 = 0; +pub const CLOCK_MONOTONIC: u32 = 1; +pub const CLOCK_PROCESS_CPUTIME_ID: u32 = 2; +pub const CLOCK_THREAD_CPUTIME_ID: u32 = 3; +pub const CLOCK_MONOTONIC_RAW: u32 = 4; +pub const CLOCK_REALTIME_COARSE: u32 = 5; +pub const CLOCK_MONOTONIC_COARSE: u32 = 6; +pub const CLOCK_BOOTTIME: u32 = 7; +pub const CLOCK_REALTIME_ALARM: u32 = 8; +pub const CLOCK_BOOTTIME_ALARM: u32 = 9; +pub const CLOCK_SGI_CYCLE: u32 = 10; +pub const CLOCK_TAI: u32 = 11; +pub const MAX_CLOCKS: u32 = 16; +pub const CLOCKS_MASK: u32 = 1; +pub const CLOCKS_MONO: u32 = 1; +pub const TIMER_ABSTIME: u32 = 1; +pub const FD_SETSIZE: u32 = 1024; +pub const CLOCKS_PER_SEC: u32 = 1000000; +pub const TIME_UTC: u32 = 1; +pub const CSIGNAL: u32 = 255; +pub const CLONE_VM: u32 = 256; +pub const CLONE_FS: u32 = 512; +pub const CLONE_FILES: u32 = 1024; +pub const CLONE_SIGHAND: u32 = 2048; +pub const CLONE_PIDFD: u32 = 4096; +pub const CLONE_PTRACE: u32 = 8192; +pub const CLONE_VFORK: u32 = 16384; +pub const CLONE_PARENT: u32 = 32768; +pub const CLONE_THREAD: u32 = 65536; +pub const CLONE_NEWNS: u32 = 131072; +pub const CLONE_SYSVSEM: u32 = 262144; +pub const CLONE_SETTLS: u32 = 524288; +pub const CLONE_PARENT_SETTID: u32 = 1048576; +pub const CLONE_CHILD_CLEARTID: u32 = 2097152; +pub const CLONE_DETACHED: u32 = 4194304; +pub const CLONE_UNTRACED: u32 = 8388608; +pub const CLONE_CHILD_SETTID: u32 = 16777216; +pub const CLONE_NEWCGROUP: u32 = 33554432; +pub const CLONE_NEWUTS: u32 = 67108864; +pub const CLONE_NEWIPC: u32 = 134217728; +pub const CLONE_NEWUSER: u32 = 268435456; +pub const CLONE_NEWPID: u32 = 536870912; +pub const CLONE_NEWNET: u32 = 1073741824; +pub const CLONE_IO: u32 = 2147483648; +pub const SCHED_NORMAL: u32 = 0; +pub const SCHED_FIFO: u32 = 1; +pub const SCHED_RR: u32 = 2; +pub const SCHED_BATCH: u32 = 3; +pub const SCHED_IDLE: u32 = 5; +pub const SCHED_DEADLINE: u32 = 6; +pub const SCHED_RESET_ON_FORK: u32 = 1073741824; +pub const SCHED_FLAG_RESET_ON_FORK: u32 = 1; +pub const SCHED_FLAG_RECLAIM: u32 = 2; +pub const SCHED_FLAG_DL_OVERRUN: u32 = 4; +pub const SCHED_FLAG_KEEP_POLICY: u32 = 8; +pub const SCHED_FLAG_KEEP_PARAMS: u32 = 16; +pub const SCHED_FLAG_UTIL_CLAMP_MIN: u32 = 32; +pub const SCHED_FLAG_UTIL_CLAMP_MAX: u32 = 64; +pub const SCHED_FLAG_KEEP_ALL: u32 = 24; +pub const SCHED_FLAG_UTIL_CLAMP: u32 = 96; +pub const SCHED_FLAG_ALL: u32 = 127; +pub const SCHED_OTHER: u32 = 0; +pub const PTHREAD_ONCE_INIT: u32 = 0; +pub const PTHREAD_BARRIER_SERIAL_THREAD: i32 = -1; +pub const PTHREAD_STACK_MIN: u32 = 16384; +pub const PTHREAD_CREATE_DETACHED: u32 = 1; +pub const PTHREAD_CREATE_JOINABLE: u32 = 0; +pub const PTHREAD_EXPLICIT_SCHED: u32 = 0; +pub const PTHREAD_INHERIT_SCHED: u32 = 1; +pub const PTHREAD_PRIO_NONE: u32 = 0; +pub const PTHREAD_PRIO_INHERIT: u32 = 1; +pub const PTHREAD_PROCESS_PRIVATE: u32 = 0; +pub const PTHREAD_PROCESS_SHARED: u32 = 1; +pub const PTHREAD_SCOPE_SYSTEM: u32 = 0; +pub const PTHREAD_SCOPE_PROCESS: u32 = 1; +pub const NATIVE_APP_GLUE_MAX_NUM_MOTION_EVENTS: u32 = 16; +pub const NATIVE_APP_GLUE_MAX_NUM_KEY_EVENTS: u32 = 4; +pub const NATIVE_APP_GLUE_MAX_INPUT_BUFFERS: u32 = 2; +extern "C" { + pub fn android_get_application_target_sdk_version() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn android_get_device_api_level() -> ::std::os::raw::c_int; +} +pub type size_t = ::std::os::raw::c_ulong; +pub type wchar_t = ::std::os::raw::c_uint; +#[repr(C)] +#[repr(align(16))] +#[derive(Debug, Copy, Clone)] +pub struct max_align_t { + pub __clang_max_align_nonce1: ::std::os::raw::c_longlong, + pub __bindgen_padding_0: u64, + pub __clang_max_align_nonce2: u128, +} +#[test] +fn bindgen_test_layout_max_align_t() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(max_align_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 16usize, + concat!("Alignment of ", stringify!(max_align_t)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).__clang_max_align_nonce1 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(max_align_t), + "::", + stringify!(__clang_max_align_nonce1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).__clang_max_align_nonce2 as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(max_align_t), + "::", + stringify!(__clang_max_align_nonce2) + ) + ); +} +pub type __int8_t = ::std::os::raw::c_schar; +pub type __uint8_t = ::std::os::raw::c_uchar; +pub type __int16_t = ::std::os::raw::c_short; +pub type __uint16_t = ::std::os::raw::c_ushort; +pub type __int32_t = ::std::os::raw::c_int; +pub type __uint32_t = ::std::os::raw::c_uint; +pub type __int64_t = ::std::os::raw::c_long; +pub type __uint64_t = ::std::os::raw::c_ulong; +pub type __intptr_t = ::std::os::raw::c_long; +pub type __uintptr_t = ::std::os::raw::c_ulong; +pub type int_least8_t = i8; +pub type uint_least8_t = u8; +pub type int_least16_t = i16; +pub type uint_least16_t = u16; +pub type int_least32_t = i32; +pub type uint_least32_t = u32; +pub type int_least64_t = i64; +pub type uint_least64_t = u64; +pub type int_fast8_t = i8; +pub type uint_fast8_t = u8; +pub type int_fast64_t = i64; +pub type uint_fast64_t = u64; +pub type int_fast16_t = i64; +pub type uint_fast16_t = u64; +pub type int_fast32_t = i64; +pub type uint_fast32_t = u64; +pub type uintmax_t = u64; +pub type intmax_t = i64; +pub type __s8 = ::std::os::raw::c_schar; +pub type __u8 = ::std::os::raw::c_uchar; +pub type __s16 = ::std::os::raw::c_short; +pub type __u16 = ::std::os::raw::c_ushort; +pub type __s32 = ::std::os::raw::c_int; +pub type __u32 = ::std::os::raw::c_uint; +pub type __s64 = ::std::os::raw::c_longlong; +pub type __u64 = ::std::os::raw::c_ulonglong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_fd_set { + pub fds_bits: [::std::os::raw::c_ulong; 16usize], +} +#[test] +fn bindgen_test_layout___kernel_fd_set() { + assert_eq!( + ::std::mem::size_of::<__kernel_fd_set>(), + 128usize, + concat!("Size of: ", stringify!(__kernel_fd_set)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_fd_set>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_fd_set)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_fd_set>())).fds_bits as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_fd_set), + "::", + stringify!(fds_bits) + ) + ); +} +pub type __kernel_sighandler_t = + ::std::option::Option; +pub type __kernel_key_t = ::std::os::raw::c_int; +pub type __kernel_mqd_t = ::std::os::raw::c_int; +pub type __kernel_old_uid_t = ::std::os::raw::c_ushort; +pub type __kernel_old_gid_t = ::std::os::raw::c_ushort; +pub type __kernel_long_t = ::std::os::raw::c_long; +pub type __kernel_ulong_t = ::std::os::raw::c_ulong; +pub type __kernel_ino_t = __kernel_ulong_t; +pub type __kernel_mode_t = ::std::os::raw::c_uint; +pub type __kernel_pid_t = ::std::os::raw::c_int; +pub type __kernel_ipc_pid_t = ::std::os::raw::c_int; +pub type __kernel_uid_t = ::std::os::raw::c_uint; +pub type __kernel_gid_t = ::std::os::raw::c_uint; +pub type __kernel_suseconds_t = __kernel_long_t; +pub type __kernel_daddr_t = ::std::os::raw::c_int; +pub type __kernel_uid32_t = ::std::os::raw::c_uint; +pub type __kernel_gid32_t = ::std::os::raw::c_uint; +pub type __kernel_old_dev_t = ::std::os::raw::c_uint; +pub type __kernel_size_t = __kernel_ulong_t; +pub type __kernel_ssize_t = __kernel_long_t; +pub type __kernel_ptrdiff_t = __kernel_long_t; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_fsid_t { + pub val: [::std::os::raw::c_int; 2usize], +} +#[test] +fn bindgen_test_layout___kernel_fsid_t() { + assert_eq!( + ::std::mem::size_of::<__kernel_fsid_t>(), + 8usize, + concat!("Size of: ", stringify!(__kernel_fsid_t)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_fsid_t>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_fsid_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_fsid_t>())).val as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_fsid_t), + "::", + stringify!(val) + ) + ); +} +pub type __kernel_off_t = __kernel_long_t; +pub type __kernel_loff_t = ::std::os::raw::c_longlong; +pub type __kernel_time_t = __kernel_long_t; +pub type __kernel_time64_t = ::std::os::raw::c_longlong; +pub type __kernel_clock_t = __kernel_long_t; +pub type __kernel_timer_t = ::std::os::raw::c_int; +pub type __kernel_clockid_t = ::std::os::raw::c_int; +pub type __kernel_caddr_t = *mut ::std::os::raw::c_char; +pub type __kernel_uid16_t = ::std::os::raw::c_ushort; +pub type __kernel_gid16_t = ::std::os::raw::c_ushort; +pub type __le16 = __u16; +pub type __be16 = __u16; +pub type __le32 = __u32; +pub type __be32 = __u32; +pub type __le64 = __u64; +pub type __be64 = __u64; +pub type __sum16 = __u16; +pub type __wsum = __u32; +pub type __poll_t = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_attr_t { + pub flags: u32, + pub stack_base: *mut ::std::os::raw::c_void, + pub stack_size: size_t, + pub guard_size: size_t, + pub sched_policy: i32, + pub sched_priority: i32, + pub __reserved: [::std::os::raw::c_char; 16usize], +} +#[test] +fn bindgen_test_layout_pthread_attr_t() { + assert_eq!( + ::std::mem::size_of::(), + 56usize, + concat!("Size of: ", stringify!(pthread_attr_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(pthread_attr_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_base as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(stack_base) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_size as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(stack_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).guard_size as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(guard_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_policy as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(sched_policy) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_priority as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(sched_priority) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__reserved as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(__reserved) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_barrier_t { + pub __private: [i64; 4usize], +} +#[test] +fn bindgen_test_layout_pthread_barrier_t() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(pthread_barrier_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(pthread_barrier_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_barrier_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_barrierattr_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_cond_t { + pub __private: [i32; 12usize], +} +#[test] +fn bindgen_test_layout_pthread_cond_t() { + assert_eq!( + ::std::mem::size_of::(), + 48usize, + concat!("Size of: ", stringify!(pthread_cond_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_cond_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_cond_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_condattr_t = ::std::os::raw::c_long; +pub type pthread_key_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_mutex_t { + pub __private: [i32; 10usize], +} +#[test] +fn bindgen_test_layout_pthread_mutex_t() { + assert_eq!( + ::std::mem::size_of::(), + 40usize, + concat!("Size of: ", stringify!(pthread_mutex_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_mutex_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_mutex_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_mutexattr_t = ::std::os::raw::c_long; +pub type pthread_once_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_rwlock_t { + pub __private: [i32; 14usize], +} +#[test] +fn bindgen_test_layout_pthread_rwlock_t() { + assert_eq!( + ::std::mem::size_of::(), + 56usize, + concat!("Size of: ", stringify!(pthread_rwlock_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_rwlock_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_rwlock_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_rwlockattr_t = ::std::os::raw::c_long; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_spinlock_t { + pub __private: i64, +} +#[test] +fn bindgen_test_layout_pthread_spinlock_t() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(pthread_spinlock_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(pthread_spinlock_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_spinlock_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_t = ::std::os::raw::c_long; +pub type __gid_t = __kernel_gid32_t; +pub type gid_t = __gid_t; +pub type __uid_t = __kernel_uid32_t; +pub type uid_t = __uid_t; +pub type __pid_t = __kernel_pid_t; +pub type pid_t = __pid_t; +pub type __id_t = u32; +pub type id_t = __id_t; +pub type blkcnt_t = ::std::os::raw::c_ulong; +pub type blksize_t = ::std::os::raw::c_ulong; +pub type caddr_t = __kernel_caddr_t; +pub type clock_t = __kernel_clock_t; +pub type __clockid_t = __kernel_clockid_t; +pub type clockid_t = __clockid_t; +pub type daddr_t = __kernel_daddr_t; +pub type fsblkcnt_t = ::std::os::raw::c_ulong; +pub type fsfilcnt_t = ::std::os::raw::c_ulong; +pub type __mode_t = __kernel_mode_t; +pub type mode_t = __mode_t; +pub type __key_t = __kernel_key_t; +pub type key_t = __key_t; +pub type __ino_t = __kernel_ino_t; +pub type ino_t = __ino_t; +pub type ino64_t = u64; +pub type __nlink_t = u32; +pub type nlink_t = __nlink_t; +pub type __timer_t = *mut ::std::os::raw::c_void; +pub type timer_t = __timer_t; +pub type __suseconds_t = __kernel_suseconds_t; +pub type suseconds_t = __suseconds_t; +pub type __useconds_t = u32; +pub type useconds_t = __useconds_t; +pub type dev_t = u64; +pub type __time_t = __kernel_time_t; +pub type time_t = __time_t; +pub type off_t = i64; +pub type loff_t = off_t; +pub type off64_t = loff_t; +pub type __socklen_t = u32; +pub type socklen_t = __socklen_t; +pub type __va_list = [u64; 4usize]; +pub type ssize_t = __kernel_ssize_t; +pub type uint_t = ::std::os::raw::c_uint; +pub type uint = ::std::os::raw::c_uint; +pub type u_char = ::std::os::raw::c_uchar; +pub type u_short = ::std::os::raw::c_ushort; +pub type u_int = ::std::os::raw::c_uint; +pub type u_long = ::std::os::raw::c_ulong; +pub type u_int32_t = u32; +pub type u_int16_t = u16; +pub type u_int8_t = u8; +pub type u_int64_t = u64; +pub const AASSET_MODE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AASSET_MODE_RANDOM: ::std::os::raw::c_uint = 1; +pub const AASSET_MODE_STREAMING: ::std::os::raw::c_uint = 2; +pub const AASSET_MODE_BUFFER: ::std::os::raw::c_uint = 3; +pub type _bindgen_ty_1 = ::std::os::raw::c_uint; +pub const AKEYCODE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AKEYCODE_SOFT_LEFT: ::std::os::raw::c_uint = 1; +pub const AKEYCODE_SOFT_RIGHT: ::std::os::raw::c_uint = 2; +pub const AKEYCODE_HOME: ::std::os::raw::c_uint = 3; +pub const AKEYCODE_BACK: ::std::os::raw::c_uint = 4; +pub const AKEYCODE_CALL: ::std::os::raw::c_uint = 5; +pub const AKEYCODE_ENDCALL: ::std::os::raw::c_uint = 6; +pub const AKEYCODE_0: ::std::os::raw::c_uint = 7; +pub const AKEYCODE_1: ::std::os::raw::c_uint = 8; +pub const AKEYCODE_2: ::std::os::raw::c_uint = 9; +pub const AKEYCODE_3: ::std::os::raw::c_uint = 10; +pub const AKEYCODE_4: ::std::os::raw::c_uint = 11; +pub const AKEYCODE_5: ::std::os::raw::c_uint = 12; +pub const AKEYCODE_6: ::std::os::raw::c_uint = 13; +pub const AKEYCODE_7: ::std::os::raw::c_uint = 14; +pub const AKEYCODE_8: ::std::os::raw::c_uint = 15; +pub const AKEYCODE_9: ::std::os::raw::c_uint = 16; +pub const AKEYCODE_STAR: ::std::os::raw::c_uint = 17; +pub const AKEYCODE_POUND: ::std::os::raw::c_uint = 18; +pub const AKEYCODE_DPAD_UP: ::std::os::raw::c_uint = 19; +pub const AKEYCODE_DPAD_DOWN: ::std::os::raw::c_uint = 20; +pub const AKEYCODE_DPAD_LEFT: ::std::os::raw::c_uint = 21; +pub const AKEYCODE_DPAD_RIGHT: ::std::os::raw::c_uint = 22; +pub const AKEYCODE_DPAD_CENTER: ::std::os::raw::c_uint = 23; +pub const AKEYCODE_VOLUME_UP: ::std::os::raw::c_uint = 24; +pub const AKEYCODE_VOLUME_DOWN: ::std::os::raw::c_uint = 25; +pub const AKEYCODE_POWER: ::std::os::raw::c_uint = 26; +pub const AKEYCODE_CAMERA: ::std::os::raw::c_uint = 27; +pub const AKEYCODE_CLEAR: ::std::os::raw::c_uint = 28; +pub const AKEYCODE_A: ::std::os::raw::c_uint = 29; +pub const AKEYCODE_B: ::std::os::raw::c_uint = 30; +pub const AKEYCODE_C: ::std::os::raw::c_uint = 31; +pub const AKEYCODE_D: ::std::os::raw::c_uint = 32; +pub const AKEYCODE_E: ::std::os::raw::c_uint = 33; +pub const AKEYCODE_F: ::std::os::raw::c_uint = 34; +pub const AKEYCODE_G: ::std::os::raw::c_uint = 35; +pub const AKEYCODE_H: ::std::os::raw::c_uint = 36; +pub const AKEYCODE_I: ::std::os::raw::c_uint = 37; +pub const AKEYCODE_J: ::std::os::raw::c_uint = 38; +pub const AKEYCODE_K: ::std::os::raw::c_uint = 39; +pub const AKEYCODE_L: ::std::os::raw::c_uint = 40; +pub const AKEYCODE_M: ::std::os::raw::c_uint = 41; +pub const AKEYCODE_N: ::std::os::raw::c_uint = 42; +pub const AKEYCODE_O: ::std::os::raw::c_uint = 43; +pub const AKEYCODE_P: ::std::os::raw::c_uint = 44; +pub const AKEYCODE_Q: ::std::os::raw::c_uint = 45; +pub const AKEYCODE_R: ::std::os::raw::c_uint = 46; +pub const AKEYCODE_S: ::std::os::raw::c_uint = 47; +pub const AKEYCODE_T: ::std::os::raw::c_uint = 48; +pub const AKEYCODE_U: ::std::os::raw::c_uint = 49; +pub const AKEYCODE_V: ::std::os::raw::c_uint = 50; +pub const AKEYCODE_W: ::std::os::raw::c_uint = 51; +pub const AKEYCODE_X: ::std::os::raw::c_uint = 52; +pub const AKEYCODE_Y: ::std::os::raw::c_uint = 53; +pub const AKEYCODE_Z: ::std::os::raw::c_uint = 54; +pub const AKEYCODE_COMMA: ::std::os::raw::c_uint = 55; +pub const AKEYCODE_PERIOD: ::std::os::raw::c_uint = 56; +pub const AKEYCODE_ALT_LEFT: ::std::os::raw::c_uint = 57; +pub const AKEYCODE_ALT_RIGHT: ::std::os::raw::c_uint = 58; +pub const AKEYCODE_SHIFT_LEFT: ::std::os::raw::c_uint = 59; +pub const AKEYCODE_SHIFT_RIGHT: ::std::os::raw::c_uint = 60; +pub const AKEYCODE_TAB: ::std::os::raw::c_uint = 61; +pub const AKEYCODE_SPACE: ::std::os::raw::c_uint = 62; +pub const AKEYCODE_SYM: ::std::os::raw::c_uint = 63; +pub const AKEYCODE_EXPLORER: ::std::os::raw::c_uint = 64; +pub const AKEYCODE_ENVELOPE: ::std::os::raw::c_uint = 65; +pub const AKEYCODE_ENTER: ::std::os::raw::c_uint = 66; +pub const AKEYCODE_DEL: ::std::os::raw::c_uint = 67; +pub const AKEYCODE_GRAVE: ::std::os::raw::c_uint = 68; +pub const AKEYCODE_MINUS: ::std::os::raw::c_uint = 69; +pub const AKEYCODE_EQUALS: ::std::os::raw::c_uint = 70; +pub const AKEYCODE_LEFT_BRACKET: ::std::os::raw::c_uint = 71; +pub const AKEYCODE_RIGHT_BRACKET: ::std::os::raw::c_uint = 72; +pub const AKEYCODE_BACKSLASH: ::std::os::raw::c_uint = 73; +pub const AKEYCODE_SEMICOLON: ::std::os::raw::c_uint = 74; +pub const AKEYCODE_APOSTROPHE: ::std::os::raw::c_uint = 75; +pub const AKEYCODE_SLASH: ::std::os::raw::c_uint = 76; +pub const AKEYCODE_AT: ::std::os::raw::c_uint = 77; +pub const AKEYCODE_NUM: ::std::os::raw::c_uint = 78; +pub const AKEYCODE_HEADSETHOOK: ::std::os::raw::c_uint = 79; +pub const AKEYCODE_FOCUS: ::std::os::raw::c_uint = 80; +pub const AKEYCODE_PLUS: ::std::os::raw::c_uint = 81; +pub const AKEYCODE_MENU: ::std::os::raw::c_uint = 82; +pub const AKEYCODE_NOTIFICATION: ::std::os::raw::c_uint = 83; +pub const AKEYCODE_SEARCH: ::std::os::raw::c_uint = 84; +pub const AKEYCODE_MEDIA_PLAY_PAUSE: ::std::os::raw::c_uint = 85; +pub const AKEYCODE_MEDIA_STOP: ::std::os::raw::c_uint = 86; +pub const AKEYCODE_MEDIA_NEXT: ::std::os::raw::c_uint = 87; +pub const AKEYCODE_MEDIA_PREVIOUS: ::std::os::raw::c_uint = 88; +pub const AKEYCODE_MEDIA_REWIND: ::std::os::raw::c_uint = 89; +pub const AKEYCODE_MEDIA_FAST_FORWARD: ::std::os::raw::c_uint = 90; +pub const AKEYCODE_MUTE: ::std::os::raw::c_uint = 91; +pub const AKEYCODE_PAGE_UP: ::std::os::raw::c_uint = 92; +pub const AKEYCODE_PAGE_DOWN: ::std::os::raw::c_uint = 93; +pub const AKEYCODE_PICTSYMBOLS: ::std::os::raw::c_uint = 94; +pub const AKEYCODE_SWITCH_CHARSET: ::std::os::raw::c_uint = 95; +pub const AKEYCODE_BUTTON_A: ::std::os::raw::c_uint = 96; +pub const AKEYCODE_BUTTON_B: ::std::os::raw::c_uint = 97; +pub const AKEYCODE_BUTTON_C: ::std::os::raw::c_uint = 98; +pub const AKEYCODE_BUTTON_X: ::std::os::raw::c_uint = 99; +pub const AKEYCODE_BUTTON_Y: ::std::os::raw::c_uint = 100; +pub const AKEYCODE_BUTTON_Z: ::std::os::raw::c_uint = 101; +pub const AKEYCODE_BUTTON_L1: ::std::os::raw::c_uint = 102; +pub const AKEYCODE_BUTTON_R1: ::std::os::raw::c_uint = 103; +pub const AKEYCODE_BUTTON_L2: ::std::os::raw::c_uint = 104; +pub const AKEYCODE_BUTTON_R2: ::std::os::raw::c_uint = 105; +pub const AKEYCODE_BUTTON_THUMBL: ::std::os::raw::c_uint = 106; +pub const AKEYCODE_BUTTON_THUMBR: ::std::os::raw::c_uint = 107; +pub const AKEYCODE_BUTTON_START: ::std::os::raw::c_uint = 108; +pub const AKEYCODE_BUTTON_SELECT: ::std::os::raw::c_uint = 109; +pub const AKEYCODE_BUTTON_MODE: ::std::os::raw::c_uint = 110; +pub const AKEYCODE_ESCAPE: ::std::os::raw::c_uint = 111; +pub const AKEYCODE_FORWARD_DEL: ::std::os::raw::c_uint = 112; +pub const AKEYCODE_CTRL_LEFT: ::std::os::raw::c_uint = 113; +pub const AKEYCODE_CTRL_RIGHT: ::std::os::raw::c_uint = 114; +pub const AKEYCODE_CAPS_LOCK: ::std::os::raw::c_uint = 115; +pub const AKEYCODE_SCROLL_LOCK: ::std::os::raw::c_uint = 116; +pub const AKEYCODE_META_LEFT: ::std::os::raw::c_uint = 117; +pub const AKEYCODE_META_RIGHT: ::std::os::raw::c_uint = 118; +pub const AKEYCODE_FUNCTION: ::std::os::raw::c_uint = 119; +pub const AKEYCODE_SYSRQ: ::std::os::raw::c_uint = 120; +pub const AKEYCODE_BREAK: ::std::os::raw::c_uint = 121; +pub const AKEYCODE_MOVE_HOME: ::std::os::raw::c_uint = 122; +pub const AKEYCODE_MOVE_END: ::std::os::raw::c_uint = 123; +pub const AKEYCODE_INSERT: ::std::os::raw::c_uint = 124; +pub const AKEYCODE_FORWARD: ::std::os::raw::c_uint = 125; +pub const AKEYCODE_MEDIA_PLAY: ::std::os::raw::c_uint = 126; +pub const AKEYCODE_MEDIA_PAUSE: ::std::os::raw::c_uint = 127; +pub const AKEYCODE_MEDIA_CLOSE: ::std::os::raw::c_uint = 128; +pub const AKEYCODE_MEDIA_EJECT: ::std::os::raw::c_uint = 129; +pub const AKEYCODE_MEDIA_RECORD: ::std::os::raw::c_uint = 130; +pub const AKEYCODE_F1: ::std::os::raw::c_uint = 131; +pub const AKEYCODE_F2: ::std::os::raw::c_uint = 132; +pub const AKEYCODE_F3: ::std::os::raw::c_uint = 133; +pub const AKEYCODE_F4: ::std::os::raw::c_uint = 134; +pub const AKEYCODE_F5: ::std::os::raw::c_uint = 135; +pub const AKEYCODE_F6: ::std::os::raw::c_uint = 136; +pub const AKEYCODE_F7: ::std::os::raw::c_uint = 137; +pub const AKEYCODE_F8: ::std::os::raw::c_uint = 138; +pub const AKEYCODE_F9: ::std::os::raw::c_uint = 139; +pub const AKEYCODE_F10: ::std::os::raw::c_uint = 140; +pub const AKEYCODE_F11: ::std::os::raw::c_uint = 141; +pub const AKEYCODE_F12: ::std::os::raw::c_uint = 142; +pub const AKEYCODE_NUM_LOCK: ::std::os::raw::c_uint = 143; +pub const AKEYCODE_NUMPAD_0: ::std::os::raw::c_uint = 144; +pub const AKEYCODE_NUMPAD_1: ::std::os::raw::c_uint = 145; +pub const AKEYCODE_NUMPAD_2: ::std::os::raw::c_uint = 146; +pub const AKEYCODE_NUMPAD_3: ::std::os::raw::c_uint = 147; +pub const AKEYCODE_NUMPAD_4: ::std::os::raw::c_uint = 148; +pub const AKEYCODE_NUMPAD_5: ::std::os::raw::c_uint = 149; +pub const AKEYCODE_NUMPAD_6: ::std::os::raw::c_uint = 150; +pub const AKEYCODE_NUMPAD_7: ::std::os::raw::c_uint = 151; +pub const AKEYCODE_NUMPAD_8: ::std::os::raw::c_uint = 152; +pub const AKEYCODE_NUMPAD_9: ::std::os::raw::c_uint = 153; +pub const AKEYCODE_NUMPAD_DIVIDE: ::std::os::raw::c_uint = 154; +pub const AKEYCODE_NUMPAD_MULTIPLY: ::std::os::raw::c_uint = 155; +pub const AKEYCODE_NUMPAD_SUBTRACT: ::std::os::raw::c_uint = 156; +pub const AKEYCODE_NUMPAD_ADD: ::std::os::raw::c_uint = 157; +pub const AKEYCODE_NUMPAD_DOT: ::std::os::raw::c_uint = 158; +pub const AKEYCODE_NUMPAD_COMMA: ::std::os::raw::c_uint = 159; +pub const AKEYCODE_NUMPAD_ENTER: ::std::os::raw::c_uint = 160; +pub const AKEYCODE_NUMPAD_EQUALS: ::std::os::raw::c_uint = 161; +pub const AKEYCODE_NUMPAD_LEFT_PAREN: ::std::os::raw::c_uint = 162; +pub const AKEYCODE_NUMPAD_RIGHT_PAREN: ::std::os::raw::c_uint = 163; +pub const AKEYCODE_VOLUME_MUTE: ::std::os::raw::c_uint = 164; +pub const AKEYCODE_INFO: ::std::os::raw::c_uint = 165; +pub const AKEYCODE_CHANNEL_UP: ::std::os::raw::c_uint = 166; +pub const AKEYCODE_CHANNEL_DOWN: ::std::os::raw::c_uint = 167; +pub const AKEYCODE_ZOOM_IN: ::std::os::raw::c_uint = 168; +pub const AKEYCODE_ZOOM_OUT: ::std::os::raw::c_uint = 169; +pub const AKEYCODE_TV: ::std::os::raw::c_uint = 170; +pub const AKEYCODE_WINDOW: ::std::os::raw::c_uint = 171; +pub const AKEYCODE_GUIDE: ::std::os::raw::c_uint = 172; +pub const AKEYCODE_DVR: ::std::os::raw::c_uint = 173; +pub const AKEYCODE_BOOKMARK: ::std::os::raw::c_uint = 174; +pub const AKEYCODE_CAPTIONS: ::std::os::raw::c_uint = 175; +pub const AKEYCODE_SETTINGS: ::std::os::raw::c_uint = 176; +pub const AKEYCODE_TV_POWER: ::std::os::raw::c_uint = 177; +pub const AKEYCODE_TV_INPUT: ::std::os::raw::c_uint = 178; +pub const AKEYCODE_STB_POWER: ::std::os::raw::c_uint = 179; +pub const AKEYCODE_STB_INPUT: ::std::os::raw::c_uint = 180; +pub const AKEYCODE_AVR_POWER: ::std::os::raw::c_uint = 181; +pub const AKEYCODE_AVR_INPUT: ::std::os::raw::c_uint = 182; +pub const AKEYCODE_PROG_RED: ::std::os::raw::c_uint = 183; +pub const AKEYCODE_PROG_GREEN: ::std::os::raw::c_uint = 184; +pub const AKEYCODE_PROG_YELLOW: ::std::os::raw::c_uint = 185; +pub const AKEYCODE_PROG_BLUE: ::std::os::raw::c_uint = 186; +pub const AKEYCODE_APP_SWITCH: ::std::os::raw::c_uint = 187; +pub const AKEYCODE_BUTTON_1: ::std::os::raw::c_uint = 188; +pub const AKEYCODE_BUTTON_2: ::std::os::raw::c_uint = 189; +pub const AKEYCODE_BUTTON_3: ::std::os::raw::c_uint = 190; +pub const AKEYCODE_BUTTON_4: ::std::os::raw::c_uint = 191; +pub const AKEYCODE_BUTTON_5: ::std::os::raw::c_uint = 192; +pub const AKEYCODE_BUTTON_6: ::std::os::raw::c_uint = 193; +pub const AKEYCODE_BUTTON_7: ::std::os::raw::c_uint = 194; +pub const AKEYCODE_BUTTON_8: ::std::os::raw::c_uint = 195; +pub const AKEYCODE_BUTTON_9: ::std::os::raw::c_uint = 196; +pub const AKEYCODE_BUTTON_10: ::std::os::raw::c_uint = 197; +pub const AKEYCODE_BUTTON_11: ::std::os::raw::c_uint = 198; +pub const AKEYCODE_BUTTON_12: ::std::os::raw::c_uint = 199; +pub const AKEYCODE_BUTTON_13: ::std::os::raw::c_uint = 200; +pub const AKEYCODE_BUTTON_14: ::std::os::raw::c_uint = 201; +pub const AKEYCODE_BUTTON_15: ::std::os::raw::c_uint = 202; +pub const AKEYCODE_BUTTON_16: ::std::os::raw::c_uint = 203; +pub const AKEYCODE_LANGUAGE_SWITCH: ::std::os::raw::c_uint = 204; +pub const AKEYCODE_MANNER_MODE: ::std::os::raw::c_uint = 205; +pub const AKEYCODE_3D_MODE: ::std::os::raw::c_uint = 206; +pub const AKEYCODE_CONTACTS: ::std::os::raw::c_uint = 207; +pub const AKEYCODE_CALENDAR: ::std::os::raw::c_uint = 208; +pub const AKEYCODE_MUSIC: ::std::os::raw::c_uint = 209; +pub const AKEYCODE_CALCULATOR: ::std::os::raw::c_uint = 210; +pub const AKEYCODE_ZENKAKU_HANKAKU: ::std::os::raw::c_uint = 211; +pub const AKEYCODE_EISU: ::std::os::raw::c_uint = 212; +pub const AKEYCODE_MUHENKAN: ::std::os::raw::c_uint = 213; +pub const AKEYCODE_HENKAN: ::std::os::raw::c_uint = 214; +pub const AKEYCODE_KATAKANA_HIRAGANA: ::std::os::raw::c_uint = 215; +pub const AKEYCODE_YEN: ::std::os::raw::c_uint = 216; +pub const AKEYCODE_RO: ::std::os::raw::c_uint = 217; +pub const AKEYCODE_KANA: ::std::os::raw::c_uint = 218; +pub const AKEYCODE_ASSIST: ::std::os::raw::c_uint = 219; +pub const AKEYCODE_BRIGHTNESS_DOWN: ::std::os::raw::c_uint = 220; +pub const AKEYCODE_BRIGHTNESS_UP: ::std::os::raw::c_uint = 221; +pub const AKEYCODE_MEDIA_AUDIO_TRACK: ::std::os::raw::c_uint = 222; +pub const AKEYCODE_SLEEP: ::std::os::raw::c_uint = 223; +pub const AKEYCODE_WAKEUP: ::std::os::raw::c_uint = 224; +pub const AKEYCODE_PAIRING: ::std::os::raw::c_uint = 225; +pub const AKEYCODE_MEDIA_TOP_MENU: ::std::os::raw::c_uint = 226; +pub const AKEYCODE_11: ::std::os::raw::c_uint = 227; +pub const AKEYCODE_12: ::std::os::raw::c_uint = 228; +pub const AKEYCODE_LAST_CHANNEL: ::std::os::raw::c_uint = 229; +pub const AKEYCODE_TV_DATA_SERVICE: ::std::os::raw::c_uint = 230; +pub const AKEYCODE_VOICE_ASSIST: ::std::os::raw::c_uint = 231; +pub const AKEYCODE_TV_RADIO_SERVICE: ::std::os::raw::c_uint = 232; +pub const AKEYCODE_TV_TELETEXT: ::std::os::raw::c_uint = 233; +pub const AKEYCODE_TV_NUMBER_ENTRY: ::std::os::raw::c_uint = 234; +pub const AKEYCODE_TV_TERRESTRIAL_ANALOG: ::std::os::raw::c_uint = 235; +pub const AKEYCODE_TV_TERRESTRIAL_DIGITAL: ::std::os::raw::c_uint = 236; +pub const AKEYCODE_TV_SATELLITE: ::std::os::raw::c_uint = 237; +pub const AKEYCODE_TV_SATELLITE_BS: ::std::os::raw::c_uint = 238; +pub const AKEYCODE_TV_SATELLITE_CS: ::std::os::raw::c_uint = 239; +pub const AKEYCODE_TV_SATELLITE_SERVICE: ::std::os::raw::c_uint = 240; +pub const AKEYCODE_TV_NETWORK: ::std::os::raw::c_uint = 241; +pub const AKEYCODE_TV_ANTENNA_CABLE: ::std::os::raw::c_uint = 242; +pub const AKEYCODE_TV_INPUT_HDMI_1: ::std::os::raw::c_uint = 243; +pub const AKEYCODE_TV_INPUT_HDMI_2: ::std::os::raw::c_uint = 244; +pub const AKEYCODE_TV_INPUT_HDMI_3: ::std::os::raw::c_uint = 245; +pub const AKEYCODE_TV_INPUT_HDMI_4: ::std::os::raw::c_uint = 246; +pub const AKEYCODE_TV_INPUT_COMPOSITE_1: ::std::os::raw::c_uint = 247; +pub const AKEYCODE_TV_INPUT_COMPOSITE_2: ::std::os::raw::c_uint = 248; +pub const AKEYCODE_TV_INPUT_COMPONENT_1: ::std::os::raw::c_uint = 249; +pub const AKEYCODE_TV_INPUT_COMPONENT_2: ::std::os::raw::c_uint = 250; +pub const AKEYCODE_TV_INPUT_VGA_1: ::std::os::raw::c_uint = 251; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION: ::std::os::raw::c_uint = 252; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP: ::std::os::raw::c_uint = 253; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN: ::std::os::raw::c_uint = 254; +pub const AKEYCODE_TV_ZOOM_MODE: ::std::os::raw::c_uint = 255; +pub const AKEYCODE_TV_CONTENTS_MENU: ::std::os::raw::c_uint = 256; +pub const AKEYCODE_TV_MEDIA_CONTEXT_MENU: ::std::os::raw::c_uint = 257; +pub const AKEYCODE_TV_TIMER_PROGRAMMING: ::std::os::raw::c_uint = 258; +pub const AKEYCODE_HELP: ::std::os::raw::c_uint = 259; +pub const AKEYCODE_NAVIGATE_PREVIOUS: ::std::os::raw::c_uint = 260; +pub const AKEYCODE_NAVIGATE_NEXT: ::std::os::raw::c_uint = 261; +pub const AKEYCODE_NAVIGATE_IN: ::std::os::raw::c_uint = 262; +pub const AKEYCODE_NAVIGATE_OUT: ::std::os::raw::c_uint = 263; +pub const AKEYCODE_STEM_PRIMARY: ::std::os::raw::c_uint = 264; +pub const AKEYCODE_STEM_1: ::std::os::raw::c_uint = 265; +pub const AKEYCODE_STEM_2: ::std::os::raw::c_uint = 266; +pub const AKEYCODE_STEM_3: ::std::os::raw::c_uint = 267; +pub const AKEYCODE_DPAD_UP_LEFT: ::std::os::raw::c_uint = 268; +pub const AKEYCODE_DPAD_DOWN_LEFT: ::std::os::raw::c_uint = 269; +pub const AKEYCODE_DPAD_UP_RIGHT: ::std::os::raw::c_uint = 270; +pub const AKEYCODE_DPAD_DOWN_RIGHT: ::std::os::raw::c_uint = 271; +pub const AKEYCODE_MEDIA_SKIP_FORWARD: ::std::os::raw::c_uint = 272; +pub const AKEYCODE_MEDIA_SKIP_BACKWARD: ::std::os::raw::c_uint = 273; +pub const AKEYCODE_MEDIA_STEP_FORWARD: ::std::os::raw::c_uint = 274; +pub const AKEYCODE_MEDIA_STEP_BACKWARD: ::std::os::raw::c_uint = 275; +pub const AKEYCODE_SOFT_SLEEP: ::std::os::raw::c_uint = 276; +pub const AKEYCODE_CUT: ::std::os::raw::c_uint = 277; +pub const AKEYCODE_COPY: ::std::os::raw::c_uint = 278; +pub const AKEYCODE_PASTE: ::std::os::raw::c_uint = 279; +pub const AKEYCODE_SYSTEM_NAVIGATION_UP: ::std::os::raw::c_uint = 280; +pub const AKEYCODE_SYSTEM_NAVIGATION_DOWN: ::std::os::raw::c_uint = 281; +pub const AKEYCODE_SYSTEM_NAVIGATION_LEFT: ::std::os::raw::c_uint = 282; +pub const AKEYCODE_SYSTEM_NAVIGATION_RIGHT: ::std::os::raw::c_uint = 283; +pub const AKEYCODE_ALL_APPS: ::std::os::raw::c_uint = 284; +pub const AKEYCODE_REFRESH: ::std::os::raw::c_uint = 285; +pub const AKEYCODE_THUMBS_UP: ::std::os::raw::c_uint = 286; +pub const AKEYCODE_THUMBS_DOWN: ::std::os::raw::c_uint = 287; +pub const AKEYCODE_PROFILE_SWITCH: ::std::os::raw::c_uint = 288; +pub type _bindgen_ty_2 = ::std::os::raw::c_uint; +pub const ALOOPER_PREPARE_ALLOW_NON_CALLBACKS: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_3 = ::std::os::raw::c_uint; +pub const ALOOPER_POLL_WAKE: ::std::os::raw::c_int = -1; +pub const ALOOPER_POLL_CALLBACK: ::std::os::raw::c_int = -2; +pub const ALOOPER_POLL_TIMEOUT: ::std::os::raw::c_int = -3; +pub const ALOOPER_POLL_ERROR: ::std::os::raw::c_int = -4; +pub type _bindgen_ty_4 = ::std::os::raw::c_int; +pub const ALOOPER_EVENT_INPUT: ::std::os::raw::c_uint = 1; +pub const ALOOPER_EVENT_OUTPUT: ::std::os::raw::c_uint = 2; +pub const ALOOPER_EVENT_ERROR: ::std::os::raw::c_uint = 4; +pub const ALOOPER_EVENT_HANGUP: ::std::os::raw::c_uint = 8; +pub const ALOOPER_EVENT_INVALID: ::std::os::raw::c_uint = 16; +pub type _bindgen_ty_5 = ::std::os::raw::c_uint; +pub const AKEY_STATE_UNKNOWN: ::std::os::raw::c_int = -1; +pub const AKEY_STATE_UP: ::std::os::raw::c_int = 0; +pub const AKEY_STATE_DOWN: ::std::os::raw::c_int = 1; +pub const AKEY_STATE_VIRTUAL: ::std::os::raw::c_int = 2; +pub type _bindgen_ty_6 = ::std::os::raw::c_int; +pub const AMETA_NONE: ::std::os::raw::c_uint = 0; +pub const AMETA_ALT_ON: ::std::os::raw::c_uint = 2; +pub const AMETA_ALT_LEFT_ON: ::std::os::raw::c_uint = 16; +pub const AMETA_ALT_RIGHT_ON: ::std::os::raw::c_uint = 32; +pub const AMETA_SHIFT_ON: ::std::os::raw::c_uint = 1; +pub const AMETA_SHIFT_LEFT_ON: ::std::os::raw::c_uint = 64; +pub const AMETA_SHIFT_RIGHT_ON: ::std::os::raw::c_uint = 128; +pub const AMETA_SYM_ON: ::std::os::raw::c_uint = 4; +pub const AMETA_FUNCTION_ON: ::std::os::raw::c_uint = 8; +pub const AMETA_CTRL_ON: ::std::os::raw::c_uint = 4096; +pub const AMETA_CTRL_LEFT_ON: ::std::os::raw::c_uint = 8192; +pub const AMETA_CTRL_RIGHT_ON: ::std::os::raw::c_uint = 16384; +pub const AMETA_META_ON: ::std::os::raw::c_uint = 65536; +pub const AMETA_META_LEFT_ON: ::std::os::raw::c_uint = 131072; +pub const AMETA_META_RIGHT_ON: ::std::os::raw::c_uint = 262144; +pub const AMETA_CAPS_LOCK_ON: ::std::os::raw::c_uint = 1048576; +pub const AMETA_NUM_LOCK_ON: ::std::os::raw::c_uint = 2097152; +pub const AMETA_SCROLL_LOCK_ON: ::std::os::raw::c_uint = 4194304; +pub type _bindgen_ty_7 = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AInputEvent { + _unused: [u8; 0], +} +pub const AINPUT_EVENT_TYPE_KEY: ::std::os::raw::c_uint = 1; +pub const AINPUT_EVENT_TYPE_MOTION: ::std::os::raw::c_uint = 2; +pub const AINPUT_EVENT_TYPE_FOCUS: ::std::os::raw::c_uint = 3; +pub type _bindgen_ty_8 = ::std::os::raw::c_uint; +pub const AKEY_EVENT_ACTION_DOWN: ::std::os::raw::c_uint = 0; +pub const AKEY_EVENT_ACTION_UP: ::std::os::raw::c_uint = 1; +pub const AKEY_EVENT_ACTION_MULTIPLE: ::std::os::raw::c_uint = 2; +pub type _bindgen_ty_9 = ::std::os::raw::c_uint; +pub const AKEY_EVENT_FLAG_WOKE_HERE: ::std::os::raw::c_uint = 1; +pub const AKEY_EVENT_FLAG_SOFT_KEYBOARD: ::std::os::raw::c_uint = 2; +pub const AKEY_EVENT_FLAG_KEEP_TOUCH_MODE: ::std::os::raw::c_uint = 4; +pub const AKEY_EVENT_FLAG_FROM_SYSTEM: ::std::os::raw::c_uint = 8; +pub const AKEY_EVENT_FLAG_EDITOR_ACTION: ::std::os::raw::c_uint = 16; +pub const AKEY_EVENT_FLAG_CANCELED: ::std::os::raw::c_uint = 32; +pub const AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY: ::std::os::raw::c_uint = 64; +pub const AKEY_EVENT_FLAG_LONG_PRESS: ::std::os::raw::c_uint = 128; +pub const AKEY_EVENT_FLAG_CANCELED_LONG_PRESS: ::std::os::raw::c_uint = 256; +pub const AKEY_EVENT_FLAG_TRACKING: ::std::os::raw::c_uint = 512; +pub const AKEY_EVENT_FLAG_FALLBACK: ::std::os::raw::c_uint = 1024; +pub type _bindgen_ty_10 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_ACTION_MASK: ::std::os::raw::c_uint = 255; +pub const AMOTION_EVENT_ACTION_POINTER_INDEX_MASK: ::std::os::raw::c_uint = 65280; +pub const AMOTION_EVENT_ACTION_DOWN: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_ACTION_UP: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_ACTION_MOVE: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_ACTION_CANCEL: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_ACTION_OUTSIDE: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_ACTION_POINTER_DOWN: ::std::os::raw::c_uint = 5; +pub const AMOTION_EVENT_ACTION_POINTER_UP: ::std::os::raw::c_uint = 6; +pub const AMOTION_EVENT_ACTION_HOVER_MOVE: ::std::os::raw::c_uint = 7; +pub const AMOTION_EVENT_ACTION_SCROLL: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_ACTION_HOVER_ENTER: ::std::os::raw::c_uint = 9; +pub const AMOTION_EVENT_ACTION_HOVER_EXIT: ::std::os::raw::c_uint = 10; +pub const AMOTION_EVENT_ACTION_BUTTON_PRESS: ::std::os::raw::c_uint = 11; +pub const AMOTION_EVENT_ACTION_BUTTON_RELEASE: ::std::os::raw::c_uint = 12; +pub type _bindgen_ty_11 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_12 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_EDGE_FLAG_NONE: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_EDGE_FLAG_TOP: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_EDGE_FLAG_BOTTOM: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_EDGE_FLAG_LEFT: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_EDGE_FLAG_RIGHT: ::std::os::raw::c_uint = 8; +pub type _bindgen_ty_13 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_AXIS_X: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_AXIS_Y: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_AXIS_PRESSURE: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_AXIS_SIZE: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_AXIS_TOUCH_MAJOR: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_AXIS_TOUCH_MINOR: ::std::os::raw::c_uint = 5; +pub const AMOTION_EVENT_AXIS_TOOL_MAJOR: ::std::os::raw::c_uint = 6; +pub const AMOTION_EVENT_AXIS_TOOL_MINOR: ::std::os::raw::c_uint = 7; +pub const AMOTION_EVENT_AXIS_ORIENTATION: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_AXIS_VSCROLL: ::std::os::raw::c_uint = 9; +pub const AMOTION_EVENT_AXIS_HSCROLL: ::std::os::raw::c_uint = 10; +pub const AMOTION_EVENT_AXIS_Z: ::std::os::raw::c_uint = 11; +pub const AMOTION_EVENT_AXIS_RX: ::std::os::raw::c_uint = 12; +pub const AMOTION_EVENT_AXIS_RY: ::std::os::raw::c_uint = 13; +pub const AMOTION_EVENT_AXIS_RZ: ::std::os::raw::c_uint = 14; +pub const AMOTION_EVENT_AXIS_HAT_X: ::std::os::raw::c_uint = 15; +pub const AMOTION_EVENT_AXIS_HAT_Y: ::std::os::raw::c_uint = 16; +pub const AMOTION_EVENT_AXIS_LTRIGGER: ::std::os::raw::c_uint = 17; +pub const AMOTION_EVENT_AXIS_RTRIGGER: ::std::os::raw::c_uint = 18; +pub const AMOTION_EVENT_AXIS_THROTTLE: ::std::os::raw::c_uint = 19; +pub const AMOTION_EVENT_AXIS_RUDDER: ::std::os::raw::c_uint = 20; +pub const AMOTION_EVENT_AXIS_WHEEL: ::std::os::raw::c_uint = 21; +pub const AMOTION_EVENT_AXIS_GAS: ::std::os::raw::c_uint = 22; +pub const AMOTION_EVENT_AXIS_BRAKE: ::std::os::raw::c_uint = 23; +pub const AMOTION_EVENT_AXIS_DISTANCE: ::std::os::raw::c_uint = 24; +pub const AMOTION_EVENT_AXIS_TILT: ::std::os::raw::c_uint = 25; +pub const AMOTION_EVENT_AXIS_SCROLL: ::std::os::raw::c_uint = 26; +pub const AMOTION_EVENT_AXIS_RELATIVE_X: ::std::os::raw::c_uint = 27; +pub const AMOTION_EVENT_AXIS_RELATIVE_Y: ::std::os::raw::c_uint = 28; +pub const AMOTION_EVENT_AXIS_GENERIC_1: ::std::os::raw::c_uint = 32; +pub const AMOTION_EVENT_AXIS_GENERIC_2: ::std::os::raw::c_uint = 33; +pub const AMOTION_EVENT_AXIS_GENERIC_3: ::std::os::raw::c_uint = 34; +pub const AMOTION_EVENT_AXIS_GENERIC_4: ::std::os::raw::c_uint = 35; +pub const AMOTION_EVENT_AXIS_GENERIC_5: ::std::os::raw::c_uint = 36; +pub const AMOTION_EVENT_AXIS_GENERIC_6: ::std::os::raw::c_uint = 37; +pub const AMOTION_EVENT_AXIS_GENERIC_7: ::std::os::raw::c_uint = 38; +pub const AMOTION_EVENT_AXIS_GENERIC_8: ::std::os::raw::c_uint = 39; +pub const AMOTION_EVENT_AXIS_GENERIC_9: ::std::os::raw::c_uint = 40; +pub const AMOTION_EVENT_AXIS_GENERIC_10: ::std::os::raw::c_uint = 41; +pub const AMOTION_EVENT_AXIS_GENERIC_11: ::std::os::raw::c_uint = 42; +pub const AMOTION_EVENT_AXIS_GENERIC_12: ::std::os::raw::c_uint = 43; +pub const AMOTION_EVENT_AXIS_GENERIC_13: ::std::os::raw::c_uint = 44; +pub const AMOTION_EVENT_AXIS_GENERIC_14: ::std::os::raw::c_uint = 45; +pub const AMOTION_EVENT_AXIS_GENERIC_15: ::std::os::raw::c_uint = 46; +pub const AMOTION_EVENT_AXIS_GENERIC_16: ::std::os::raw::c_uint = 47; +pub type _bindgen_ty_14 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_BUTTON_PRIMARY: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_BUTTON_SECONDARY: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_BUTTON_TERTIARY: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_BUTTON_BACK: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_BUTTON_FORWARD: ::std::os::raw::c_uint = 16; +pub const AMOTION_EVENT_BUTTON_STYLUS_PRIMARY: ::std::os::raw::c_uint = 32; +pub const AMOTION_EVENT_BUTTON_STYLUS_SECONDARY: ::std::os::raw::c_uint = 64; +pub type _bindgen_ty_15 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_TOOL_TYPE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_TOOL_TYPE_FINGER: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_TOOL_TYPE_STYLUS: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_TOOL_TYPE_MOUSE: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_TOOL_TYPE_ERASER: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_TOOL_TYPE_PALM: ::std::os::raw::c_uint = 5; +pub type _bindgen_ty_16 = ::std::os::raw::c_uint; +pub const AINPUT_SOURCE_CLASS_MASK: ::std::os::raw::c_uint = 255; +pub const AINPUT_SOURCE_CLASS_NONE: ::std::os::raw::c_uint = 0; +pub const AINPUT_SOURCE_CLASS_BUTTON: ::std::os::raw::c_uint = 1; +pub const AINPUT_SOURCE_CLASS_POINTER: ::std::os::raw::c_uint = 2; +pub const AINPUT_SOURCE_CLASS_NAVIGATION: ::std::os::raw::c_uint = 4; +pub const AINPUT_SOURCE_CLASS_POSITION: ::std::os::raw::c_uint = 8; +pub const AINPUT_SOURCE_CLASS_JOYSTICK: ::std::os::raw::c_uint = 16; +pub type _bindgen_ty_17 = ::std::os::raw::c_uint; +pub const AINPUT_SOURCE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AINPUT_SOURCE_KEYBOARD: ::std::os::raw::c_uint = 257; +pub const AINPUT_SOURCE_DPAD: ::std::os::raw::c_uint = 513; +pub const AINPUT_SOURCE_GAMEPAD: ::std::os::raw::c_uint = 1025; +pub const AINPUT_SOURCE_TOUCHSCREEN: ::std::os::raw::c_uint = 4098; +pub const AINPUT_SOURCE_MOUSE: ::std::os::raw::c_uint = 8194; +pub const AINPUT_SOURCE_STYLUS: ::std::os::raw::c_uint = 16386; +pub const AINPUT_SOURCE_BLUETOOTH_STYLUS: ::std::os::raw::c_uint = 49154; +pub const AINPUT_SOURCE_TRACKBALL: ::std::os::raw::c_uint = 65540; +pub const AINPUT_SOURCE_MOUSE_RELATIVE: ::std::os::raw::c_uint = 131076; +pub const AINPUT_SOURCE_TOUCHPAD: ::std::os::raw::c_uint = 1048584; +pub const AINPUT_SOURCE_TOUCH_NAVIGATION: ::std::os::raw::c_uint = 2097152; +pub const AINPUT_SOURCE_JOYSTICK: ::std::os::raw::c_uint = 16777232; +pub const AINPUT_SOURCE_ROTARY_ENCODER: ::std::os::raw::c_uint = 4194304; +pub const AINPUT_SOURCE_ANY: ::std::os::raw::c_uint = 4294967040; +pub type _bindgen_ty_18 = ::std::os::raw::c_uint; +pub const AINPUT_KEYBOARD_TYPE_NONE: ::std::os::raw::c_uint = 0; +pub const AINPUT_KEYBOARD_TYPE_NON_ALPHABETIC: ::std::os::raw::c_uint = 1; +pub const AINPUT_KEYBOARD_TYPE_ALPHABETIC: ::std::os::raw::c_uint = 2; +pub type _bindgen_ty_19 = ::std::os::raw::c_uint; +pub const AINPUT_MOTION_RANGE_X: ::std::os::raw::c_uint = 0; +pub const AINPUT_MOTION_RANGE_Y: ::std::os::raw::c_uint = 1; +pub const AINPUT_MOTION_RANGE_PRESSURE: ::std::os::raw::c_uint = 2; +pub const AINPUT_MOTION_RANGE_SIZE: ::std::os::raw::c_uint = 3; +pub const AINPUT_MOTION_RANGE_TOUCH_MAJOR: ::std::os::raw::c_uint = 4; +pub const AINPUT_MOTION_RANGE_TOUCH_MINOR: ::std::os::raw::c_uint = 5; +pub const AINPUT_MOTION_RANGE_TOOL_MAJOR: ::std::os::raw::c_uint = 6; +pub const AINPUT_MOTION_RANGE_TOOL_MINOR: ::std::os::raw::c_uint = 7; +pub const AINPUT_MOTION_RANGE_ORIENTATION: ::std::os::raw::c_uint = 8; +pub type _bindgen_ty_20 = ::std::os::raw::c_uint; +extern "C" { + pub fn AInputEvent_getType(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AInputEvent_getDeviceId(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AInputEvent_getSource(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getAction(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getFlags(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getKeyCode(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getScanCode(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getMetaState(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getRepeatCount(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getDownTime(key_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AKeyEvent_getEventTime(key_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getAction(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getFlags(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getMetaState(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getButtonState(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getEdgeFlags(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getDownTime(motion_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getEventTime(motion_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getXOffset(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getYOffset(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getXPrecision(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getYPrecision(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getPointerCount(motion_event: *const AInputEvent) -> size_t; +} +extern "C" { + pub fn AMotionEvent_getPointerId( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> i32; +} +extern "C" { + pub fn AMotionEvent_getToolType(motion_event: *const AInputEvent, pointer_index: size_t) + -> i32; +} +extern "C" { + pub fn AMotionEvent_getRawX(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getRawY(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getX(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getY(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getPressure(motion_event: *const AInputEvent, pointer_index: size_t) + -> f32; +} +extern "C" { + pub fn AMotionEvent_getSize(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getTouchMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getTouchMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getToolMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getToolMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getOrientation( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getAxisValue( + motion_event: *const AInputEvent, + axis: i32, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistorySize(motion_event: *const AInputEvent) -> size_t; +} +extern "C" { + pub fn AMotionEvent_getHistoricalEventTime( + motion_event: *const AInputEvent, + history_index: size_t, + ) -> i64; +} +extern "C" { + pub fn AMotionEvent_getHistoricalRawX( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalRawY( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalX( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalY( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalPressure( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalSize( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalTouchMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalTouchMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalToolMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalToolMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalOrientation( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalAxisValue( + motion_event: *const AInputEvent, + axis: i32, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AInputQueue { + _unused: [u8; 0], +} +extern "C" { + pub fn AInputQueue_attachLooper( + queue: *mut AInputQueue, + looper: *mut ALooper, + ident: ::std::os::raw::c_int, + callback: ALooper_callbackFunc, + data: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + pub fn AInputQueue_detachLooper(queue: *mut AInputQueue); +} +extern "C" { + pub fn AInputQueue_hasEvents(queue: *mut AInputQueue) -> i32; +} +extern "C" { + pub fn AInputQueue_getEvent(queue: *mut AInputQueue, outEvent: *mut *mut AInputEvent) -> i32; +} +extern "C" { + pub fn AInputQueue_preDispatchEvent(queue: *mut AInputQueue, event: *mut AInputEvent) -> i32; +} +extern "C" { + pub fn AInputQueue_finishEvent( + queue: *mut AInputQueue, + event: *mut AInputEvent, + handled: ::std::os::raw::c_int, + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct imaxdiv_t { + pub quot: intmax_t, + pub rem: intmax_t, +} +#[test] +fn bindgen_test_layout_imaxdiv_t() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(imaxdiv_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(imaxdiv_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).quot as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(imaxdiv_t), + "::", + stringify!(quot) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rem as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(imaxdiv_t), + "::", + stringify!(rem) + ) + ); +} +extern "C" { + pub fn imaxabs(__i: intmax_t) -> intmax_t; +} +extern "C" { + pub fn imaxdiv(__numerator: intmax_t, __denominator: intmax_t) -> imaxdiv_t; +} +extern "C" { + pub fn strtoimax( + __s: *const ::std::os::raw::c_char, + __end_ptr: *mut *mut ::std::os::raw::c_char, + __base: ::std::os::raw::c_int, + ) -> intmax_t; +} +extern "C" { + pub fn strtoumax( + __s: *const ::std::os::raw::c_char, + __end_ptr: *mut *mut ::std::os::raw::c_char, + __base: ::std::os::raw::c_int, + ) -> uintmax_t; +} +extern "C" { + pub fn wcstoimax( + __s: *const wchar_t, + __end_ptr: *mut *mut wchar_t, + __base: ::std::os::raw::c_int, + ) -> intmax_t; +} +extern "C" { + pub fn wcstoumax( + __s: *const wchar_t, + __end_ptr: *mut *mut wchar_t, + __base: ::std::os::raw::c_int, + ) -> uintmax_t; +} +pub const ADataSpace_ADATASPACE_UNKNOWN: ADataSpace = 0; +pub const ADataSpace_ADATASPACE_SCRGB_LINEAR: ADataSpace = 406913024; +pub const ADataSpace_ADATASPACE_SRGB: ADataSpace = 142671872; +pub const ADataSpace_ADATASPACE_SCRGB: ADataSpace = 411107328; +pub const ADataSpace_ADATASPACE_DISPLAY_P3: ADataSpace = 143261696; +pub const ADataSpace_ADATASPACE_BT2020_PQ: ADataSpace = 163971072; +pub const ADataSpace_ADATASPACE_ADOBE_RGB: ADataSpace = 151715840; +pub const ADataSpace_ADATASPACE_BT2020: ADataSpace = 147193856; +pub const ADataSpace_ADATASPACE_BT709: ADataSpace = 281083904; +pub const ADataSpace_ADATASPACE_DCI_P3: ADataSpace = 155844608; +pub const ADataSpace_ADATASPACE_SRGB_LINEAR: ADataSpace = 138477568; +pub type ADataSpace = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct ARect { + pub left: i32, + pub top: i32, + pub right: i32, + pub bottom: i32, +} +#[test] +fn bindgen_test_layout_ARect() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ARect)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(ARect)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).left as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(left) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).top as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(top) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).right as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(right) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bottom as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(bottom) + ) + ); +} +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8A8_UNORM: AHardwareBuffer_Format = 1; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8X8_UNORM: AHardwareBuffer_Format = 2; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8_UNORM: AHardwareBuffer_Format = 3; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R5G6B5_UNORM: AHardwareBuffer_Format = 4; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R16G16B16A16_FLOAT: AHardwareBuffer_Format = + 22; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R10G10B10A2_UNORM: AHardwareBuffer_Format = + 43; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_BLOB: AHardwareBuffer_Format = 33; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D16_UNORM: AHardwareBuffer_Format = 48; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D24_UNORM: AHardwareBuffer_Format = 49; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D24_UNORM_S8_UINT: AHardwareBuffer_Format = + 50; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D32_FLOAT: AHardwareBuffer_Format = 51; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D32_FLOAT_S8_UINT: AHardwareBuffer_Format = + 52; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_S8_UINT: AHardwareBuffer_Format = 53; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_Y8Cb8Cr8_420: AHardwareBuffer_Format = 35; +pub type AHardwareBuffer_Format = ::std::os::raw::c_uint; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_NEVER: + AHardwareBuffer_UsageFlags = 0; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_RARELY: + AHardwareBuffer_UsageFlags = 2; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_OFTEN: + AHardwareBuffer_UsageFlags = 3; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_MASK: + AHardwareBuffer_UsageFlags = 15; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_NEVER: + AHardwareBuffer_UsageFlags = 0; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_RARELY: + AHardwareBuffer_UsageFlags = 32; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_OFTEN: + AHardwareBuffer_UsageFlags = 48; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_MASK: + AHardwareBuffer_UsageFlags = 240; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_SAMPLED_IMAGE: + AHardwareBuffer_UsageFlags = 256; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_FRAMEBUFFER: + AHardwareBuffer_UsageFlags = 512; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_COLOR_OUTPUT: + AHardwareBuffer_UsageFlags = 512; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_COMPOSER_OVERLAY: + AHardwareBuffer_UsageFlags = 2048; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_PROTECTED_CONTENT: + AHardwareBuffer_UsageFlags = 16384; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VIDEO_ENCODE: + AHardwareBuffer_UsageFlags = 65536; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_SENSOR_DIRECT_DATA: + AHardwareBuffer_UsageFlags = 8388608; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_DATA_BUFFER: + AHardwareBuffer_UsageFlags = 16777216; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_CUBE_MAP: + AHardwareBuffer_UsageFlags = 33554432; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_MIPMAP_COMPLETE: + AHardwareBuffer_UsageFlags = 67108864; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_0: AHardwareBuffer_UsageFlags = + 268435456; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_1: AHardwareBuffer_UsageFlags = + 536870912; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_2: AHardwareBuffer_UsageFlags = + 1073741824; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_3: AHardwareBuffer_UsageFlags = + 2147483648; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_4: AHardwareBuffer_UsageFlags = + 281474976710656; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_5: AHardwareBuffer_UsageFlags = + 562949953421312; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_6: AHardwareBuffer_UsageFlags = + 1125899906842624; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_7: AHardwareBuffer_UsageFlags = + 2251799813685248; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_8: AHardwareBuffer_UsageFlags = + 4503599627370496; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_9: AHardwareBuffer_UsageFlags = + 9007199254740992; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_10: AHardwareBuffer_UsageFlags = + 18014398509481984; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_11: AHardwareBuffer_UsageFlags = + 36028797018963968; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_12: AHardwareBuffer_UsageFlags = + 72057594037927936; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_13: AHardwareBuffer_UsageFlags = + 144115188075855872; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_14: AHardwareBuffer_UsageFlags = + 288230376151711744; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_15: AHardwareBuffer_UsageFlags = + 576460752303423488; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_16: AHardwareBuffer_UsageFlags = + 1152921504606846976; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_17: AHardwareBuffer_UsageFlags = + 2305843009213693952; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_18: AHardwareBuffer_UsageFlags = + 4611686018427387904; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_19: AHardwareBuffer_UsageFlags = + 9223372036854775808; +pub type AHardwareBuffer_UsageFlags = ::std::os::raw::c_ulong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Desc { + pub width: u32, + pub height: u32, + pub layers: u32, + pub format: u32, + pub usage: u64, + pub stride: u32, + pub rfu0: u32, + pub rfu1: u64, +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Desc() { + assert_eq!( + ::std::mem::size_of::(), + 40usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Desc)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Desc)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).width as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(width) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).height as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(height) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).layers as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(layers) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).format as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(format) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).usage as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(usage) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stride as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(stride) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rfu0 as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(rfu0) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rfu1 as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(rfu1) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Plane { + pub data: *mut ::std::os::raw::c_void, + pub pixelStride: u32, + pub rowStride: u32, +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Plane() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Plane)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Plane)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).data as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(data) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pixelStride as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(pixelStride) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rowStride as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(rowStride) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Planes { + pub planeCount: u32, + pub planes: [AHardwareBuffer_Plane; 4usize], +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Planes() { + assert_eq!( + ::std::mem::size_of::(), + 72usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Planes)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Planes)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).planeCount as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Planes), + "::", + stringify!(planeCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).planes as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Planes), + "::", + stringify!(planes) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer { + _unused: [u8; 0], +} +extern "C" { + pub fn AHardwareBuffer_allocate( + desc: *const AHardwareBuffer_Desc, + outBuffer: *mut *mut AHardwareBuffer, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_acquire(buffer: *mut AHardwareBuffer); +} +extern "C" { + pub fn AHardwareBuffer_release(buffer: *mut AHardwareBuffer); +} +extern "C" { + pub fn AHardwareBuffer_describe( + buffer: *const AHardwareBuffer, + outDesc: *mut AHardwareBuffer_Desc, + ); +} +extern "C" { + pub fn AHardwareBuffer_lock( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outVirtualAddress: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_lockPlanes( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outPlanes: *mut AHardwareBuffer_Planes, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_unlock( + buffer: *mut AHardwareBuffer, + fence: *mut i32, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_sendHandleToUnixSocket( + buffer: *const AHardwareBuffer, + socketFd: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_recvHandleFromUnixSocket( + socketFd: ::std::os::raw::c_int, + outBuffer: *mut *mut AHardwareBuffer, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_isSupported(desc: *const AHardwareBuffer_Desc) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_lockAndGetInfo( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outVirtualAddress: *mut *mut ::std::os::raw::c_void, + outBytesPerPixel: *mut i32, + outBytesPerStride: *mut i32, + ) -> ::std::os::raw::c_int; +} +pub type va_list = [u64; 4usize]; +pub type __gnuc_va_list = [u64; 4usize]; +#[repr(C)] +pub struct JavaVMAttachArgs { + pub version: jint, + pub name: *const ::std::os::raw::c_char, + pub group: jobject, +} +#[test] +fn bindgen_test_layout_JavaVMAttachArgs() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(JavaVMAttachArgs)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(JavaVMAttachArgs)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).version as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(version) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).name as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(name) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).group as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(group) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct JavaVMOption { + pub optionString: *const ::std::os::raw::c_char, + pub extraInfo: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_JavaVMOption() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(JavaVMOption)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(JavaVMOption)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).optionString as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMOption), + "::", + stringify!(optionString) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).extraInfo as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(JavaVMOption), + "::", + stringify!(extraInfo) + ) + ); +} +#[repr(C)] +pub struct JavaVMInitArgs { + pub version: jint, + pub nOptions: jint, + pub options: *mut JavaVMOption, + pub ignoreUnrecognized: jboolean, +} +#[test] +fn bindgen_test_layout_JavaVMInitArgs() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(JavaVMInitArgs)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(JavaVMInitArgs)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).version as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(version) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).nOptions as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(nOptions) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).options as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(options) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).ignoreUnrecognized as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(ignoreUnrecognized) + ) + ); +} +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_CAPTION_BAR: GameCommonInsetsType = 0; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_DISPLAY_CUTOUT: GameCommonInsetsType = 1; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_IME: GameCommonInsetsType = 2; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_MANDATORY_SYSTEM_GESTURES: + GameCommonInsetsType = 3; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_NAVIGATION_BARS: GameCommonInsetsType = 4; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_STATUS_BARS: GameCommonInsetsType = 5; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_SYSTEM_BARS: GameCommonInsetsType = 6; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_SYSTEM_GESTURES: GameCommonInsetsType = 7; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_TAPABLE_ELEMENT: GameCommonInsetsType = 8; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_WATERFALL: GameCommonInsetsType = 9; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_COUNT: GameCommonInsetsType = 10; +#[doc = " The type of a component for which to retrieve insets. See"] +#[doc = " https://developer.android.com/reference/androidx/core/view/WindowInsetsCompat.Type"] +pub type GameCommonInsetsType = ::std::os::raw::c_uint; +#[doc = " This struct holds a span within a region of text from start (inclusive) to"] +#[doc = " end (exclusive). An empty span or cursor position is specified with"] +#[doc = " start==end. An undefined span is specified with start = end = SPAN_UNDEFINED."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInputSpan { + #[doc = " The start of the region (inclusive)."] + pub start: i32, + #[doc = " The end of the region (exclusive)."] + pub end: i32, +} +#[test] +fn bindgen_test_layout_GameTextInputSpan() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(GameTextInputSpan)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameTextInputSpan)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).start as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputSpan), + "::", + stringify!(start) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).end as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputSpan), + "::", + stringify!(end) + ) + ); +} +pub const GameTextInputSpanFlag_SPAN_UNDEFINED: GameTextInputSpanFlag = -1; +#[doc = " Values with special meaning in a GameTextInputSpan."] +pub type GameTextInputSpanFlag = ::std::os::raw::c_int; +#[doc = " This struct holds the state of an editable section of text."] +#[doc = " The text can have a selection and a composing region defined on it."] +#[doc = " A composing region is used by IMEs that allow input using multiple steps to"] +#[doc = " compose a glyph or word. Use functions GameTextInput_getState and"] +#[doc = " GameTextInput_setState to read and modify the state that an IME is editing."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInputState { + #[doc = " Text owned by the state, as a modified UTF-8 string. Null-terminated."] + #[doc = " https://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8"] + pub text_UTF8: *const ::std::os::raw::c_char, + #[doc = " Length in bytes of text_UTF8, *not* including the null at end."] + pub text_length: i32, + #[doc = " A selection defined on the text."] + pub selection: GameTextInputSpan, + #[doc = " A composing region defined on the text."] + pub composingRegion: GameTextInputSpan, +} +#[test] +fn bindgen_test_layout_GameTextInputState() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(GameTextInputState)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameTextInputState)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).text_UTF8 as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(text_UTF8) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).text_length as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(text_length) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).selection as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(selection) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).composingRegion as *const _ as usize + }, + 20usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(composingRegion) + ) + ); +} +#[doc = " A callback called by GameTextInput_getState."] +#[doc = " @param context User-defined context."] +#[doc = " @param state State, owned by the library, that will be valid for the duration"] +#[doc = " of the callback."] +pub type GameTextInputGetStateCallback = ::std::option::Option< + unsafe extern "C" fn(context: *mut ::std::os::raw::c_void, state: *const GameTextInputState), +>; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInput { + _unused: [u8; 0], +} +extern "C" { + #[doc = " Initialize the GameTextInput library."] + #[doc = " If called twice without GameTextInput_destroy being called, the same pointer"] + #[doc = " will be returned and a warning will be issued."] + #[doc = " @param env A JNI env valid on the calling thread."] + #[doc = " @param max_string_size The maximum length of a string that can be edited. If"] + #[doc = " zero, the maximum defaults to 65536 bytes. A buffer of this size is allocated"] + #[doc = " at initialization."] + #[doc = " @return A handle to the library."] + pub fn GameTextInput_init(env: *mut JNIEnv, max_string_size: u32) -> *mut GameTextInput; +} +extern "C" { + #[doc = " When using GameTextInput, you need to create a gametextinput.InputConnection"] + #[doc = " on the Java side and pass it using this function to the library, unless using"] + #[doc = " GameActivity in which case this will be done for you. See the GameActivity"] + #[doc = " source code or GameTextInput samples for examples of usage."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param inputConnection A gametextinput.InputConnection object."] + pub fn GameTextInput_setInputConnection(input: *mut GameTextInput, inputConnection: jobject); +} +extern "C" { + #[doc = " Unless using GameActivity, it is required to call this function from your"] + #[doc = " Java gametextinput.Listener.stateChanged method to convert eventState and"] + #[doc = " trigger any event callbacks. When using GameActivity, this does not need to"] + #[doc = " be called as event processing is handled by the Activity."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param eventState A Java gametextinput.State object."] + pub fn GameTextInput_processEvent(input: *mut GameTextInput, eventState: jobject); +} +extern "C" { + #[doc = " Free any resources owned by the GameTextInput library."] + #[doc = " Any subsequent calls to the library will fail until GameTextInput_init is"] + #[doc = " called again."] + #[doc = " @param input A valid GameTextInput library handle."] + pub fn GameTextInput_destroy(input: *mut GameTextInput); +} +pub const ShowImeFlags_SHOW_IME_UNDEFINED: ShowImeFlags = 0; +pub const ShowImeFlags_SHOW_IMPLICIT: ShowImeFlags = 1; +pub const ShowImeFlags_SHOW_FORCED: ShowImeFlags = 2; +#[doc = " Flags to be passed to GameTextInput_showIme."] +pub type ShowImeFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME. Calls InputMethodManager.showSoftInput()."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param flags Defined in ShowImeFlags above. For more information see:"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/InputMethodManager"] + pub fn GameTextInput_showIme(input: *mut GameTextInput, flags: u32); +} +pub const HideImeFlags_HIDE_IME_UNDEFINED: HideImeFlags = 0; +pub const HideImeFlags_HIDE_IMPLICIT_ONLY: HideImeFlags = 1; +pub const HideImeFlags_HIDE_NOT_ALWAYS: HideImeFlags = 2; +#[doc = " Flags to be passed to GameTextInput_hideIme."] +pub type HideImeFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME. Calls InputMethodManager.hideSoftInputFromWindow()."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param flags Defined in HideImeFlags above. For more information see:"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/InputMethodManager"] + pub fn GameTextInput_hideIme(input: *mut GameTextInput, flags: u32); +} +extern "C" { + #[doc = " Call a callback with the current GameTextInput state, which may have been"] + #[doc = " modified by changes in the IME and calls to GameTextInput_setState. We use a"] + #[doc = " callback rather than returning the state in order to simplify ownership of"] + #[doc = " text_UTF8 strings. These strings are only valid during the calling of the"] + #[doc = " callback."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback A function that will be called with valid state."] + #[doc = " @param context Context used by the callback."] + pub fn GameTextInput_getState( + input: *mut GameTextInput, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Set the current GameTextInput state. This state is reflected to any active"] + #[doc = " IME."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state The state to set. Ownership is maintained by the caller and must"] + #[doc = " remain valid for the duration of the call."] + pub fn GameTextInput_setState(input: *mut GameTextInput, state: *const GameTextInputState); +} +#[doc = " Type of the callback needed by GameTextInput_setEventCallback that will be"] +#[doc = " called every time the IME state changes."] +#[doc = " @param context User-defined context set in GameTextInput_setEventCallback."] +#[doc = " @param current_state Current IME state, owned by the library and valid during"] +#[doc = " the callback."] +pub type GameTextInputEventCallback = ::std::option::Option< + unsafe extern "C" fn( + context: *mut ::std::os::raw::c_void, + current_state: *const GameTextInputState, + ), +>; +extern "C" { + #[doc = " Optionally set a callback to be called whenever the IME state changes."] + #[doc = " Not necessary if you are using GameActivity, which handles these callbacks"] + #[doc = " for you."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback Called by the library when the IME state changes."] + #[doc = " @param context Context passed as first argument to the callback."] + pub fn GameTextInput_setEventCallback( + input: *mut GameTextInput, + callback: GameTextInputEventCallback, + context: *mut ::std::os::raw::c_void, + ); +} +#[doc = " Type of the callback needed by GameTextInput_setImeInsetsCallback that will"] +#[doc = " be called every time the IME window insets change."] +#[doc = " @param context User-defined context set in"] +#[doc = " GameTextInput_setImeWIndowInsetsCallback."] +#[doc = " @param current_insets Current IME insets, owned by the library and valid"] +#[doc = " during the callback."] +pub type GameTextInputImeInsetsCallback = ::std::option::Option< + unsafe extern "C" fn(context: *mut ::std::os::raw::c_void, current_insets: *const ARect), +>; +extern "C" { + #[doc = " Optionally set a callback to be called whenever the IME insets change."] + #[doc = " Not necessary if you are using GameActivity, which handles these callbacks"] + #[doc = " for you."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback Called by the library when the IME insets change."] + #[doc = " @param context Context passed as first argument to the callback."] + pub fn GameTextInput_setImeInsetsCallback( + input: *mut GameTextInput, + callback: GameTextInputImeInsetsCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Get the current window insets for the IME."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param insets Filled with the current insets by this function."] + pub fn GameTextInput_getImeInsets(input: *const GameTextInput, insets: *mut ARect); +} +extern "C" { + #[doc = " Unless using GameActivity, it is required to call this function from your"] + #[doc = " Java gametextinput.Listener.onImeInsetsChanged method to"] + #[doc = " trigger any event callbacks. When using GameActivity, this does not need to"] + #[doc = " be called as insets processing is handled by the Activity."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param eventState A Java gametextinput.State object."] + pub fn GameTextInput_processImeInsets(input: *mut GameTextInput, insets: *const ARect); +} +extern "C" { + #[doc = " Convert a GameTextInputState struct to a Java gametextinput.State object."] + #[doc = " Don't forget to delete the returned Java local ref when you're done."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state Input state to convert."] + #[doc = " @return A Java object of class gametextinput.State. The caller is required to"] + #[doc = " delete this local reference."] + pub fn GameTextInputState_toJava( + input: *const GameTextInput, + state: *const GameTextInputState, + ) -> jobject; +} +extern "C" { + #[doc = " Convert from a Java gametextinput.State object into a C GameTextInputState"] + #[doc = " struct."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state A Java gametextinput.State object."] + #[doc = " @param callback A function called with the C struct, valid for the duration"] + #[doc = " of the call."] + #[doc = " @param context Context passed to the callback."] + pub fn GameTextInputState_fromJava( + input: *const GameTextInput, + state: jobject, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +#[doc = " This structure defines the native side of an android.app.GameActivity."] +#[doc = " It is created by the framework, and handed to the application's native"] +#[doc = " code as it is being launched."] +#[repr(C)] +pub struct GameActivity { + #[doc = " Pointer to the callback function table of the native application."] + #[doc = " You can set the functions here to your own callbacks. The callbacks"] + #[doc = " pointer itself here should not be changed; it is allocated and managed"] + #[doc = " for you by the framework."] + pub callbacks: *mut GameActivityCallbacks, + #[doc = " The global handle on the process's Java VM."] + pub vm: *mut JavaVM, + #[doc = " JNI context for the main thread of the app. Note that this field"] + #[doc = " can ONLY be used from the main thread of the process; that is, the"] + #[doc = " thread that calls into the GameActivityCallbacks."] + pub env: *mut JNIEnv, + #[doc = " The GameActivity object handle."] + pub javaGameActivity: jobject, + #[doc = " Path to this application's internal data directory."] + pub internalDataPath: *const ::std::os::raw::c_char, + #[doc = " Path to this application's external (removable/mountable) data directory."] + pub externalDataPath: *const ::std::os::raw::c_char, + #[doc = " The platform's SDK version code."] + pub sdkVersion: i32, + #[doc = " This is the native instance of the application. It is not used by"] + #[doc = " the framework, but can be set by the application to its own instance"] + #[doc = " state."] + pub instance: *mut ::std::os::raw::c_void, + #[doc = " Pointer to the Asset Manager instance for the application. The"] + #[doc = " application uses this to access binary assets bundled inside its own .apk"] + #[doc = " file."] + pub assetManager: *mut AAssetManager, + #[doc = " Available starting with Honeycomb: path to the directory containing"] + #[doc = " the application's OBB files (if any). If the app doesn't have any"] + #[doc = " OBB files, this directory may not exist."] + pub obbPath: *const ::std::os::raw::c_char, +} +#[test] +fn bindgen_test_layout_GameActivity() { + assert_eq!( + ::std::mem::size_of::(), + 80usize, + concat!("Size of: ", stringify!(GameActivity)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameActivity)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).callbacks as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(callbacks) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).vm as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(vm) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).env as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(env) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).javaGameActivity as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(javaGameActivity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).internalDataPath as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(internalDataPath) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).externalDataPath as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(externalDataPath) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sdkVersion as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(sdkVersion) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).instance as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(instance) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).assetManager as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(assetManager) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).obbPath as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(obbPath) + ) + ); +} +#[doc = " \\brief Describe information about a pointer, found in a"] +#[doc = " GameActivityMotionEvent."] +#[doc = ""] +#[doc = " You can read values directly from this structure, or use helper functions"] +#[doc = " (`GameActivityPointerAxes_getX`, `GameActivityPointerAxes_getY` and"] +#[doc = " `GameActivityPointerAxes_getAxisValue`)."] +#[doc = ""] +#[doc = " The X axis and Y axis are enabled by default but any other axis that you want"] +#[doc = " to read **must** be enabled first, using"] +#[doc = " `GameActivityPointerAxes_enableAxis`."] +#[doc = ""] +#[doc = " \\see GameActivityMotionEvent"] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityPointerAxes { + pub id: i32, + pub axisValues: [f32; 48usize], + pub rawX: f32, + pub rawY: f32, +} +#[test] +fn bindgen_test_layout_GameActivityPointerAxes() { + assert_eq!( + ::std::mem::size_of::(), + 204usize, + concat!("Size of: ", stringify!(GameActivityPointerAxes)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameActivityPointerAxes)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).id as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(id) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).axisValues as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(axisValues) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rawX as *const _ as usize }, + 196usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(rawX) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rawY as *const _ as usize }, + 200usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(rawY) + ) + ); +} +extern "C" { + #[doc = " \\brief Enable the specified axis, so that its value is reported in the"] + #[doc = " GameActivityPointerAxes structures stored in a motion event."] + #[doc = ""] + #[doc = " You must enable any axis that you want to read, apart from"] + #[doc = " `AMOTION_EVENT_AXIS_X` and `AMOTION_EVENT_AXIS_Y` that are enabled by"] + #[doc = " default."] + #[doc = ""] + #[doc = " If the axis index is out of range, nothing is done."] + pub fn GameActivityPointerAxes_enableAxis(axis: i32); +} +extern "C" { + #[doc = " \\brief Disable the specified axis. Its value won't be reported in the"] + #[doc = " GameActivityPointerAxes structures stored in a motion event anymore."] + #[doc = ""] + #[doc = " Apart from X and Y, any axis that you want to read **must** be enabled first,"] + #[doc = " using `GameActivityPointerAxes_enableAxis`."] + #[doc = ""] + #[doc = " If the axis index is out of range, nothing is done."] + pub fn GameActivityPointerAxes_disableAxis(axis: i32); +} +#[doc = " \\brief Describe a motion event that happened on the GameActivity SurfaceView."] +#[doc = ""] +#[doc = " This is 1:1 mapping to the information contained in a Java `MotionEvent`"] +#[doc = " (see https://developer.android.com/reference/android/view/MotionEvent)."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityMotionEvent { + pub deviceId: i32, + pub source: i32, + pub action: i32, + pub eventTime: i64, + pub downTime: i64, + pub flags: i32, + pub metaState: i32, + pub actionButton: i32, + pub buttonState: i32, + pub classification: i32, + pub edgeFlags: i32, + pub pointerCount: u32, + pub pointers: [GameActivityPointerAxes; 8usize], + pub precisionX: f32, + pub precisionY: f32, +} +#[test] +fn bindgen_test_layout_GameActivityMotionEvent() { + assert_eq!( + ::std::mem::size_of::(), + 1704usize, + concat!("Size of: ", stringify!(GameActivityMotionEvent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameActivityMotionEvent)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).deviceId as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(deviceId) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).source as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(source) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).action as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(action) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).eventTime as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(eventTime) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).downTime as *const _ as usize + }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(downTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).metaState as *const _ as usize + }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(metaState) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).actionButton as *const _ as usize + }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(actionButton) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).buttonState as *const _ as usize + }, + 44usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(buttonState) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).classification as *const _ as usize + }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(classification) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).edgeFlags as *const _ as usize + }, + 52usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(edgeFlags) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pointerCount as *const _ as usize + }, + 56usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(pointerCount) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pointers as *const _ as usize + }, + 60usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(pointers) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).precisionX as *const _ as usize + }, + 1692usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(precisionX) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).precisionY as *const _ as usize + }, + 1696usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(precisionY) + ) + ); +} +#[doc = " \\brief Describe a key event that happened on the GameActivity SurfaceView."] +#[doc = ""] +#[doc = " This is 1:1 mapping to the information contained in a Java `KeyEvent`"] +#[doc = " (see https://developer.android.com/reference/android/view/KeyEvent)."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityKeyEvent { + pub deviceId: i32, + pub source: i32, + pub action: i32, + pub eventTime: i64, + pub downTime: i64, + pub flags: i32, + pub metaState: i32, + pub modifiers: i32, + pub repeatCount: i32, + pub keyCode: i32, + pub scanCode: i32, +} +#[test] +fn bindgen_test_layout_GameActivityKeyEvent() { + assert_eq!( + ::std::mem::size_of::(), + 56usize, + concat!("Size of: ", stringify!(GameActivityKeyEvent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameActivityKeyEvent)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).deviceId as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(deviceId) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).source as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(source) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).action as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(action) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eventTime as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(eventTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).downTime as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(downTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).metaState as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(metaState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).modifiers as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(modifiers) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).repeatCount as *const _ as usize + }, + 44usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(repeatCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyCode as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(keyCode) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).scanCode as *const _ as usize }, + 52usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(scanCode) + ) + ); +} +#[doc = " A function the user should call from their callback with the data, its length"] +#[doc = " and the library- supplied context."] +pub type SaveInstanceStateRecallback = ::std::option::Option< + unsafe extern "C" fn( + bytes: *const ::std::os::raw::c_char, + len: ::std::os::raw::c_int, + context: *mut ::std::os::raw::c_void, + ), +>; +#[doc = " {@link GameActivityCallbacks}"] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityCallbacks { + #[doc = " GameActivity has started. See Java documentation for Activity.onStart()"] + #[doc = " for more information."] + pub onStart: ::std::option::Option, + #[doc = " GameActivity has resumed. See Java documentation for Activity.onResume()"] + #[doc = " for more information."] + pub onResume: ::std::option::Option, + #[doc = " The framework is asking GameActivity to save its current instance state."] + #[doc = " See the Java documentation for Activity.onSaveInstanceState() for more"] + #[doc = " information. The user should call the recallback with their data, its"] + #[doc = " length and the provided context; they retain ownership of the data. Note"] + #[doc = " that the saved state will be persisted, so it can not contain any active"] + #[doc = " entities (pointers to memory, file descriptors, etc)."] + pub onSaveInstanceState: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + recallback: SaveInstanceStateRecallback, + context: *mut ::std::os::raw::c_void, + ), + >, + #[doc = " GameActivity has paused. See Java documentation for Activity.onPause()"] + #[doc = " for more information."] + pub onPause: ::std::option::Option, + #[doc = " GameActivity has stopped. See Java documentation for Activity.onStop()"] + #[doc = " for more information."] + pub onStop: ::std::option::Option, + #[doc = " GameActivity is being destroyed. See Java documentation for"] + #[doc = " Activity.onDestroy() for more information."] + pub onDestroy: ::std::option::Option, + #[doc = " Focus has changed in this GameActivity's window. This is often used,"] + #[doc = " for example, to pause a game when it loses input focus."] + pub onWindowFocusChanged: + ::std::option::Option, + #[doc = " The drawing window for this native activity has been created. You"] + #[doc = " can use the given native window object to start drawing."] + pub onNativeWindowCreated: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The drawing window for this native activity has been resized. You should"] + #[doc = " retrieve the new size from the window and ensure that your rendering in"] + #[doc = " it now matches."] + pub onNativeWindowResized: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + window: *mut ANativeWindow, + newWidth: i32, + newHeight: i32, + ), + >, + #[doc = " The drawing window for this native activity needs to be redrawn. To"] + #[doc = " avoid transient artifacts during screen changes (such resizing after"] + #[doc = " rotation), applications should not return from this function until they"] + #[doc = " have finished drawing their window in its current state."] + pub onNativeWindowRedrawNeeded: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The drawing window for this native activity is going to be destroyed."] + #[doc = " You MUST ensure that you do not touch the window object after returning"] + #[doc = " from this function: in the common case of drawing to the window from"] + #[doc = " another thread, that means the implementation of this callback must"] + #[doc = " properly synchronize with the other thread to stop its drawing before"] + #[doc = " returning from here."] + pub onNativeWindowDestroyed: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The current device AConfiguration has changed. The new configuration can"] + #[doc = " be retrieved from assetManager."] + pub onConfigurationChanged: + ::std::option::Option, + #[doc = " The system is running low on memory. Use this callback to release"] + #[doc = " resources you do not need, to help the system avoid killing more"] + #[doc = " important processes."] + pub onTrimMemory: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, level: ::std::os::raw::c_int), + >, + #[doc = " Callback called for every MotionEvent done on the GameActivity"] + #[doc = " SurfaceView. Ownership of `event` is maintained by the library and it is"] + #[doc = " only valid during the callback."] + pub onTouchEvent: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityMotionEvent, + ) -> bool, + >, + #[doc = " Callback called for every key down event on the GameActivity SurfaceView."] + #[doc = " Ownership of `event` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onKeyDown: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityKeyEvent, + ) -> bool, + >, + #[doc = " Callback called for every key up event on the GameActivity SurfaceView."] + #[doc = " Ownership of `event` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onKeyUp: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityKeyEvent, + ) -> bool, + >, + #[doc = " Callback called for every soft-keyboard text input event."] + #[doc = " Ownership of `state` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onTextInputEvent: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, state: *const GameTextInputState), + >, + #[doc = " Callback called when WindowInsets of the main app window have changed."] + #[doc = " Call GameActivity_getWindowInsets to retrieve the insets themselves."] + pub onWindowInsetsChanged: + ::std::option::Option, +} +#[test] +fn bindgen_test_layout_GameActivityCallbacks() { + assert_eq!( + ::std::mem::size_of::(), + 144usize, + concat!("Size of: ", stringify!(GameActivityCallbacks)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameActivityCallbacks)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onStart as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onStart) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onResume as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onResume) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onSaveInstanceState as *const _ + as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onSaveInstanceState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onPause as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onPause) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onStop as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onStop) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onDestroy as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onDestroy) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onWindowFocusChanged as *const _ + as usize + }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onWindowFocusChanged) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowCreated as *const _ + as usize + }, + 56usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowCreated) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowResized as *const _ + as usize + }, + 64usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowResized) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowRedrawNeeded as *const _ + as usize + }, + 72usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowRedrawNeeded) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowDestroyed as *const _ + as usize + }, + 80usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowDestroyed) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onConfigurationChanged as *const _ + as usize + }, + 88usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onConfigurationChanged) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTrimMemory as *const _ as usize + }, + 96usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTrimMemory) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTouchEvent as *const _ as usize + }, + 104usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTouchEvent) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onKeyDown as *const _ as usize }, + 112usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onKeyDown) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onKeyUp as *const _ as usize }, + 120usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onKeyUp) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTextInputEvent as *const _ as usize + }, + 128usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTextInputEvent) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onWindowInsetsChanged as *const _ + as usize + }, + 136usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onWindowInsetsChanged) + ) + ); +} +extern "C" { + #[doc = " \\brief Convert a Java `MotionEvent` to a `GameActivityMotionEvent`."] + #[doc = ""] + #[doc = " This is done automatically by the GameActivity: see `onTouchEvent` to set"] + #[doc = " a callback to consume the received events."] + #[doc = " This function can be used if you re-implement events handling in your own"] + #[doc = " activity."] + #[doc = " Ownership of out_event is maintained by the caller."] + pub fn GameActivityMotionEvent_fromJava( + env: *mut JNIEnv, + motionEvent: jobject, + out_event: *mut GameActivityMotionEvent, + ); +} +extern "C" { + #[doc = " \\brief Convert a Java `KeyEvent` to a `GameActivityKeyEvent`."] + #[doc = ""] + #[doc = " This is done automatically by the GameActivity: see `onKeyUp` and `onKeyDown`"] + #[doc = " to set a callback to consume the received events."] + #[doc = " This function can be used if you re-implement events handling in your own"] + #[doc = " activity."] + #[doc = " Ownership of out_event is maintained by the caller."] + pub fn GameActivityKeyEvent_fromJava( + env: *mut JNIEnv, + motionEvent: jobject, + out_event: *mut GameActivityKeyEvent, + ); +} +#[doc = " This is the function that must be in the native code to instantiate the"] +#[doc = " application's native activity. It is called with the activity instance (see"] +#[doc = " above); if the code is being instantiated from a previously saved instance,"] +#[doc = " the savedState will be non-NULL and point to the saved data. You must make"] +#[doc = " any copy of this data you need -- it will be released after you return from"] +#[doc = " this function."] +pub type GameActivity_createFunc = ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + savedState: *mut ::std::os::raw::c_void, + savedStateSize: size_t, + ), +>; +extern "C" { + #[doc = " Finish the given activity. Its finish() method will be called, causing it"] + #[doc = " to be stopped and destroyed. Note that this method can be called from"] + #[doc = " *any* thread; it will send a message to the main thread of the process"] + #[doc = " where the Java finish call will take place."] + pub fn GameActivity_finish(activity: *mut GameActivity); +} +#[doc = " As long as this window is visible to the user, allow the lock"] +#[doc = " screen to activate while the screen is on. This can be used"] +#[doc = " independently, or in combination with {@link"] +#[doc = " GAMEACTIVITY_FLAG_KEEP_SCREEN_ON} and/or {@link"] +#[doc = " GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED}"] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_ALLOW_LOCK_WHILE_SCREEN_ON: + GameActivitySetWindowFlags = 1; +#[doc = " Everything behind this window will be dimmed."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DIM_BEHIND: GameActivitySetWindowFlags = 2; +#[doc = " Blur everything behind this window."] +#[doc = " @deprecated Blurring is no longer supported."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_BLUR_BEHIND: GameActivitySetWindowFlags = 4; +#[doc = " This window won't ever get key input focus, so the"] +#[doc = " user can not send key or other button events to it. Those will"] +#[doc = " instead go to whatever focusable window is behind it. This flag"] +#[doc = " will also enable {@link GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL} whether or not"] +#[doc = " that is explicitly set."] +#[doc = ""] +#[doc = " Setting this flag also implies that the window will not need to"] +#[doc = " interact with"] +#[doc = " a soft input method, so it will be Z-ordered and positioned"] +#[doc = " independently of any active input method (typically this means it"] +#[doc = " gets Z-ordered on top of the input method, so it can use the full"] +#[doc = " screen for its content and cover the input method if needed. You"] +#[doc = " can use {@link GAMEACTIVITY_FLAG_ALT_FOCUSABLE_IM} to modify this"] +#[doc = " behavior."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_FOCUSABLE: GameActivitySetWindowFlags = + 8; +#[doc = " This window can never receive touch events."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_TOUCHABLE: GameActivitySetWindowFlags = + 16; +#[doc = " Even when this window is focusable (its"] +#[doc = " {@link GAMEACTIVITY_FLAG_NOT_FOCUSABLE} is not set), allow any pointer"] +#[doc = " events outside of the window to be sent to the windows behind it."] +#[doc = " Otherwise it will consume all pointer events itself, regardless of"] +#[doc = " whether they are inside of the window."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL: GameActivitySetWindowFlags = + 32; +#[doc = " When set, if the device is asleep when the touch"] +#[doc = " screen is pressed, you will receive this first touch event. Usually"] +#[doc = " the first touch event is consumed by the system since the user can"] +#[doc = " not see what they are pressing on."] +#[doc = ""] +#[doc = " @deprecated This flag has no effect."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_TOUCHABLE_WHEN_WAKING: + GameActivitySetWindowFlags = 64; +#[doc = " As long as this window is visible to the user, keep"] +#[doc = " the device's screen turned on and bright."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_KEEP_SCREEN_ON: GameActivitySetWindowFlags = + 128; +#[doc = " Place the window within the entire screen, ignoring"] +#[doc = " decorations around the border (such as the status bar). The"] +#[doc = " window must correctly position its contents to take the screen"] +#[doc = " decoration into account."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_IN_SCREEN: + GameActivitySetWindowFlags = 256; +#[doc = " Allows the window to extend outside of the screen."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_NO_LIMITS: + GameActivitySetWindowFlags = 512; +#[doc = " Hide all screen decorations (such as the status"] +#[doc = " bar) while this window is displayed. This allows the window to"] +#[doc = " use the entire display space for itself -- the status bar will"] +#[doc = " be hidden when an app window with this flag set is on the top"] +#[doc = " layer. A fullscreen window will ignore a value of {@link"] +#[doc = " GAMEACTIVITY_SOFT_INPUT_ADJUST_RESIZE}; the window will stay"] +#[doc = " fullscreen and will not resize."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_FULLSCREEN: GameActivitySetWindowFlags = + 1024; +#[doc = " Override {@link GAMEACTIVITY_FLAG_FULLSCREEN} and force the"] +#[doc = " screen decorations (such as the status bar) to be shown."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_FORCE_NOT_FULLSCREEN: + GameActivitySetWindowFlags = 2048; +#[doc = " Turn on dithering when compositing this window to"] +#[doc = " the screen."] +#[doc = " @deprecated This flag is no longer used."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DITHER: GameActivitySetWindowFlags = 4096; +#[doc = " Treat the content of the window as secure, preventing"] +#[doc = " it from appearing in screenshots or from being viewed on non-secure"] +#[doc = " displays."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SECURE: GameActivitySetWindowFlags = 8192; +#[doc = " A special mode where the layout parameters are used"] +#[doc = " to perform scaling of the surface when it is composited to the"] +#[doc = " screen."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SCALED: GameActivitySetWindowFlags = 16384; +#[doc = " Intended for windows that will often be used when the user is"] +#[doc = " holding the screen against their face, it will aggressively"] +#[doc = " filter the event stream to prevent unintended presses in this"] +#[doc = " situation that may not be desired for a particular window, when"] +#[doc = " such an event stream is detected, the application will receive"] +#[doc = " a {@link AMOTION_EVENT_ACTION_CANCEL} to indicate this so"] +#[doc = " applications can handle this accordingly by taking no action on"] +#[doc = " the event until the finger is released."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_IGNORE_CHEEK_PRESSES: + GameActivitySetWindowFlags = 32768; +#[doc = " A special option only for use in combination with"] +#[doc = " {@link GAMEACTIVITY_FLAG_LAYOUT_IN_SCREEN}. When requesting layout in"] +#[doc = " the screen your window may appear on top of or behind screen decorations"] +#[doc = " such as the status bar. By also including this flag, the window"] +#[doc = " manager will report the inset rectangle needed to ensure your"] +#[doc = " content is not covered by screen decorations."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_INSET_DECOR: + GameActivitySetWindowFlags = 65536; +#[doc = " Invert the state of {@link GAMEACTIVITY_FLAG_NOT_FOCUSABLE} with"] +#[doc = " respect to how this window interacts with the current method."] +#[doc = " That is, if FLAG_NOT_FOCUSABLE is set and this flag is set,"] +#[doc = " then the window will behave as if it needs to interact with the"] +#[doc = " input method and thus be placed behind/away from it; if {@link"] +#[doc = " GAMEACTIVITY_FLAG_NOT_FOCUSABLE} is not set and this flag is set,"] +#[doc = " then the window will behave as if it doesn't need to interact"] +#[doc = " with the input method and can be placed to use more space and"] +#[doc = " cover the input method."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_ALT_FOCUSABLE_IM: + GameActivitySetWindowFlags = 131072; +#[doc = " If you have set {@link GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL}, you"] +#[doc = " can set this flag to receive a single special MotionEvent with"] +#[doc = " the action"] +#[doc = " {@link AMOTION_EVENT_ACTION_OUTSIDE} for"] +#[doc = " touches that occur outside of your window. Note that you will not"] +#[doc = " receive the full down/move/up gesture, only the location of the"] +#[doc = " first down as an {@link AMOTION_EVENT_ACTION_OUTSIDE}."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_WATCH_OUTSIDE_TOUCH: + GameActivitySetWindowFlags = 262144; +#[doc = " Special flag to let windows be shown when the screen"] +#[doc = " is locked. This will let application windows take precedence over"] +#[doc = " key guard or any other lock screens. Can be used with"] +#[doc = " {@link GAMEACTIVITY_FLAG_KEEP_SCREEN_ON} to turn screen on and display"] +#[doc = " windows directly before showing the key guard window. Can be used with"] +#[doc = " {@link GAMEACTIVITY_FLAG_DISMISS_KEYGUARD} to automatically fully"] +#[doc = " dismisss non-secure keyguards. This flag only applies to the top-most"] +#[doc = " full-screen window."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED: + GameActivitySetWindowFlags = 524288; +#[doc = " Ask that the system wallpaper be shown behind"] +#[doc = " your window. The window surface must be translucent to be able"] +#[doc = " to actually see the wallpaper behind it; this flag just ensures"] +#[doc = " that the wallpaper surface will be there if this window actually"] +#[doc = " has translucent regions."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SHOW_WALLPAPER: GameActivitySetWindowFlags = + 1048576; +#[doc = " When set as a window is being added or made"] +#[doc = " visible, once the window has been shown then the system will"] +#[doc = " poke the power manager's user activity (as if the user had woken"] +#[doc = " up the device) to turn the screen on."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_TURN_SCREEN_ON: GameActivitySetWindowFlags = + 2097152; +#[doc = " When set the window will cause the keyguard to"] +#[doc = " be dismissed, only if it is not a secure lock keyguard. Because such"] +#[doc = " a keyguard is not needed for security, it will never re-appear if"] +#[doc = " the user navigates to another window (in contrast to"] +#[doc = " {@link GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED}, which will only temporarily"] +#[doc = " hide both secure and non-secure keyguards but ensure they reappear"] +#[doc = " when the user moves to another UI that doesn't hide them)."] +#[doc = " If the keyguard is currently active and is secure (requires an"] +#[doc = " unlock pattern) than the user will still need to confirm it before"] +#[doc = " seeing this window, unless {@link GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED} has"] +#[doc = " also been set."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DISMISS_KEYGUARD: + GameActivitySetWindowFlags = 4194304; +#[doc = " Flags for GameActivity_setWindowFlags,"] +#[doc = " as per the Java API at android.view.WindowManager.LayoutParams."] +pub type GameActivitySetWindowFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Change the window flags of the given activity. Calls getWindow().setFlags()"] + #[doc = " of the given activity."] + #[doc = " Note that some flags must be set before the window decoration is created,"] + #[doc = " see"] + #[doc = " https://developer.android.com/reference/android/view/Window#setFlags(int,%20int)."] + #[doc = " Note also that this method can be called from"] + #[doc = " *any* thread; it will send a message to the main thread of the process"] + #[doc = " where the Java finish call will take place."] + pub fn GameActivity_setWindowFlags( + activity: *mut GameActivity, + addFlags: u32, + removeFlags: u32, + ); +} +#[doc = " Implicit request to show the input window, not as the result"] +#[doc = " of a direct request by the user."] +pub const GameActivityShowSoftInputFlags_GAMEACTIVITY_SHOW_SOFT_INPUT_IMPLICIT: + GameActivityShowSoftInputFlags = 1; +#[doc = " The user has forced the input method open (such as by"] +#[doc = " long-pressing menu) so it should not be closed until they"] +#[doc = " explicitly do so."] +pub const GameActivityShowSoftInputFlags_GAMEACTIVITY_SHOW_SOFT_INPUT_FORCED: + GameActivityShowSoftInputFlags = 2; +#[doc = " Flags for GameActivity_showSoftInput; see the Java InputMethodManager"] +#[doc = " API for documentation."] +pub type GameActivityShowSoftInputFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME while in the given activity. Calls"] + #[doc = " InputMethodManager.showSoftInput() for the given activity. Note that this"] + #[doc = " method can be called from *any* thread; it will send a message to the main"] + #[doc = " thread of the process where the Java call will take place."] + pub fn GameActivity_showSoftInput(activity: *mut GameActivity, flags: u32); +} +extern "C" { + #[doc = " Set the text entry state (see documentation of the GameTextInputState struct"] + #[doc = " in the Game Text Input library reference)."] + #[doc = ""] + #[doc = " Ownership of the state is maintained by the caller."] + pub fn GameActivity_setTextInputState( + activity: *mut GameActivity, + state: *const GameTextInputState, + ); +} +extern "C" { + #[doc = " Get the last-received text entry state (see documentation of the"] + #[doc = " GameTextInputState struct in the Game Text Input library reference)."] + #[doc = ""] + pub fn GameActivity_getTextInputState( + activity: *mut GameActivity, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Get a pointer to the GameTextInput library instance."] + pub fn GameActivity_getTextInput(activity: *const GameActivity) -> *mut GameTextInput; +} +#[doc = " The soft input window should only be hidden if it was not"] +#[doc = " explicitly shown by the user."] +pub const GameActivityHideSoftInputFlags_GAMEACTIVITY_HIDE_SOFT_INPUT_IMPLICIT_ONLY: + GameActivityHideSoftInputFlags = 1; +#[doc = " The soft input window should normally be hidden, unless it was"] +#[doc = " originally shown with {@link GAMEACTIVITY_SHOW_SOFT_INPUT_FORCED}."] +pub const GameActivityHideSoftInputFlags_GAMEACTIVITY_HIDE_SOFT_INPUT_NOT_ALWAYS: + GameActivityHideSoftInputFlags = 2; +#[doc = " Flags for GameActivity_hideSoftInput; see the Java InputMethodManager"] +#[doc = " API for documentation."] +pub type GameActivityHideSoftInputFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Hide the IME while in the given activity. Calls"] + #[doc = " InputMethodManager.hideSoftInput() for the given activity. Note that this"] + #[doc = " method can be called from *any* thread; it will send a message to the main"] + #[doc = " thread of the process where the Java finish call will take place."] + pub fn GameActivity_hideSoftInput(activity: *mut GameActivity, flags: u32); +} +extern "C" { + #[doc = " Get the current window insets of the particular component. See"] + #[doc = " https://developer.android.com/reference/androidx/core/view/WindowInsetsCompat.Type"] + #[doc = " for more details."] + #[doc = " You can use these insets to influence what you show on the screen."] + pub fn GameActivity_getWindowInsets( + activity: *mut GameActivity, + type_: GameCommonInsetsType, + insets: *mut ARect, + ); +} +extern "C" { + #[doc = " Set options on how the IME behaves when it is requested for text input."] + #[doc = " See"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/EditorInfo"] + #[doc = " for the meaning of inputType, actionId and imeOptions."] + #[doc = ""] + #[doc = " Note that this function will attach the current thread to the JVM if it is"] + #[doc = " not already attached, so the caller must detach the thread from the JVM"] + #[doc = " before the thread is destroyed using DetachCurrentThread."] + pub fn GameActivity_setImeEditorInfo( + activity: *mut GameActivity, + inputType: ::std::os::raw::c_int, + actionId: ::std::os::raw::c_int, + imeOptions: ::std::os::raw::c_int, + ); +} +pub const ACONFIGURATION_ORIENTATION_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_ORIENTATION_PORT: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_ORIENTATION_LAND: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_ORIENTATION_SQUARE: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_TOUCHSCREEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_TOUCHSCREEN_NOTOUCH: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_TOUCHSCREEN_STYLUS: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_TOUCHSCREEN_FINGER: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_DENSITY_DEFAULT: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_DENSITY_LOW: ::std::os::raw::c_uint = 120; +pub const ACONFIGURATION_DENSITY_MEDIUM: ::std::os::raw::c_uint = 160; +pub const ACONFIGURATION_DENSITY_TV: ::std::os::raw::c_uint = 213; +pub const ACONFIGURATION_DENSITY_HIGH: ::std::os::raw::c_uint = 240; +pub const ACONFIGURATION_DENSITY_XHIGH: ::std::os::raw::c_uint = 320; +pub const ACONFIGURATION_DENSITY_XXHIGH: ::std::os::raw::c_uint = 480; +pub const ACONFIGURATION_DENSITY_XXXHIGH: ::std::os::raw::c_uint = 640; +pub const ACONFIGURATION_DENSITY_ANY: ::std::os::raw::c_uint = 65534; +pub const ACONFIGURATION_DENSITY_NONE: ::std::os::raw::c_uint = 65535; +pub const ACONFIGURATION_KEYBOARD_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_KEYBOARD_NOKEYS: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_KEYBOARD_QWERTY: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_KEYBOARD_12KEY: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVIGATION_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_NAVIGATION_NONAV: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_NAVIGATION_DPAD: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_NAVIGATION_TRACKBALL: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVIGATION_WHEEL: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_KEYSHIDDEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_KEYSHIDDEN_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_KEYSHIDDEN_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_KEYSHIDDEN_SOFT: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVHIDDEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_NAVHIDDEN_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_NAVHIDDEN_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENSIZE_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENSIZE_SMALL: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENSIZE_NORMAL: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENSIZE_LARGE: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_SCREENSIZE_XLARGE: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_SCREENLONG_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENLONG_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENLONG_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENROUND_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENROUND_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENROUND_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_HDR_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_HDR_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_HDR_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_UI_MODE_TYPE_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_UI_MODE_TYPE_NORMAL: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_UI_MODE_TYPE_DESK: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_UI_MODE_TYPE_CAR: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_UI_MODE_TYPE_TELEVISION: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_UI_MODE_TYPE_APPLIANCE: ::std::os::raw::c_uint = 5; +pub const ACONFIGURATION_UI_MODE_TYPE_WATCH: ::std::os::raw::c_uint = 6; +pub const ACONFIGURATION_UI_MODE_TYPE_VR_HEADSET: ::std::os::raw::c_uint = 7; +pub const ACONFIGURATION_UI_MODE_NIGHT_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_UI_MODE_NIGHT_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_UI_MODE_NIGHT_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREEN_WIDTH_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREEN_HEIGHT_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SMALLEST_SCREEN_WIDTH_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_LAYOUTDIR_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_LAYOUTDIR_LTR: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_LAYOUTDIR_RTL: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_MCC: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_MNC: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_LOCALE: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_TOUCHSCREEN: ::std::os::raw::c_uint = 8; +pub const ACONFIGURATION_KEYBOARD: ::std::os::raw::c_uint = 16; +pub const ACONFIGURATION_KEYBOARD_HIDDEN: ::std::os::raw::c_uint = 32; +pub const ACONFIGURATION_NAVIGATION: ::std::os::raw::c_uint = 64; +pub const ACONFIGURATION_ORIENTATION: ::std::os::raw::c_uint = 128; +pub const ACONFIGURATION_DENSITY: ::std::os::raw::c_uint = 256; +pub const ACONFIGURATION_SCREEN_SIZE: ::std::os::raw::c_uint = 512; +pub const ACONFIGURATION_VERSION: ::std::os::raw::c_uint = 1024; +pub const ACONFIGURATION_SCREEN_LAYOUT: ::std::os::raw::c_uint = 2048; +pub const ACONFIGURATION_UI_MODE: ::std::os::raw::c_uint = 4096; +pub const ACONFIGURATION_SMALLEST_SCREEN_SIZE: ::std::os::raw::c_uint = 8192; +pub const ACONFIGURATION_LAYOUTDIR: ::std::os::raw::c_uint = 16384; +pub const ACONFIGURATION_SCREEN_ROUND: ::std::os::raw::c_uint = 32768; +pub const ACONFIGURATION_COLOR_MODE: ::std::os::raw::c_uint = 65536; +pub const ACONFIGURATION_MNC_ZERO: ::std::os::raw::c_uint = 65535; +pub type _bindgen_ty_21 = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pollfd { + pub fd: ::std::os::raw::c_int, + pub events: ::std::os::raw::c_short, + pub revents: ::std::os::raw::c_short, +} +#[test] +fn bindgen_test_layout_pollfd() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(pollfd)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pollfd)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fd as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(fd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).events as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(events) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).revents as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(revents) + ) + ); +} +#[repr(C)] +#[repr(align(16))] +#[derive(Debug, Copy, Clone)] +pub struct sigcontext { + pub fault_address: __u64, + pub regs: [__u64; 31usize], + pub sp: __u64, + pub pc: __u64, + pub pstate: __u64, + pub __bindgen_padding_0: [u8; 8usize], + pub __reserved: [__u8; 4096usize], +} +#[test] +fn bindgen_test_layout_sigcontext() { + assert_eq!( + ::std::mem::size_of::(), + 4384usize, + concat!("Size of: ", stringify!(sigcontext)) + ); + assert_eq!( + ::std::mem::align_of::(), + 16usize, + concat!("Alignment of ", stringify!(sigcontext)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fault_address as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(fault_address) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).regs as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(regs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sp as *const _ as usize }, + 256usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(sp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pc as *const _ as usize }, + 264usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(pc) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pstate as *const _ as usize }, + 272usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(pstate) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__reserved as *const _ as usize }, + 288usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(__reserved) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _aarch64_ctx { + pub magic: __u32, + pub size: __u32, +} +#[test] +fn bindgen_test_layout__aarch64_ctx() { + assert_eq!( + ::std::mem::size_of::<_aarch64_ctx>(), + 8usize, + concat!("Size of: ", stringify!(_aarch64_ctx)) + ); + assert_eq!( + ::std::mem::align_of::<_aarch64_ctx>(), + 4usize, + concat!("Alignment of ", stringify!(_aarch64_ctx)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_aarch64_ctx>())).magic as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_aarch64_ctx), + "::", + stringify!(magic) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_aarch64_ctx>())).size as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(_aarch64_ctx), + "::", + stringify!(size) + ) + ); +} +#[repr(C)] +#[repr(align(16))] +#[derive(Debug, Copy, Clone)] +pub struct fpsimd_context { + pub head: _aarch64_ctx, + pub fpsr: __u32, + pub fpcr: __u32, + pub vregs: [__uint128_t; 32usize], +} +#[test] +fn bindgen_test_layout_fpsimd_context() { + assert_eq!( + ::std::mem::size_of::(), + 528usize, + concat!("Size of: ", stringify!(fpsimd_context)) + ); + assert_eq!( + ::std::mem::align_of::(), + 16usize, + concat!("Alignment of ", stringify!(fpsimd_context)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).head as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(fpsimd_context), + "::", + stringify!(head) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpsr as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(fpsimd_context), + "::", + stringify!(fpsr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpcr as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(fpsimd_context), + "::", + stringify!(fpcr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).vregs as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(fpsimd_context), + "::", + stringify!(vregs) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct esr_context { + pub head: _aarch64_ctx, + pub esr: __u64, +} +#[test] +fn bindgen_test_layout_esr_context() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(esr_context)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(esr_context)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).head as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(esr_context), + "::", + stringify!(head) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).esr as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(esr_context), + "::", + stringify!(esr) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct extra_context { + pub head: _aarch64_ctx, + pub datap: __u64, + pub size: __u32, + pub __reserved: [__u32; 3usize], +} +#[test] +fn bindgen_test_layout_extra_context() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(extra_context)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(extra_context)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).head as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(extra_context), + "::", + stringify!(head) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).datap as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(extra_context), + "::", + stringify!(datap) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).size as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(extra_context), + "::", + stringify!(size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__reserved as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(extra_context), + "::", + stringify!(__reserved) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sve_context { + pub head: _aarch64_ctx, + pub vl: __u16, + pub __reserved: [__u16; 3usize], +} +#[test] +fn bindgen_test_layout_sve_context() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(sve_context)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sve_context)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).head as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sve_context), + "::", + stringify!(head) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).vl as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sve_context), + "::", + stringify!(vl) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__reserved as *const _ as usize }, + 10usize, + concat!( + "Offset of field: ", + stringify!(sve_context), + "::", + stringify!(__reserved) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigset_t { + pub sig: [::std::os::raw::c_ulong; 1usize], +} +#[test] +fn bindgen_test_layout_sigset_t() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(sigset_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigset_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sig as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigset_t), + "::", + stringify!(sig) + ) + ); +} +pub type old_sigset_t = ::std::os::raw::c_ulong; +pub type __signalfn_t = ::std::option::Option; +pub type __sighandler_t = __signalfn_t; +pub type __restorefn_t = ::std::option::Option; +pub type __sigrestore_t = __restorefn_t; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_sigaction { + pub sa_handler: __sighandler_t, + pub sa_flags: ::std::os::raw::c_ulong, + pub sa_restorer: __sigrestore_t, + pub sa_mask: sigset_t, +} +#[test] +fn bindgen_test_layout___kernel_sigaction() { + assert_eq!( + ::std::mem::size_of::<__kernel_sigaction>(), + 32usize, + concat!("Size of: ", stringify!(__kernel_sigaction)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_sigaction>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_sigaction)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_handler as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_handler) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_flags as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_restorer as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_restorer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_mask as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_mask) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigaltstack { + pub ss_sp: *mut ::std::os::raw::c_void, + pub ss_flags: ::std::os::raw::c_int, + pub ss_size: size_t, +} +#[test] +fn bindgen_test_layout_sigaltstack() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(sigaltstack)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigaltstack)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_sp as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_sp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_flags as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_size as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_size) + ) + ); +} +pub type stack_t = sigaltstack; +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigval { + pub sival_int: ::std::os::raw::c_int, + pub sival_ptr: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_sigval() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(sigval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sival_int as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigval), + "::", + stringify!(sival_int) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sival_ptr as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigval), + "::", + stringify!(sival_ptr) + ) + ); +} +pub type sigval_t = sigval; +#[repr(C)] +#[derive(Copy, Clone)] +pub union __sifields { + pub _kill: __sifields__bindgen_ty_1, + pub _timer: __sifields__bindgen_ty_2, + pub _rt: __sifields__bindgen_ty_3, + pub _sigchld: __sifields__bindgen_ty_4, + pub _sigfault: __sifields__bindgen_ty_5, + pub _sigpoll: __sifields__bindgen_ty_6, + pub _sigsys: __sifields__bindgen_ty_7, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_1 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_1>(), + 8usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_1>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_1>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_1), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_1>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_1), + "::", + stringify!(_uid) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_2 { + pub _tid: __kernel_timer_t, + pub _overrun: ::std::os::raw::c_int, + pub _sigval: sigval_t, + pub _sys_private: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_2() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_2>(), + 24usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_2)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_2>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_2)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._tid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_tid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._overrun as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_overrun) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._sigval as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_sigval) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._sys_private as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_sys_private) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_3 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, + pub _sigval: sigval_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_3() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_3>(), + 16usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_3)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_3>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_3)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_uid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._sigval as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_sigval) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_4 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, + pub _status: ::std::os::raw::c_int, + pub _utime: __kernel_clock_t, + pub _stime: __kernel_clock_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_4() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_4>(), + 32usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_4)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_4>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_4)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_uid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._status as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_status) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._utime as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_utime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._stime as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_stime) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_5 { + pub _addr: *mut ::std::os::raw::c_void, + pub __bindgen_anon_1: __sifields__bindgen_ty_5__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union __sifields__bindgen_ty_5__bindgen_ty_1 { + pub _addr_lsb: ::std::os::raw::c_short, + pub _addr_bnd: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1, + pub _addr_pkey: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1 { + pub _dummy_bnd: [::std::os::raw::c_char; 8usize], + pub _lower: *mut ::std::os::raw::c_void, + pub _upper: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>(), + 24usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>(), + 8usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>())) + ._dummy_bnd as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_dummy_bnd) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>()))._lower + as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_lower) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>()))._upper + as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_upper) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2 { + pub _dummy_pkey: [::std::os::raw::c_char; 8usize], + pub _pkey: __u32, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>(), + 12usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>(), + 4usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>())) + ._dummy_pkey as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2), + "::", + stringify!(_dummy_pkey) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>()))._pkey + as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2), + "::", + stringify!(_pkey) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1>(), + 24usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1>(), + 8usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_lsb as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_lsb) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_bnd as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_bnd) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_pkey + as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_pkey) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5>(), + 32usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_5)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_5)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_5>()))._addr as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5), + "::", + stringify!(_addr) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_6 { + pub _band: ::std::os::raw::c_long, + pub _fd: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_6() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_6>(), + 16usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_6)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_6>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_6)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_6>()))._band as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_6), + "::", + stringify!(_band) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_6>()))._fd as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_6), + "::", + stringify!(_fd) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_7 { + pub _call_addr: *mut ::std::os::raw::c_void, + pub _syscall: ::std::os::raw::c_int, + pub _arch: ::std::os::raw::c_uint, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_7() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_7>(), + 16usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_7)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_7>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_7)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._call_addr as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_call_addr) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._syscall as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_syscall) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._arch as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_arch) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields() { + assert_eq!( + ::std::mem::size_of::<__sifields>(), + 32usize, + concat!("Size of: ", stringify!(__sifields)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._kill as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_kill) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._timer as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_timer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._rt as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_rt) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigchld as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigchld) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigfault as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigfault) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigpoll as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigpoll) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigsys as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigsys) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct siginfo { + pub __bindgen_anon_1: siginfo__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union siginfo__bindgen_ty_1 { + pub __bindgen_anon_1: siginfo__bindgen_ty_1__bindgen_ty_1, + pub _si_pad: [::std::os::raw::c_int; 32usize], +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct siginfo__bindgen_ty_1__bindgen_ty_1 { + pub si_signo: ::std::os::raw::c_int, + pub si_errno: ::std::os::raw::c_int, + pub si_code: ::std::os::raw::c_int, + pub _sifields: __sifields, +} +#[test] +fn bindgen_test_layout_siginfo__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 48usize, + concat!("Size of: ", stringify!(siginfo__bindgen_ty_1__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!( + "Alignment of ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_signo as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_signo) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_errno as *const _ + as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_errno) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_code as *const _ + as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_code) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._sifields as *const _ + as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_sifields) + ) + ); +} +#[test] +fn bindgen_test_layout_siginfo__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(siginfo__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(siginfo__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._si_pad as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1), + "::", + stringify!(_si_pad) + ) + ); +} +#[test] +fn bindgen_test_layout_siginfo() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(siginfo)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(siginfo)) + ); +} +pub type siginfo_t = siginfo; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigevent { + pub sigev_value: sigval_t, + pub sigev_signo: ::std::os::raw::c_int, + pub sigev_notify: ::std::os::raw::c_int, + pub _sigev_un: sigevent__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigevent__bindgen_ty_1 { + pub _pad: [::std::os::raw::c_int; 12usize], + pub _tid: ::std::os::raw::c_int, + pub _sigev_thread: sigevent__bindgen_ty_1__bindgen_ty_1, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigevent__bindgen_ty_1__bindgen_ty_1 { + pub _function: ::std::option::Option, + pub _attribute: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_sigevent__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!( + "Size of: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!( + "Alignment of ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._function as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_function) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._attribute as *const _ + as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_attribute) + ) + ); +} +#[test] +fn bindgen_test_layout_sigevent__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 48usize, + concat!("Size of: ", stringify!(sigevent__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigevent__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._pad as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_pad) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._tid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_tid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._sigev_thread as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_sigev_thread) + ) + ); +} +#[test] +fn bindgen_test_layout_sigevent() { + assert_eq!( + ::std::mem::size_of::(), + 64usize, + concat!("Size of: ", stringify!(sigevent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigevent)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_value as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_value) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_signo as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_signo) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_notify as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_notify) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._sigev_un as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(_sigev_un) + ) + ); +} +pub type sigevent_t = sigevent; +pub type sig_atomic_t = ::std::os::raw::c_int; +pub type sig_t = __sighandler_t; +pub type sighandler_t = __sighandler_t; +pub type sigset64_t = sigset_t; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigaction { + pub sa_flags: ::std::os::raw::c_int, + pub __bindgen_anon_1: sigaction__bindgen_ty_1, + pub sa_mask: sigset_t, + pub sa_restorer: ::std::option::Option, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigaction__bindgen_ty_1 { + pub sa_handler: sighandler_t, + pub sa_sigaction: ::std::option::Option< + unsafe extern "C" fn( + arg1: ::std::os::raw::c_int, + arg2: *mut siginfo, + arg3: *mut ::std::os::raw::c_void, + ), + >, +} +#[test] +fn bindgen_test_layout_sigaction__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(sigaction__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigaction__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_handler as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction__bindgen_ty_1), + "::", + stringify!(sa_handler) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_sigaction as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction__bindgen_ty_1), + "::", + stringify!(sa_sigaction) + ) + ); +} +#[test] +fn bindgen_test_layout_sigaction() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(sigaction)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigaction)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_mask as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_restorer as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_restorer) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigaction64 { + pub sa_flags: ::std::os::raw::c_int, + pub __bindgen_anon_1: sigaction64__bindgen_ty_1, + pub sa_mask: sigset_t, + pub sa_restorer: ::std::option::Option, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigaction64__bindgen_ty_1 { + pub sa_handler: sighandler_t, + pub sa_sigaction: ::std::option::Option< + unsafe extern "C" fn( + arg1: ::std::os::raw::c_int, + arg2: *mut siginfo, + arg3: *mut ::std::os::raw::c_void, + ), + >, +} +#[test] +fn bindgen_test_layout_sigaction64__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(sigaction64__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigaction64__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_handler as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction64__bindgen_ty_1), + "::", + stringify!(sa_handler) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_sigaction as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction64__bindgen_ty_1), + "::", + stringify!(sa_sigaction) + ) + ); +} +#[test] +fn bindgen_test_layout_sigaction64() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(sigaction64)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigaction64)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_mask as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_restorer as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_restorer) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timespec { + pub tv_sec: time_t, + pub tv_nsec: ::std::os::raw::c_long, +} +#[test] +fn bindgen_test_layout_timespec() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(timespec)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(timespec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timespec), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_nsec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(timespec), + "::", + stringify!(tv_nsec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user_regs_struct { + pub regs: [u64; 31usize], + pub sp: u64, + pub pc: u64, + pub pstate: u64, +} +#[test] +fn bindgen_test_layout_user_regs_struct() { + assert_eq!( + ::std::mem::size_of::(), + 272usize, + concat!("Size of: ", stringify!(user_regs_struct)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(user_regs_struct)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).regs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(regs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sp as *const _ as usize }, + 248usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(sp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pc as *const _ as usize }, + 256usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(pc) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pstate as *const _ as usize }, + 264usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(pstate) + ) + ); +} +#[repr(C)] +#[repr(align(16))] +#[derive(Debug, Copy, Clone)] +pub struct user_fpsimd_struct { + pub vregs: [__uint128_t; 32usize], + pub fpsr: u32, + pub fpcr: u32, +} +#[test] +fn bindgen_test_layout_user_fpsimd_struct() { + assert_eq!( + ::std::mem::size_of::(), + 528usize, + concat!("Size of: ", stringify!(user_fpsimd_struct)) + ); + assert_eq!( + ::std::mem::align_of::(), + 16usize, + concat!("Alignment of ", stringify!(user_fpsimd_struct)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).vregs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user_fpsimd_struct), + "::", + stringify!(vregs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpsr as *const _ as usize }, + 512usize, + concat!( + "Offset of field: ", + stringify!(user_fpsimd_struct), + "::", + stringify!(fpsr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpcr as *const _ as usize }, + 516usize, + concat!( + "Offset of field: ", + stringify!(user_fpsimd_struct), + "::", + stringify!(fpcr) + ) + ); +} +pub type greg_t = ::std::os::raw::c_ulong; +pub type gregset_t = [greg_t; 34usize]; +pub type fpregset_t = user_fpsimd_struct; +pub type mcontext_t = sigcontext; +#[repr(C)] +#[repr(align(16))] +#[derive(Copy, Clone)] +pub struct ucontext { + pub uc_flags: ::std::os::raw::c_ulong, + pub uc_link: *mut ucontext, + pub uc_stack: stack_t, + pub __bindgen_anon_1: ucontext__bindgen_ty_1, + pub __padding: [::std::os::raw::c_char; 120usize], + pub __bindgen_padding_0: u64, + pub uc_mcontext: mcontext_t, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union ucontext__bindgen_ty_1 { + pub uc_sigmask: sigset_t, + pub uc_sigmask64: sigset64_t, +} +#[test] +fn bindgen_test_layout_ucontext__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(ucontext__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ucontext__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).uc_sigmask as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext__bindgen_ty_1), + "::", + stringify!(uc_sigmask) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).uc_sigmask64 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext__bindgen_ty_1), + "::", + stringify!(uc_sigmask64) + ) + ); +} +#[test] +fn bindgen_test_layout_ucontext() { + assert_eq!( + ::std::mem::size_of::(), + 4560usize, + concat!("Size of: ", stringify!(ucontext)) + ); + assert_eq!( + ::std::mem::align_of::(), + 16usize, + concat!("Alignment of ", stringify!(ucontext)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_link as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_link) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_stack as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_stack) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__padding as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(__padding) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_mcontext as *const _ as usize }, + 176usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_mcontext) + ) + ); +} +pub type ucontext_t = ucontext; +extern "C" { + pub fn __libc_current_sigrtmin() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn __libc_current_sigrtmax() -> ::std::os::raw::c_int; +} +extern "C" { + pub static sys_siglist: [*const ::std::os::raw::c_char; 65usize]; +} +extern "C" { + pub static sys_signame: [*const ::std::os::raw::c_char; 65usize]; +} +extern "C" { + pub fn sigaction( + __signal: ::std::os::raw::c_int, + __new_action: *const sigaction, + __old_action: *mut sigaction, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaction64( + __signal: ::std::os::raw::c_int, + __new_action: *const sigaction64, + __old_action: *mut sigaction64, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn siginterrupt( + __signal: ::std::os::raw::c_int, + __flag: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn signal(__signal: ::std::os::raw::c_int, __handler: sighandler_t) -> sighandler_t; +} +extern "C" { + pub fn sigaddset( + __set: *mut sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaddset64( + __set: *mut sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigdelset( + __set: *mut sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigdelset64( + __set: *mut sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigemptyset(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigemptyset64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigfillset(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigfillset64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigismember( + __set: *const sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigismember64( + __set: *const sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpending(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpending64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigprocmask( + __how: ::std::os::raw::c_int, + __new_set: *const sigset_t, + __old_set: *mut sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigprocmask64( + __how: ::std::os::raw::c_int, + __new_set: *const sigset64_t, + __old_set: *mut sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigsuspend(__mask: *const sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigsuspend64(__mask: *const sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwait( + __set: *const sigset_t, + __signal: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwait64( + __set: *const sigset64_t, + __signal: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sighold(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigignore(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpause(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigrelse(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigset(__signal: ::std::os::raw::c_int, __handler: sighandler_t) -> sighandler_t; +} +extern "C" { + pub fn raise(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn kill(__pid: pid_t, __signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn killpg( + __pgrp: ::std::os::raw::c_int, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn tgkill( + __tgid: ::std::os::raw::c_int, + __tid: ::std::os::raw::c_int, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaltstack( + __new_signal_stack: *const stack_t, + __old_signal_stack: *mut stack_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn psiginfo(__info: *const siginfo_t, __msg: *const ::std::os::raw::c_char); +} +extern "C" { + pub fn psignal(__signal: ::std::os::raw::c_int, __msg: *const ::std::os::raw::c_char); +} +extern "C" { + pub fn pthread_kill( + __pthread: pthread_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_sigmask( + __how: ::std::os::raw::c_int, + __new_set: *const sigset_t, + __old_set: *mut sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_sigmask64( + __how: ::std::os::raw::c_int, + __new_set: *const sigset64_t, + __old_set: *mut sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigqueue( + __pid: pid_t, + __signal: ::std::os::raw::c_int, + __value: sigval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigtimedwait( + __set: *const sigset_t, + __info: *mut siginfo_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigtimedwait64( + __set: *const sigset64_t, + __info: *mut siginfo_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwaitinfo(__set: *const sigset_t, __info: *mut siginfo_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwaitinfo64(__set: *const sigset64_t, __info: *mut siginfo_t) + -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_timespec { + pub tv_sec: __kernel_time64_t, + pub tv_nsec: ::std::os::raw::c_longlong, +} +#[test] +fn bindgen_test_layout___kernel_timespec() { + assert_eq!( + ::std::mem::size_of::<__kernel_timespec>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_timespec)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_timespec>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_timespec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_timespec>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_timespec), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_timespec>())).tv_nsec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_timespec), + "::", + stringify!(tv_nsec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_itimerspec { + pub it_interval: __kernel_timespec, + pub it_value: __kernel_timespec, +} +#[test] +fn bindgen_test_layout___kernel_itimerspec() { + assert_eq!( + ::std::mem::size_of::<__kernel_itimerspec>(), + 32usize, + concat!("Size of: ", stringify!(__kernel_itimerspec)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_itimerspec>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_itimerspec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_itimerspec>())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_itimerspec), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_itimerspec>())).it_value as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__kernel_itimerspec), + "::", + stringify!(it_value) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_old_timeval { + pub tv_sec: __kernel_long_t, + pub tv_usec: __kernel_long_t, +} +#[test] +fn bindgen_test_layout___kernel_old_timeval() { + assert_eq!( + ::std::mem::size_of::<__kernel_old_timeval>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_old_timeval)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_old_timeval>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_old_timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_old_timeval>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_old_timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_old_timeval>())).tv_usec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_old_timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_sock_timeval { + pub tv_sec: __s64, + pub tv_usec: __s64, +} +#[test] +fn bindgen_test_layout___kernel_sock_timeval() { + assert_eq!( + ::std::mem::size_of::<__kernel_sock_timeval>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_sock_timeval)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_sock_timeval>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_sock_timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sock_timeval>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sock_timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sock_timeval>())).tv_usec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sock_timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timeval { + pub tv_sec: __kernel_time_t, + pub tv_usec: __kernel_suseconds_t, +} +#[test] +fn bindgen_test_layout_timeval() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(timeval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_usec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timezone { + pub tz_minuteswest: ::std::os::raw::c_int, + pub tz_dsttime: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout_timezone() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(timezone)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(timezone)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tz_minuteswest as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timezone), + "::", + stringify!(tz_minuteswest) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tz_dsttime as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(timezone), + "::", + stringify!(tz_dsttime) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct itimerspec { + pub it_interval: timespec, + pub it_value: timespec, +} +#[test] +fn bindgen_test_layout_itimerspec() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(itimerspec)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(itimerspec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(itimerspec), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_value as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(itimerspec), + "::", + stringify!(it_value) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct itimerval { + pub it_interval: timeval, + pub it_value: timeval, +} +#[test] +fn bindgen_test_layout_itimerval() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(itimerval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(itimerval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(itimerval), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_value as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(itimerval), + "::", + stringify!(it_value) + ) + ); +} +pub type fd_mask = ::std::os::raw::c_ulong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct fd_set { + pub fds_bits: [fd_mask; 16usize], +} +#[test] +fn bindgen_test_layout_fd_set() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(fd_set)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(fd_set)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fds_bits as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(fd_set), + "::", + stringify!(fds_bits) + ) + ); +} +extern "C" { + pub fn __FD_CLR_chk(arg1: ::std::os::raw::c_int, arg2: *mut fd_set, arg3: size_t); +} +extern "C" { + pub fn __FD_SET_chk(arg1: ::std::os::raw::c_int, arg2: *mut fd_set, arg3: size_t); +} +extern "C" { + pub fn __FD_ISSET_chk( + arg1: ::std::os::raw::c_int, + arg2: *const fd_set, + arg3: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn select( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *mut timeval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pselect( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *const timespec, + __mask: *const sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pselect64( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *const timespec, + __mask: *const sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn gettimeofday(__tv: *mut timeval, __tz: *mut timezone) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn settimeofday(__tv: *const timeval, __tz: *const timezone) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn getitimer( + __which: ::std::os::raw::c_int, + __current_value: *mut itimerval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn setitimer( + __which: ::std::os::raw::c_int, + __new_value: *const itimerval, + __old_value: *mut itimerval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn utimes( + __path: *const ::std::os::raw::c_char, + __times: *const timeval, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __locale_t { + _unused: [u8; 0], +} +pub type locale_t = *mut __locale_t; +extern "C" { + pub static mut tzname: [*mut ::std::os::raw::c_char; 0usize]; +} +extern "C" { + pub static mut daylight: ::std::os::raw::c_int; +} +extern "C" { + pub static mut timezone: ::std::os::raw::c_long; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct tm { + pub tm_sec: ::std::os::raw::c_int, + pub tm_min: ::std::os::raw::c_int, + pub tm_hour: ::std::os::raw::c_int, + pub tm_mday: ::std::os::raw::c_int, + pub tm_mon: ::std::os::raw::c_int, + pub tm_year: ::std::os::raw::c_int, + pub tm_wday: ::std::os::raw::c_int, + pub tm_yday: ::std::os::raw::c_int, + pub tm_isdst: ::std::os::raw::c_int, + pub tm_gmtoff: ::std::os::raw::c_long, + pub tm_zone: *const ::std::os::raw::c_char, +} +#[test] +fn bindgen_test_layout_tm() { + assert_eq!( + ::std::mem::size_of::(), + 56usize, + concat!("Size of: ", stringify!(tm)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(tm)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_min as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_min) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_hour as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_hour) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_mday as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_mday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_mon as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_mon) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_year as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_year) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_wday as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_wday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_yday as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_yday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_isdst as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_isdst) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_gmtoff as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_gmtoff) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_zone as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_zone) + ) + ); +} +extern "C" { + pub fn time(__t: *mut time_t) -> time_t; +} +extern "C" { + pub fn nanosleep( + __request: *const timespec, + __remainder: *mut timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn asctime(__tm: *const tm) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn asctime_r( + __tm: *const tm, + __buf: *mut ::std::os::raw::c_char, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn difftime(__lhs: time_t, __rhs: time_t) -> f64; +} +extern "C" { + pub fn mktime(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn localtime(__t: *const time_t) -> *mut tm; +} +extern "C" { + pub fn localtime_r(__t: *const time_t, __tm: *mut tm) -> *mut tm; +} +extern "C" { + pub fn gmtime(__t: *const time_t) -> *mut tm; +} +extern "C" { + pub fn gmtime_r(__t: *const time_t, __tm: *mut tm) -> *mut tm; +} +extern "C" { + pub fn strptime( + __s: *const ::std::os::raw::c_char, + __fmt: *const ::std::os::raw::c_char, + __tm: *mut tm, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn strptime_l( + __s: *const ::std::os::raw::c_char, + __fmt: *const ::std::os::raw::c_char, + __tm: *mut tm, + __l: locale_t, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn strftime( + __buf: *mut ::std::os::raw::c_char, + __n: size_t, + __fmt: *const ::std::os::raw::c_char, + __tm: *const tm, + ) -> size_t; +} +extern "C" { + pub fn strftime_l( + __buf: *mut ::std::os::raw::c_char, + __n: size_t, + __fmt: *const ::std::os::raw::c_char, + __tm: *const tm, + __l: locale_t, + ) -> size_t; +} +extern "C" { + pub fn ctime(__t: *const time_t) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn ctime_r( + __t: *const time_t, + __buf: *mut ::std::os::raw::c_char, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn tzset(); +} +extern "C" { + pub fn clock() -> clock_t; +} +extern "C" { + pub fn clock_getcpuclockid(__pid: pid_t, __clock: *mut clockid_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_getres(__clock: clockid_t, __resolution: *mut timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_gettime(__clock: clockid_t, __ts: *mut timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_nanosleep( + __clock: clockid_t, + __flags: ::std::os::raw::c_int, + __request: *const timespec, + __remainder: *mut timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_settime(__clock: clockid_t, __ts: *const timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_create( + __clock: clockid_t, + __event: *mut sigevent, + __timer_ptr: *mut timer_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_delete(__timer: timer_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_settime( + __timer: timer_t, + __flags: ::std::os::raw::c_int, + __new_value: *const itimerspec, + __old_value: *mut itimerspec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_gettime(__timer: timer_t, __ts: *mut itimerspec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_getoverrun(__timer: timer_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timelocal(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn timegm(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn timespec_get( + __ts: *mut timespec, + __base: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +pub type nfds_t = ::std::os::raw::c_uint; +extern "C" { + pub fn poll( + __fds: *mut pollfd, + __count: nfds_t, + __timeout_ms: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn ppoll( + __fds: *mut pollfd, + __count: nfds_t, + __timeout: *const timespec, + __mask: *const sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn ppoll64( + __fds: *mut pollfd, + __count: nfds_t, + __timeout: *const timespec, + __mask: *const sigset64_t, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct clone_args { + pub flags: __u64, + pub pidfd: __u64, + pub child_tid: __u64, + pub parent_tid: __u64, + pub exit_signal: __u64, + pub stack: __u64, + pub stack_size: __u64, + pub tls: __u64, +} +#[test] +fn bindgen_test_layout_clone_args() { + assert_eq!( + ::std::mem::size_of::(), + 64usize, + concat!("Size of: ", stringify!(clone_args)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(clone_args)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pidfd as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(pidfd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).child_tid as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(child_tid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).parent_tid as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(parent_tid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).exit_signal as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(exit_signal) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(stack) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_size as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(stack_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tls as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(tls) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sched_param { + pub sched_priority: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout_sched_param() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(sched_param)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sched_param)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_priority as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sched_param), + "::", + stringify!(sched_priority) + ) + ); +} +extern "C" { + pub fn sched_setscheduler( + __pid: pid_t, + __policy: ::std::os::raw::c_int, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_getscheduler(__pid: pid_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_yield() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_get_priority_max(__policy: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_get_priority_min(__policy: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_setparam(__pid: pid_t, __param: *const sched_param) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_getparam(__pid: pid_t, __param: *mut sched_param) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_rr_get_interval(__pid: pid_t, __quantum: *mut timespec) -> ::std::os::raw::c_int; +} +pub const PTHREAD_MUTEX_NORMAL: ::std::os::raw::c_uint = 0; +pub const PTHREAD_MUTEX_RECURSIVE: ::std::os::raw::c_uint = 1; +pub const PTHREAD_MUTEX_ERRORCHECK: ::std::os::raw::c_uint = 2; +pub const PTHREAD_MUTEX_ERRORCHECK_NP: ::std::os::raw::c_uint = 2; +pub const PTHREAD_MUTEX_RECURSIVE_NP: ::std::os::raw::c_uint = 1; +pub const PTHREAD_MUTEX_DEFAULT: ::std::os::raw::c_uint = 0; +pub type _bindgen_ty_22 = ::std::os::raw::c_uint; +pub const PTHREAD_RWLOCK_PREFER_READER_NP: ::std::os::raw::c_uint = 0; +pub const PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_23 = ::std::os::raw::c_uint; +extern "C" { + pub fn pthread_atfork( + __prepare: ::std::option::Option, + __parent: ::std::option::Option, + __child: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_destroy(__attr: *mut pthread_attr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getdetachstate( + __attr: *const pthread_attr_t, + __state: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getguardsize( + __attr: *const pthread_attr_t, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getinheritsched( + __attr: *const pthread_attr_t, + __flag: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getschedparam( + __attr: *const pthread_attr_t, + __param: *mut sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getschedpolicy( + __attr: *const pthread_attr_t, + __policy: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getscope( + __attr: *const pthread_attr_t, + __scope: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getstack( + __attr: *const pthread_attr_t, + __addr: *mut *mut ::std::os::raw::c_void, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getstacksize( + __attr: *const pthread_attr_t, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_init(__attr: *mut pthread_attr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setdetachstate( + __attr: *mut pthread_attr_t, + __state: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setguardsize( + __attr: *mut pthread_attr_t, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setinheritsched( + __attr: *mut pthread_attr_t, + __flag: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setschedparam( + __attr: *mut pthread_attr_t, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setschedpolicy( + __attr: *mut pthread_attr_t, + __policy: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setscope( + __attr: *mut pthread_attr_t, + __scope: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setstack( + __attr: *mut pthread_attr_t, + __addr: *mut ::std::os::raw::c_void, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setstacksize( + __addr: *mut pthread_attr_t, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_destroy(__attr: *mut pthread_condattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_getclock( + __attr: *const pthread_condattr_t, + __clock: *mut clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_getpshared( + __attr: *const pthread_condattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_init(__attr: *mut pthread_condattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_setclock( + __attr: *mut pthread_condattr_t, + __clock: clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_setpshared( + __attr: *mut pthread_condattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_broadcast(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_clockwait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_destroy(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_init( + __cond: *mut pthread_cond_t, + __attr: *const pthread_condattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_signal(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_timedwait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_timedwait_monotonic_np( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_wait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_create( + __pthread_ptr: *mut pthread_t, + __attr: *const pthread_attr_t, + __start_routine: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void) -> *mut ::std::os::raw::c_void, + >, + arg1: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_detach(__pthread: pthread_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_exit(__return_value: *mut ::std::os::raw::c_void); +} +extern "C" { + pub fn pthread_equal(__lhs: pthread_t, __rhs: pthread_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getattr_np( + __pthread: pthread_t, + __attr: *mut pthread_attr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getcpuclockid( + __pthread: pthread_t, + __clock: *mut clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getschedparam( + __pthread: pthread_t, + __policy: *mut ::std::os::raw::c_int, + __param: *mut sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getspecific(__key: pthread_key_t) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn pthread_gettid_np(__pthread: pthread_t) -> pid_t; +} +extern "C" { + pub fn pthread_join( + __pthread: pthread_t, + __return_value_ptr: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_key_create( + __key_ptr: *mut pthread_key_t, + __key_destructor: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void), + >, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_key_delete(__key: pthread_key_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_destroy(__attr: *mut pthread_mutexattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_getpshared( + __attr: *const pthread_mutexattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_gettype( + __attr: *const pthread_mutexattr_t, + __type: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_getprotocol( + __attr: *const pthread_mutexattr_t, + __protocol: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_init(__attr: *mut pthread_mutexattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_setpshared( + __attr: *mut pthread_mutexattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_settype( + __attr: *mut pthread_mutexattr_t, + __type: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_setprotocol( + __attr: *mut pthread_mutexattr_t, + __protocol: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_clocklock( + __mutex: *mut pthread_mutex_t, + __clock: clockid_t, + __abstime: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_destroy(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_init( + __mutex: *mut pthread_mutex_t, + __attr: *const pthread_mutexattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_lock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_timedlock( + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_timedlock_monotonic_np( + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_trylock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_unlock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_once( + __once: *mut pthread_once_t, + __init_routine: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_init(__attr: *mut pthread_rwlockattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_destroy(__attr: *mut pthread_rwlockattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_getpshared( + __attr: *const pthread_rwlockattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_setpshared( + __attr: *mut pthread_rwlockattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_getkind_np( + __attr: *const pthread_rwlockattr_t, + __kind: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_setkind_np( + __attr: *mut pthread_rwlockattr_t, + __kind: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_clockrdlock( + __rwlock: *mut pthread_rwlock_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_clockwrlock( + __rwlock: *mut pthread_rwlock_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_destroy(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_init( + __rwlock: *mut pthread_rwlock_t, + __attr: *const pthread_rwlockattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_rdlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedrdlock( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedrdlock_monotonic_np( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedwrlock( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedwrlock_monotonic_np( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_tryrdlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_trywrlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_unlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_wrlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_init(__attr: *mut pthread_barrierattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_destroy(__attr: *mut pthread_barrierattr_t) + -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_getpshared( + __attr: *const pthread_barrierattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_setpshared( + __attr: *mut pthread_barrierattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_init( + __barrier: *mut pthread_barrier_t, + __attr: *const pthread_barrierattr_t, + __count: ::std::os::raw::c_uint, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_destroy(__barrier: *mut pthread_barrier_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_wait(__barrier: *mut pthread_barrier_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_destroy(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_init( + __spinlock: *mut pthread_spinlock_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_lock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_trylock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_unlock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_self() -> pthread_t; +} +extern "C" { + pub fn pthread_setname_np( + __pthread: pthread_t, + __name: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setschedparam( + __pthread: pthread_t, + __policy: ::std::os::raw::c_int, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setschedprio( + __pthread: pthread_t, + __priority: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setspecific( + __key: pthread_key_t, + __value: *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +pub type __pthread_cleanup_func_t = + ::std::option::Option; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __pthread_cleanup_t { + pub __cleanup_prev: *mut __pthread_cleanup_t, + pub __cleanup_routine: __pthread_cleanup_func_t, + pub __cleanup_arg: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout___pthread_cleanup_t() { + assert_eq!( + ::std::mem::size_of::<__pthread_cleanup_t>(), + 24usize, + concat!("Size of: ", stringify!(__pthread_cleanup_t)) + ); + assert_eq!( + ::std::mem::align_of::<__pthread_cleanup_t>(), + 8usize, + concat!("Alignment of ", stringify!(__pthread_cleanup_t)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_prev as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_prev) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_routine as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_routine) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_arg as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_arg) + ) + ); +} +extern "C" { + pub fn __pthread_cleanup_push( + c: *mut __pthread_cleanup_t, + arg1: __pthread_cleanup_func_t, + arg2: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + pub fn __pthread_cleanup_pop(arg1: *mut __pthread_cleanup_t, arg2: ::std::os::raw::c_int); +} +#[doc = " Data associated with an ALooper fd that will be returned as the \"outData\""] +#[doc = " when that source has data ready."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_poll_source { + #[doc = " The identifier of this source. May be LOOPER_ID_MAIN or"] + #[doc = " LOOPER_ID_INPUT."] + pub id: i32, + #[doc = " The android_app this ident is associated with."] + pub app: *mut android_app, + #[doc = " Function to call to perform the standard processing of data from"] + #[doc = " this source."] + pub process: ::std::option::Option< + unsafe extern "C" fn(app: *mut android_app, source: *mut android_poll_source), + >, +} +#[test] +fn bindgen_test_layout_android_poll_source() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(android_poll_source)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(android_poll_source)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).id as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(id) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).app as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(app) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).process as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(process) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_input_buffer { + #[doc = " Pointer to a read-only array of pointers to GameActivityMotionEvent."] + #[doc = " Only the first motionEventsCount events are valid."] + pub motionEvents: [GameActivityMotionEvent; 16usize], + #[doc = " The number of valid motion events in `motionEvents`."] + pub motionEventsCount: u64, + #[doc = " Pointer to a read-only array of pointers to GameActivityKeyEvent."] + #[doc = " Only the first keyEventsCount events are valid."] + pub keyEvents: [GameActivityKeyEvent; 4usize], + #[doc = " The number of valid \"Key\" events in `keyEvents`."] + pub keyEventsCount: u64, +} +#[test] +fn bindgen_test_layout_android_input_buffer() { + assert_eq!( + ::std::mem::size_of::(), + 27504usize, + concat!("Size of: ", stringify!(android_input_buffer)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(android_input_buffer)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).motionEvents as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(motionEvents) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).motionEventsCount as *const _ as usize + }, + 27264usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(motionEventsCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyEvents as *const _ as usize }, + 27272usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(keyEvents) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).keyEventsCount as *const _ as usize + }, + 27496usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(keyEventsCount) + ) + ); +} +#[doc = " Function pointer declaration for the filtering of key events."] +#[doc = " A function with this signature should be passed to"] +#[doc = " android_app_set_key_event_filter and return false for any events that should"] +#[doc = " not be handled by android_native_app_glue. These events will be handled by"] +#[doc = " the system instead."] +pub type android_key_event_filter = + ::std::option::Option bool>; +#[doc = " Function pointer definition for the filtering of motion events."] +#[doc = " A function with this signature should be passed to"] +#[doc = " android_app_set_motion_event_filter and return false for any events that"] +#[doc = " should not be handled by android_native_app_glue. These events will be"] +#[doc = " handled by the system instead."] +pub type android_motion_event_filter = + ::std::option::Option bool>; +#[doc = " The GameActivity interface provided by "] +#[doc = " is based on a set of application-provided callbacks that will be called"] +#[doc = " by the Activity's main thread when certain events occur."] +#[doc = ""] +#[doc = " This means that each one of this callbacks _should_ _not_ block, or they"] +#[doc = " risk having the system force-close the application. This programming"] +#[doc = " model is direct, lightweight, but constraining."] +#[doc = ""] +#[doc = " The 'android_native_app_glue' static library is used to provide a different"] +#[doc = " execution model where the application can implement its own main event"] +#[doc = " loop in a different thread instead. Here's how it works:"] +#[doc = ""] +#[doc = " 1/ The application must provide a function named \"android_main()\" that"] +#[doc = " will be called when the activity is created, in a new thread that is"] +#[doc = " distinct from the activity's main thread."] +#[doc = ""] +#[doc = " 2/ android_main() receives a pointer to a valid \"android_app\" structure"] +#[doc = " that contains references to other important objects, e.g. the"] +#[doc = " GameActivity obejct instance the application is running in."] +#[doc = ""] +#[doc = " 3/ the \"android_app\" object holds an ALooper instance that already"] +#[doc = " listens to activity lifecycle events (e.g. \"pause\", \"resume\")."] +#[doc = " See APP_CMD_XXX declarations below."] +#[doc = ""] +#[doc = " This corresponds to an ALooper identifier returned by"] +#[doc = " ALooper_pollOnce with value LOOPER_ID_MAIN."] +#[doc = ""] +#[doc = " Your application can use the same ALooper to listen to additional"] +#[doc = " file-descriptors. They can either be callback based, or with return"] +#[doc = " identifiers starting with LOOPER_ID_USER."] +#[doc = ""] +#[doc = " 4/ Whenever you receive a LOOPER_ID_MAIN event,"] +#[doc = " the returned data will point to an android_poll_source structure. You"] +#[doc = " can call the process() function on it, and fill in android_app->onAppCmd"] +#[doc = " to be called for your own processing of the event."] +#[doc = ""] +#[doc = " Alternatively, you can call the low-level functions to read and process"] +#[doc = " the data directly... look at the process_cmd() and process_input()"] +#[doc = " implementations in the glue to see how to do this."] +#[doc = ""] +#[doc = " See the sample named \"native-activity\" that comes with the NDK with a"] +#[doc = " full usage example. Also look at the documentation of GameActivity."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_app { + #[doc = " An optional pointer to application-defined state."] + pub userData: *mut ::std::os::raw::c_void, + #[doc = " A required callback for processing main app commands (`APP_CMD_*`)."] + #[doc = " This is called each frame if there are app commands that need processing."] + pub onAppCmd: ::std::option::Option, + #[doc = " The GameActivity object instance that this app is running in."] + pub activity: *mut GameActivity, + #[doc = " The current configuration the app is running in."] + pub config: *mut AConfiguration, + #[doc = " The last activity saved state, as provided at creation time."] + #[doc = " It is NULL if there was no state. You can use this as you need; the"] + #[doc = " memory will remain around until you call android_app_exec_cmd() for"] + #[doc = " APP_CMD_RESUME, at which point it will be freed and savedState set to"] + #[doc = " NULL. These variables should only be changed when processing a"] + #[doc = " APP_CMD_SAVE_STATE, at which point they will be initialized to NULL and"] + #[doc = " you can malloc your state and place the information here. In that case"] + #[doc = " the memory will be freed for you later."] + pub savedState: *mut ::std::os::raw::c_void, + #[doc = " The size of the activity saved state. It is 0 if `savedState` is NULL."] + pub savedStateSize: size_t, + #[doc = " The ALooper associated with the app's thread."] + pub looper: *mut ALooper, + #[doc = " When non-NULL, this is the window surface that the app can draw in."] + pub window: *mut ANativeWindow, + #[doc = " Current content rectangle of the window; this is the area where the"] + #[doc = " window's content should be placed to be seen by the user."] + pub contentRect: ARect, + #[doc = " Current state of the app's activity. May be either APP_CMD_START,"] + #[doc = " APP_CMD_RESUME, APP_CMD_PAUSE, or APP_CMD_STOP."] + pub activityState: ::std::os::raw::c_int, + #[doc = " This is non-zero when the application's GameActivity is being"] + #[doc = " destroyed and waiting for the app thread to complete."] + pub destroyRequested: ::std::os::raw::c_int, + #[doc = " This is used for buffering input from GameActivity. Once ready, the"] + #[doc = " application thread switches the buffers and processes what was"] + #[doc = " accumulated."] + pub inputBuffers: [android_input_buffer; 2usize], + pub currentInputBuffer: ::std::os::raw::c_int, + #[doc = " 0 if no text input event is outstanding, 1 if it is."] + #[doc = " Use `GameActivity_getTextInputState` to get information"] + #[doc = " about the text entered by the user."] + pub textInputState: ::std::os::raw::c_int, + #[doc = " @cond INTERNAL"] + pub mutex: pthread_mutex_t, + pub cond: pthread_cond_t, + pub msgread: ::std::os::raw::c_int, + pub msgwrite: ::std::os::raw::c_int, + pub thread: pthread_t, + pub cmdPollSource: android_poll_source, + pub running: ::std::os::raw::c_int, + pub stateSaved: ::std::os::raw::c_int, + pub destroyed: ::std::os::raw::c_int, + pub redrawNeeded: ::std::os::raw::c_int, + pub pendingWindow: *mut ANativeWindow, + pub pendingContentRect: ARect, + pub keyEventFilter: android_key_event_filter, + pub motionEventFilter: android_motion_event_filter, +} +#[test] +fn bindgen_test_layout_android_app() { + assert_eq!( + ::std::mem::size_of::(), + 55288usize, + concat!("Size of: ", stringify!(android_app)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(android_app)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).userData as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(userData) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onAppCmd as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(onAppCmd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).activity as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(activity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).config as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(config) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).savedState as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(savedState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).savedStateSize as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(savedStateSize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).looper as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(looper) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).window as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(window) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).contentRect as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(contentRect) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).activityState as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(activityState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).destroyRequested as *const _ as usize }, + 84usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(destroyRequested) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).inputBuffers as *const _ as usize }, + 88usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(inputBuffers) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).currentInputBuffer as *const _ as usize }, + 55096usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(currentInputBuffer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).textInputState as *const _ as usize }, + 55100usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(textInputState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).mutex as *const _ as usize }, + 55104usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(mutex) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cond as *const _ as usize }, + 55144usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(cond) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).msgread as *const _ as usize }, + 55192usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(msgread) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).msgwrite as *const _ as usize }, + 55196usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(msgwrite) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).thread as *const _ as usize }, + 55200usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(thread) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cmdPollSource as *const _ as usize }, + 55208usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(cmdPollSource) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).running as *const _ as usize }, + 55232usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(running) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stateSaved as *const _ as usize }, + 55236usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(stateSaved) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).destroyed as *const _ as usize }, + 55240usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(destroyed) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).redrawNeeded as *const _ as usize }, + 55244usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(redrawNeeded) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pendingWindow as *const _ as usize }, + 55248usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(pendingWindow) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pendingContentRect as *const _ as usize }, + 55256usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(pendingContentRect) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyEventFilter as *const _ as usize }, + 55272usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(keyEventFilter) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).motionEventFilter as *const _ as usize }, + 55280usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(motionEventFilter) + ) + ); +} +#[doc = " Looper data ID of commands coming from the app's main thread, which"] +#[doc = " is returned as an identifier from ALooper_pollOnce(). The data for this"] +#[doc = " identifier is a pointer to an android_poll_source structure."] +#[doc = " These can be retrieved and processed with android_app_read_cmd()"] +#[doc = " and android_app_exec_cmd()."] +pub const NativeAppGlueLooperId_LOOPER_ID_MAIN: NativeAppGlueLooperId = 1; +#[doc = " Unused. Reserved for future use when usage of AInputQueue will be"] +#[doc = " supported."] +pub const NativeAppGlueLooperId_LOOPER_ID_INPUT: NativeAppGlueLooperId = 2; +#[doc = " Start of user-defined ALooper identifiers."] +pub const NativeAppGlueLooperId_LOOPER_ID_USER: NativeAppGlueLooperId = 3; +#[doc = " Looper ID of commands coming from the app's main thread, an AInputQueue or"] +#[doc = " user-defined sources."] +pub type NativeAppGlueLooperId = ::std::os::raw::c_uint; +#[doc = " Unused. Reserved for future use when usage of AInputQueue will be"] +#[doc = " supported."] +pub const NativeAppGlueAppCmd_UNUSED_APP_CMD_INPUT_CHANGED: NativeAppGlueAppCmd = 0; +#[doc = " Command from main thread: a new ANativeWindow is ready for use. Upon"] +#[doc = " receiving this command, android_app->window will contain the new window"] +#[doc = " surface."] +pub const NativeAppGlueAppCmd_APP_CMD_INIT_WINDOW: NativeAppGlueAppCmd = 1; +#[doc = " Command from main thread: the existing ANativeWindow needs to be"] +#[doc = " terminated. Upon receiving this command, android_app->window still"] +#[doc = " contains the existing window; after calling android_app_exec_cmd"] +#[doc = " it will be set to NULL."] +pub const NativeAppGlueAppCmd_APP_CMD_TERM_WINDOW: NativeAppGlueAppCmd = 2; +#[doc = " Command from main thread: the current ANativeWindow has been resized."] +#[doc = " Please redraw with its new size."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_RESIZED: NativeAppGlueAppCmd = 3; +#[doc = " Command from main thread: the system needs that the current ANativeWindow"] +#[doc = " be redrawn. You should redraw the window before handing this to"] +#[doc = " android_app_exec_cmd() in order to avoid transient drawing glitches."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_REDRAW_NEEDED: NativeAppGlueAppCmd = 4; +#[doc = " Command from main thread: the content area of the window has changed,"] +#[doc = " such as from the soft input window being shown or hidden. You can"] +#[doc = " find the new content rect in android_app::contentRect."] +pub const NativeAppGlueAppCmd_APP_CMD_CONTENT_RECT_CHANGED: NativeAppGlueAppCmd = 5; +#[doc = " Command from main thread: the app's activity window has gained"] +#[doc = " input focus."] +pub const NativeAppGlueAppCmd_APP_CMD_GAINED_FOCUS: NativeAppGlueAppCmd = 6; +#[doc = " Command from main thread: the app's activity window has lost"] +#[doc = " input focus."] +pub const NativeAppGlueAppCmd_APP_CMD_LOST_FOCUS: NativeAppGlueAppCmd = 7; +#[doc = " Command from main thread: the current device configuration has changed."] +pub const NativeAppGlueAppCmd_APP_CMD_CONFIG_CHANGED: NativeAppGlueAppCmd = 8; +#[doc = " Command from main thread: the system is running low on memory."] +#[doc = " Try to reduce your memory use."] +pub const NativeAppGlueAppCmd_APP_CMD_LOW_MEMORY: NativeAppGlueAppCmd = 9; +#[doc = " Command from main thread: the app's activity has been started."] +pub const NativeAppGlueAppCmd_APP_CMD_START: NativeAppGlueAppCmd = 10; +#[doc = " Command from main thread: the app's activity has been resumed."] +pub const NativeAppGlueAppCmd_APP_CMD_RESUME: NativeAppGlueAppCmd = 11; +#[doc = " Command from main thread: the app should generate a new saved state"] +#[doc = " for itself, to restore from later if needed. If you have saved state,"] +#[doc = " allocate it with malloc and place it in android_app.savedState with"] +#[doc = " the size in android_app.savedStateSize. The will be freed for you"] +#[doc = " later."] +pub const NativeAppGlueAppCmd_APP_CMD_SAVE_STATE: NativeAppGlueAppCmd = 12; +#[doc = " Command from main thread: the app's activity has been paused."] +pub const NativeAppGlueAppCmd_APP_CMD_PAUSE: NativeAppGlueAppCmd = 13; +#[doc = " Command from main thread: the app's activity has been stopped."] +pub const NativeAppGlueAppCmd_APP_CMD_STOP: NativeAppGlueAppCmd = 14; +#[doc = " Command from main thread: the app's activity is being destroyed,"] +#[doc = " and waiting for the app thread to clean up and exit before proceeding."] +pub const NativeAppGlueAppCmd_APP_CMD_DESTROY: NativeAppGlueAppCmd = 15; +#[doc = " Command from main thread: the app's insets have changed."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_INSETS_CHANGED: NativeAppGlueAppCmd = 16; +#[doc = " Commands passed from the application's main Java thread to the game's thread."] +pub type NativeAppGlueAppCmd = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Call when ALooper_pollAll() returns LOOPER_ID_MAIN, reading the next"] + #[doc = " app command message."] + pub fn android_app_read_cmd(android_app: *mut android_app) -> i8; +} +extern "C" { + #[doc = " Call with the command returned by android_app_read_cmd() to do the"] + #[doc = " initial pre-processing of the given command. You can perform your own"] + #[doc = " actions for the command after calling this function."] + pub fn android_app_pre_exec_cmd(android_app: *mut android_app, cmd: i8); +} +extern "C" { + #[doc = " Call with the command returned by android_app_read_cmd() to do the"] + #[doc = " final post-processing of the given command. You must have done your own"] + #[doc = " actions for the command before calling this function."] + pub fn android_app_post_exec_cmd(android_app: *mut android_app, cmd: i8); +} +extern "C" { + #[doc = " Call this before processing input events to get the events buffer."] + #[doc = " The function returns NULL if there are no events to process."] + pub fn android_app_swap_input_buffers( + android_app: *mut android_app, + ) -> *mut android_input_buffer; +} +extern "C" { + #[doc = " Clear the array of motion events that were waiting to be handled, and release"] + #[doc = " each of them."] + #[doc = ""] + #[doc = " This method should be called after you have processed the motion events in"] + #[doc = " your game loop. You should handle events at each iteration of your game loop."] + pub fn android_app_clear_motion_events(inputBuffer: *mut android_input_buffer); +} +extern "C" { + #[doc = " Clear the array of key events that were waiting to be handled, and release"] + #[doc = " each of them."] + #[doc = ""] + #[doc = " This method should be called after you have processed the key up events in"] + #[doc = " your game loop. You should handle events at each iteration of your game loop."] + pub fn android_app_clear_key_events(inputBuffer: *mut android_input_buffer); +} +extern "C" { + #[doc = " Set the filter to use when processing key events."] + #[doc = " Any events for which the filter returns false will be ignored by"] + #[doc = " android_native_app_glue. If filter is set to NULL, no filtering is done."] + #[doc = ""] + #[doc = " The default key filter will filter out volume and camera button presses."] + pub fn android_app_set_key_event_filter( + app: *mut android_app, + filter: android_key_event_filter, + ); +} +extern "C" { + #[doc = " Set the filter to use when processing touch and motion events."] + #[doc = " Any events for which the filter returns false will be ignored by"] + #[doc = " android_native_app_glue. If filter is set to NULL, no filtering is done."] + #[doc = ""] + #[doc = " Note that the default motion event filter will only allow touchscreen events"] + #[doc = " through, in order to mimic NativeActivity's behaviour, so for controller"] + #[doc = " events to be passed to the app, set the filter to NULL."] + pub fn android_app_set_motion_event_filter( + app: *mut android_app, + filter: android_motion_event_filter, + ); +} +pub type __uint128_t = u128; diff --git a/game-activity/src/ffi_arm.rs b/game-activity/src/ffi_arm.rs new file mode 100755 index 0000000..17a2c3f --- /dev/null +++ b/game-activity/src/ffi_arm.rs @@ -0,0 +1,8993 @@ +/* automatically generated by rust-bindgen 0.59.2 */ + +#[repr(C)] +#[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] +pub struct __BindgenBitfieldUnit { + storage: Storage, +} +impl __BindgenBitfieldUnit { + #[inline] + pub const fn new(storage: Storage) -> Self { + Self { storage } + } +} +impl __BindgenBitfieldUnit +where + Storage: AsRef<[u8]> + AsMut<[u8]>, +{ + #[inline] + pub fn get_bit(&self, index: usize) -> bool { + debug_assert!(index / 8 < self.storage.as_ref().len()); + let byte_index = index / 8; + let byte = self.storage.as_ref()[byte_index]; + let bit_index = if cfg!(target_endian = "big") { + 7 - (index % 8) + } else { + index % 8 + }; + let mask = 1 << bit_index; + byte & mask == mask + } + #[inline] + pub fn set_bit(&mut self, index: usize, val: bool) { + debug_assert!(index / 8 < self.storage.as_ref().len()); + let byte_index = index / 8; + let byte = &mut self.storage.as_mut()[byte_index]; + let bit_index = if cfg!(target_endian = "big") { + 7 - (index % 8) + } else { + index % 8 + }; + let mask = 1 << bit_index; + if val { + *byte |= mask; + } else { + *byte &= !mask; + } + } + #[inline] + pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { + debug_assert!(bit_width <= 64); + debug_assert!(bit_offset / 8 < self.storage.as_ref().len()); + debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len()); + let mut val = 0; + for i in 0..(bit_width as usize) { + if self.get_bit(i + bit_offset) { + let index = if cfg!(target_endian = "big") { + bit_width as usize - 1 - i + } else { + i + }; + val |= 1 << index; + } + } + val + } + #[inline] + pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) { + debug_assert!(bit_width <= 64); + debug_assert!(bit_offset / 8 < self.storage.as_ref().len()); + debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len()); + for i in 0..(bit_width as usize) { + let mask = 1 << i; + let val_bit_is_set = val & mask == mask; + let index = if cfg!(target_endian = "big") { + bit_width as usize - 1 - i + } else { + i + }; + self.set_bit(index + bit_offset, val_bit_is_set); + } + } +} +pub const __BIONIC__: u32 = 1; +pub const __WORDSIZE: u32 = 32; +pub const __bos_level: u32 = 0; +pub const __ANDROID_API_FUTURE__: u32 = 10000; +pub const __ANDROID_API__: u32 = 10000; +pub const __ANDROID_API_G__: u32 = 9; +pub const __ANDROID_API_I__: u32 = 14; +pub const __ANDROID_API_J__: u32 = 16; +pub const __ANDROID_API_J_MR1__: u32 = 17; +pub const __ANDROID_API_J_MR2__: u32 = 18; +pub const __ANDROID_API_K__: u32 = 19; +pub const __ANDROID_API_L__: u32 = 21; +pub const __ANDROID_API_L_MR1__: u32 = 22; +pub const __ANDROID_API_M__: u32 = 23; +pub const __ANDROID_API_N__: u32 = 24; +pub const __ANDROID_API_N_MR1__: u32 = 25; +pub const __ANDROID_API_O__: u32 = 26; +pub const __ANDROID_API_O_MR1__: u32 = 27; +pub const __ANDROID_API_P__: u32 = 28; +pub const __ANDROID_API_Q__: u32 = 29; +pub const __ANDROID_API_R__: u32 = 30; +pub const __NDK_MAJOR__: u32 = 21; +pub const __NDK_MINOR__: u32 = 3; +pub const __NDK_BETA__: u32 = 0; +pub const __NDK_BUILD__: u32 = 6528147; +pub const __NDK_CANARY__: u32 = 0; +pub const WCHAR_MIN: u8 = 0u8; +pub const INT8_MIN: i32 = -128; +pub const INT8_MAX: u32 = 127; +pub const INT_LEAST8_MIN: i32 = -128; +pub const INT_LEAST8_MAX: u32 = 127; +pub const INT_FAST8_MIN: i32 = -128; +pub const INT_FAST8_MAX: u32 = 127; +pub const UINT8_MAX: u32 = 255; +pub const UINT_LEAST8_MAX: u32 = 255; +pub const UINT_FAST8_MAX: u32 = 255; +pub const INT16_MIN: i32 = -32768; +pub const INT16_MAX: u32 = 32767; +pub const INT_LEAST16_MIN: i32 = -32768; +pub const INT_LEAST16_MAX: u32 = 32767; +pub const UINT16_MAX: u32 = 65535; +pub const UINT_LEAST16_MAX: u32 = 65535; +pub const INT32_MIN: i32 = -2147483648; +pub const INT32_MAX: u32 = 2147483647; +pub const INT_LEAST32_MIN: i32 = -2147483648; +pub const INT_LEAST32_MAX: u32 = 2147483647; +pub const INT_FAST32_MIN: i32 = -2147483648; +pub const INT_FAST32_MAX: u32 = 2147483647; +pub const UINT32_MAX: u32 = 4294967295; +pub const UINT_LEAST32_MAX: u32 = 4294967295; +pub const UINT_FAST32_MAX: u32 = 4294967295; +pub const SIG_ATOMIC_MAX: u32 = 2147483647; +pub const SIG_ATOMIC_MIN: i32 = -2147483648; +pub const WINT_MAX: u32 = 4294967295; +pub const WINT_MIN: u32 = 0; +pub const INTPTR_MIN: i32 = -2147483648; +pub const INTPTR_MAX: u32 = 2147483647; +pub const UINTPTR_MAX: u32 = 4294967295; +pub const PTRDIFF_MIN: i32 = -2147483648; +pub const PTRDIFF_MAX: u32 = 2147483647; +pub const SIZE_MAX: u32 = 4294967295; +pub const __BITS_PER_LONG: u32 = 32; +pub const __FD_SETSIZE: u32 = 1024; +pub const AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT: u32 = 8; +pub const __PRI_64_prefix: &[u8; 3usize] = b"ll\0"; +pub const PRId8: &[u8; 2usize] = b"d\0"; +pub const PRId16: &[u8; 2usize] = b"d\0"; +pub const PRId32: &[u8; 2usize] = b"d\0"; +pub const PRId64: &[u8; 4usize] = b"lld\0"; +pub const PRIdLEAST8: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST16: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST32: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST64: &[u8; 4usize] = b"lld\0"; +pub const PRIdFAST8: &[u8; 2usize] = b"d\0"; +pub const PRIdFAST64: &[u8; 4usize] = b"lld\0"; +pub const PRIdMAX: &[u8; 3usize] = b"jd\0"; +pub const PRIi8: &[u8; 2usize] = b"i\0"; +pub const PRIi16: &[u8; 2usize] = b"i\0"; +pub const PRIi32: &[u8; 2usize] = b"i\0"; +pub const PRIi64: &[u8; 4usize] = b"lli\0"; +pub const PRIiLEAST8: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST16: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST32: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST64: &[u8; 4usize] = b"lli\0"; +pub const PRIiFAST8: &[u8; 2usize] = b"i\0"; +pub const PRIiFAST64: &[u8; 4usize] = b"lli\0"; +pub const PRIiMAX: &[u8; 3usize] = b"ji\0"; +pub const PRIo8: &[u8; 2usize] = b"o\0"; +pub const PRIo16: &[u8; 2usize] = b"o\0"; +pub const PRIo32: &[u8; 2usize] = b"o\0"; +pub const PRIo64: &[u8; 4usize] = b"llo\0"; +pub const PRIoLEAST8: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST16: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST32: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST64: &[u8; 4usize] = b"llo\0"; +pub const PRIoFAST8: &[u8; 2usize] = b"o\0"; +pub const PRIoFAST64: &[u8; 4usize] = b"llo\0"; +pub const PRIoMAX: &[u8; 3usize] = b"jo\0"; +pub const PRIu8: &[u8; 2usize] = b"u\0"; +pub const PRIu16: &[u8; 2usize] = b"u\0"; +pub const PRIu32: &[u8; 2usize] = b"u\0"; +pub const PRIu64: &[u8; 4usize] = b"llu\0"; +pub const PRIuLEAST8: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST16: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST32: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST64: &[u8; 4usize] = b"llu\0"; +pub const PRIuFAST8: &[u8; 2usize] = b"u\0"; +pub const PRIuFAST64: &[u8; 4usize] = b"llu\0"; +pub const PRIuMAX: &[u8; 3usize] = b"ju\0"; +pub const PRIx8: &[u8; 2usize] = b"x\0"; +pub const PRIx16: &[u8; 2usize] = b"x\0"; +pub const PRIx32: &[u8; 2usize] = b"x\0"; +pub const PRIx64: &[u8; 4usize] = b"llx\0"; +pub const PRIxLEAST8: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST16: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST32: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST64: &[u8; 4usize] = b"llx\0"; +pub const PRIxFAST8: &[u8; 2usize] = b"x\0"; +pub const PRIxFAST64: &[u8; 4usize] = b"llx\0"; +pub const PRIxMAX: &[u8; 3usize] = b"jx\0"; +pub const PRIX8: &[u8; 2usize] = b"X\0"; +pub const PRIX16: &[u8; 2usize] = b"X\0"; +pub const PRIX32: &[u8; 2usize] = b"X\0"; +pub const PRIX64: &[u8; 4usize] = b"llX\0"; +pub const PRIXLEAST8: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST16: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST32: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST64: &[u8; 4usize] = b"llX\0"; +pub const PRIXFAST8: &[u8; 2usize] = b"X\0"; +pub const PRIXFAST64: &[u8; 4usize] = b"llX\0"; +pub const PRIXMAX: &[u8; 3usize] = b"jX\0"; +pub const SCNd8: &[u8; 4usize] = b"hhd\0"; +pub const SCNd16: &[u8; 3usize] = b"hd\0"; +pub const SCNd32: &[u8; 2usize] = b"d\0"; +pub const SCNd64: &[u8; 4usize] = b"lld\0"; +pub const SCNdLEAST8: &[u8; 4usize] = b"hhd\0"; +pub const SCNdLEAST16: &[u8; 3usize] = b"hd\0"; +pub const SCNdLEAST32: &[u8; 2usize] = b"d\0"; +pub const SCNdLEAST64: &[u8; 4usize] = b"lld\0"; +pub const SCNdFAST8: &[u8; 4usize] = b"hhd\0"; +pub const SCNdFAST64: &[u8; 4usize] = b"lld\0"; +pub const SCNdMAX: &[u8; 3usize] = b"jd\0"; +pub const SCNi8: &[u8; 4usize] = b"hhi\0"; +pub const SCNi16: &[u8; 3usize] = b"hi\0"; +pub const SCNi32: &[u8; 2usize] = b"i\0"; +pub const SCNi64: &[u8; 4usize] = b"lli\0"; +pub const SCNiLEAST8: &[u8; 4usize] = b"hhi\0"; +pub const SCNiLEAST16: &[u8; 3usize] = b"hi\0"; +pub const SCNiLEAST32: &[u8; 2usize] = b"i\0"; +pub const SCNiLEAST64: &[u8; 4usize] = b"lli\0"; +pub const SCNiFAST8: &[u8; 4usize] = b"hhi\0"; +pub const SCNiFAST64: &[u8; 4usize] = b"lli\0"; +pub const SCNiMAX: &[u8; 3usize] = b"ji\0"; +pub const SCNo8: &[u8; 4usize] = b"hho\0"; +pub const SCNo16: &[u8; 3usize] = b"ho\0"; +pub const SCNo32: &[u8; 2usize] = b"o\0"; +pub const SCNo64: &[u8; 4usize] = b"llo\0"; +pub const SCNoLEAST8: &[u8; 4usize] = b"hho\0"; +pub const SCNoLEAST16: &[u8; 3usize] = b"ho\0"; +pub const SCNoLEAST32: &[u8; 2usize] = b"o\0"; +pub const SCNoLEAST64: &[u8; 4usize] = b"llo\0"; +pub const SCNoFAST8: &[u8; 4usize] = b"hho\0"; +pub const SCNoFAST64: &[u8; 4usize] = b"llo\0"; +pub const SCNoMAX: &[u8; 3usize] = b"jo\0"; +pub const SCNu8: &[u8; 4usize] = b"hhu\0"; +pub const SCNu16: &[u8; 3usize] = b"hu\0"; +pub const SCNu32: &[u8; 2usize] = b"u\0"; +pub const SCNu64: &[u8; 4usize] = b"llu\0"; +pub const SCNuLEAST8: &[u8; 4usize] = b"hhu\0"; +pub const SCNuLEAST16: &[u8; 3usize] = b"hu\0"; +pub const SCNuLEAST32: &[u8; 2usize] = b"u\0"; +pub const SCNuLEAST64: &[u8; 4usize] = b"llu\0"; +pub const SCNuFAST8: &[u8; 4usize] = b"hhu\0"; +pub const SCNuFAST64: &[u8; 4usize] = b"llu\0"; +pub const SCNuMAX: &[u8; 3usize] = b"ju\0"; +pub const SCNx8: &[u8; 4usize] = b"hhx\0"; +pub const SCNx16: &[u8; 3usize] = b"hx\0"; +pub const SCNx32: &[u8; 2usize] = b"x\0"; +pub const SCNx64: &[u8; 4usize] = b"llx\0"; +pub const SCNxLEAST8: &[u8; 4usize] = b"hhx\0"; +pub const SCNxLEAST16: &[u8; 3usize] = b"hx\0"; +pub const SCNxLEAST32: &[u8; 2usize] = b"x\0"; +pub const SCNxLEAST64: &[u8; 4usize] = b"llx\0"; +pub const SCNxFAST8: &[u8; 4usize] = b"hhx\0"; +pub const SCNxFAST64: &[u8; 4usize] = b"llx\0"; +pub const SCNxMAX: &[u8; 3usize] = b"jx\0"; +pub const __GNUC_VA_LIST: u32 = 1; +pub const true_: u32 = 1; +pub const false_: u32 = 0; +pub const __bool_true_false_are_defined: u32 = 1; +pub const GAME_ACTIVITY_POINTER_INFO_AXIS_COUNT: u32 = 48; +pub const GAMEACTIVITY_MAX_NUM_POINTERS_IN_MOTION_EVENT: u32 = 8; +pub const POLLIN: u32 = 1; +pub const POLLPRI: u32 = 2; +pub const POLLOUT: u32 = 4; +pub const POLLERR: u32 = 8; +pub const POLLHUP: u32 = 16; +pub const POLLNVAL: u32 = 32; +pub const POLLRDNORM: u32 = 64; +pub const POLLRDBAND: u32 = 128; +pub const POLLWRNORM: u32 = 256; +pub const POLLWRBAND: u32 = 512; +pub const POLLMSG: u32 = 1024; +pub const POLLREMOVE: u32 = 4096; +pub const POLLRDHUP: u32 = 8192; +pub const NR_OPEN: u32 = 1024; +pub const NGROUPS_MAX: u32 = 65536; +pub const ARG_MAX: u32 = 131072; +pub const LINK_MAX: u32 = 127; +pub const MAX_CANON: u32 = 255; +pub const MAX_INPUT: u32 = 255; +pub const NAME_MAX: u32 = 255; +pub const PATH_MAX: u32 = 4096; +pub const PIPE_BUF: u32 = 4096; +pub const XATTR_NAME_MAX: u32 = 255; +pub const XATTR_SIZE_MAX: u32 = 65536; +pub const XATTR_LIST_MAX: u32 = 65536; +pub const RTSIG_MAX: u32 = 32; +pub const PASS_MAX: u32 = 128; +pub const NL_ARGMAX: u32 = 9; +pub const NL_LANGMAX: u32 = 14; +pub const NL_MSGMAX: u32 = 32767; +pub const NL_NMAX: u32 = 1; +pub const NL_SETMAX: u32 = 255; +pub const NL_TEXTMAX: u32 = 255; +pub const TMP_MAX: u32 = 308915776; +pub const CHAR_BIT: u32 = 8; +pub const LONG_BIT: u32 = 32; +pub const WORD_BIT: u32 = 32; +pub const SCHAR_MAX: u32 = 127; +pub const SCHAR_MIN: i32 = -128; +pub const UCHAR_MAX: u32 = 255; +pub const CHAR_MIN: u32 = 0; +pub const CHAR_MAX: u32 = 255; +pub const USHRT_MAX: u32 = 65535; +pub const SHRT_MAX: u32 = 32767; +pub const SHRT_MIN: i32 = -32768; +pub const UINT_MAX: u32 = 4294967295; +pub const INT_MAX: u32 = 2147483647; +pub const INT_MIN: i32 = -2147483648; +pub const ULONG_MAX: u32 = 4294967295; +pub const LONG_MAX: u32 = 2147483647; +pub const LONG_MIN: i32 = -2147483648; +pub const ULLONG_MAX: i32 = -1; +pub const LLONG_MAX: u64 = 9223372036854775807; +pub const LLONG_MIN: i64 = -9223372036854775808; +pub const LONG_LONG_MIN: i64 = -9223372036854775808; +pub const LONG_LONG_MAX: u64 = 9223372036854775807; +pub const ULONG_LONG_MAX: i32 = -1; +pub const UID_MAX: u32 = 4294967295; +pub const GID_MAX: u32 = 4294967295; +pub const SIZE_T_MAX: u32 = 4294967295; +pub const SSIZE_MAX: u32 = 2147483647; +pub const MB_LEN_MAX: u32 = 4; +pub const NZERO: u32 = 20; +pub const IOV_MAX: u32 = 1024; +pub const SEM_VALUE_MAX: u32 = 1073741823; +pub const _POSIX_VERSION: u32 = 200809; +pub const _POSIX2_VERSION: u32 = 200809; +pub const _XOPEN_VERSION: u32 = 700; +pub const __BIONIC_POSIX_FEATURE_MISSING: i32 = -1; +pub const _POSIX_ASYNCHRONOUS_IO: i32 = -1; +pub const _POSIX_CHOWN_RESTRICTED: u32 = 1; +pub const _POSIX_CPUTIME: u32 = 200809; +pub const _POSIX_FSYNC: u32 = 200809; +pub const _POSIX_IPV6: u32 = 200809; +pub const _POSIX_MAPPED_FILES: u32 = 200809; +pub const _POSIX_MEMLOCK_RANGE: u32 = 200809; +pub const _POSIX_MEMORY_PROTECTION: u32 = 200809; +pub const _POSIX_MESSAGE_PASSING: i32 = -1; +pub const _POSIX_MONOTONIC_CLOCK: u32 = 200809; +pub const _POSIX_NO_TRUNC: u32 = 1; +pub const _POSIX_PRIORITIZED_IO: i32 = -1; +pub const _POSIX_PRIORITY_SCHEDULING: u32 = 200809; +pub const _POSIX_RAW_SOCKETS: u32 = 200809; +pub const _POSIX_READER_WRITER_LOCKS: u32 = 200809; +pub const _POSIX_REGEXP: u32 = 1; +pub const _POSIX_SAVED_IDS: u32 = 1; +pub const _POSIX_SEMAPHORES: u32 = 200809; +pub const _POSIX_SHARED_MEMORY_OBJECTS: i32 = -1; +pub const _POSIX_SHELL: u32 = 1; +pub const _POSIX_SPORADIC_SERVER: i32 = -1; +pub const _POSIX_SYNCHRONIZED_IO: u32 = 200809; +pub const _POSIX_THREAD_ATTR_STACKADDR: u32 = 200809; +pub const _POSIX_THREAD_ATTR_STACKSIZE: u32 = 200809; +pub const _POSIX_THREAD_CPUTIME: u32 = 200809; +pub const _POSIX_THREAD_PRIO_INHERIT: i32 = -1; +pub const _POSIX_THREAD_PRIO_PROTECT: i32 = -1; +pub const _POSIX_THREAD_PRIORITY_SCHEDULING: u32 = 200809; +pub const _POSIX_THREAD_PROCESS_SHARED: u32 = 200809; +pub const _POSIX_THREAD_ROBUST_PRIO_INHERIT: i32 = -1; +pub const _POSIX_THREAD_ROBUST_PRIO_PROTECT: i32 = -1; +pub const _POSIX_THREAD_SAFE_FUNCTIONS: u32 = 200809; +pub const _POSIX_THREAD_SPORADIC_SERVER: i32 = -1; +pub const _POSIX_THREADS: u32 = 200809; +pub const _POSIX_TIMERS: u32 = 200809; +pub const _POSIX_TRACE: i32 = -1; +pub const _POSIX_TRACE_EVENT_FILTER: i32 = -1; +pub const _POSIX_TRACE_INHERIT: i32 = -1; +pub const _POSIX_TRACE_LOG: i32 = -1; +pub const _POSIX_TYPED_MEMORY_OBJECTS: i32 = -1; +pub const _POSIX_VDISABLE: u8 = 0u8; +pub const _POSIX2_C_BIND: u32 = 200809; +pub const _POSIX2_C_DEV: i32 = -1; +pub const _POSIX2_CHAR_TERM: u32 = 200809; +pub const _POSIX2_FORT_DEV: i32 = -1; +pub const _POSIX2_FORT_RUN: i32 = -1; +pub const _POSIX2_LOCALEDEF: i32 = -1; +pub const _POSIX2_SW_DEV: i32 = -1; +pub const _POSIX2_UPE: i32 = -1; +pub const _POSIX_V7_ILP32_OFF32: u32 = 1; +pub const _POSIX_V7_ILP32_OFFBIG: i32 = -1; +pub const _POSIX_V7_LP64_OFF64: i32 = -1; +pub const _POSIX_V7_LPBIG_OFFBIG: i32 = -1; +pub const _XOPEN_CRYPT: i32 = -1; +pub const _XOPEN_ENH_I18N: u32 = 1; +pub const _XOPEN_LEGACY: i32 = -1; +pub const _XOPEN_REALTIME: u32 = 1; +pub const _XOPEN_REALTIME_THREADS: u32 = 1; +pub const _XOPEN_SHM: u32 = 1; +pub const _XOPEN_STREAMS: i32 = -1; +pub const _XOPEN_UNIX: u32 = 1; +pub const _POSIX_AIO_LISTIO_MAX: u32 = 2; +pub const _POSIX_AIO_MAX: u32 = 1; +pub const _POSIX_ARG_MAX: u32 = 4096; +pub const _POSIX_CHILD_MAX: u32 = 25; +pub const _POSIX_CLOCKRES_MIN: u32 = 20000000; +pub const _POSIX_DELAYTIMER_MAX: u32 = 32; +pub const _POSIX_HOST_NAME_MAX: u32 = 255; +pub const _POSIX_LINK_MAX: u32 = 8; +pub const _POSIX_LOGIN_NAME_MAX: u32 = 9; +pub const _POSIX_MAX_CANON: u32 = 255; +pub const _POSIX_MAX_INPUT: u32 = 255; +pub const _POSIX_MQ_OPEN_MAX: u32 = 8; +pub const _POSIX_MQ_PRIO_MAX: u32 = 32; +pub const _POSIX_NAME_MAX: u32 = 14; +pub const _POSIX_NGROUPS_MAX: u32 = 8; +pub const _POSIX_OPEN_MAX: u32 = 20; +pub const _POSIX_PATH_MAX: u32 = 256; +pub const _POSIX_PIPE_BUF: u32 = 512; +pub const _POSIX_RE_DUP_MAX: u32 = 255; +pub const _POSIX_RTSIG_MAX: u32 = 8; +pub const _POSIX_SEM_NSEMS_MAX: u32 = 256; +pub const _POSIX_SEM_VALUE_MAX: u32 = 32767; +pub const _POSIX_SIGQUEUE_MAX: u32 = 32; +pub const _POSIX_SSIZE_MAX: u32 = 32767; +pub const _POSIX_STREAM_MAX: u32 = 8; +pub const _POSIX_SS_REPL_MAX: u32 = 4; +pub const _POSIX_SYMLINK_MAX: u32 = 255; +pub const _POSIX_SYMLOOP_MAX: u32 = 8; +pub const _POSIX_THREAD_DESTRUCTOR_ITERATIONS: u32 = 4; +pub const _POSIX_THREAD_KEYS_MAX: u32 = 128; +pub const _POSIX_THREAD_THREADS_MAX: u32 = 64; +pub const _POSIX_TIMER_MAX: u32 = 32; +pub const _POSIX_TRACE_EVENT_NAME_MAX: u32 = 30; +pub const _POSIX_TRACE_NAME_MAX: u32 = 8; +pub const _POSIX_TRACE_SYS_MAX: u32 = 8; +pub const _POSIX_TRACE_USER_EVENT_MAX: u32 = 32; +pub const _POSIX_TTY_NAME_MAX: u32 = 9; +pub const _POSIX_TZNAME_MAX: u32 = 6; +pub const _POSIX2_BC_BASE_MAX: u32 = 99; +pub const _POSIX2_BC_DIM_MAX: u32 = 2048; +pub const _POSIX2_BC_SCALE_MAX: u32 = 99; +pub const _POSIX2_BC_STRING_MAX: u32 = 1000; +pub const _POSIX2_CHARCLASS_NAME_MAX: u32 = 14; +pub const _POSIX2_COLL_WEIGHTS_MAX: u32 = 2; +pub const _POSIX2_EXPR_NEST_MAX: u32 = 32; +pub const _POSIX2_LINE_MAX: u32 = 2048; +pub const _POSIX2_RE_DUP_MAX: u32 = 255; +pub const _XOPEN_IOV_MAX: u32 = 16; +pub const _XOPEN_NAME_MAX: u32 = 255; +pub const _XOPEN_PATH_MAX: u32 = 1024; +pub const HOST_NAME_MAX: u32 = 255; +pub const LOGIN_NAME_MAX: u32 = 256; +pub const TTY_NAME_MAX: u32 = 32; +pub const PTHREAD_DESTRUCTOR_ITERATIONS: u32 = 4; +pub const PTHREAD_KEYS_MAX: u32 = 128; +pub const _KERNEL_NSIG: u32 = 32; +pub const SIGHUP: u32 = 1; +pub const SIGINT: u32 = 2; +pub const SIGQUIT: u32 = 3; +pub const SIGILL: u32 = 4; +pub const SIGTRAP: u32 = 5; +pub const SIGABRT: u32 = 6; +pub const SIGIOT: u32 = 6; +pub const SIGBUS: u32 = 7; +pub const SIGFPE: u32 = 8; +pub const SIGKILL: u32 = 9; +pub const SIGUSR1: u32 = 10; +pub const SIGSEGV: u32 = 11; +pub const SIGUSR2: u32 = 12; +pub const SIGPIPE: u32 = 13; +pub const SIGALRM: u32 = 14; +pub const SIGTERM: u32 = 15; +pub const SIGSTKFLT: u32 = 16; +pub const SIGCHLD: u32 = 17; +pub const SIGCONT: u32 = 18; +pub const SIGSTOP: u32 = 19; +pub const SIGTSTP: u32 = 20; +pub const SIGTTIN: u32 = 21; +pub const SIGTTOU: u32 = 22; +pub const SIGURG: u32 = 23; +pub const SIGXCPU: u32 = 24; +pub const SIGXFSZ: u32 = 25; +pub const SIGVTALRM: u32 = 26; +pub const SIGPROF: u32 = 27; +pub const SIGWINCH: u32 = 28; +pub const SIGIO: u32 = 29; +pub const SIGPOLL: u32 = 29; +pub const SIGPWR: u32 = 30; +pub const SIGSYS: u32 = 31; +pub const SIGUNUSED: u32 = 31; +pub const __SIGRTMIN: u32 = 32; +pub const SIGSWI: u32 = 32; +pub const SA_NOCLDSTOP: u32 = 1; +pub const SA_NOCLDWAIT: u32 = 2; +pub const SA_SIGINFO: u32 = 4; +pub const SA_THIRTYTWO: u32 = 33554432; +pub const SA_RESTORER: u32 = 67108864; +pub const SA_ONSTACK: u32 = 134217728; +pub const SA_RESTART: u32 = 268435456; +pub const SA_NODEFER: u32 = 1073741824; +pub const SA_RESETHAND: u32 = 2147483648; +pub const SA_NOMASK: u32 = 1073741824; +pub const SA_ONESHOT: u32 = 2147483648; +pub const MINSIGSTKSZ: u32 = 2048; +pub const SIGSTKSZ: u32 = 8192; +pub const SIG_BLOCK: u32 = 0; +pub const SIG_UNBLOCK: u32 = 1; +pub const SIG_SETMASK: u32 = 2; +pub const SI_MAX_SIZE: u32 = 128; +pub const SI_USER: u32 = 0; +pub const SI_KERNEL: u32 = 128; +pub const SI_QUEUE: i32 = -1; +pub const SI_TIMER: i32 = -2; +pub const SI_MESGQ: i32 = -3; +pub const SI_ASYNCIO: i32 = -4; +pub const SI_SIGIO: i32 = -5; +pub const SI_TKILL: i32 = -6; +pub const SI_DETHREAD: i32 = -7; +pub const SI_ASYNCNL: i32 = -60; +pub const ILL_ILLOPC: u32 = 1; +pub const ILL_ILLOPN: u32 = 2; +pub const ILL_ILLADR: u32 = 3; +pub const ILL_ILLTRP: u32 = 4; +pub const ILL_PRVOPC: u32 = 5; +pub const ILL_PRVREG: u32 = 6; +pub const ILL_COPROC: u32 = 7; +pub const ILL_BADSTK: u32 = 8; +pub const ILL_BADIADDR: u32 = 9; +pub const __ILL_BREAK: u32 = 10; +pub const __ILL_BNDMOD: u32 = 11; +pub const NSIGILL: u32 = 11; +pub const FPE_INTDIV: u32 = 1; +pub const FPE_INTOVF: u32 = 2; +pub const FPE_FLTDIV: u32 = 3; +pub const FPE_FLTOVF: u32 = 4; +pub const FPE_FLTUND: u32 = 5; +pub const FPE_FLTRES: u32 = 6; +pub const FPE_FLTINV: u32 = 7; +pub const FPE_FLTSUB: u32 = 8; +pub const __FPE_DECOVF: u32 = 9; +pub const __FPE_DECDIV: u32 = 10; +pub const __FPE_DECERR: u32 = 11; +pub const __FPE_INVASC: u32 = 12; +pub const __FPE_INVDEC: u32 = 13; +pub const FPE_FLTUNK: u32 = 14; +pub const FPE_CONDTRAP: u32 = 15; +pub const NSIGFPE: u32 = 15; +pub const SEGV_MAPERR: u32 = 1; +pub const SEGV_ACCERR: u32 = 2; +pub const SEGV_BNDERR: u32 = 3; +pub const SEGV_PKUERR: u32 = 4; +pub const SEGV_ACCADI: u32 = 5; +pub const SEGV_ADIDERR: u32 = 6; +pub const SEGV_ADIPERR: u32 = 7; +pub const NSIGSEGV: u32 = 7; +pub const BUS_ADRALN: u32 = 1; +pub const BUS_ADRERR: u32 = 2; +pub const BUS_OBJERR: u32 = 3; +pub const BUS_MCEERR_AR: u32 = 4; +pub const BUS_MCEERR_AO: u32 = 5; +pub const NSIGBUS: u32 = 5; +pub const TRAP_BRKPT: u32 = 1; +pub const TRAP_TRACE: u32 = 2; +pub const TRAP_BRANCH: u32 = 3; +pub const TRAP_HWBKPT: u32 = 4; +pub const TRAP_UNK: u32 = 5; +pub const NSIGTRAP: u32 = 5; +pub const CLD_EXITED: u32 = 1; +pub const CLD_KILLED: u32 = 2; +pub const CLD_DUMPED: u32 = 3; +pub const CLD_TRAPPED: u32 = 4; +pub const CLD_STOPPED: u32 = 5; +pub const CLD_CONTINUED: u32 = 6; +pub const NSIGCHLD: u32 = 6; +pub const POLL_IN: u32 = 1; +pub const POLL_OUT: u32 = 2; +pub const POLL_MSG: u32 = 3; +pub const POLL_ERR: u32 = 4; +pub const POLL_PRI: u32 = 5; +pub const POLL_HUP: u32 = 6; +pub const NSIGPOLL: u32 = 6; +pub const SYS_SECCOMP: u32 = 1; +pub const NSIGSYS: u32 = 1; +pub const EMT_TAGOVF: u32 = 1; +pub const NSIGEMT: u32 = 1; +pub const SIGEV_SIGNAL: u32 = 0; +pub const SIGEV_NONE: u32 = 1; +pub const SIGEV_THREAD: u32 = 2; +pub const SIGEV_THREAD_ID: u32 = 4; +pub const SIGEV_MAX_SIZE: u32 = 64; +pub const SS_ONSTACK: u32 = 1; +pub const SS_DISABLE: u32 = 2; +pub const SS_AUTODISARM: u32 = 2147483648; +pub const SS_FLAG_BITS: u32 = 2147483648; +pub const _KERNEL__NSIG: u32 = 64; +pub const _NSIG: u32 = 65; +pub const NSIG: u32 = 65; +pub const PAGE_SIZE: u32 = 4096; +pub const PAGE_MASK: i32 = -4096; +pub const NGREG: u32 = 18; +pub const ITIMER_REAL: u32 = 0; +pub const ITIMER_VIRTUAL: u32 = 1; +pub const ITIMER_PROF: u32 = 2; +pub const CLOCK_REALTIME: u32 = 0; +pub const CLOCK_MONOTONIC: u32 = 1; +pub const CLOCK_PROCESS_CPUTIME_ID: u32 = 2; +pub const CLOCK_THREAD_CPUTIME_ID: u32 = 3; +pub const CLOCK_MONOTONIC_RAW: u32 = 4; +pub const CLOCK_REALTIME_COARSE: u32 = 5; +pub const CLOCK_MONOTONIC_COARSE: u32 = 6; +pub const CLOCK_BOOTTIME: u32 = 7; +pub const CLOCK_REALTIME_ALARM: u32 = 8; +pub const CLOCK_BOOTTIME_ALARM: u32 = 9; +pub const CLOCK_SGI_CYCLE: u32 = 10; +pub const CLOCK_TAI: u32 = 11; +pub const MAX_CLOCKS: u32 = 16; +pub const CLOCKS_MASK: u32 = 1; +pub const CLOCKS_MONO: u32 = 1; +pub const TIMER_ABSTIME: u32 = 1; +pub const FD_SETSIZE: u32 = 1024; +pub const CLOCKS_PER_SEC: u32 = 1000000; +pub const TIME_UTC: u32 = 1; +pub const CSIGNAL: u32 = 255; +pub const CLONE_VM: u32 = 256; +pub const CLONE_FS: u32 = 512; +pub const CLONE_FILES: u32 = 1024; +pub const CLONE_SIGHAND: u32 = 2048; +pub const CLONE_PIDFD: u32 = 4096; +pub const CLONE_PTRACE: u32 = 8192; +pub const CLONE_VFORK: u32 = 16384; +pub const CLONE_PARENT: u32 = 32768; +pub const CLONE_THREAD: u32 = 65536; +pub const CLONE_NEWNS: u32 = 131072; +pub const CLONE_SYSVSEM: u32 = 262144; +pub const CLONE_SETTLS: u32 = 524288; +pub const CLONE_PARENT_SETTID: u32 = 1048576; +pub const CLONE_CHILD_CLEARTID: u32 = 2097152; +pub const CLONE_DETACHED: u32 = 4194304; +pub const CLONE_UNTRACED: u32 = 8388608; +pub const CLONE_CHILD_SETTID: u32 = 16777216; +pub const CLONE_NEWCGROUP: u32 = 33554432; +pub const CLONE_NEWUTS: u32 = 67108864; +pub const CLONE_NEWIPC: u32 = 134217728; +pub const CLONE_NEWUSER: u32 = 268435456; +pub const CLONE_NEWPID: u32 = 536870912; +pub const CLONE_NEWNET: u32 = 1073741824; +pub const CLONE_IO: u32 = 2147483648; +pub const SCHED_NORMAL: u32 = 0; +pub const SCHED_FIFO: u32 = 1; +pub const SCHED_RR: u32 = 2; +pub const SCHED_BATCH: u32 = 3; +pub const SCHED_IDLE: u32 = 5; +pub const SCHED_DEADLINE: u32 = 6; +pub const SCHED_RESET_ON_FORK: u32 = 1073741824; +pub const SCHED_FLAG_RESET_ON_FORK: u32 = 1; +pub const SCHED_FLAG_RECLAIM: u32 = 2; +pub const SCHED_FLAG_DL_OVERRUN: u32 = 4; +pub const SCHED_FLAG_KEEP_POLICY: u32 = 8; +pub const SCHED_FLAG_KEEP_PARAMS: u32 = 16; +pub const SCHED_FLAG_UTIL_CLAMP_MIN: u32 = 32; +pub const SCHED_FLAG_UTIL_CLAMP_MAX: u32 = 64; +pub const SCHED_FLAG_KEEP_ALL: u32 = 24; +pub const SCHED_FLAG_UTIL_CLAMP: u32 = 96; +pub const SCHED_FLAG_ALL: u32 = 127; +pub const SCHED_OTHER: u32 = 0; +pub const PTHREAD_ONCE_INIT: u32 = 0; +pub const PTHREAD_BARRIER_SERIAL_THREAD: i32 = -1; +pub const PTHREAD_STACK_MIN: u32 = 8192; +pub const PTHREAD_CREATE_DETACHED: u32 = 1; +pub const PTHREAD_CREATE_JOINABLE: u32 = 0; +pub const PTHREAD_EXPLICIT_SCHED: u32 = 0; +pub const PTHREAD_INHERIT_SCHED: u32 = 1; +pub const PTHREAD_PRIO_NONE: u32 = 0; +pub const PTHREAD_PRIO_INHERIT: u32 = 1; +pub const PTHREAD_PROCESS_PRIVATE: u32 = 0; +pub const PTHREAD_PROCESS_SHARED: u32 = 1; +pub const PTHREAD_SCOPE_SYSTEM: u32 = 0; +pub const PTHREAD_SCOPE_PROCESS: u32 = 1; +pub const NATIVE_APP_GLUE_MAX_NUM_MOTION_EVENTS: u32 = 16; +pub const NATIVE_APP_GLUE_MAX_NUM_KEY_EVENTS: u32 = 4; +pub const NATIVE_APP_GLUE_MAX_INPUT_BUFFERS: u32 = 2; +extern "C" { + pub fn android_get_application_target_sdk_version() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn android_get_device_api_level() -> ::std::os::raw::c_int; +} +pub type size_t = ::std::os::raw::c_uint; +pub type wchar_t = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct max_align_t { + pub __clang_max_align_nonce1: ::std::os::raw::c_longlong, + pub __clang_max_align_nonce2: f64, +} +#[test] +fn bindgen_test_layout_max_align_t() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(max_align_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(max_align_t)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).__clang_max_align_nonce1 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(max_align_t), + "::", + stringify!(__clang_max_align_nonce1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).__clang_max_align_nonce2 as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(max_align_t), + "::", + stringify!(__clang_max_align_nonce2) + ) + ); +} +pub type __int8_t = ::std::os::raw::c_schar; +pub type __uint8_t = ::std::os::raw::c_uchar; +pub type __int16_t = ::std::os::raw::c_short; +pub type __uint16_t = ::std::os::raw::c_ushort; +pub type __int32_t = ::std::os::raw::c_int; +pub type __uint32_t = ::std::os::raw::c_uint; +pub type __int64_t = ::std::os::raw::c_longlong; +pub type __uint64_t = ::std::os::raw::c_ulonglong; +pub type __intptr_t = ::std::os::raw::c_int; +pub type __uintptr_t = ::std::os::raw::c_uint; +pub type int_least8_t = i8; +pub type uint_least8_t = u8; +pub type int_least16_t = i16; +pub type uint_least16_t = u16; +pub type int_least32_t = i32; +pub type uint_least32_t = u32; +pub type int_least64_t = i64; +pub type uint_least64_t = u64; +pub type int_fast8_t = i8; +pub type uint_fast8_t = u8; +pub type int_fast64_t = i64; +pub type uint_fast64_t = u64; +pub type int_fast16_t = i32; +pub type uint_fast16_t = u32; +pub type int_fast32_t = i32; +pub type uint_fast32_t = u32; +pub type uintmax_t = u64; +pub type intmax_t = i64; +pub type __s8 = ::std::os::raw::c_schar; +pub type __u8 = ::std::os::raw::c_uchar; +pub type __s16 = ::std::os::raw::c_short; +pub type __u16 = ::std::os::raw::c_ushort; +pub type __s32 = ::std::os::raw::c_int; +pub type __u32 = ::std::os::raw::c_uint; +pub type __s64 = ::std::os::raw::c_longlong; +pub type __u64 = ::std::os::raw::c_ulonglong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_fd_set { + pub fds_bits: [::std::os::raw::c_ulong; 32usize], +} +#[test] +fn bindgen_test_layout___kernel_fd_set() { + assert_eq!( + ::std::mem::size_of::<__kernel_fd_set>(), + 128usize, + concat!("Size of: ", stringify!(__kernel_fd_set)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_fd_set>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_fd_set)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_fd_set>())).fds_bits as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_fd_set), + "::", + stringify!(fds_bits) + ) + ); +} +pub type __kernel_sighandler_t = + ::std::option::Option; +pub type __kernel_key_t = ::std::os::raw::c_int; +pub type __kernel_mqd_t = ::std::os::raw::c_int; +pub type __kernel_mode_t = ::std::os::raw::c_ushort; +pub type __kernel_ipc_pid_t = ::std::os::raw::c_ushort; +pub type __kernel_uid_t = ::std::os::raw::c_ushort; +pub type __kernel_gid_t = ::std::os::raw::c_ushort; +pub type __kernel_old_dev_t = ::std::os::raw::c_ushort; +pub type __kernel_long_t = ::std::os::raw::c_long; +pub type __kernel_ulong_t = ::std::os::raw::c_ulong; +pub type __kernel_ino_t = __kernel_ulong_t; +pub type __kernel_pid_t = ::std::os::raw::c_int; +pub type __kernel_suseconds_t = __kernel_long_t; +pub type __kernel_daddr_t = ::std::os::raw::c_int; +pub type __kernel_uid32_t = ::std::os::raw::c_uint; +pub type __kernel_gid32_t = ::std::os::raw::c_uint; +pub type __kernel_old_uid_t = __kernel_uid_t; +pub type __kernel_old_gid_t = __kernel_gid_t; +pub type __kernel_size_t = ::std::os::raw::c_uint; +pub type __kernel_ssize_t = ::std::os::raw::c_int; +pub type __kernel_ptrdiff_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_fsid_t { + pub val: [::std::os::raw::c_int; 2usize], +} +#[test] +fn bindgen_test_layout___kernel_fsid_t() { + assert_eq!( + ::std::mem::size_of::<__kernel_fsid_t>(), + 8usize, + concat!("Size of: ", stringify!(__kernel_fsid_t)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_fsid_t>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_fsid_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_fsid_t>())).val as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_fsid_t), + "::", + stringify!(val) + ) + ); +} +pub type __kernel_off_t = __kernel_long_t; +pub type __kernel_loff_t = ::std::os::raw::c_longlong; +pub type __kernel_time_t = __kernel_long_t; +pub type __kernel_time64_t = ::std::os::raw::c_longlong; +pub type __kernel_clock_t = __kernel_long_t; +pub type __kernel_timer_t = ::std::os::raw::c_int; +pub type __kernel_clockid_t = ::std::os::raw::c_int; +pub type __kernel_caddr_t = *mut ::std::os::raw::c_char; +pub type __kernel_uid16_t = ::std::os::raw::c_ushort; +pub type __kernel_gid16_t = ::std::os::raw::c_ushort; +pub type __le16 = __u16; +pub type __be16 = __u16; +pub type __le32 = __u32; +pub type __be32 = __u32; +pub type __le64 = __u64; +pub type __be64 = __u64; +pub type __sum16 = __u16; +pub type __wsum = __u32; +pub type __poll_t = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_attr_t { + pub flags: u32, + pub stack_base: *mut ::std::os::raw::c_void, + pub stack_size: size_t, + pub guard_size: size_t, + pub sched_policy: i32, + pub sched_priority: i32, +} +#[test] +fn bindgen_test_layout_pthread_attr_t() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(pthread_attr_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_attr_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_base as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(stack_base) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_size as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(stack_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).guard_size as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(guard_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_policy as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(sched_policy) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_priority as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(sched_priority) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_barrier_t { + pub __private: [i32; 8usize], +} +#[test] +fn bindgen_test_layout_pthread_barrier_t() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(pthread_barrier_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_barrier_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_barrier_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_barrierattr_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_cond_t { + pub __private: [i32; 1usize], +} +#[test] +fn bindgen_test_layout_pthread_cond_t() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(pthread_cond_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_cond_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_cond_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_condattr_t = ::std::os::raw::c_long; +pub type pthread_key_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_mutex_t { + pub __private: [i32; 1usize], +} +#[test] +fn bindgen_test_layout_pthread_mutex_t() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(pthread_mutex_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_mutex_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_mutex_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_mutexattr_t = ::std::os::raw::c_long; +pub type pthread_once_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_rwlock_t { + pub __private: [i32; 10usize], +} +#[test] +fn bindgen_test_layout_pthread_rwlock_t() { + assert_eq!( + ::std::mem::size_of::(), + 40usize, + concat!("Size of: ", stringify!(pthread_rwlock_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_rwlock_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_rwlock_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_rwlockattr_t = ::std::os::raw::c_long; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_spinlock_t { + pub __private: [i32; 2usize], +} +#[test] +fn bindgen_test_layout_pthread_spinlock_t() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(pthread_spinlock_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_spinlock_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_spinlock_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_t = ::std::os::raw::c_long; +pub type __gid_t = __kernel_gid32_t; +pub type gid_t = __gid_t; +pub type __uid_t = __kernel_uid32_t; +pub type uid_t = __uid_t; +pub type __pid_t = __kernel_pid_t; +pub type pid_t = __pid_t; +pub type __id_t = u32; +pub type id_t = __id_t; +pub type blkcnt_t = ::std::os::raw::c_ulong; +pub type blksize_t = ::std::os::raw::c_ulong; +pub type caddr_t = __kernel_caddr_t; +pub type clock_t = __kernel_clock_t; +pub type __clockid_t = __kernel_clockid_t; +pub type clockid_t = __clockid_t; +pub type daddr_t = __kernel_daddr_t; +pub type fsblkcnt_t = ::std::os::raw::c_ulong; +pub type fsfilcnt_t = ::std::os::raw::c_ulong; +pub type __mode_t = __kernel_mode_t; +pub type mode_t = __mode_t; +pub type __key_t = __kernel_key_t; +pub type key_t = __key_t; +pub type __ino_t = __kernel_ino_t; +pub type ino_t = __ino_t; +pub type ino64_t = u64; +pub type __nlink_t = u32; +pub type nlink_t = __nlink_t; +pub type __timer_t = *mut ::std::os::raw::c_void; +pub type timer_t = __timer_t; +pub type __suseconds_t = __kernel_suseconds_t; +pub type suseconds_t = __suseconds_t; +pub type __useconds_t = u32; +pub type useconds_t = __useconds_t; +pub type dev_t = u32; +pub type __time_t = __kernel_time_t; +pub type time_t = __time_t; +pub type off_t = __kernel_off_t; +pub type loff_t = __kernel_loff_t; +pub type off64_t = loff_t; +pub type __socklen_t = i32; +pub type socklen_t = __socklen_t; +pub type __va_list = u32; +pub type ssize_t = __kernel_ssize_t; +pub type uint_t = ::std::os::raw::c_uint; +pub type uint = ::std::os::raw::c_uint; +pub type u_char = ::std::os::raw::c_uchar; +pub type u_short = ::std::os::raw::c_ushort; +pub type u_int = ::std::os::raw::c_uint; +pub type u_long = ::std::os::raw::c_ulong; +pub type u_int32_t = u32; +pub type u_int16_t = u16; +pub type u_int8_t = u8; +pub type u_int64_t = u64; +pub const AASSET_MODE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AASSET_MODE_RANDOM: ::std::os::raw::c_uint = 1; +pub const AASSET_MODE_STREAMING: ::std::os::raw::c_uint = 2; +pub const AASSET_MODE_BUFFER: ::std::os::raw::c_uint = 3; +pub type _bindgen_ty_1 = ::std::os::raw::c_uint; +pub const AKEYCODE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AKEYCODE_SOFT_LEFT: ::std::os::raw::c_uint = 1; +pub const AKEYCODE_SOFT_RIGHT: ::std::os::raw::c_uint = 2; +pub const AKEYCODE_HOME: ::std::os::raw::c_uint = 3; +pub const AKEYCODE_BACK: ::std::os::raw::c_uint = 4; +pub const AKEYCODE_CALL: ::std::os::raw::c_uint = 5; +pub const AKEYCODE_ENDCALL: ::std::os::raw::c_uint = 6; +pub const AKEYCODE_0: ::std::os::raw::c_uint = 7; +pub const AKEYCODE_1: ::std::os::raw::c_uint = 8; +pub const AKEYCODE_2: ::std::os::raw::c_uint = 9; +pub const AKEYCODE_3: ::std::os::raw::c_uint = 10; +pub const AKEYCODE_4: ::std::os::raw::c_uint = 11; +pub const AKEYCODE_5: ::std::os::raw::c_uint = 12; +pub const AKEYCODE_6: ::std::os::raw::c_uint = 13; +pub const AKEYCODE_7: ::std::os::raw::c_uint = 14; +pub const AKEYCODE_8: ::std::os::raw::c_uint = 15; +pub const AKEYCODE_9: ::std::os::raw::c_uint = 16; +pub const AKEYCODE_STAR: ::std::os::raw::c_uint = 17; +pub const AKEYCODE_POUND: ::std::os::raw::c_uint = 18; +pub const AKEYCODE_DPAD_UP: ::std::os::raw::c_uint = 19; +pub const AKEYCODE_DPAD_DOWN: ::std::os::raw::c_uint = 20; +pub const AKEYCODE_DPAD_LEFT: ::std::os::raw::c_uint = 21; +pub const AKEYCODE_DPAD_RIGHT: ::std::os::raw::c_uint = 22; +pub const AKEYCODE_DPAD_CENTER: ::std::os::raw::c_uint = 23; +pub const AKEYCODE_VOLUME_UP: ::std::os::raw::c_uint = 24; +pub const AKEYCODE_VOLUME_DOWN: ::std::os::raw::c_uint = 25; +pub const AKEYCODE_POWER: ::std::os::raw::c_uint = 26; +pub const AKEYCODE_CAMERA: ::std::os::raw::c_uint = 27; +pub const AKEYCODE_CLEAR: ::std::os::raw::c_uint = 28; +pub const AKEYCODE_A: ::std::os::raw::c_uint = 29; +pub const AKEYCODE_B: ::std::os::raw::c_uint = 30; +pub const AKEYCODE_C: ::std::os::raw::c_uint = 31; +pub const AKEYCODE_D: ::std::os::raw::c_uint = 32; +pub const AKEYCODE_E: ::std::os::raw::c_uint = 33; +pub const AKEYCODE_F: ::std::os::raw::c_uint = 34; +pub const AKEYCODE_G: ::std::os::raw::c_uint = 35; +pub const AKEYCODE_H: ::std::os::raw::c_uint = 36; +pub const AKEYCODE_I: ::std::os::raw::c_uint = 37; +pub const AKEYCODE_J: ::std::os::raw::c_uint = 38; +pub const AKEYCODE_K: ::std::os::raw::c_uint = 39; +pub const AKEYCODE_L: ::std::os::raw::c_uint = 40; +pub const AKEYCODE_M: ::std::os::raw::c_uint = 41; +pub const AKEYCODE_N: ::std::os::raw::c_uint = 42; +pub const AKEYCODE_O: ::std::os::raw::c_uint = 43; +pub const AKEYCODE_P: ::std::os::raw::c_uint = 44; +pub const AKEYCODE_Q: ::std::os::raw::c_uint = 45; +pub const AKEYCODE_R: ::std::os::raw::c_uint = 46; +pub const AKEYCODE_S: ::std::os::raw::c_uint = 47; +pub const AKEYCODE_T: ::std::os::raw::c_uint = 48; +pub const AKEYCODE_U: ::std::os::raw::c_uint = 49; +pub const AKEYCODE_V: ::std::os::raw::c_uint = 50; +pub const AKEYCODE_W: ::std::os::raw::c_uint = 51; +pub const AKEYCODE_X: ::std::os::raw::c_uint = 52; +pub const AKEYCODE_Y: ::std::os::raw::c_uint = 53; +pub const AKEYCODE_Z: ::std::os::raw::c_uint = 54; +pub const AKEYCODE_COMMA: ::std::os::raw::c_uint = 55; +pub const AKEYCODE_PERIOD: ::std::os::raw::c_uint = 56; +pub const AKEYCODE_ALT_LEFT: ::std::os::raw::c_uint = 57; +pub const AKEYCODE_ALT_RIGHT: ::std::os::raw::c_uint = 58; +pub const AKEYCODE_SHIFT_LEFT: ::std::os::raw::c_uint = 59; +pub const AKEYCODE_SHIFT_RIGHT: ::std::os::raw::c_uint = 60; +pub const AKEYCODE_TAB: ::std::os::raw::c_uint = 61; +pub const AKEYCODE_SPACE: ::std::os::raw::c_uint = 62; +pub const AKEYCODE_SYM: ::std::os::raw::c_uint = 63; +pub const AKEYCODE_EXPLORER: ::std::os::raw::c_uint = 64; +pub const AKEYCODE_ENVELOPE: ::std::os::raw::c_uint = 65; +pub const AKEYCODE_ENTER: ::std::os::raw::c_uint = 66; +pub const AKEYCODE_DEL: ::std::os::raw::c_uint = 67; +pub const AKEYCODE_GRAVE: ::std::os::raw::c_uint = 68; +pub const AKEYCODE_MINUS: ::std::os::raw::c_uint = 69; +pub const AKEYCODE_EQUALS: ::std::os::raw::c_uint = 70; +pub const AKEYCODE_LEFT_BRACKET: ::std::os::raw::c_uint = 71; +pub const AKEYCODE_RIGHT_BRACKET: ::std::os::raw::c_uint = 72; +pub const AKEYCODE_BACKSLASH: ::std::os::raw::c_uint = 73; +pub const AKEYCODE_SEMICOLON: ::std::os::raw::c_uint = 74; +pub const AKEYCODE_APOSTROPHE: ::std::os::raw::c_uint = 75; +pub const AKEYCODE_SLASH: ::std::os::raw::c_uint = 76; +pub const AKEYCODE_AT: ::std::os::raw::c_uint = 77; +pub const AKEYCODE_NUM: ::std::os::raw::c_uint = 78; +pub const AKEYCODE_HEADSETHOOK: ::std::os::raw::c_uint = 79; +pub const AKEYCODE_FOCUS: ::std::os::raw::c_uint = 80; +pub const AKEYCODE_PLUS: ::std::os::raw::c_uint = 81; +pub const AKEYCODE_MENU: ::std::os::raw::c_uint = 82; +pub const AKEYCODE_NOTIFICATION: ::std::os::raw::c_uint = 83; +pub const AKEYCODE_SEARCH: ::std::os::raw::c_uint = 84; +pub const AKEYCODE_MEDIA_PLAY_PAUSE: ::std::os::raw::c_uint = 85; +pub const AKEYCODE_MEDIA_STOP: ::std::os::raw::c_uint = 86; +pub const AKEYCODE_MEDIA_NEXT: ::std::os::raw::c_uint = 87; +pub const AKEYCODE_MEDIA_PREVIOUS: ::std::os::raw::c_uint = 88; +pub const AKEYCODE_MEDIA_REWIND: ::std::os::raw::c_uint = 89; +pub const AKEYCODE_MEDIA_FAST_FORWARD: ::std::os::raw::c_uint = 90; +pub const AKEYCODE_MUTE: ::std::os::raw::c_uint = 91; +pub const AKEYCODE_PAGE_UP: ::std::os::raw::c_uint = 92; +pub const AKEYCODE_PAGE_DOWN: ::std::os::raw::c_uint = 93; +pub const AKEYCODE_PICTSYMBOLS: ::std::os::raw::c_uint = 94; +pub const AKEYCODE_SWITCH_CHARSET: ::std::os::raw::c_uint = 95; +pub const AKEYCODE_BUTTON_A: ::std::os::raw::c_uint = 96; +pub const AKEYCODE_BUTTON_B: ::std::os::raw::c_uint = 97; +pub const AKEYCODE_BUTTON_C: ::std::os::raw::c_uint = 98; +pub const AKEYCODE_BUTTON_X: ::std::os::raw::c_uint = 99; +pub const AKEYCODE_BUTTON_Y: ::std::os::raw::c_uint = 100; +pub const AKEYCODE_BUTTON_Z: ::std::os::raw::c_uint = 101; +pub const AKEYCODE_BUTTON_L1: ::std::os::raw::c_uint = 102; +pub const AKEYCODE_BUTTON_R1: ::std::os::raw::c_uint = 103; +pub const AKEYCODE_BUTTON_L2: ::std::os::raw::c_uint = 104; +pub const AKEYCODE_BUTTON_R2: ::std::os::raw::c_uint = 105; +pub const AKEYCODE_BUTTON_THUMBL: ::std::os::raw::c_uint = 106; +pub const AKEYCODE_BUTTON_THUMBR: ::std::os::raw::c_uint = 107; +pub const AKEYCODE_BUTTON_START: ::std::os::raw::c_uint = 108; +pub const AKEYCODE_BUTTON_SELECT: ::std::os::raw::c_uint = 109; +pub const AKEYCODE_BUTTON_MODE: ::std::os::raw::c_uint = 110; +pub const AKEYCODE_ESCAPE: ::std::os::raw::c_uint = 111; +pub const AKEYCODE_FORWARD_DEL: ::std::os::raw::c_uint = 112; +pub const AKEYCODE_CTRL_LEFT: ::std::os::raw::c_uint = 113; +pub const AKEYCODE_CTRL_RIGHT: ::std::os::raw::c_uint = 114; +pub const AKEYCODE_CAPS_LOCK: ::std::os::raw::c_uint = 115; +pub const AKEYCODE_SCROLL_LOCK: ::std::os::raw::c_uint = 116; +pub const AKEYCODE_META_LEFT: ::std::os::raw::c_uint = 117; +pub const AKEYCODE_META_RIGHT: ::std::os::raw::c_uint = 118; +pub const AKEYCODE_FUNCTION: ::std::os::raw::c_uint = 119; +pub const AKEYCODE_SYSRQ: ::std::os::raw::c_uint = 120; +pub const AKEYCODE_BREAK: ::std::os::raw::c_uint = 121; +pub const AKEYCODE_MOVE_HOME: ::std::os::raw::c_uint = 122; +pub const AKEYCODE_MOVE_END: ::std::os::raw::c_uint = 123; +pub const AKEYCODE_INSERT: ::std::os::raw::c_uint = 124; +pub const AKEYCODE_FORWARD: ::std::os::raw::c_uint = 125; +pub const AKEYCODE_MEDIA_PLAY: ::std::os::raw::c_uint = 126; +pub const AKEYCODE_MEDIA_PAUSE: ::std::os::raw::c_uint = 127; +pub const AKEYCODE_MEDIA_CLOSE: ::std::os::raw::c_uint = 128; +pub const AKEYCODE_MEDIA_EJECT: ::std::os::raw::c_uint = 129; +pub const AKEYCODE_MEDIA_RECORD: ::std::os::raw::c_uint = 130; +pub const AKEYCODE_F1: ::std::os::raw::c_uint = 131; +pub const AKEYCODE_F2: ::std::os::raw::c_uint = 132; +pub const AKEYCODE_F3: ::std::os::raw::c_uint = 133; +pub const AKEYCODE_F4: ::std::os::raw::c_uint = 134; +pub const AKEYCODE_F5: ::std::os::raw::c_uint = 135; +pub const AKEYCODE_F6: ::std::os::raw::c_uint = 136; +pub const AKEYCODE_F7: ::std::os::raw::c_uint = 137; +pub const AKEYCODE_F8: ::std::os::raw::c_uint = 138; +pub const AKEYCODE_F9: ::std::os::raw::c_uint = 139; +pub const AKEYCODE_F10: ::std::os::raw::c_uint = 140; +pub const AKEYCODE_F11: ::std::os::raw::c_uint = 141; +pub const AKEYCODE_F12: ::std::os::raw::c_uint = 142; +pub const AKEYCODE_NUM_LOCK: ::std::os::raw::c_uint = 143; +pub const AKEYCODE_NUMPAD_0: ::std::os::raw::c_uint = 144; +pub const AKEYCODE_NUMPAD_1: ::std::os::raw::c_uint = 145; +pub const AKEYCODE_NUMPAD_2: ::std::os::raw::c_uint = 146; +pub const AKEYCODE_NUMPAD_3: ::std::os::raw::c_uint = 147; +pub const AKEYCODE_NUMPAD_4: ::std::os::raw::c_uint = 148; +pub const AKEYCODE_NUMPAD_5: ::std::os::raw::c_uint = 149; +pub const AKEYCODE_NUMPAD_6: ::std::os::raw::c_uint = 150; +pub const AKEYCODE_NUMPAD_7: ::std::os::raw::c_uint = 151; +pub const AKEYCODE_NUMPAD_8: ::std::os::raw::c_uint = 152; +pub const AKEYCODE_NUMPAD_9: ::std::os::raw::c_uint = 153; +pub const AKEYCODE_NUMPAD_DIVIDE: ::std::os::raw::c_uint = 154; +pub const AKEYCODE_NUMPAD_MULTIPLY: ::std::os::raw::c_uint = 155; +pub const AKEYCODE_NUMPAD_SUBTRACT: ::std::os::raw::c_uint = 156; +pub const AKEYCODE_NUMPAD_ADD: ::std::os::raw::c_uint = 157; +pub const AKEYCODE_NUMPAD_DOT: ::std::os::raw::c_uint = 158; +pub const AKEYCODE_NUMPAD_COMMA: ::std::os::raw::c_uint = 159; +pub const AKEYCODE_NUMPAD_ENTER: ::std::os::raw::c_uint = 160; +pub const AKEYCODE_NUMPAD_EQUALS: ::std::os::raw::c_uint = 161; +pub const AKEYCODE_NUMPAD_LEFT_PAREN: ::std::os::raw::c_uint = 162; +pub const AKEYCODE_NUMPAD_RIGHT_PAREN: ::std::os::raw::c_uint = 163; +pub const AKEYCODE_VOLUME_MUTE: ::std::os::raw::c_uint = 164; +pub const AKEYCODE_INFO: ::std::os::raw::c_uint = 165; +pub const AKEYCODE_CHANNEL_UP: ::std::os::raw::c_uint = 166; +pub const AKEYCODE_CHANNEL_DOWN: ::std::os::raw::c_uint = 167; +pub const AKEYCODE_ZOOM_IN: ::std::os::raw::c_uint = 168; +pub const AKEYCODE_ZOOM_OUT: ::std::os::raw::c_uint = 169; +pub const AKEYCODE_TV: ::std::os::raw::c_uint = 170; +pub const AKEYCODE_WINDOW: ::std::os::raw::c_uint = 171; +pub const AKEYCODE_GUIDE: ::std::os::raw::c_uint = 172; +pub const AKEYCODE_DVR: ::std::os::raw::c_uint = 173; +pub const AKEYCODE_BOOKMARK: ::std::os::raw::c_uint = 174; +pub const AKEYCODE_CAPTIONS: ::std::os::raw::c_uint = 175; +pub const AKEYCODE_SETTINGS: ::std::os::raw::c_uint = 176; +pub const AKEYCODE_TV_POWER: ::std::os::raw::c_uint = 177; +pub const AKEYCODE_TV_INPUT: ::std::os::raw::c_uint = 178; +pub const AKEYCODE_STB_POWER: ::std::os::raw::c_uint = 179; +pub const AKEYCODE_STB_INPUT: ::std::os::raw::c_uint = 180; +pub const AKEYCODE_AVR_POWER: ::std::os::raw::c_uint = 181; +pub const AKEYCODE_AVR_INPUT: ::std::os::raw::c_uint = 182; +pub const AKEYCODE_PROG_RED: ::std::os::raw::c_uint = 183; +pub const AKEYCODE_PROG_GREEN: ::std::os::raw::c_uint = 184; +pub const AKEYCODE_PROG_YELLOW: ::std::os::raw::c_uint = 185; +pub const AKEYCODE_PROG_BLUE: ::std::os::raw::c_uint = 186; +pub const AKEYCODE_APP_SWITCH: ::std::os::raw::c_uint = 187; +pub const AKEYCODE_BUTTON_1: ::std::os::raw::c_uint = 188; +pub const AKEYCODE_BUTTON_2: ::std::os::raw::c_uint = 189; +pub const AKEYCODE_BUTTON_3: ::std::os::raw::c_uint = 190; +pub const AKEYCODE_BUTTON_4: ::std::os::raw::c_uint = 191; +pub const AKEYCODE_BUTTON_5: ::std::os::raw::c_uint = 192; +pub const AKEYCODE_BUTTON_6: ::std::os::raw::c_uint = 193; +pub const AKEYCODE_BUTTON_7: ::std::os::raw::c_uint = 194; +pub const AKEYCODE_BUTTON_8: ::std::os::raw::c_uint = 195; +pub const AKEYCODE_BUTTON_9: ::std::os::raw::c_uint = 196; +pub const AKEYCODE_BUTTON_10: ::std::os::raw::c_uint = 197; +pub const AKEYCODE_BUTTON_11: ::std::os::raw::c_uint = 198; +pub const AKEYCODE_BUTTON_12: ::std::os::raw::c_uint = 199; +pub const AKEYCODE_BUTTON_13: ::std::os::raw::c_uint = 200; +pub const AKEYCODE_BUTTON_14: ::std::os::raw::c_uint = 201; +pub const AKEYCODE_BUTTON_15: ::std::os::raw::c_uint = 202; +pub const AKEYCODE_BUTTON_16: ::std::os::raw::c_uint = 203; +pub const AKEYCODE_LANGUAGE_SWITCH: ::std::os::raw::c_uint = 204; +pub const AKEYCODE_MANNER_MODE: ::std::os::raw::c_uint = 205; +pub const AKEYCODE_3D_MODE: ::std::os::raw::c_uint = 206; +pub const AKEYCODE_CONTACTS: ::std::os::raw::c_uint = 207; +pub const AKEYCODE_CALENDAR: ::std::os::raw::c_uint = 208; +pub const AKEYCODE_MUSIC: ::std::os::raw::c_uint = 209; +pub const AKEYCODE_CALCULATOR: ::std::os::raw::c_uint = 210; +pub const AKEYCODE_ZENKAKU_HANKAKU: ::std::os::raw::c_uint = 211; +pub const AKEYCODE_EISU: ::std::os::raw::c_uint = 212; +pub const AKEYCODE_MUHENKAN: ::std::os::raw::c_uint = 213; +pub const AKEYCODE_HENKAN: ::std::os::raw::c_uint = 214; +pub const AKEYCODE_KATAKANA_HIRAGANA: ::std::os::raw::c_uint = 215; +pub const AKEYCODE_YEN: ::std::os::raw::c_uint = 216; +pub const AKEYCODE_RO: ::std::os::raw::c_uint = 217; +pub const AKEYCODE_KANA: ::std::os::raw::c_uint = 218; +pub const AKEYCODE_ASSIST: ::std::os::raw::c_uint = 219; +pub const AKEYCODE_BRIGHTNESS_DOWN: ::std::os::raw::c_uint = 220; +pub const AKEYCODE_BRIGHTNESS_UP: ::std::os::raw::c_uint = 221; +pub const AKEYCODE_MEDIA_AUDIO_TRACK: ::std::os::raw::c_uint = 222; +pub const AKEYCODE_SLEEP: ::std::os::raw::c_uint = 223; +pub const AKEYCODE_WAKEUP: ::std::os::raw::c_uint = 224; +pub const AKEYCODE_PAIRING: ::std::os::raw::c_uint = 225; +pub const AKEYCODE_MEDIA_TOP_MENU: ::std::os::raw::c_uint = 226; +pub const AKEYCODE_11: ::std::os::raw::c_uint = 227; +pub const AKEYCODE_12: ::std::os::raw::c_uint = 228; +pub const AKEYCODE_LAST_CHANNEL: ::std::os::raw::c_uint = 229; +pub const AKEYCODE_TV_DATA_SERVICE: ::std::os::raw::c_uint = 230; +pub const AKEYCODE_VOICE_ASSIST: ::std::os::raw::c_uint = 231; +pub const AKEYCODE_TV_RADIO_SERVICE: ::std::os::raw::c_uint = 232; +pub const AKEYCODE_TV_TELETEXT: ::std::os::raw::c_uint = 233; +pub const AKEYCODE_TV_NUMBER_ENTRY: ::std::os::raw::c_uint = 234; +pub const AKEYCODE_TV_TERRESTRIAL_ANALOG: ::std::os::raw::c_uint = 235; +pub const AKEYCODE_TV_TERRESTRIAL_DIGITAL: ::std::os::raw::c_uint = 236; +pub const AKEYCODE_TV_SATELLITE: ::std::os::raw::c_uint = 237; +pub const AKEYCODE_TV_SATELLITE_BS: ::std::os::raw::c_uint = 238; +pub const AKEYCODE_TV_SATELLITE_CS: ::std::os::raw::c_uint = 239; +pub const AKEYCODE_TV_SATELLITE_SERVICE: ::std::os::raw::c_uint = 240; +pub const AKEYCODE_TV_NETWORK: ::std::os::raw::c_uint = 241; +pub const AKEYCODE_TV_ANTENNA_CABLE: ::std::os::raw::c_uint = 242; +pub const AKEYCODE_TV_INPUT_HDMI_1: ::std::os::raw::c_uint = 243; +pub const AKEYCODE_TV_INPUT_HDMI_2: ::std::os::raw::c_uint = 244; +pub const AKEYCODE_TV_INPUT_HDMI_3: ::std::os::raw::c_uint = 245; +pub const AKEYCODE_TV_INPUT_HDMI_4: ::std::os::raw::c_uint = 246; +pub const AKEYCODE_TV_INPUT_COMPOSITE_1: ::std::os::raw::c_uint = 247; +pub const AKEYCODE_TV_INPUT_COMPOSITE_2: ::std::os::raw::c_uint = 248; +pub const AKEYCODE_TV_INPUT_COMPONENT_1: ::std::os::raw::c_uint = 249; +pub const AKEYCODE_TV_INPUT_COMPONENT_2: ::std::os::raw::c_uint = 250; +pub const AKEYCODE_TV_INPUT_VGA_1: ::std::os::raw::c_uint = 251; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION: ::std::os::raw::c_uint = 252; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP: ::std::os::raw::c_uint = 253; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN: ::std::os::raw::c_uint = 254; +pub const AKEYCODE_TV_ZOOM_MODE: ::std::os::raw::c_uint = 255; +pub const AKEYCODE_TV_CONTENTS_MENU: ::std::os::raw::c_uint = 256; +pub const AKEYCODE_TV_MEDIA_CONTEXT_MENU: ::std::os::raw::c_uint = 257; +pub const AKEYCODE_TV_TIMER_PROGRAMMING: ::std::os::raw::c_uint = 258; +pub const AKEYCODE_HELP: ::std::os::raw::c_uint = 259; +pub const AKEYCODE_NAVIGATE_PREVIOUS: ::std::os::raw::c_uint = 260; +pub const AKEYCODE_NAVIGATE_NEXT: ::std::os::raw::c_uint = 261; +pub const AKEYCODE_NAVIGATE_IN: ::std::os::raw::c_uint = 262; +pub const AKEYCODE_NAVIGATE_OUT: ::std::os::raw::c_uint = 263; +pub const AKEYCODE_STEM_PRIMARY: ::std::os::raw::c_uint = 264; +pub const AKEYCODE_STEM_1: ::std::os::raw::c_uint = 265; +pub const AKEYCODE_STEM_2: ::std::os::raw::c_uint = 266; +pub const AKEYCODE_STEM_3: ::std::os::raw::c_uint = 267; +pub const AKEYCODE_DPAD_UP_LEFT: ::std::os::raw::c_uint = 268; +pub const AKEYCODE_DPAD_DOWN_LEFT: ::std::os::raw::c_uint = 269; +pub const AKEYCODE_DPAD_UP_RIGHT: ::std::os::raw::c_uint = 270; +pub const AKEYCODE_DPAD_DOWN_RIGHT: ::std::os::raw::c_uint = 271; +pub const AKEYCODE_MEDIA_SKIP_FORWARD: ::std::os::raw::c_uint = 272; +pub const AKEYCODE_MEDIA_SKIP_BACKWARD: ::std::os::raw::c_uint = 273; +pub const AKEYCODE_MEDIA_STEP_FORWARD: ::std::os::raw::c_uint = 274; +pub const AKEYCODE_MEDIA_STEP_BACKWARD: ::std::os::raw::c_uint = 275; +pub const AKEYCODE_SOFT_SLEEP: ::std::os::raw::c_uint = 276; +pub const AKEYCODE_CUT: ::std::os::raw::c_uint = 277; +pub const AKEYCODE_COPY: ::std::os::raw::c_uint = 278; +pub const AKEYCODE_PASTE: ::std::os::raw::c_uint = 279; +pub const AKEYCODE_SYSTEM_NAVIGATION_UP: ::std::os::raw::c_uint = 280; +pub const AKEYCODE_SYSTEM_NAVIGATION_DOWN: ::std::os::raw::c_uint = 281; +pub const AKEYCODE_SYSTEM_NAVIGATION_LEFT: ::std::os::raw::c_uint = 282; +pub const AKEYCODE_SYSTEM_NAVIGATION_RIGHT: ::std::os::raw::c_uint = 283; +pub const AKEYCODE_ALL_APPS: ::std::os::raw::c_uint = 284; +pub const AKEYCODE_REFRESH: ::std::os::raw::c_uint = 285; +pub const AKEYCODE_THUMBS_UP: ::std::os::raw::c_uint = 286; +pub const AKEYCODE_THUMBS_DOWN: ::std::os::raw::c_uint = 287; +pub const AKEYCODE_PROFILE_SWITCH: ::std::os::raw::c_uint = 288; +pub type _bindgen_ty_2 = ::std::os::raw::c_uint; +pub const ALOOPER_PREPARE_ALLOW_NON_CALLBACKS: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_3 = ::std::os::raw::c_uint; +pub const ALOOPER_POLL_WAKE: ::std::os::raw::c_int = -1; +pub const ALOOPER_POLL_CALLBACK: ::std::os::raw::c_int = -2; +pub const ALOOPER_POLL_TIMEOUT: ::std::os::raw::c_int = -3; +pub const ALOOPER_POLL_ERROR: ::std::os::raw::c_int = -4; +pub type _bindgen_ty_4 = ::std::os::raw::c_int; +pub const ALOOPER_EVENT_INPUT: ::std::os::raw::c_uint = 1; +pub const ALOOPER_EVENT_OUTPUT: ::std::os::raw::c_uint = 2; +pub const ALOOPER_EVENT_ERROR: ::std::os::raw::c_uint = 4; +pub const ALOOPER_EVENT_HANGUP: ::std::os::raw::c_uint = 8; +pub const ALOOPER_EVENT_INVALID: ::std::os::raw::c_uint = 16; +pub type _bindgen_ty_5 = ::std::os::raw::c_uint; +pub const AKEY_STATE_UNKNOWN: ::std::os::raw::c_int = -1; +pub const AKEY_STATE_UP: ::std::os::raw::c_int = 0; +pub const AKEY_STATE_DOWN: ::std::os::raw::c_int = 1; +pub const AKEY_STATE_VIRTUAL: ::std::os::raw::c_int = 2; +pub type _bindgen_ty_6 = ::std::os::raw::c_int; +pub const AMETA_NONE: ::std::os::raw::c_uint = 0; +pub const AMETA_ALT_ON: ::std::os::raw::c_uint = 2; +pub const AMETA_ALT_LEFT_ON: ::std::os::raw::c_uint = 16; +pub const AMETA_ALT_RIGHT_ON: ::std::os::raw::c_uint = 32; +pub const AMETA_SHIFT_ON: ::std::os::raw::c_uint = 1; +pub const AMETA_SHIFT_LEFT_ON: ::std::os::raw::c_uint = 64; +pub const AMETA_SHIFT_RIGHT_ON: ::std::os::raw::c_uint = 128; +pub const AMETA_SYM_ON: ::std::os::raw::c_uint = 4; +pub const AMETA_FUNCTION_ON: ::std::os::raw::c_uint = 8; +pub const AMETA_CTRL_ON: ::std::os::raw::c_uint = 4096; +pub const AMETA_CTRL_LEFT_ON: ::std::os::raw::c_uint = 8192; +pub const AMETA_CTRL_RIGHT_ON: ::std::os::raw::c_uint = 16384; +pub const AMETA_META_ON: ::std::os::raw::c_uint = 65536; +pub const AMETA_META_LEFT_ON: ::std::os::raw::c_uint = 131072; +pub const AMETA_META_RIGHT_ON: ::std::os::raw::c_uint = 262144; +pub const AMETA_CAPS_LOCK_ON: ::std::os::raw::c_uint = 1048576; +pub const AMETA_NUM_LOCK_ON: ::std::os::raw::c_uint = 2097152; +pub const AMETA_SCROLL_LOCK_ON: ::std::os::raw::c_uint = 4194304; +pub type _bindgen_ty_7 = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AInputEvent { + _unused: [u8; 0], +} +pub const AINPUT_EVENT_TYPE_KEY: ::std::os::raw::c_uint = 1; +pub const AINPUT_EVENT_TYPE_MOTION: ::std::os::raw::c_uint = 2; +pub const AINPUT_EVENT_TYPE_FOCUS: ::std::os::raw::c_uint = 3; +pub type _bindgen_ty_8 = ::std::os::raw::c_uint; +pub const AKEY_EVENT_ACTION_DOWN: ::std::os::raw::c_uint = 0; +pub const AKEY_EVENT_ACTION_UP: ::std::os::raw::c_uint = 1; +pub const AKEY_EVENT_ACTION_MULTIPLE: ::std::os::raw::c_uint = 2; +pub type _bindgen_ty_9 = ::std::os::raw::c_uint; +pub const AKEY_EVENT_FLAG_WOKE_HERE: ::std::os::raw::c_uint = 1; +pub const AKEY_EVENT_FLAG_SOFT_KEYBOARD: ::std::os::raw::c_uint = 2; +pub const AKEY_EVENT_FLAG_KEEP_TOUCH_MODE: ::std::os::raw::c_uint = 4; +pub const AKEY_EVENT_FLAG_FROM_SYSTEM: ::std::os::raw::c_uint = 8; +pub const AKEY_EVENT_FLAG_EDITOR_ACTION: ::std::os::raw::c_uint = 16; +pub const AKEY_EVENT_FLAG_CANCELED: ::std::os::raw::c_uint = 32; +pub const AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY: ::std::os::raw::c_uint = 64; +pub const AKEY_EVENT_FLAG_LONG_PRESS: ::std::os::raw::c_uint = 128; +pub const AKEY_EVENT_FLAG_CANCELED_LONG_PRESS: ::std::os::raw::c_uint = 256; +pub const AKEY_EVENT_FLAG_TRACKING: ::std::os::raw::c_uint = 512; +pub const AKEY_EVENT_FLAG_FALLBACK: ::std::os::raw::c_uint = 1024; +pub type _bindgen_ty_10 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_ACTION_MASK: ::std::os::raw::c_uint = 255; +pub const AMOTION_EVENT_ACTION_POINTER_INDEX_MASK: ::std::os::raw::c_uint = 65280; +pub const AMOTION_EVENT_ACTION_DOWN: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_ACTION_UP: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_ACTION_MOVE: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_ACTION_CANCEL: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_ACTION_OUTSIDE: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_ACTION_POINTER_DOWN: ::std::os::raw::c_uint = 5; +pub const AMOTION_EVENT_ACTION_POINTER_UP: ::std::os::raw::c_uint = 6; +pub const AMOTION_EVENT_ACTION_HOVER_MOVE: ::std::os::raw::c_uint = 7; +pub const AMOTION_EVENT_ACTION_SCROLL: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_ACTION_HOVER_ENTER: ::std::os::raw::c_uint = 9; +pub const AMOTION_EVENT_ACTION_HOVER_EXIT: ::std::os::raw::c_uint = 10; +pub const AMOTION_EVENT_ACTION_BUTTON_PRESS: ::std::os::raw::c_uint = 11; +pub const AMOTION_EVENT_ACTION_BUTTON_RELEASE: ::std::os::raw::c_uint = 12; +pub type _bindgen_ty_11 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_12 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_EDGE_FLAG_NONE: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_EDGE_FLAG_TOP: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_EDGE_FLAG_BOTTOM: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_EDGE_FLAG_LEFT: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_EDGE_FLAG_RIGHT: ::std::os::raw::c_uint = 8; +pub type _bindgen_ty_13 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_AXIS_X: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_AXIS_Y: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_AXIS_PRESSURE: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_AXIS_SIZE: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_AXIS_TOUCH_MAJOR: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_AXIS_TOUCH_MINOR: ::std::os::raw::c_uint = 5; +pub const AMOTION_EVENT_AXIS_TOOL_MAJOR: ::std::os::raw::c_uint = 6; +pub const AMOTION_EVENT_AXIS_TOOL_MINOR: ::std::os::raw::c_uint = 7; +pub const AMOTION_EVENT_AXIS_ORIENTATION: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_AXIS_VSCROLL: ::std::os::raw::c_uint = 9; +pub const AMOTION_EVENT_AXIS_HSCROLL: ::std::os::raw::c_uint = 10; +pub const AMOTION_EVENT_AXIS_Z: ::std::os::raw::c_uint = 11; +pub const AMOTION_EVENT_AXIS_RX: ::std::os::raw::c_uint = 12; +pub const AMOTION_EVENT_AXIS_RY: ::std::os::raw::c_uint = 13; +pub const AMOTION_EVENT_AXIS_RZ: ::std::os::raw::c_uint = 14; +pub const AMOTION_EVENT_AXIS_HAT_X: ::std::os::raw::c_uint = 15; +pub const AMOTION_EVENT_AXIS_HAT_Y: ::std::os::raw::c_uint = 16; +pub const AMOTION_EVENT_AXIS_LTRIGGER: ::std::os::raw::c_uint = 17; +pub const AMOTION_EVENT_AXIS_RTRIGGER: ::std::os::raw::c_uint = 18; +pub const AMOTION_EVENT_AXIS_THROTTLE: ::std::os::raw::c_uint = 19; +pub const AMOTION_EVENT_AXIS_RUDDER: ::std::os::raw::c_uint = 20; +pub const AMOTION_EVENT_AXIS_WHEEL: ::std::os::raw::c_uint = 21; +pub const AMOTION_EVENT_AXIS_GAS: ::std::os::raw::c_uint = 22; +pub const AMOTION_EVENT_AXIS_BRAKE: ::std::os::raw::c_uint = 23; +pub const AMOTION_EVENT_AXIS_DISTANCE: ::std::os::raw::c_uint = 24; +pub const AMOTION_EVENT_AXIS_TILT: ::std::os::raw::c_uint = 25; +pub const AMOTION_EVENT_AXIS_SCROLL: ::std::os::raw::c_uint = 26; +pub const AMOTION_EVENT_AXIS_RELATIVE_X: ::std::os::raw::c_uint = 27; +pub const AMOTION_EVENT_AXIS_RELATIVE_Y: ::std::os::raw::c_uint = 28; +pub const AMOTION_EVENT_AXIS_GENERIC_1: ::std::os::raw::c_uint = 32; +pub const AMOTION_EVENT_AXIS_GENERIC_2: ::std::os::raw::c_uint = 33; +pub const AMOTION_EVENT_AXIS_GENERIC_3: ::std::os::raw::c_uint = 34; +pub const AMOTION_EVENT_AXIS_GENERIC_4: ::std::os::raw::c_uint = 35; +pub const AMOTION_EVENT_AXIS_GENERIC_5: ::std::os::raw::c_uint = 36; +pub const AMOTION_EVENT_AXIS_GENERIC_6: ::std::os::raw::c_uint = 37; +pub const AMOTION_EVENT_AXIS_GENERIC_7: ::std::os::raw::c_uint = 38; +pub const AMOTION_EVENT_AXIS_GENERIC_8: ::std::os::raw::c_uint = 39; +pub const AMOTION_EVENT_AXIS_GENERIC_9: ::std::os::raw::c_uint = 40; +pub const AMOTION_EVENT_AXIS_GENERIC_10: ::std::os::raw::c_uint = 41; +pub const AMOTION_EVENT_AXIS_GENERIC_11: ::std::os::raw::c_uint = 42; +pub const AMOTION_EVENT_AXIS_GENERIC_12: ::std::os::raw::c_uint = 43; +pub const AMOTION_EVENT_AXIS_GENERIC_13: ::std::os::raw::c_uint = 44; +pub const AMOTION_EVENT_AXIS_GENERIC_14: ::std::os::raw::c_uint = 45; +pub const AMOTION_EVENT_AXIS_GENERIC_15: ::std::os::raw::c_uint = 46; +pub const AMOTION_EVENT_AXIS_GENERIC_16: ::std::os::raw::c_uint = 47; +pub type _bindgen_ty_14 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_BUTTON_PRIMARY: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_BUTTON_SECONDARY: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_BUTTON_TERTIARY: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_BUTTON_BACK: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_BUTTON_FORWARD: ::std::os::raw::c_uint = 16; +pub const AMOTION_EVENT_BUTTON_STYLUS_PRIMARY: ::std::os::raw::c_uint = 32; +pub const AMOTION_EVENT_BUTTON_STYLUS_SECONDARY: ::std::os::raw::c_uint = 64; +pub type _bindgen_ty_15 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_TOOL_TYPE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_TOOL_TYPE_FINGER: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_TOOL_TYPE_STYLUS: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_TOOL_TYPE_MOUSE: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_TOOL_TYPE_ERASER: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_TOOL_TYPE_PALM: ::std::os::raw::c_uint = 5; +pub type _bindgen_ty_16 = ::std::os::raw::c_uint; +pub const AINPUT_SOURCE_CLASS_MASK: ::std::os::raw::c_uint = 255; +pub const AINPUT_SOURCE_CLASS_NONE: ::std::os::raw::c_uint = 0; +pub const AINPUT_SOURCE_CLASS_BUTTON: ::std::os::raw::c_uint = 1; +pub const AINPUT_SOURCE_CLASS_POINTER: ::std::os::raw::c_uint = 2; +pub const AINPUT_SOURCE_CLASS_NAVIGATION: ::std::os::raw::c_uint = 4; +pub const AINPUT_SOURCE_CLASS_POSITION: ::std::os::raw::c_uint = 8; +pub const AINPUT_SOURCE_CLASS_JOYSTICK: ::std::os::raw::c_uint = 16; +pub type _bindgen_ty_17 = ::std::os::raw::c_uint; +pub const AINPUT_SOURCE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AINPUT_SOURCE_KEYBOARD: ::std::os::raw::c_uint = 257; +pub const AINPUT_SOURCE_DPAD: ::std::os::raw::c_uint = 513; +pub const AINPUT_SOURCE_GAMEPAD: ::std::os::raw::c_uint = 1025; +pub const AINPUT_SOURCE_TOUCHSCREEN: ::std::os::raw::c_uint = 4098; +pub const AINPUT_SOURCE_MOUSE: ::std::os::raw::c_uint = 8194; +pub const AINPUT_SOURCE_STYLUS: ::std::os::raw::c_uint = 16386; +pub const AINPUT_SOURCE_BLUETOOTH_STYLUS: ::std::os::raw::c_uint = 49154; +pub const AINPUT_SOURCE_TRACKBALL: ::std::os::raw::c_uint = 65540; +pub const AINPUT_SOURCE_MOUSE_RELATIVE: ::std::os::raw::c_uint = 131076; +pub const AINPUT_SOURCE_TOUCHPAD: ::std::os::raw::c_uint = 1048584; +pub const AINPUT_SOURCE_TOUCH_NAVIGATION: ::std::os::raw::c_uint = 2097152; +pub const AINPUT_SOURCE_JOYSTICK: ::std::os::raw::c_uint = 16777232; +pub const AINPUT_SOURCE_ROTARY_ENCODER: ::std::os::raw::c_uint = 4194304; +pub const AINPUT_SOURCE_ANY: ::std::os::raw::c_uint = 4294967040; +pub type _bindgen_ty_18 = ::std::os::raw::c_uint; +pub const AINPUT_KEYBOARD_TYPE_NONE: ::std::os::raw::c_uint = 0; +pub const AINPUT_KEYBOARD_TYPE_NON_ALPHABETIC: ::std::os::raw::c_uint = 1; +pub const AINPUT_KEYBOARD_TYPE_ALPHABETIC: ::std::os::raw::c_uint = 2; +pub type _bindgen_ty_19 = ::std::os::raw::c_uint; +pub const AINPUT_MOTION_RANGE_X: ::std::os::raw::c_uint = 0; +pub const AINPUT_MOTION_RANGE_Y: ::std::os::raw::c_uint = 1; +pub const AINPUT_MOTION_RANGE_PRESSURE: ::std::os::raw::c_uint = 2; +pub const AINPUT_MOTION_RANGE_SIZE: ::std::os::raw::c_uint = 3; +pub const AINPUT_MOTION_RANGE_TOUCH_MAJOR: ::std::os::raw::c_uint = 4; +pub const AINPUT_MOTION_RANGE_TOUCH_MINOR: ::std::os::raw::c_uint = 5; +pub const AINPUT_MOTION_RANGE_TOOL_MAJOR: ::std::os::raw::c_uint = 6; +pub const AINPUT_MOTION_RANGE_TOOL_MINOR: ::std::os::raw::c_uint = 7; +pub const AINPUT_MOTION_RANGE_ORIENTATION: ::std::os::raw::c_uint = 8; +pub type _bindgen_ty_20 = ::std::os::raw::c_uint; +extern "C" { + pub fn AInputEvent_getType(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AInputEvent_getDeviceId(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AInputEvent_getSource(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getAction(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getFlags(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getKeyCode(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getScanCode(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getMetaState(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getRepeatCount(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getDownTime(key_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AKeyEvent_getEventTime(key_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getAction(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getFlags(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getMetaState(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getButtonState(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getEdgeFlags(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getDownTime(motion_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getEventTime(motion_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getXOffset(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getYOffset(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getXPrecision(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getYPrecision(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getPointerCount(motion_event: *const AInputEvent) -> size_t; +} +extern "C" { + pub fn AMotionEvent_getPointerId( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> i32; +} +extern "C" { + pub fn AMotionEvent_getToolType(motion_event: *const AInputEvent, pointer_index: size_t) + -> i32; +} +extern "C" { + pub fn AMotionEvent_getRawX(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getRawY(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getX(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getY(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getPressure(motion_event: *const AInputEvent, pointer_index: size_t) + -> f32; +} +extern "C" { + pub fn AMotionEvent_getSize(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getTouchMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getTouchMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getToolMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getToolMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getOrientation( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getAxisValue( + motion_event: *const AInputEvent, + axis: i32, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistorySize(motion_event: *const AInputEvent) -> size_t; +} +extern "C" { + pub fn AMotionEvent_getHistoricalEventTime( + motion_event: *const AInputEvent, + history_index: size_t, + ) -> i64; +} +extern "C" { + pub fn AMotionEvent_getHistoricalRawX( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalRawY( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalX( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalY( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalPressure( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalSize( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalTouchMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalTouchMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalToolMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalToolMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalOrientation( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalAxisValue( + motion_event: *const AInputEvent, + axis: i32, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AInputQueue { + _unused: [u8; 0], +} +extern "C" { + pub fn AInputQueue_attachLooper( + queue: *mut AInputQueue, + looper: *mut ALooper, + ident: ::std::os::raw::c_int, + callback: ALooper_callbackFunc, + data: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + pub fn AInputQueue_detachLooper(queue: *mut AInputQueue); +} +extern "C" { + pub fn AInputQueue_hasEvents(queue: *mut AInputQueue) -> i32; +} +extern "C" { + pub fn AInputQueue_getEvent(queue: *mut AInputQueue, outEvent: *mut *mut AInputEvent) -> i32; +} +extern "C" { + pub fn AInputQueue_preDispatchEvent(queue: *mut AInputQueue, event: *mut AInputEvent) -> i32; +} +extern "C" { + pub fn AInputQueue_finishEvent( + queue: *mut AInputQueue, + event: *mut AInputEvent, + handled: ::std::os::raw::c_int, + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct imaxdiv_t { + pub quot: intmax_t, + pub rem: intmax_t, +} +#[test] +fn bindgen_test_layout_imaxdiv_t() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(imaxdiv_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(imaxdiv_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).quot as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(imaxdiv_t), + "::", + stringify!(quot) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rem as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(imaxdiv_t), + "::", + stringify!(rem) + ) + ); +} +extern "C" { + pub fn imaxabs(__i: intmax_t) -> intmax_t; +} +extern "C" { + pub fn imaxdiv(__numerator: intmax_t, __denominator: intmax_t) -> imaxdiv_t; +} +extern "C" { + pub fn strtoimax( + __s: *const ::std::os::raw::c_char, + __end_ptr: *mut *mut ::std::os::raw::c_char, + __base: ::std::os::raw::c_int, + ) -> intmax_t; +} +extern "C" { + pub fn strtoumax( + __s: *const ::std::os::raw::c_char, + __end_ptr: *mut *mut ::std::os::raw::c_char, + __base: ::std::os::raw::c_int, + ) -> uintmax_t; +} +extern "C" { + pub fn wcstoimax( + __s: *const wchar_t, + __end_ptr: *mut *mut wchar_t, + __base: ::std::os::raw::c_int, + ) -> intmax_t; +} +extern "C" { + pub fn wcstoumax( + __s: *const wchar_t, + __end_ptr: *mut *mut wchar_t, + __base: ::std::os::raw::c_int, + ) -> uintmax_t; +} +pub const ADataSpace_ADATASPACE_UNKNOWN: ADataSpace = 0; +pub const ADataSpace_ADATASPACE_SCRGB_LINEAR: ADataSpace = 406913024; +pub const ADataSpace_ADATASPACE_SRGB: ADataSpace = 142671872; +pub const ADataSpace_ADATASPACE_SCRGB: ADataSpace = 411107328; +pub const ADataSpace_ADATASPACE_DISPLAY_P3: ADataSpace = 143261696; +pub const ADataSpace_ADATASPACE_BT2020_PQ: ADataSpace = 163971072; +pub const ADataSpace_ADATASPACE_ADOBE_RGB: ADataSpace = 151715840; +pub const ADataSpace_ADATASPACE_BT2020: ADataSpace = 147193856; +pub const ADataSpace_ADATASPACE_BT709: ADataSpace = 281083904; +pub const ADataSpace_ADATASPACE_DCI_P3: ADataSpace = 155844608; +pub const ADataSpace_ADATASPACE_SRGB_LINEAR: ADataSpace = 138477568; +pub type ADataSpace = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct ARect { + pub left: i32, + pub top: i32, + pub right: i32, + pub bottom: i32, +} +#[test] +fn bindgen_test_layout_ARect() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ARect)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(ARect)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).left as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(left) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).top as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(top) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).right as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(right) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bottom as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(bottom) + ) + ); +} +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8A8_UNORM: AHardwareBuffer_Format = 1; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8X8_UNORM: AHardwareBuffer_Format = 2; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8_UNORM: AHardwareBuffer_Format = 3; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R5G6B5_UNORM: AHardwareBuffer_Format = 4; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R16G16B16A16_FLOAT: AHardwareBuffer_Format = + 22; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R10G10B10A2_UNORM: AHardwareBuffer_Format = + 43; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_BLOB: AHardwareBuffer_Format = 33; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D16_UNORM: AHardwareBuffer_Format = 48; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D24_UNORM: AHardwareBuffer_Format = 49; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D24_UNORM_S8_UINT: AHardwareBuffer_Format = + 50; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D32_FLOAT: AHardwareBuffer_Format = 51; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D32_FLOAT_S8_UINT: AHardwareBuffer_Format = + 52; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_S8_UINT: AHardwareBuffer_Format = 53; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_Y8Cb8Cr8_420: AHardwareBuffer_Format = 35; +pub type AHardwareBuffer_Format = ::std::os::raw::c_uint; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_NEVER: + AHardwareBuffer_UsageFlags = 0; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_RARELY: + AHardwareBuffer_UsageFlags = 2; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_OFTEN: + AHardwareBuffer_UsageFlags = 3; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_MASK: + AHardwareBuffer_UsageFlags = 15; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_NEVER: + AHardwareBuffer_UsageFlags = 0; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_RARELY: + AHardwareBuffer_UsageFlags = 32; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_OFTEN: + AHardwareBuffer_UsageFlags = 48; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_MASK: + AHardwareBuffer_UsageFlags = 240; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_SAMPLED_IMAGE: + AHardwareBuffer_UsageFlags = 256; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_FRAMEBUFFER: + AHardwareBuffer_UsageFlags = 512; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_COLOR_OUTPUT: + AHardwareBuffer_UsageFlags = 512; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_COMPOSER_OVERLAY: + AHardwareBuffer_UsageFlags = 2048; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_PROTECTED_CONTENT: + AHardwareBuffer_UsageFlags = 16384; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VIDEO_ENCODE: + AHardwareBuffer_UsageFlags = 65536; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_SENSOR_DIRECT_DATA: + AHardwareBuffer_UsageFlags = 8388608; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_DATA_BUFFER: + AHardwareBuffer_UsageFlags = 16777216; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_CUBE_MAP: + AHardwareBuffer_UsageFlags = 33554432; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_MIPMAP_COMPLETE: + AHardwareBuffer_UsageFlags = 67108864; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_0: AHardwareBuffer_UsageFlags = + 268435456; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_1: AHardwareBuffer_UsageFlags = + 536870912; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_2: AHardwareBuffer_UsageFlags = + 1073741824; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_3: AHardwareBuffer_UsageFlags = + 2147483648; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_4: AHardwareBuffer_UsageFlags = + 281474976710656; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_5: AHardwareBuffer_UsageFlags = + 562949953421312; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_6: AHardwareBuffer_UsageFlags = + 1125899906842624; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_7: AHardwareBuffer_UsageFlags = + 2251799813685248; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_8: AHardwareBuffer_UsageFlags = + 4503599627370496; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_9: AHardwareBuffer_UsageFlags = + 9007199254740992; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_10: AHardwareBuffer_UsageFlags = + 18014398509481984; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_11: AHardwareBuffer_UsageFlags = + 36028797018963968; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_12: AHardwareBuffer_UsageFlags = + 72057594037927936; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_13: AHardwareBuffer_UsageFlags = + 144115188075855872; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_14: AHardwareBuffer_UsageFlags = + 288230376151711744; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_15: AHardwareBuffer_UsageFlags = + 576460752303423488; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_16: AHardwareBuffer_UsageFlags = + 1152921504606846976; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_17: AHardwareBuffer_UsageFlags = + 2305843009213693952; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_18: AHardwareBuffer_UsageFlags = + 4611686018427387904; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_19: AHardwareBuffer_UsageFlags = + 9223372036854775808; +pub type AHardwareBuffer_UsageFlags = ::std::os::raw::c_ulonglong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Desc { + pub width: u32, + pub height: u32, + pub layers: u32, + pub format: u32, + pub usage: u64, + pub stride: u32, + pub rfu0: u32, + pub rfu1: u64, +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Desc() { + assert_eq!( + ::std::mem::size_of::(), + 40usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Desc)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Desc)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).width as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(width) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).height as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(height) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).layers as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(layers) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).format as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(format) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).usage as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(usage) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stride as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(stride) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rfu0 as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(rfu0) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rfu1 as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(rfu1) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Plane { + pub data: *mut ::std::os::raw::c_void, + pub pixelStride: u32, + pub rowStride: u32, +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Plane() { + assert_eq!( + ::std::mem::size_of::(), + 12usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Plane)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Plane)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).data as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(data) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pixelStride as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(pixelStride) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rowStride as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(rowStride) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Planes { + pub planeCount: u32, + pub planes: [AHardwareBuffer_Plane; 4usize], +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Planes() { + assert_eq!( + ::std::mem::size_of::(), + 52usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Planes)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Planes)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).planeCount as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Planes), + "::", + stringify!(planeCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).planes as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Planes), + "::", + stringify!(planes) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer { + _unused: [u8; 0], +} +extern "C" { + pub fn AHardwareBuffer_allocate( + desc: *const AHardwareBuffer_Desc, + outBuffer: *mut *mut AHardwareBuffer, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_acquire(buffer: *mut AHardwareBuffer); +} +extern "C" { + pub fn AHardwareBuffer_release(buffer: *mut AHardwareBuffer); +} +extern "C" { + pub fn AHardwareBuffer_describe( + buffer: *const AHardwareBuffer, + outDesc: *mut AHardwareBuffer_Desc, + ); +} +extern "C" { + pub fn AHardwareBuffer_lock( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outVirtualAddress: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_lockPlanes( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outPlanes: *mut AHardwareBuffer_Planes, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_unlock( + buffer: *mut AHardwareBuffer, + fence: *mut i32, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_sendHandleToUnixSocket( + buffer: *const AHardwareBuffer, + socketFd: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_recvHandleFromUnixSocket( + socketFd: ::std::os::raw::c_int, + outBuffer: *mut *mut AHardwareBuffer, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_isSupported(desc: *const AHardwareBuffer_Desc) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_lockAndGetInfo( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outVirtualAddress: *mut *mut ::std::os::raw::c_void, + outBytesPerPixel: *mut i32, + outBytesPerStride: *mut i32, + ) -> ::std::os::raw::c_int; +} +pub type va_list = u32; +pub type __gnuc_va_list = u32; +#[repr(C)] +pub struct JavaVMAttachArgs { + pub version: jint, + pub name: *const ::std::os::raw::c_char, + pub group: jobject, +} +#[test] +fn bindgen_test_layout_JavaVMAttachArgs() { + assert_eq!( + ::std::mem::size_of::(), + 12usize, + concat!("Size of: ", stringify!(JavaVMAttachArgs)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(JavaVMAttachArgs)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).version as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(version) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).name as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(name) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).group as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(group) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct JavaVMOption { + pub optionString: *const ::std::os::raw::c_char, + pub extraInfo: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_JavaVMOption() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(JavaVMOption)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(JavaVMOption)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).optionString as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMOption), + "::", + stringify!(optionString) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).extraInfo as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(JavaVMOption), + "::", + stringify!(extraInfo) + ) + ); +} +#[repr(C)] +pub struct JavaVMInitArgs { + pub version: jint, + pub nOptions: jint, + pub options: *mut JavaVMOption, + pub ignoreUnrecognized: jboolean, +} +#[test] +fn bindgen_test_layout_JavaVMInitArgs() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(JavaVMInitArgs)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(JavaVMInitArgs)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).version as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(version) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).nOptions as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(nOptions) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).options as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(options) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).ignoreUnrecognized as *const _ as usize + }, + 12usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(ignoreUnrecognized) + ) + ); +} +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_CAPTION_BAR: GameCommonInsetsType = 0; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_DISPLAY_CUTOUT: GameCommonInsetsType = 1; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_IME: GameCommonInsetsType = 2; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_MANDATORY_SYSTEM_GESTURES: + GameCommonInsetsType = 3; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_NAVIGATION_BARS: GameCommonInsetsType = 4; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_STATUS_BARS: GameCommonInsetsType = 5; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_SYSTEM_BARS: GameCommonInsetsType = 6; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_SYSTEM_GESTURES: GameCommonInsetsType = 7; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_TAPABLE_ELEMENT: GameCommonInsetsType = 8; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_WATERFALL: GameCommonInsetsType = 9; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_COUNT: GameCommonInsetsType = 10; +#[doc = " The type of a component for which to retrieve insets. See"] +#[doc = " https://developer.android.com/reference/androidx/core/view/WindowInsetsCompat.Type"] +pub type GameCommonInsetsType = ::std::os::raw::c_uint; +#[doc = " This struct holds a span within a region of text from start (inclusive) to"] +#[doc = " end (exclusive). An empty span or cursor position is specified with"] +#[doc = " start==end. An undefined span is specified with start = end = SPAN_UNDEFINED."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInputSpan { + #[doc = " The start of the region (inclusive)."] + pub start: i32, + #[doc = " The end of the region (exclusive)."] + pub end: i32, +} +#[test] +fn bindgen_test_layout_GameTextInputSpan() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(GameTextInputSpan)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameTextInputSpan)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).start as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputSpan), + "::", + stringify!(start) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).end as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputSpan), + "::", + stringify!(end) + ) + ); +} +pub const GameTextInputSpanFlag_SPAN_UNDEFINED: GameTextInputSpanFlag = -1; +#[doc = " Values with special meaning in a GameTextInputSpan."] +pub type GameTextInputSpanFlag = ::std::os::raw::c_int; +#[doc = " This struct holds the state of an editable section of text."] +#[doc = " The text can have a selection and a composing region defined on it."] +#[doc = " A composing region is used by IMEs that allow input using multiple steps to"] +#[doc = " compose a glyph or word. Use functions GameTextInput_getState and"] +#[doc = " GameTextInput_setState to read and modify the state that an IME is editing."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInputState { + #[doc = " Text owned by the state, as a modified UTF-8 string. Null-terminated."] + #[doc = " https://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8"] + pub text_UTF8: *const ::std::os::raw::c_char, + #[doc = " Length in bytes of text_UTF8, *not* including the null at end."] + pub text_length: i32, + #[doc = " A selection defined on the text."] + pub selection: GameTextInputSpan, + #[doc = " A composing region defined on the text."] + pub composingRegion: GameTextInputSpan, +} +#[test] +fn bindgen_test_layout_GameTextInputState() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(GameTextInputState)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameTextInputState)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).text_UTF8 as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(text_UTF8) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).text_length as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(text_length) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).selection as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(selection) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).composingRegion as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(composingRegion) + ) + ); +} +#[doc = " A callback called by GameTextInput_getState."] +#[doc = " @param context User-defined context."] +#[doc = " @param state State, owned by the library, that will be valid for the duration"] +#[doc = " of the callback."] +pub type GameTextInputGetStateCallback = ::std::option::Option< + unsafe extern "C" fn(context: *mut ::std::os::raw::c_void, state: *const GameTextInputState), +>; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInput { + _unused: [u8; 0], +} +extern "C" { + #[doc = " Initialize the GameTextInput library."] + #[doc = " If called twice without GameTextInput_destroy being called, the same pointer"] + #[doc = " will be returned and a warning will be issued."] + #[doc = " @param env A JNI env valid on the calling thread."] + #[doc = " @param max_string_size The maximum length of a string that can be edited. If"] + #[doc = " zero, the maximum defaults to 65536 bytes. A buffer of this size is allocated"] + #[doc = " at initialization."] + #[doc = " @return A handle to the library."] + pub fn GameTextInput_init(env: *mut JNIEnv, max_string_size: u32) -> *mut GameTextInput; +} +extern "C" { + #[doc = " When using GameTextInput, you need to create a gametextinput.InputConnection"] + #[doc = " on the Java side and pass it using this function to the library, unless using"] + #[doc = " GameActivity in which case this will be done for you. See the GameActivity"] + #[doc = " source code or GameTextInput samples for examples of usage."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param inputConnection A gametextinput.InputConnection object."] + pub fn GameTextInput_setInputConnection(input: *mut GameTextInput, inputConnection: jobject); +} +extern "C" { + #[doc = " Unless using GameActivity, it is required to call this function from your"] + #[doc = " Java gametextinput.Listener.stateChanged method to convert eventState and"] + #[doc = " trigger any event callbacks. When using GameActivity, this does not need to"] + #[doc = " be called as event processing is handled by the Activity."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param eventState A Java gametextinput.State object."] + pub fn GameTextInput_processEvent(input: *mut GameTextInput, eventState: jobject); +} +extern "C" { + #[doc = " Free any resources owned by the GameTextInput library."] + #[doc = " Any subsequent calls to the library will fail until GameTextInput_init is"] + #[doc = " called again."] + #[doc = " @param input A valid GameTextInput library handle."] + pub fn GameTextInput_destroy(input: *mut GameTextInput); +} +pub const ShowImeFlags_SHOW_IME_UNDEFINED: ShowImeFlags = 0; +pub const ShowImeFlags_SHOW_IMPLICIT: ShowImeFlags = 1; +pub const ShowImeFlags_SHOW_FORCED: ShowImeFlags = 2; +#[doc = " Flags to be passed to GameTextInput_showIme."] +pub type ShowImeFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME. Calls InputMethodManager.showSoftInput()."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param flags Defined in ShowImeFlags above. For more information see:"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/InputMethodManager"] + pub fn GameTextInput_showIme(input: *mut GameTextInput, flags: u32); +} +pub const HideImeFlags_HIDE_IME_UNDEFINED: HideImeFlags = 0; +pub const HideImeFlags_HIDE_IMPLICIT_ONLY: HideImeFlags = 1; +pub const HideImeFlags_HIDE_NOT_ALWAYS: HideImeFlags = 2; +#[doc = " Flags to be passed to GameTextInput_hideIme."] +pub type HideImeFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME. Calls InputMethodManager.hideSoftInputFromWindow()."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param flags Defined in HideImeFlags above. For more information see:"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/InputMethodManager"] + pub fn GameTextInput_hideIme(input: *mut GameTextInput, flags: u32); +} +extern "C" { + #[doc = " Call a callback with the current GameTextInput state, which may have been"] + #[doc = " modified by changes in the IME and calls to GameTextInput_setState. We use a"] + #[doc = " callback rather than returning the state in order to simplify ownership of"] + #[doc = " text_UTF8 strings. These strings are only valid during the calling of the"] + #[doc = " callback."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback A function that will be called with valid state."] + #[doc = " @param context Context used by the callback."] + pub fn GameTextInput_getState( + input: *mut GameTextInput, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Set the current GameTextInput state. This state is reflected to any active"] + #[doc = " IME."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state The state to set. Ownership is maintained by the caller and must"] + #[doc = " remain valid for the duration of the call."] + pub fn GameTextInput_setState(input: *mut GameTextInput, state: *const GameTextInputState); +} +#[doc = " Type of the callback needed by GameTextInput_setEventCallback that will be"] +#[doc = " called every time the IME state changes."] +#[doc = " @param context User-defined context set in GameTextInput_setEventCallback."] +#[doc = " @param current_state Current IME state, owned by the library and valid during"] +#[doc = " the callback."] +pub type GameTextInputEventCallback = ::std::option::Option< + unsafe extern "C" fn( + context: *mut ::std::os::raw::c_void, + current_state: *const GameTextInputState, + ), +>; +extern "C" { + #[doc = " Optionally set a callback to be called whenever the IME state changes."] + #[doc = " Not necessary if you are using GameActivity, which handles these callbacks"] + #[doc = " for you."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback Called by the library when the IME state changes."] + #[doc = " @param context Context passed as first argument to the callback."] + pub fn GameTextInput_setEventCallback( + input: *mut GameTextInput, + callback: GameTextInputEventCallback, + context: *mut ::std::os::raw::c_void, + ); +} +#[doc = " Type of the callback needed by GameTextInput_setImeInsetsCallback that will"] +#[doc = " be called every time the IME window insets change."] +#[doc = " @param context User-defined context set in"] +#[doc = " GameTextInput_setImeWIndowInsetsCallback."] +#[doc = " @param current_insets Current IME insets, owned by the library and valid"] +#[doc = " during the callback."] +pub type GameTextInputImeInsetsCallback = ::std::option::Option< + unsafe extern "C" fn(context: *mut ::std::os::raw::c_void, current_insets: *const ARect), +>; +extern "C" { + #[doc = " Optionally set a callback to be called whenever the IME insets change."] + #[doc = " Not necessary if you are using GameActivity, which handles these callbacks"] + #[doc = " for you."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback Called by the library when the IME insets change."] + #[doc = " @param context Context passed as first argument to the callback."] + pub fn GameTextInput_setImeInsetsCallback( + input: *mut GameTextInput, + callback: GameTextInputImeInsetsCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Get the current window insets for the IME."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param insets Filled with the current insets by this function."] + pub fn GameTextInput_getImeInsets(input: *const GameTextInput, insets: *mut ARect); +} +extern "C" { + #[doc = " Unless using GameActivity, it is required to call this function from your"] + #[doc = " Java gametextinput.Listener.onImeInsetsChanged method to"] + #[doc = " trigger any event callbacks. When using GameActivity, this does not need to"] + #[doc = " be called as insets processing is handled by the Activity."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param eventState A Java gametextinput.State object."] + pub fn GameTextInput_processImeInsets(input: *mut GameTextInput, insets: *const ARect); +} +extern "C" { + #[doc = " Convert a GameTextInputState struct to a Java gametextinput.State object."] + #[doc = " Don't forget to delete the returned Java local ref when you're done."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state Input state to convert."] + #[doc = " @return A Java object of class gametextinput.State. The caller is required to"] + #[doc = " delete this local reference."] + pub fn GameTextInputState_toJava( + input: *const GameTextInput, + state: *const GameTextInputState, + ) -> jobject; +} +extern "C" { + #[doc = " Convert from a Java gametextinput.State object into a C GameTextInputState"] + #[doc = " struct."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state A Java gametextinput.State object."] + #[doc = " @param callback A function called with the C struct, valid for the duration"] + #[doc = " of the call."] + #[doc = " @param context Context passed to the callback."] + pub fn GameTextInputState_fromJava( + input: *const GameTextInput, + state: jobject, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +#[doc = " This structure defines the native side of an android.app.GameActivity."] +#[doc = " It is created by the framework, and handed to the application's native"] +#[doc = " code as it is being launched."] +#[repr(C)] +pub struct GameActivity { + #[doc = " Pointer to the callback function table of the native application."] + #[doc = " You can set the functions here to your own callbacks. The callbacks"] + #[doc = " pointer itself here should not be changed; it is allocated and managed"] + #[doc = " for you by the framework."] + pub callbacks: *mut GameActivityCallbacks, + #[doc = " The global handle on the process's Java VM."] + pub vm: *mut JavaVM, + #[doc = " JNI context for the main thread of the app. Note that this field"] + #[doc = " can ONLY be used from the main thread of the process; that is, the"] + #[doc = " thread that calls into the GameActivityCallbacks."] + pub env: *mut JNIEnv, + #[doc = " The GameActivity object handle."] + pub javaGameActivity: jobject, + #[doc = " Path to this application's internal data directory."] + pub internalDataPath: *const ::std::os::raw::c_char, + #[doc = " Path to this application's external (removable/mountable) data directory."] + pub externalDataPath: *const ::std::os::raw::c_char, + #[doc = " The platform's SDK version code."] + pub sdkVersion: i32, + #[doc = " This is the native instance of the application. It is not used by"] + #[doc = " the framework, but can be set by the application to its own instance"] + #[doc = " state."] + pub instance: *mut ::std::os::raw::c_void, + #[doc = " Pointer to the Asset Manager instance for the application. The"] + #[doc = " application uses this to access binary assets bundled inside its own .apk"] + #[doc = " file."] + pub assetManager: *mut AAssetManager, + #[doc = " Available starting with Honeycomb: path to the directory containing"] + #[doc = " the application's OBB files (if any). If the app doesn't have any"] + #[doc = " OBB files, this directory may not exist."] + pub obbPath: *const ::std::os::raw::c_char, +} +#[test] +fn bindgen_test_layout_GameActivity() { + assert_eq!( + ::std::mem::size_of::(), + 40usize, + concat!("Size of: ", stringify!(GameActivity)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameActivity)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).callbacks as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(callbacks) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).vm as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(vm) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).env as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(env) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).javaGameActivity as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(javaGameActivity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).internalDataPath as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(internalDataPath) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).externalDataPath as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(externalDataPath) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sdkVersion as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(sdkVersion) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).instance as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(instance) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).assetManager as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(assetManager) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).obbPath as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(obbPath) + ) + ); +} +#[doc = " \\brief Describe information about a pointer, found in a"] +#[doc = " GameActivityMotionEvent."] +#[doc = ""] +#[doc = " You can read values directly from this structure, or use helper functions"] +#[doc = " (`GameActivityPointerAxes_getX`, `GameActivityPointerAxes_getY` and"] +#[doc = " `GameActivityPointerAxes_getAxisValue`)."] +#[doc = ""] +#[doc = " The X axis and Y axis are enabled by default but any other axis that you want"] +#[doc = " to read **must** be enabled first, using"] +#[doc = " `GameActivityPointerAxes_enableAxis`."] +#[doc = ""] +#[doc = " \\see GameActivityMotionEvent"] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityPointerAxes { + pub id: i32, + pub axisValues: [f32; 48usize], + pub rawX: f32, + pub rawY: f32, +} +#[test] +fn bindgen_test_layout_GameActivityPointerAxes() { + assert_eq!( + ::std::mem::size_of::(), + 204usize, + concat!("Size of: ", stringify!(GameActivityPointerAxes)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameActivityPointerAxes)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).id as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(id) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).axisValues as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(axisValues) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rawX as *const _ as usize }, + 196usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(rawX) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rawY as *const _ as usize }, + 200usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(rawY) + ) + ); +} +extern "C" { + #[doc = " \\brief Enable the specified axis, so that its value is reported in the"] + #[doc = " GameActivityPointerAxes structures stored in a motion event."] + #[doc = ""] + #[doc = " You must enable any axis that you want to read, apart from"] + #[doc = " `AMOTION_EVENT_AXIS_X` and `AMOTION_EVENT_AXIS_Y` that are enabled by"] + #[doc = " default."] + #[doc = ""] + #[doc = " If the axis index is out of range, nothing is done."] + pub fn GameActivityPointerAxes_enableAxis(axis: i32); +} +extern "C" { + #[doc = " \\brief Disable the specified axis. Its value won't be reported in the"] + #[doc = " GameActivityPointerAxes structures stored in a motion event anymore."] + #[doc = ""] + #[doc = " Apart from X and Y, any axis that you want to read **must** be enabled first,"] + #[doc = " using `GameActivityPointerAxes_enableAxis`."] + #[doc = ""] + #[doc = " If the axis index is out of range, nothing is done."] + pub fn GameActivityPointerAxes_disableAxis(axis: i32); +} +#[doc = " \\brief Describe a motion event that happened on the GameActivity SurfaceView."] +#[doc = ""] +#[doc = " This is 1:1 mapping to the information contained in a Java `MotionEvent`"] +#[doc = " (see https://developer.android.com/reference/android/view/MotionEvent)."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityMotionEvent { + pub deviceId: i32, + pub source: i32, + pub action: i32, + pub eventTime: i64, + pub downTime: i64, + pub flags: i32, + pub metaState: i32, + pub actionButton: i32, + pub buttonState: i32, + pub classification: i32, + pub edgeFlags: i32, + pub pointerCount: u32, + pub pointers: [GameActivityPointerAxes; 8usize], + pub precisionX: f32, + pub precisionY: f32, +} +#[test] +fn bindgen_test_layout_GameActivityMotionEvent() { + assert_eq!( + ::std::mem::size_of::(), + 1704usize, + concat!("Size of: ", stringify!(GameActivityMotionEvent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameActivityMotionEvent)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).deviceId as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(deviceId) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).source as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(source) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).action as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(action) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).eventTime as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(eventTime) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).downTime as *const _ as usize + }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(downTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).metaState as *const _ as usize + }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(metaState) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).actionButton as *const _ as usize + }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(actionButton) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).buttonState as *const _ as usize + }, + 44usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(buttonState) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).classification as *const _ as usize + }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(classification) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).edgeFlags as *const _ as usize + }, + 52usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(edgeFlags) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pointerCount as *const _ as usize + }, + 56usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(pointerCount) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pointers as *const _ as usize + }, + 60usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(pointers) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).precisionX as *const _ as usize + }, + 1692usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(precisionX) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).precisionY as *const _ as usize + }, + 1696usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(precisionY) + ) + ); +} +#[doc = " \\brief Describe a key event that happened on the GameActivity SurfaceView."] +#[doc = ""] +#[doc = " This is 1:1 mapping to the information contained in a Java `KeyEvent`"] +#[doc = " (see https://developer.android.com/reference/android/view/KeyEvent)."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityKeyEvent { + pub deviceId: i32, + pub source: i32, + pub action: i32, + pub eventTime: i64, + pub downTime: i64, + pub flags: i32, + pub metaState: i32, + pub modifiers: i32, + pub repeatCount: i32, + pub keyCode: i32, + pub scanCode: i32, +} +#[test] +fn bindgen_test_layout_GameActivityKeyEvent() { + assert_eq!( + ::std::mem::size_of::(), + 56usize, + concat!("Size of: ", stringify!(GameActivityKeyEvent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameActivityKeyEvent)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).deviceId as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(deviceId) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).source as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(source) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).action as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(action) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eventTime as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(eventTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).downTime as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(downTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).metaState as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(metaState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).modifiers as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(modifiers) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).repeatCount as *const _ as usize + }, + 44usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(repeatCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyCode as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(keyCode) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).scanCode as *const _ as usize }, + 52usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(scanCode) + ) + ); +} +#[doc = " A function the user should call from their callback with the data, its length"] +#[doc = " and the library- supplied context."] +pub type SaveInstanceStateRecallback = ::std::option::Option< + unsafe extern "C" fn( + bytes: *const ::std::os::raw::c_char, + len: ::std::os::raw::c_int, + context: *mut ::std::os::raw::c_void, + ), +>; +#[doc = " {@link GameActivityCallbacks}"] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityCallbacks { + #[doc = " GameActivity has started. See Java documentation for Activity.onStart()"] + #[doc = " for more information."] + pub onStart: ::std::option::Option, + #[doc = " GameActivity has resumed. See Java documentation for Activity.onResume()"] + #[doc = " for more information."] + pub onResume: ::std::option::Option, + #[doc = " The framework is asking GameActivity to save its current instance state."] + #[doc = " See the Java documentation for Activity.onSaveInstanceState() for more"] + #[doc = " information. The user should call the recallback with their data, its"] + #[doc = " length and the provided context; they retain ownership of the data. Note"] + #[doc = " that the saved state will be persisted, so it can not contain any active"] + #[doc = " entities (pointers to memory, file descriptors, etc)."] + pub onSaveInstanceState: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + recallback: SaveInstanceStateRecallback, + context: *mut ::std::os::raw::c_void, + ), + >, + #[doc = " GameActivity has paused. See Java documentation for Activity.onPause()"] + #[doc = " for more information."] + pub onPause: ::std::option::Option, + #[doc = " GameActivity has stopped. See Java documentation for Activity.onStop()"] + #[doc = " for more information."] + pub onStop: ::std::option::Option, + #[doc = " GameActivity is being destroyed. See Java documentation for"] + #[doc = " Activity.onDestroy() for more information."] + pub onDestroy: ::std::option::Option, + #[doc = " Focus has changed in this GameActivity's window. This is often used,"] + #[doc = " for example, to pause a game when it loses input focus."] + pub onWindowFocusChanged: + ::std::option::Option, + #[doc = " The drawing window for this native activity has been created. You"] + #[doc = " can use the given native window object to start drawing."] + pub onNativeWindowCreated: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The drawing window for this native activity has been resized. You should"] + #[doc = " retrieve the new size from the window and ensure that your rendering in"] + #[doc = " it now matches."] + pub onNativeWindowResized: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + window: *mut ANativeWindow, + newWidth: i32, + newHeight: i32, + ), + >, + #[doc = " The drawing window for this native activity needs to be redrawn. To"] + #[doc = " avoid transient artifacts during screen changes (such resizing after"] + #[doc = " rotation), applications should not return from this function until they"] + #[doc = " have finished drawing their window in its current state."] + pub onNativeWindowRedrawNeeded: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The drawing window for this native activity is going to be destroyed."] + #[doc = " You MUST ensure that you do not touch the window object after returning"] + #[doc = " from this function: in the common case of drawing to the window from"] + #[doc = " another thread, that means the implementation of this callback must"] + #[doc = " properly synchronize with the other thread to stop its drawing before"] + #[doc = " returning from here."] + pub onNativeWindowDestroyed: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The current device AConfiguration has changed. The new configuration can"] + #[doc = " be retrieved from assetManager."] + pub onConfigurationChanged: + ::std::option::Option, + #[doc = " The system is running low on memory. Use this callback to release"] + #[doc = " resources you do not need, to help the system avoid killing more"] + #[doc = " important processes."] + pub onTrimMemory: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, level: ::std::os::raw::c_int), + >, + #[doc = " Callback called for every MotionEvent done on the GameActivity"] + #[doc = " SurfaceView. Ownership of `event` is maintained by the library and it is"] + #[doc = " only valid during the callback."] + pub onTouchEvent: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityMotionEvent, + ) -> bool, + >, + #[doc = " Callback called for every key down event on the GameActivity SurfaceView."] + #[doc = " Ownership of `event` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onKeyDown: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityKeyEvent, + ) -> bool, + >, + #[doc = " Callback called for every key up event on the GameActivity SurfaceView."] + #[doc = " Ownership of `event` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onKeyUp: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityKeyEvent, + ) -> bool, + >, + #[doc = " Callback called for every soft-keyboard text input event."] + #[doc = " Ownership of `state` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onTextInputEvent: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, state: *const GameTextInputState), + >, + #[doc = " Callback called when WindowInsets of the main app window have changed."] + #[doc = " Call GameActivity_getWindowInsets to retrieve the insets themselves."] + pub onWindowInsetsChanged: + ::std::option::Option, +} +#[test] +fn bindgen_test_layout_GameActivityCallbacks() { + assert_eq!( + ::std::mem::size_of::(), + 72usize, + concat!("Size of: ", stringify!(GameActivityCallbacks)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameActivityCallbacks)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onStart as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onStart) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onResume as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onResume) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onSaveInstanceState as *const _ + as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onSaveInstanceState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onPause as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onPause) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onStop as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onStop) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onDestroy as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onDestroy) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onWindowFocusChanged as *const _ + as usize + }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onWindowFocusChanged) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowCreated as *const _ + as usize + }, + 28usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowCreated) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowResized as *const _ + as usize + }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowResized) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowRedrawNeeded as *const _ + as usize + }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowRedrawNeeded) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowDestroyed as *const _ + as usize + }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowDestroyed) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onConfigurationChanged as *const _ + as usize + }, + 44usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onConfigurationChanged) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTrimMemory as *const _ as usize + }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTrimMemory) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTouchEvent as *const _ as usize + }, + 52usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTouchEvent) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onKeyDown as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onKeyDown) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onKeyUp as *const _ as usize }, + 60usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onKeyUp) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTextInputEvent as *const _ as usize + }, + 64usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTextInputEvent) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onWindowInsetsChanged as *const _ + as usize + }, + 68usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onWindowInsetsChanged) + ) + ); +} +extern "C" { + #[doc = " \\brief Convert a Java `MotionEvent` to a `GameActivityMotionEvent`."] + #[doc = ""] + #[doc = " This is done automatically by the GameActivity: see `onTouchEvent` to set"] + #[doc = " a callback to consume the received events."] + #[doc = " This function can be used if you re-implement events handling in your own"] + #[doc = " activity."] + #[doc = " Ownership of out_event is maintained by the caller."] + pub fn GameActivityMotionEvent_fromJava( + env: *mut JNIEnv, + motionEvent: jobject, + out_event: *mut GameActivityMotionEvent, + ); +} +extern "C" { + #[doc = " \\brief Convert a Java `KeyEvent` to a `GameActivityKeyEvent`."] + #[doc = ""] + #[doc = " This is done automatically by the GameActivity: see `onKeyUp` and `onKeyDown`"] + #[doc = " to set a callback to consume the received events."] + #[doc = " This function can be used if you re-implement events handling in your own"] + #[doc = " activity."] + #[doc = " Ownership of out_event is maintained by the caller."] + pub fn GameActivityKeyEvent_fromJava( + env: *mut JNIEnv, + motionEvent: jobject, + out_event: *mut GameActivityKeyEvent, + ); +} +#[doc = " This is the function that must be in the native code to instantiate the"] +#[doc = " application's native activity. It is called with the activity instance (see"] +#[doc = " above); if the code is being instantiated from a previously saved instance,"] +#[doc = " the savedState will be non-NULL and point to the saved data. You must make"] +#[doc = " any copy of this data you need -- it will be released after you return from"] +#[doc = " this function."] +pub type GameActivity_createFunc = ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + savedState: *mut ::std::os::raw::c_void, + savedStateSize: size_t, + ), +>; +extern "C" { + #[doc = " Finish the given activity. Its finish() method will be called, causing it"] + #[doc = " to be stopped and destroyed. Note that this method can be called from"] + #[doc = " *any* thread; it will send a message to the main thread of the process"] + #[doc = " where the Java finish call will take place."] + pub fn GameActivity_finish(activity: *mut GameActivity); +} +#[doc = " As long as this window is visible to the user, allow the lock"] +#[doc = " screen to activate while the screen is on. This can be used"] +#[doc = " independently, or in combination with {@link"] +#[doc = " GAMEACTIVITY_FLAG_KEEP_SCREEN_ON} and/or {@link"] +#[doc = " GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED}"] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_ALLOW_LOCK_WHILE_SCREEN_ON: + GameActivitySetWindowFlags = 1; +#[doc = " Everything behind this window will be dimmed."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DIM_BEHIND: GameActivitySetWindowFlags = 2; +#[doc = " Blur everything behind this window."] +#[doc = " @deprecated Blurring is no longer supported."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_BLUR_BEHIND: GameActivitySetWindowFlags = 4; +#[doc = " This window won't ever get key input focus, so the"] +#[doc = " user can not send key or other button events to it. Those will"] +#[doc = " instead go to whatever focusable window is behind it. This flag"] +#[doc = " will also enable {@link GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL} whether or not"] +#[doc = " that is explicitly set."] +#[doc = ""] +#[doc = " Setting this flag also implies that the window will not need to"] +#[doc = " interact with"] +#[doc = " a soft input method, so it will be Z-ordered and positioned"] +#[doc = " independently of any active input method (typically this means it"] +#[doc = " gets Z-ordered on top of the input method, so it can use the full"] +#[doc = " screen for its content and cover the input method if needed. You"] +#[doc = " can use {@link GAMEACTIVITY_FLAG_ALT_FOCUSABLE_IM} to modify this"] +#[doc = " behavior."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_FOCUSABLE: GameActivitySetWindowFlags = + 8; +#[doc = " This window can never receive touch events."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_TOUCHABLE: GameActivitySetWindowFlags = + 16; +#[doc = " Even when this window is focusable (its"] +#[doc = " {@link GAMEACTIVITY_FLAG_NOT_FOCUSABLE} is not set), allow any pointer"] +#[doc = " events outside of the window to be sent to the windows behind it."] +#[doc = " Otherwise it will consume all pointer events itself, regardless of"] +#[doc = " whether they are inside of the window."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL: GameActivitySetWindowFlags = + 32; +#[doc = " When set, if the device is asleep when the touch"] +#[doc = " screen is pressed, you will receive this first touch event. Usually"] +#[doc = " the first touch event is consumed by the system since the user can"] +#[doc = " not see what they are pressing on."] +#[doc = ""] +#[doc = " @deprecated This flag has no effect."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_TOUCHABLE_WHEN_WAKING: + GameActivitySetWindowFlags = 64; +#[doc = " As long as this window is visible to the user, keep"] +#[doc = " the device's screen turned on and bright."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_KEEP_SCREEN_ON: GameActivitySetWindowFlags = + 128; +#[doc = " Place the window within the entire screen, ignoring"] +#[doc = " decorations around the border (such as the status bar). The"] +#[doc = " window must correctly position its contents to take the screen"] +#[doc = " decoration into account."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_IN_SCREEN: + GameActivitySetWindowFlags = 256; +#[doc = " Allows the window to extend outside of the screen."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_NO_LIMITS: + GameActivitySetWindowFlags = 512; +#[doc = " Hide all screen decorations (such as the status"] +#[doc = " bar) while this window is displayed. This allows the window to"] +#[doc = " use the entire display space for itself -- the status bar will"] +#[doc = " be hidden when an app window with this flag set is on the top"] +#[doc = " layer. A fullscreen window will ignore a value of {@link"] +#[doc = " GAMEACTIVITY_SOFT_INPUT_ADJUST_RESIZE}; the window will stay"] +#[doc = " fullscreen and will not resize."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_FULLSCREEN: GameActivitySetWindowFlags = + 1024; +#[doc = " Override {@link GAMEACTIVITY_FLAG_FULLSCREEN} and force the"] +#[doc = " screen decorations (such as the status bar) to be shown."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_FORCE_NOT_FULLSCREEN: + GameActivitySetWindowFlags = 2048; +#[doc = " Turn on dithering when compositing this window to"] +#[doc = " the screen."] +#[doc = " @deprecated This flag is no longer used."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DITHER: GameActivitySetWindowFlags = 4096; +#[doc = " Treat the content of the window as secure, preventing"] +#[doc = " it from appearing in screenshots or from being viewed on non-secure"] +#[doc = " displays."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SECURE: GameActivitySetWindowFlags = 8192; +#[doc = " A special mode where the layout parameters are used"] +#[doc = " to perform scaling of the surface when it is composited to the"] +#[doc = " screen."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SCALED: GameActivitySetWindowFlags = 16384; +#[doc = " Intended for windows that will often be used when the user is"] +#[doc = " holding the screen against their face, it will aggressively"] +#[doc = " filter the event stream to prevent unintended presses in this"] +#[doc = " situation that may not be desired for a particular window, when"] +#[doc = " such an event stream is detected, the application will receive"] +#[doc = " a {@link AMOTION_EVENT_ACTION_CANCEL} to indicate this so"] +#[doc = " applications can handle this accordingly by taking no action on"] +#[doc = " the event until the finger is released."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_IGNORE_CHEEK_PRESSES: + GameActivitySetWindowFlags = 32768; +#[doc = " A special option only for use in combination with"] +#[doc = " {@link GAMEACTIVITY_FLAG_LAYOUT_IN_SCREEN}. When requesting layout in"] +#[doc = " the screen your window may appear on top of or behind screen decorations"] +#[doc = " such as the status bar. By also including this flag, the window"] +#[doc = " manager will report the inset rectangle needed to ensure your"] +#[doc = " content is not covered by screen decorations."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_INSET_DECOR: + GameActivitySetWindowFlags = 65536; +#[doc = " Invert the state of {@link GAMEACTIVITY_FLAG_NOT_FOCUSABLE} with"] +#[doc = " respect to how this window interacts with the current method."] +#[doc = " That is, if FLAG_NOT_FOCUSABLE is set and this flag is set,"] +#[doc = " then the window will behave as if it needs to interact with the"] +#[doc = " input method and thus be placed behind/away from it; if {@link"] +#[doc = " GAMEACTIVITY_FLAG_NOT_FOCUSABLE} is not set and this flag is set,"] +#[doc = " then the window will behave as if it doesn't need to interact"] +#[doc = " with the input method and can be placed to use more space and"] +#[doc = " cover the input method."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_ALT_FOCUSABLE_IM: + GameActivitySetWindowFlags = 131072; +#[doc = " If you have set {@link GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL}, you"] +#[doc = " can set this flag to receive a single special MotionEvent with"] +#[doc = " the action"] +#[doc = " {@link AMOTION_EVENT_ACTION_OUTSIDE} for"] +#[doc = " touches that occur outside of your window. Note that you will not"] +#[doc = " receive the full down/move/up gesture, only the location of the"] +#[doc = " first down as an {@link AMOTION_EVENT_ACTION_OUTSIDE}."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_WATCH_OUTSIDE_TOUCH: + GameActivitySetWindowFlags = 262144; +#[doc = " Special flag to let windows be shown when the screen"] +#[doc = " is locked. This will let application windows take precedence over"] +#[doc = " key guard or any other lock screens. Can be used with"] +#[doc = " {@link GAMEACTIVITY_FLAG_KEEP_SCREEN_ON} to turn screen on and display"] +#[doc = " windows directly before showing the key guard window. Can be used with"] +#[doc = " {@link GAMEACTIVITY_FLAG_DISMISS_KEYGUARD} to automatically fully"] +#[doc = " dismisss non-secure keyguards. This flag only applies to the top-most"] +#[doc = " full-screen window."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED: + GameActivitySetWindowFlags = 524288; +#[doc = " Ask that the system wallpaper be shown behind"] +#[doc = " your window. The window surface must be translucent to be able"] +#[doc = " to actually see the wallpaper behind it; this flag just ensures"] +#[doc = " that the wallpaper surface will be there if this window actually"] +#[doc = " has translucent regions."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SHOW_WALLPAPER: GameActivitySetWindowFlags = + 1048576; +#[doc = " When set as a window is being added or made"] +#[doc = " visible, once the window has been shown then the system will"] +#[doc = " poke the power manager's user activity (as if the user had woken"] +#[doc = " up the device) to turn the screen on."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_TURN_SCREEN_ON: GameActivitySetWindowFlags = + 2097152; +#[doc = " When set the window will cause the keyguard to"] +#[doc = " be dismissed, only if it is not a secure lock keyguard. Because such"] +#[doc = " a keyguard is not needed for security, it will never re-appear if"] +#[doc = " the user navigates to another window (in contrast to"] +#[doc = " {@link GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED}, which will only temporarily"] +#[doc = " hide both secure and non-secure keyguards but ensure they reappear"] +#[doc = " when the user moves to another UI that doesn't hide them)."] +#[doc = " If the keyguard is currently active and is secure (requires an"] +#[doc = " unlock pattern) than the user will still need to confirm it before"] +#[doc = " seeing this window, unless {@link GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED} has"] +#[doc = " also been set."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DISMISS_KEYGUARD: + GameActivitySetWindowFlags = 4194304; +#[doc = " Flags for GameActivity_setWindowFlags,"] +#[doc = " as per the Java API at android.view.WindowManager.LayoutParams."] +pub type GameActivitySetWindowFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Change the window flags of the given activity. Calls getWindow().setFlags()"] + #[doc = " of the given activity."] + #[doc = " Note that some flags must be set before the window decoration is created,"] + #[doc = " see"] + #[doc = " https://developer.android.com/reference/android/view/Window#setFlags(int,%20int)."] + #[doc = " Note also that this method can be called from"] + #[doc = " *any* thread; it will send a message to the main thread of the process"] + #[doc = " where the Java finish call will take place."] + pub fn GameActivity_setWindowFlags( + activity: *mut GameActivity, + addFlags: u32, + removeFlags: u32, + ); +} +#[doc = " Implicit request to show the input window, not as the result"] +#[doc = " of a direct request by the user."] +pub const GameActivityShowSoftInputFlags_GAMEACTIVITY_SHOW_SOFT_INPUT_IMPLICIT: + GameActivityShowSoftInputFlags = 1; +#[doc = " The user has forced the input method open (such as by"] +#[doc = " long-pressing menu) so it should not be closed until they"] +#[doc = " explicitly do so."] +pub const GameActivityShowSoftInputFlags_GAMEACTIVITY_SHOW_SOFT_INPUT_FORCED: + GameActivityShowSoftInputFlags = 2; +#[doc = " Flags for GameActivity_showSoftInput; see the Java InputMethodManager"] +#[doc = " API for documentation."] +pub type GameActivityShowSoftInputFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME while in the given activity. Calls"] + #[doc = " InputMethodManager.showSoftInput() for the given activity. Note that this"] + #[doc = " method can be called from *any* thread; it will send a message to the main"] + #[doc = " thread of the process where the Java call will take place."] + pub fn GameActivity_showSoftInput(activity: *mut GameActivity, flags: u32); +} +extern "C" { + #[doc = " Set the text entry state (see documentation of the GameTextInputState struct"] + #[doc = " in the Game Text Input library reference)."] + #[doc = ""] + #[doc = " Ownership of the state is maintained by the caller."] + pub fn GameActivity_setTextInputState( + activity: *mut GameActivity, + state: *const GameTextInputState, + ); +} +extern "C" { + #[doc = " Get the last-received text entry state (see documentation of the"] + #[doc = " GameTextInputState struct in the Game Text Input library reference)."] + #[doc = ""] + pub fn GameActivity_getTextInputState( + activity: *mut GameActivity, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Get a pointer to the GameTextInput library instance."] + pub fn GameActivity_getTextInput(activity: *const GameActivity) -> *mut GameTextInput; +} +#[doc = " The soft input window should only be hidden if it was not"] +#[doc = " explicitly shown by the user."] +pub const GameActivityHideSoftInputFlags_GAMEACTIVITY_HIDE_SOFT_INPUT_IMPLICIT_ONLY: + GameActivityHideSoftInputFlags = 1; +#[doc = " The soft input window should normally be hidden, unless it was"] +#[doc = " originally shown with {@link GAMEACTIVITY_SHOW_SOFT_INPUT_FORCED}."] +pub const GameActivityHideSoftInputFlags_GAMEACTIVITY_HIDE_SOFT_INPUT_NOT_ALWAYS: + GameActivityHideSoftInputFlags = 2; +#[doc = " Flags for GameActivity_hideSoftInput; see the Java InputMethodManager"] +#[doc = " API for documentation."] +pub type GameActivityHideSoftInputFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Hide the IME while in the given activity. Calls"] + #[doc = " InputMethodManager.hideSoftInput() for the given activity. Note that this"] + #[doc = " method can be called from *any* thread; it will send a message to the main"] + #[doc = " thread of the process where the Java finish call will take place."] + pub fn GameActivity_hideSoftInput(activity: *mut GameActivity, flags: u32); +} +extern "C" { + #[doc = " Get the current window insets of the particular component. See"] + #[doc = " https://developer.android.com/reference/androidx/core/view/WindowInsetsCompat.Type"] + #[doc = " for more details."] + #[doc = " You can use these insets to influence what you show on the screen."] + pub fn GameActivity_getWindowInsets( + activity: *mut GameActivity, + type_: GameCommonInsetsType, + insets: *mut ARect, + ); +} +extern "C" { + #[doc = " Set options on how the IME behaves when it is requested for text input."] + #[doc = " See"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/EditorInfo"] + #[doc = " for the meaning of inputType, actionId and imeOptions."] + #[doc = ""] + #[doc = " Note that this function will attach the current thread to the JVM if it is"] + #[doc = " not already attached, so the caller must detach the thread from the JVM"] + #[doc = " before the thread is destroyed using DetachCurrentThread."] + pub fn GameActivity_setImeEditorInfo( + activity: *mut GameActivity, + inputType: ::std::os::raw::c_int, + actionId: ::std::os::raw::c_int, + imeOptions: ::std::os::raw::c_int, + ); +} +pub const ACONFIGURATION_ORIENTATION_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_ORIENTATION_PORT: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_ORIENTATION_LAND: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_ORIENTATION_SQUARE: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_TOUCHSCREEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_TOUCHSCREEN_NOTOUCH: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_TOUCHSCREEN_STYLUS: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_TOUCHSCREEN_FINGER: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_DENSITY_DEFAULT: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_DENSITY_LOW: ::std::os::raw::c_uint = 120; +pub const ACONFIGURATION_DENSITY_MEDIUM: ::std::os::raw::c_uint = 160; +pub const ACONFIGURATION_DENSITY_TV: ::std::os::raw::c_uint = 213; +pub const ACONFIGURATION_DENSITY_HIGH: ::std::os::raw::c_uint = 240; +pub const ACONFIGURATION_DENSITY_XHIGH: ::std::os::raw::c_uint = 320; +pub const ACONFIGURATION_DENSITY_XXHIGH: ::std::os::raw::c_uint = 480; +pub const ACONFIGURATION_DENSITY_XXXHIGH: ::std::os::raw::c_uint = 640; +pub const ACONFIGURATION_DENSITY_ANY: ::std::os::raw::c_uint = 65534; +pub const ACONFIGURATION_DENSITY_NONE: ::std::os::raw::c_uint = 65535; +pub const ACONFIGURATION_KEYBOARD_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_KEYBOARD_NOKEYS: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_KEYBOARD_QWERTY: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_KEYBOARD_12KEY: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVIGATION_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_NAVIGATION_NONAV: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_NAVIGATION_DPAD: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_NAVIGATION_TRACKBALL: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVIGATION_WHEEL: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_KEYSHIDDEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_KEYSHIDDEN_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_KEYSHIDDEN_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_KEYSHIDDEN_SOFT: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVHIDDEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_NAVHIDDEN_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_NAVHIDDEN_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENSIZE_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENSIZE_SMALL: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENSIZE_NORMAL: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENSIZE_LARGE: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_SCREENSIZE_XLARGE: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_SCREENLONG_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENLONG_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENLONG_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENROUND_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENROUND_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENROUND_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_HDR_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_HDR_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_HDR_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_UI_MODE_TYPE_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_UI_MODE_TYPE_NORMAL: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_UI_MODE_TYPE_DESK: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_UI_MODE_TYPE_CAR: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_UI_MODE_TYPE_TELEVISION: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_UI_MODE_TYPE_APPLIANCE: ::std::os::raw::c_uint = 5; +pub const ACONFIGURATION_UI_MODE_TYPE_WATCH: ::std::os::raw::c_uint = 6; +pub const ACONFIGURATION_UI_MODE_TYPE_VR_HEADSET: ::std::os::raw::c_uint = 7; +pub const ACONFIGURATION_UI_MODE_NIGHT_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_UI_MODE_NIGHT_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_UI_MODE_NIGHT_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREEN_WIDTH_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREEN_HEIGHT_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SMALLEST_SCREEN_WIDTH_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_LAYOUTDIR_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_LAYOUTDIR_LTR: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_LAYOUTDIR_RTL: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_MCC: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_MNC: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_LOCALE: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_TOUCHSCREEN: ::std::os::raw::c_uint = 8; +pub const ACONFIGURATION_KEYBOARD: ::std::os::raw::c_uint = 16; +pub const ACONFIGURATION_KEYBOARD_HIDDEN: ::std::os::raw::c_uint = 32; +pub const ACONFIGURATION_NAVIGATION: ::std::os::raw::c_uint = 64; +pub const ACONFIGURATION_ORIENTATION: ::std::os::raw::c_uint = 128; +pub const ACONFIGURATION_DENSITY: ::std::os::raw::c_uint = 256; +pub const ACONFIGURATION_SCREEN_SIZE: ::std::os::raw::c_uint = 512; +pub const ACONFIGURATION_VERSION: ::std::os::raw::c_uint = 1024; +pub const ACONFIGURATION_SCREEN_LAYOUT: ::std::os::raw::c_uint = 2048; +pub const ACONFIGURATION_UI_MODE: ::std::os::raw::c_uint = 4096; +pub const ACONFIGURATION_SMALLEST_SCREEN_SIZE: ::std::os::raw::c_uint = 8192; +pub const ACONFIGURATION_LAYOUTDIR: ::std::os::raw::c_uint = 16384; +pub const ACONFIGURATION_SCREEN_ROUND: ::std::os::raw::c_uint = 32768; +pub const ACONFIGURATION_COLOR_MODE: ::std::os::raw::c_uint = 65536; +pub const ACONFIGURATION_MNC_ZERO: ::std::os::raw::c_uint = 65535; +pub type _bindgen_ty_21 = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pollfd { + pub fd: ::std::os::raw::c_int, + pub events: ::std::os::raw::c_short, + pub revents: ::std::os::raw::c_short, +} +#[test] +fn bindgen_test_layout_pollfd() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(pollfd)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pollfd)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fd as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(fd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).events as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(events) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).revents as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(revents) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigcontext { + pub trap_no: ::std::os::raw::c_ulong, + pub error_code: ::std::os::raw::c_ulong, + pub oldmask: ::std::os::raw::c_ulong, + pub arm_r0: ::std::os::raw::c_ulong, + pub arm_r1: ::std::os::raw::c_ulong, + pub arm_r2: ::std::os::raw::c_ulong, + pub arm_r3: ::std::os::raw::c_ulong, + pub arm_r4: ::std::os::raw::c_ulong, + pub arm_r5: ::std::os::raw::c_ulong, + pub arm_r6: ::std::os::raw::c_ulong, + pub arm_r7: ::std::os::raw::c_ulong, + pub arm_r8: ::std::os::raw::c_ulong, + pub arm_r9: ::std::os::raw::c_ulong, + pub arm_r10: ::std::os::raw::c_ulong, + pub arm_fp: ::std::os::raw::c_ulong, + pub arm_ip: ::std::os::raw::c_ulong, + pub arm_sp: ::std::os::raw::c_ulong, + pub arm_lr: ::std::os::raw::c_ulong, + pub arm_pc: ::std::os::raw::c_ulong, + pub arm_cpsr: ::std::os::raw::c_ulong, + pub fault_address: ::std::os::raw::c_ulong, +} +#[test] +fn bindgen_test_layout_sigcontext() { + assert_eq!( + ::std::mem::size_of::(), + 84usize, + concat!("Size of: ", stringify!(sigcontext)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigcontext)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).trap_no as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(trap_no) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).error_code as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(error_code) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).oldmask as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(oldmask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_r0 as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_r0) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_r1 as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_r1) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_r2 as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_r2) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_r3 as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_r3) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_r4 as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_r4) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_r5 as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_r5) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_r6 as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_r6) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_r7 as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_r7) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_r8 as *const _ as usize }, + 44usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_r8) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_r9 as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_r9) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_r10 as *const _ as usize }, + 52usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_r10) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_fp as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_fp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_ip as *const _ as usize }, + 60usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_ip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_sp as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_sp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_lr as *const _ as usize }, + 68usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_lr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_pc as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_pc) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).arm_cpsr as *const _ as usize }, + 76usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(arm_cpsr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fault_address as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(fault_address) + ) + ); +} +pub type sigset_t = ::std::os::raw::c_ulong; +pub type __signalfn_t = ::std::option::Option; +pub type __sighandler_t = __signalfn_t; +pub type __restorefn_t = ::std::option::Option; +pub type __sigrestore_t = __restorefn_t; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __kernel_sigaction { + pub _u: __kernel_sigaction__bindgen_ty_1, + pub sa_mask: sigset_t, + pub sa_flags: ::std::os::raw::c_ulong, + pub sa_restorer: ::std::option::Option, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union __kernel_sigaction__bindgen_ty_1 { + pub _sa_handler: __sighandler_t, + pub _sa_sigaction: ::std::option::Option< + unsafe extern "C" fn( + arg1: ::std::os::raw::c_int, + arg2: *mut siginfo, + arg3: *mut ::std::os::raw::c_void, + ), + >, +} +#[test] +fn bindgen_test_layout___kernel_sigaction__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__kernel_sigaction__bindgen_ty_1>(), + 4usize, + concat!("Size of: ", stringify!(__kernel_sigaction__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_sigaction__bindgen_ty_1>(), + 4usize, + concat!( + "Alignment of ", + stringify!(__kernel_sigaction__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__kernel_sigaction__bindgen_ty_1>()))._sa_handler as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction__bindgen_ty_1), + "::", + stringify!(_sa_handler) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__kernel_sigaction__bindgen_ty_1>()))._sa_sigaction as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction__bindgen_ty_1), + "::", + stringify!(_sa_sigaction) + ) + ); +} +#[test] +fn bindgen_test_layout___kernel_sigaction() { + assert_eq!( + ::std::mem::size_of::<__kernel_sigaction>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_sigaction)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_sigaction>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_sigaction)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>()))._u as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(_u) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_mask as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_flags as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_restorer as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_restorer) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigaltstack { + pub ss_sp: *mut ::std::os::raw::c_void, + pub ss_flags: ::std::os::raw::c_int, + pub ss_size: size_t, +} +#[test] +fn bindgen_test_layout_sigaltstack() { + assert_eq!( + ::std::mem::size_of::(), + 12usize, + concat!("Size of: ", stringify!(sigaltstack)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigaltstack)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_sp as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_sp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_flags as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_size as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_size) + ) + ); +} +pub type stack_t = sigaltstack; +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigval { + pub sival_int: ::std::os::raw::c_int, + pub sival_ptr: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_sigval() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(sigval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sival_int as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigval), + "::", + stringify!(sival_int) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sival_ptr as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigval), + "::", + stringify!(sival_ptr) + ) + ); +} +pub type sigval_t = sigval; +#[repr(C)] +#[derive(Copy, Clone)] +pub union __sifields { + pub _kill: __sifields__bindgen_ty_1, + pub _timer: __sifields__bindgen_ty_2, + pub _rt: __sifields__bindgen_ty_3, + pub _sigchld: __sifields__bindgen_ty_4, + pub _sigfault: __sifields__bindgen_ty_5, + pub _sigpoll: __sifields__bindgen_ty_6, + pub _sigsys: __sifields__bindgen_ty_7, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_1 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_1>(), + 8usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_1>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_1>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_1), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_1>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_1), + "::", + stringify!(_uid) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_2 { + pub _tid: __kernel_timer_t, + pub _overrun: ::std::os::raw::c_int, + pub _sigval: sigval_t, + pub _sys_private: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_2() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_2>(), + 16usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_2)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_2>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_2)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._tid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_tid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._overrun as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_overrun) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._sigval as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_sigval) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._sys_private as *const _ as usize + }, + 12usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_sys_private) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_3 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, + pub _sigval: sigval_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_3() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_3>(), + 12usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_3)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_3>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_3)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_uid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._sigval as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_sigval) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_4 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, + pub _status: ::std::os::raw::c_int, + pub _utime: __kernel_clock_t, + pub _stime: __kernel_clock_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_4() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_4>(), + 20usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_4)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_4>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_4)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_uid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._status as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_status) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._utime as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_utime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._stime as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_stime) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_5 { + pub _addr: *mut ::std::os::raw::c_void, + pub __bindgen_anon_1: __sifields__bindgen_ty_5__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union __sifields__bindgen_ty_5__bindgen_ty_1 { + pub _addr_lsb: ::std::os::raw::c_short, + pub _addr_bnd: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1, + pub _addr_pkey: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1 { + pub _dummy_bnd: [::std::os::raw::c_char; 4usize], + pub _lower: *mut ::std::os::raw::c_void, + pub _upper: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>(), + 12usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>(), + 4usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>())) + ._dummy_bnd as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_dummy_bnd) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>()))._lower + as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_lower) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>()))._upper + as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_upper) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2 { + pub _dummy_pkey: [::std::os::raw::c_char; 4usize], + pub _pkey: __u32, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>(), + 8usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>(), + 4usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>())) + ._dummy_pkey as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2), + "::", + stringify!(_dummy_pkey) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>()))._pkey + as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2), + "::", + stringify!(_pkey) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1>(), + 12usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1>(), + 4usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_lsb as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_lsb) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_bnd as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_bnd) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_pkey + as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_pkey) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5>(), + 16usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_5)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_5)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_5>()))._addr as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5), + "::", + stringify!(_addr) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_6 { + pub _band: ::std::os::raw::c_long, + pub _fd: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_6() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_6>(), + 8usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_6)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_6>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_6)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_6>()))._band as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_6), + "::", + stringify!(_band) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_6>()))._fd as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_6), + "::", + stringify!(_fd) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_7 { + pub _call_addr: *mut ::std::os::raw::c_void, + pub _syscall: ::std::os::raw::c_int, + pub _arch: ::std::os::raw::c_uint, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_7() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_7>(), + 12usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_7)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_7>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_7)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._call_addr as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_call_addr) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._syscall as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_syscall) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._arch as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_arch) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields() { + assert_eq!( + ::std::mem::size_of::<__sifields>(), + 20usize, + concat!("Size of: ", stringify!(__sifields)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._kill as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_kill) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._timer as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_timer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._rt as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_rt) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigchld as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigchld) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigfault as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigfault) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigpoll as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigpoll) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigsys as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigsys) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct siginfo { + pub __bindgen_anon_1: siginfo__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union siginfo__bindgen_ty_1 { + pub __bindgen_anon_1: siginfo__bindgen_ty_1__bindgen_ty_1, + pub _si_pad: [::std::os::raw::c_int; 32usize], +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct siginfo__bindgen_ty_1__bindgen_ty_1 { + pub si_signo: ::std::os::raw::c_int, + pub si_errno: ::std::os::raw::c_int, + pub si_code: ::std::os::raw::c_int, + pub _sifields: __sifields, +} +#[test] +fn bindgen_test_layout_siginfo__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(siginfo__bindgen_ty_1__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!( + "Alignment of ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_signo as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_signo) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_errno as *const _ + as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_errno) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_code as *const _ + as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_code) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._sifields as *const _ + as usize + }, + 12usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_sifields) + ) + ); +} +#[test] +fn bindgen_test_layout_siginfo__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(siginfo__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(siginfo__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._si_pad as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1), + "::", + stringify!(_si_pad) + ) + ); +} +#[test] +fn bindgen_test_layout_siginfo() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(siginfo)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(siginfo)) + ); +} +pub type siginfo_t = siginfo; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigevent { + pub sigev_value: sigval_t, + pub sigev_signo: ::std::os::raw::c_int, + pub sigev_notify: ::std::os::raw::c_int, + pub _sigev_un: sigevent__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigevent__bindgen_ty_1 { + pub _pad: [::std::os::raw::c_int; 13usize], + pub _tid: ::std::os::raw::c_int, + pub _sigev_thread: sigevent__bindgen_ty_1__bindgen_ty_1, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigevent__bindgen_ty_1__bindgen_ty_1 { + pub _function: ::std::option::Option, + pub _attribute: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_sigevent__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!( + "Size of: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!( + "Alignment of ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._function as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_function) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._attribute as *const _ + as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_attribute) + ) + ); +} +#[test] +fn bindgen_test_layout_sigevent__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 52usize, + concat!("Size of: ", stringify!(sigevent__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigevent__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._pad as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_pad) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._tid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_tid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._sigev_thread as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_sigev_thread) + ) + ); +} +#[test] +fn bindgen_test_layout_sigevent() { + assert_eq!( + ::std::mem::size_of::(), + 64usize, + concat!("Size of: ", stringify!(sigevent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigevent)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_value as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_value) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_signo as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_signo) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_notify as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_notify) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._sigev_un as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(_sigev_un) + ) + ); +} +pub type sigevent_t = sigevent; +pub type sig_atomic_t = ::std::os::raw::c_int; +pub type sig_t = __sighandler_t; +pub type sighandler_t = __sighandler_t; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigset64_t { + pub __bits: [::std::os::raw::c_ulong; 2usize], +} +#[test] +fn bindgen_test_layout_sigset64_t() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(sigset64_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigset64_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__bits as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigset64_t), + "::", + stringify!(__bits) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigaction { + pub __bindgen_anon_1: sigaction__bindgen_ty_1, + pub sa_mask: sigset_t, + pub sa_flags: ::std::os::raw::c_int, + pub sa_restorer: ::std::option::Option, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigaction__bindgen_ty_1 { + pub sa_handler: sighandler_t, + pub sa_sigaction: ::std::option::Option< + unsafe extern "C" fn( + arg1: ::std::os::raw::c_int, + arg2: *mut siginfo, + arg3: *mut ::std::os::raw::c_void, + ), + >, +} +#[test] +fn bindgen_test_layout_sigaction__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(sigaction__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigaction__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_handler as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction__bindgen_ty_1), + "::", + stringify!(sa_handler) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_sigaction as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction__bindgen_ty_1), + "::", + stringify!(sa_sigaction) + ) + ); +} +#[test] +fn bindgen_test_layout_sigaction() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(sigaction)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigaction)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_mask as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_flags as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_restorer as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_restorer) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigaction64 { + pub __bindgen_anon_1: sigaction64__bindgen_ty_1, + pub sa_flags: ::std::os::raw::c_int, + pub sa_restorer: ::std::option::Option, + pub sa_mask: sigset64_t, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigaction64__bindgen_ty_1 { + pub sa_handler: sighandler_t, + pub sa_sigaction: ::std::option::Option< + unsafe extern "C" fn( + arg1: ::std::os::raw::c_int, + arg2: *mut siginfo, + arg3: *mut ::std::os::raw::c_void, + ), + >, +} +#[test] +fn bindgen_test_layout_sigaction64__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(sigaction64__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigaction64__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_handler as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction64__bindgen_ty_1), + "::", + stringify!(sa_handler) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_sigaction as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction64__bindgen_ty_1), + "::", + stringify!(sa_sigaction) + ) + ); +} +#[test] +fn bindgen_test_layout_sigaction64() { + assert_eq!( + ::std::mem::size_of::(), + 20usize, + concat!("Size of: ", stringify!(sigaction64)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigaction64)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_flags as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_restorer as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_restorer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_mask as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_mask) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timespec { + pub tv_sec: time_t, + pub tv_nsec: ::std::os::raw::c_long, +} +#[test] +fn bindgen_test_layout_timespec() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(timespec)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(timespec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timespec), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_nsec as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(timespec), + "::", + stringify!(tv_nsec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user_fpregs { + pub fpregs: [user_fpregs_fp_reg; 8usize], + pub _bitfield_align_1: [u32; 0], + pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>, + pub ftype: [::std::os::raw::c_uchar; 8usize], + pub init_flag: ::std::os::raw::c_uint, +} +#[repr(C)] +#[repr(align(4))] +#[derive(Debug, Copy, Clone)] +pub struct user_fpregs_fp_reg { + pub _bitfield_align_1: [u32; 0], + pub _bitfield_1: __BindgenBitfieldUnit<[u8; 12usize]>, +} +#[test] +fn bindgen_test_layout_user_fpregs_fp_reg() { + assert_eq!( + ::std::mem::size_of::(), + 12usize, + concat!("Size of: ", stringify!(user_fpregs_fp_reg)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(user_fpregs_fp_reg)) + ); +} +impl user_fpregs_fp_reg { + #[inline] + pub fn sign1(&self) -> ::std::os::raw::c_uint { + unsafe { ::std::mem::transmute(self._bitfield_1.get(0usize, 1u8) as u32) } + } + #[inline] + pub fn set_sign1(&mut self, val: ::std::os::raw::c_uint) { + unsafe { + let val: u32 = ::std::mem::transmute(val); + self._bitfield_1.set(0usize, 1u8, val as u64) + } + } + #[inline] + pub fn unused(&self) -> ::std::os::raw::c_uint { + unsafe { ::std::mem::transmute(self._bitfield_1.get(1usize, 15u8) as u32) } + } + #[inline] + pub fn set_unused(&mut self, val: ::std::os::raw::c_uint) { + unsafe { + let val: u32 = ::std::mem::transmute(val); + self._bitfield_1.set(1usize, 15u8, val as u64) + } + } + #[inline] + pub fn sign2(&self) -> ::std::os::raw::c_uint { + unsafe { ::std::mem::transmute(self._bitfield_1.get(16usize, 1u8) as u32) } + } + #[inline] + pub fn set_sign2(&mut self, val: ::std::os::raw::c_uint) { + unsafe { + let val: u32 = ::std::mem::transmute(val); + self._bitfield_1.set(16usize, 1u8, val as u64) + } + } + #[inline] + pub fn exponent(&self) -> ::std::os::raw::c_uint { + unsafe { ::std::mem::transmute(self._bitfield_1.get(17usize, 14u8) as u32) } + } + #[inline] + pub fn set_exponent(&mut self, val: ::std::os::raw::c_uint) { + unsafe { + let val: u32 = ::std::mem::transmute(val); + self._bitfield_1.set(17usize, 14u8, val as u64) + } + } + #[inline] + pub fn j(&self) -> ::std::os::raw::c_uint { + unsafe { ::std::mem::transmute(self._bitfield_1.get(31usize, 1u8) as u32) } + } + #[inline] + pub fn set_j(&mut self, val: ::std::os::raw::c_uint) { + unsafe { + let val: u32 = ::std::mem::transmute(val); + self._bitfield_1.set(31usize, 1u8, val as u64) + } + } + #[inline] + pub fn mantissa1(&self) -> ::std::os::raw::c_uint { + unsafe { ::std::mem::transmute(self._bitfield_1.get(32usize, 31u8) as u32) } + } + #[inline] + pub fn set_mantissa1(&mut self, val: ::std::os::raw::c_uint) { + unsafe { + let val: u32 = ::std::mem::transmute(val); + self._bitfield_1.set(32usize, 31u8, val as u64) + } + } + #[inline] + pub fn mantissa0(&self) -> ::std::os::raw::c_uint { + unsafe { ::std::mem::transmute(self._bitfield_1.get(64usize, 32u8) as u32) } + } + #[inline] + pub fn set_mantissa0(&mut self, val: ::std::os::raw::c_uint) { + unsafe { + let val: u32 = ::std::mem::transmute(val); + self._bitfield_1.set(64usize, 32u8, val as u64) + } + } + #[inline] + pub fn new_bitfield_1( + sign1: ::std::os::raw::c_uint, + unused: ::std::os::raw::c_uint, + sign2: ::std::os::raw::c_uint, + exponent: ::std::os::raw::c_uint, + j: ::std::os::raw::c_uint, + mantissa1: ::std::os::raw::c_uint, + mantissa0: ::std::os::raw::c_uint, + ) -> __BindgenBitfieldUnit<[u8; 12usize]> { + let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 12usize]> = Default::default(); + __bindgen_bitfield_unit.set(0usize, 1u8, { + let sign1: u32 = unsafe { ::std::mem::transmute(sign1) }; + sign1 as u64 + }); + __bindgen_bitfield_unit.set(1usize, 15u8, { + let unused: u32 = unsafe { ::std::mem::transmute(unused) }; + unused as u64 + }); + __bindgen_bitfield_unit.set(16usize, 1u8, { + let sign2: u32 = unsafe { ::std::mem::transmute(sign2) }; + sign2 as u64 + }); + __bindgen_bitfield_unit.set(17usize, 14u8, { + let exponent: u32 = unsafe { ::std::mem::transmute(exponent) }; + exponent as u64 + }); + __bindgen_bitfield_unit.set(31usize, 1u8, { + let j: u32 = unsafe { ::std::mem::transmute(j) }; + j as u64 + }); + __bindgen_bitfield_unit.set(32usize, 31u8, { + let mantissa1: u32 = unsafe { ::std::mem::transmute(mantissa1) }; + mantissa1 as u64 + }); + __bindgen_bitfield_unit.set(64usize, 32u8, { + let mantissa0: u32 = unsafe { ::std::mem::transmute(mantissa0) }; + mantissa0 as u64 + }); + __bindgen_bitfield_unit + } +} +#[test] +fn bindgen_test_layout_user_fpregs() { + assert_eq!( + ::std::mem::size_of::(), + 116usize, + concat!("Size of: ", stringify!(user_fpregs)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(user_fpregs)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpregs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs), + "::", + stringify!(fpregs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ftype as *const _ as usize }, + 104usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs), + "::", + stringify!(ftype) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).init_flag as *const _ as usize }, + 112usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs), + "::", + stringify!(init_flag) + ) + ); +} +impl user_fpregs { + #[inline] + pub fn fpsr(&self) -> ::std::os::raw::c_uint { + unsafe { ::std::mem::transmute(self._bitfield_1.get(0usize, 32u8) as u32) } + } + #[inline] + pub fn set_fpsr(&mut self, val: ::std::os::raw::c_uint) { + unsafe { + let val: u32 = ::std::mem::transmute(val); + self._bitfield_1.set(0usize, 32u8, val as u64) + } + } + #[inline] + pub fn fpcr(&self) -> ::std::os::raw::c_uint { + unsafe { ::std::mem::transmute(self._bitfield_1.get(32usize, 32u8) as u32) } + } + #[inline] + pub fn set_fpcr(&mut self, val: ::std::os::raw::c_uint) { + unsafe { + let val: u32 = ::std::mem::transmute(val); + self._bitfield_1.set(32usize, 32u8, val as u64) + } + } + #[inline] + pub fn new_bitfield_1( + fpsr: ::std::os::raw::c_uint, + fpcr: ::std::os::raw::c_uint, + ) -> __BindgenBitfieldUnit<[u8; 8usize]> { + let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default(); + __bindgen_bitfield_unit.set(0usize, 32u8, { + let fpsr: u32 = unsafe { ::std::mem::transmute(fpsr) }; + fpsr as u64 + }); + __bindgen_bitfield_unit.set(32usize, 32u8, { + let fpcr: u32 = unsafe { ::std::mem::transmute(fpcr) }; + fpcr as u64 + }); + __bindgen_bitfield_unit + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user_regs { + pub uregs: [::std::os::raw::c_ulong; 18usize], +} +#[test] +fn bindgen_test_layout_user_regs() { + assert_eq!( + ::std::mem::size_of::(), + 72usize, + concat!("Size of: ", stringify!(user_regs)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(user_regs)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uregs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user_regs), + "::", + stringify!(uregs) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user_vfp { + pub fpregs: [::std::os::raw::c_ulonglong; 32usize], + pub fpscr: ::std::os::raw::c_ulong, +} +#[test] +fn bindgen_test_layout_user_vfp() { + assert_eq!( + ::std::mem::size_of::(), + 264usize, + concat!("Size of: ", stringify!(user_vfp)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(user_vfp)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpregs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user_vfp), + "::", + stringify!(fpregs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpscr as *const _ as usize }, + 256usize, + concat!( + "Offset of field: ", + stringify!(user_vfp), + "::", + stringify!(fpscr) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user_vfp_exc { + pub fpexc: ::std::os::raw::c_ulong, + pub fpinst: ::std::os::raw::c_ulong, + pub fpinst2: ::std::os::raw::c_ulong, +} +#[test] +fn bindgen_test_layout_user_vfp_exc() { + assert_eq!( + ::std::mem::size_of::(), + 12usize, + concat!("Size of: ", stringify!(user_vfp_exc)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(user_vfp_exc)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpexc as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user_vfp_exc), + "::", + stringify!(fpexc) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpinst as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(user_vfp_exc), + "::", + stringify!(fpinst) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpinst2 as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(user_vfp_exc), + "::", + stringify!(fpinst2) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user { + pub regs: user_regs, + pub u_fpvalid: ::std::os::raw::c_int, + pub u_tsize: ::std::os::raw::c_ulong, + pub u_dsize: ::std::os::raw::c_ulong, + pub u_ssize: ::std::os::raw::c_ulong, + pub start_code: ::std::os::raw::c_ulong, + pub start_stack: ::std::os::raw::c_ulong, + pub signal: ::std::os::raw::c_long, + pub reserved: ::std::os::raw::c_int, + pub u_ar0: *mut user_regs, + pub magic: ::std::os::raw::c_ulong, + pub u_comm: [::std::os::raw::c_char; 32usize], + pub u_debugreg: [::std::os::raw::c_int; 8usize], + pub u_fp: user_fpregs, + pub u_fp0: *mut user_fpregs, +} +#[test] +fn bindgen_test_layout_user() { + assert_eq!( + ::std::mem::size_of::(), + 296usize, + concat!("Size of: ", stringify!(user)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(user)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).regs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(regs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_fpvalid as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_fpvalid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_tsize as *const _ as usize }, + 76usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_tsize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_dsize as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_dsize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_ssize as *const _ as usize }, + 84usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_ssize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).start_code as *const _ as usize }, + 88usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(start_code) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).start_stack as *const _ as usize }, + 92usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(start_stack) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).signal as *const _ as usize }, + 96usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(signal) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).reserved as *const _ as usize }, + 100usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(reserved) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_ar0 as *const _ as usize }, + 104usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_ar0) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).magic as *const _ as usize }, + 108usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(magic) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_comm as *const _ as usize }, + 112usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_comm) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_debugreg as *const _ as usize }, + 144usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_debugreg) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_fp as *const _ as usize }, + 176usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_fp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_fp0 as *const _ as usize }, + 292usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_fp0) + ) + ); +} +pub const REG_R0: ::std::os::raw::c_uint = 0; +pub const REG_R1: ::std::os::raw::c_uint = 1; +pub const REG_R2: ::std::os::raw::c_uint = 2; +pub const REG_R3: ::std::os::raw::c_uint = 3; +pub const REG_R4: ::std::os::raw::c_uint = 4; +pub const REG_R5: ::std::os::raw::c_uint = 5; +pub const REG_R6: ::std::os::raw::c_uint = 6; +pub const REG_R7: ::std::os::raw::c_uint = 7; +pub const REG_R8: ::std::os::raw::c_uint = 8; +pub const REG_R9: ::std::os::raw::c_uint = 9; +pub const REG_R10: ::std::os::raw::c_uint = 10; +pub const REG_R11: ::std::os::raw::c_uint = 11; +pub const REG_R12: ::std::os::raw::c_uint = 12; +pub const REG_R13: ::std::os::raw::c_uint = 13; +pub const REG_R14: ::std::os::raw::c_uint = 14; +pub const REG_R15: ::std::os::raw::c_uint = 15; +pub type _bindgen_ty_22 = ::std::os::raw::c_uint; +pub type greg_t = ::std::os::raw::c_int; +pub type gregset_t = [greg_t; 18usize]; +pub type fpregset_t = user_fpregs; +pub type mcontext_t = sigcontext; +#[repr(C)] +#[repr(align(8))] +#[derive(Copy, Clone)] +pub struct ucontext { + pub uc_flags: ::std::os::raw::c_ulong, + pub uc_link: *mut ucontext, + pub uc_stack: stack_t, + pub uc_mcontext: mcontext_t, + pub __bindgen_anon_1: ucontext__bindgen_ty_1, + pub __padding: [::std::os::raw::c_char; 120usize], + pub uc_regspace: [::std::os::raw::c_ulong; 128usize], +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union ucontext__bindgen_ty_1 { + pub __bindgen_anon_1: ucontext__bindgen_ty_1__bindgen_ty_1, + pub uc_sigmask64: sigset64_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct ucontext__bindgen_ty_1__bindgen_ty_1 { + pub uc_sigmask: sigset_t, + pub __padding_rt_sigset: u32, +} +#[test] +fn bindgen_test_layout_ucontext__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!( + "Size of: ", + stringify!(ucontext__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!( + "Alignment of ", + stringify!(ucontext__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).uc_sigmask as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(uc_sigmask) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).__padding_rt_sigset + as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ucontext__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(__padding_rt_sigset) + ) + ); +} +#[test] +fn bindgen_test_layout_ucontext__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(ucontext__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(ucontext__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).uc_sigmask64 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext__bindgen_ty_1), + "::", + stringify!(uc_sigmask64) + ) + ); +} +#[test] +fn bindgen_test_layout_ucontext() { + assert_eq!( + ::std::mem::size_of::(), + 744usize, + concat!("Size of: ", stringify!(ucontext)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ucontext)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_link as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_link) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_stack as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_stack) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_mcontext as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_mcontext) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__padding as *const _ as usize }, + 112usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(__padding) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_regspace as *const _ as usize }, + 232usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_regspace) + ) + ); +} +pub type ucontext_t = ucontext; +extern "C" { + pub fn __libc_current_sigrtmin() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn __libc_current_sigrtmax() -> ::std::os::raw::c_int; +} +extern "C" { + pub static sys_siglist: [*const ::std::os::raw::c_char; 65usize]; +} +extern "C" { + pub static sys_signame: [*const ::std::os::raw::c_char; 65usize]; +} +extern "C" { + pub fn sigaction( + __signal: ::std::os::raw::c_int, + __new_action: *const sigaction, + __old_action: *mut sigaction, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaction64( + __signal: ::std::os::raw::c_int, + __new_action: *const sigaction64, + __old_action: *mut sigaction64, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn siginterrupt( + __signal: ::std::os::raw::c_int, + __flag: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn signal(__signal: ::std::os::raw::c_int, __handler: sighandler_t) -> sighandler_t; +} +extern "C" { + pub fn sigaddset( + __set: *mut sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaddset64( + __set: *mut sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigdelset( + __set: *mut sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigdelset64( + __set: *mut sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigemptyset(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigemptyset64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigfillset(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigfillset64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigismember( + __set: *const sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigismember64( + __set: *const sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpending(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpending64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigprocmask( + __how: ::std::os::raw::c_int, + __new_set: *const sigset_t, + __old_set: *mut sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigprocmask64( + __how: ::std::os::raw::c_int, + __new_set: *const sigset64_t, + __old_set: *mut sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigsuspend(__mask: *const sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigsuspend64(__mask: *const sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwait( + __set: *const sigset_t, + __signal: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwait64( + __set: *const sigset64_t, + __signal: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sighold(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigignore(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpause(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigrelse(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigset(__signal: ::std::os::raw::c_int, __handler: sighandler_t) -> sighandler_t; +} +extern "C" { + pub fn raise(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn kill(__pid: pid_t, __signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn killpg( + __pgrp: ::std::os::raw::c_int, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn tgkill( + __tgid: ::std::os::raw::c_int, + __tid: ::std::os::raw::c_int, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaltstack( + __new_signal_stack: *const stack_t, + __old_signal_stack: *mut stack_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn psiginfo(__info: *const siginfo_t, __msg: *const ::std::os::raw::c_char); +} +extern "C" { + pub fn psignal(__signal: ::std::os::raw::c_int, __msg: *const ::std::os::raw::c_char); +} +extern "C" { + pub fn pthread_kill( + __pthread: pthread_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_sigmask( + __how: ::std::os::raw::c_int, + __new_set: *const sigset_t, + __old_set: *mut sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_sigmask64( + __how: ::std::os::raw::c_int, + __new_set: *const sigset64_t, + __old_set: *mut sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigqueue( + __pid: pid_t, + __signal: ::std::os::raw::c_int, + __value: sigval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigtimedwait( + __set: *const sigset_t, + __info: *mut siginfo_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigtimedwait64( + __set: *const sigset64_t, + __info: *mut siginfo_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwaitinfo(__set: *const sigset_t, __info: *mut siginfo_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwaitinfo64(__set: *const sigset64_t, __info: *mut siginfo_t) + -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_timespec { + pub tv_sec: __kernel_time64_t, + pub tv_nsec: ::std::os::raw::c_longlong, +} +#[test] +fn bindgen_test_layout___kernel_timespec() { + assert_eq!( + ::std::mem::size_of::<__kernel_timespec>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_timespec)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_timespec>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_timespec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_timespec>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_timespec), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_timespec>())).tv_nsec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_timespec), + "::", + stringify!(tv_nsec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_itimerspec { + pub it_interval: __kernel_timespec, + pub it_value: __kernel_timespec, +} +#[test] +fn bindgen_test_layout___kernel_itimerspec() { + assert_eq!( + ::std::mem::size_of::<__kernel_itimerspec>(), + 32usize, + concat!("Size of: ", stringify!(__kernel_itimerspec)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_itimerspec>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_itimerspec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_itimerspec>())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_itimerspec), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_itimerspec>())).it_value as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__kernel_itimerspec), + "::", + stringify!(it_value) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_old_timeval { + pub tv_sec: __kernel_long_t, + pub tv_usec: __kernel_long_t, +} +#[test] +fn bindgen_test_layout___kernel_old_timeval() { + assert_eq!( + ::std::mem::size_of::<__kernel_old_timeval>(), + 8usize, + concat!("Size of: ", stringify!(__kernel_old_timeval)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_old_timeval>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_old_timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_old_timeval>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_old_timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_old_timeval>())).tv_usec as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__kernel_old_timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_sock_timeval { + pub tv_sec: __s64, + pub tv_usec: __s64, +} +#[test] +fn bindgen_test_layout___kernel_sock_timeval() { + assert_eq!( + ::std::mem::size_of::<__kernel_sock_timeval>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_sock_timeval)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_sock_timeval>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_sock_timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sock_timeval>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sock_timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sock_timeval>())).tv_usec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sock_timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timeval { + pub tv_sec: __kernel_time_t, + pub tv_usec: __kernel_suseconds_t, +} +#[test] +fn bindgen_test_layout_timeval() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(timeval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_usec as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timezone { + pub tz_minuteswest: ::std::os::raw::c_int, + pub tz_dsttime: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout_timezone() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(timezone)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(timezone)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tz_minuteswest as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timezone), + "::", + stringify!(tz_minuteswest) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tz_dsttime as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(timezone), + "::", + stringify!(tz_dsttime) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct itimerspec { + pub it_interval: timespec, + pub it_value: timespec, +} +#[test] +fn bindgen_test_layout_itimerspec() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(itimerspec)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(itimerspec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(itimerspec), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_value as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(itimerspec), + "::", + stringify!(it_value) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct itimerval { + pub it_interval: timeval, + pub it_value: timeval, +} +#[test] +fn bindgen_test_layout_itimerval() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(itimerval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(itimerval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(itimerval), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_value as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(itimerval), + "::", + stringify!(it_value) + ) + ); +} +pub type fd_mask = ::std::os::raw::c_ulong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct fd_set { + pub fds_bits: [fd_mask; 32usize], +} +#[test] +fn bindgen_test_layout_fd_set() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(fd_set)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(fd_set)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fds_bits as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(fd_set), + "::", + stringify!(fds_bits) + ) + ); +} +extern "C" { + pub fn __FD_CLR_chk(arg1: ::std::os::raw::c_int, arg2: *mut fd_set, arg3: size_t); +} +extern "C" { + pub fn __FD_SET_chk(arg1: ::std::os::raw::c_int, arg2: *mut fd_set, arg3: size_t); +} +extern "C" { + pub fn __FD_ISSET_chk( + arg1: ::std::os::raw::c_int, + arg2: *const fd_set, + arg3: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn select( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *mut timeval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pselect( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *const timespec, + __mask: *const sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pselect64( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *const timespec, + __mask: *const sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn gettimeofday(__tv: *mut timeval, __tz: *mut timezone) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn settimeofday(__tv: *const timeval, __tz: *const timezone) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn getitimer( + __which: ::std::os::raw::c_int, + __current_value: *mut itimerval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn setitimer( + __which: ::std::os::raw::c_int, + __new_value: *const itimerval, + __old_value: *mut itimerval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn utimes( + __path: *const ::std::os::raw::c_char, + __times: *const timeval, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __locale_t { + _unused: [u8; 0], +} +pub type locale_t = *mut __locale_t; +extern "C" { + pub static mut tzname: [*mut ::std::os::raw::c_char; 0usize]; +} +extern "C" { + pub static mut daylight: ::std::os::raw::c_int; +} +extern "C" { + pub static mut timezone: ::std::os::raw::c_long; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct tm { + pub tm_sec: ::std::os::raw::c_int, + pub tm_min: ::std::os::raw::c_int, + pub tm_hour: ::std::os::raw::c_int, + pub tm_mday: ::std::os::raw::c_int, + pub tm_mon: ::std::os::raw::c_int, + pub tm_year: ::std::os::raw::c_int, + pub tm_wday: ::std::os::raw::c_int, + pub tm_yday: ::std::os::raw::c_int, + pub tm_isdst: ::std::os::raw::c_int, + pub tm_gmtoff: ::std::os::raw::c_long, + pub tm_zone: *const ::std::os::raw::c_char, +} +#[test] +fn bindgen_test_layout_tm() { + assert_eq!( + ::std::mem::size_of::(), + 44usize, + concat!("Size of: ", stringify!(tm)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(tm)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_min as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_min) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_hour as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_hour) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_mday as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_mday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_mon as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_mon) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_year as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_year) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_wday as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_wday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_yday as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_yday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_isdst as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_isdst) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_gmtoff as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_gmtoff) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_zone as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_zone) + ) + ); +} +extern "C" { + pub fn time(__t: *mut time_t) -> time_t; +} +extern "C" { + pub fn nanosleep( + __request: *const timespec, + __remainder: *mut timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn asctime(__tm: *const tm) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn asctime_r( + __tm: *const tm, + __buf: *mut ::std::os::raw::c_char, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn difftime(__lhs: time_t, __rhs: time_t) -> f64; +} +extern "C" { + pub fn mktime(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn localtime(__t: *const time_t) -> *mut tm; +} +extern "C" { + pub fn localtime_r(__t: *const time_t, __tm: *mut tm) -> *mut tm; +} +extern "C" { + pub fn gmtime(__t: *const time_t) -> *mut tm; +} +extern "C" { + pub fn gmtime_r(__t: *const time_t, __tm: *mut tm) -> *mut tm; +} +extern "C" { + pub fn strptime( + __s: *const ::std::os::raw::c_char, + __fmt: *const ::std::os::raw::c_char, + __tm: *mut tm, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn strptime_l( + __s: *const ::std::os::raw::c_char, + __fmt: *const ::std::os::raw::c_char, + __tm: *mut tm, + __l: locale_t, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn strftime( + __buf: *mut ::std::os::raw::c_char, + __n: size_t, + __fmt: *const ::std::os::raw::c_char, + __tm: *const tm, + ) -> size_t; +} +extern "C" { + pub fn strftime_l( + __buf: *mut ::std::os::raw::c_char, + __n: size_t, + __fmt: *const ::std::os::raw::c_char, + __tm: *const tm, + __l: locale_t, + ) -> size_t; +} +extern "C" { + pub fn ctime(__t: *const time_t) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn ctime_r( + __t: *const time_t, + __buf: *mut ::std::os::raw::c_char, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn tzset(); +} +extern "C" { + pub fn clock() -> clock_t; +} +extern "C" { + pub fn clock_getcpuclockid(__pid: pid_t, __clock: *mut clockid_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_getres(__clock: clockid_t, __resolution: *mut timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_gettime(__clock: clockid_t, __ts: *mut timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_nanosleep( + __clock: clockid_t, + __flags: ::std::os::raw::c_int, + __request: *const timespec, + __remainder: *mut timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_settime(__clock: clockid_t, __ts: *const timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_create( + __clock: clockid_t, + __event: *mut sigevent, + __timer_ptr: *mut timer_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_delete(__timer: timer_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_settime( + __timer: timer_t, + __flags: ::std::os::raw::c_int, + __new_value: *const itimerspec, + __old_value: *mut itimerspec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_gettime(__timer: timer_t, __ts: *mut itimerspec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_getoverrun(__timer: timer_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timelocal(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn timegm(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn timespec_get( + __ts: *mut timespec, + __base: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +pub type nfds_t = ::std::os::raw::c_uint; +extern "C" { + pub fn poll( + __fds: *mut pollfd, + __count: nfds_t, + __timeout_ms: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn ppoll( + __fds: *mut pollfd, + __count: nfds_t, + __timeout: *const timespec, + __mask: *const sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn ppoll64( + __fds: *mut pollfd, + __count: nfds_t, + __timeout: *const timespec, + __mask: *const sigset64_t, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct clone_args { + pub flags: __u64, + pub pidfd: __u64, + pub child_tid: __u64, + pub parent_tid: __u64, + pub exit_signal: __u64, + pub stack: __u64, + pub stack_size: __u64, + pub tls: __u64, +} +#[test] +fn bindgen_test_layout_clone_args() { + assert_eq!( + ::std::mem::size_of::(), + 64usize, + concat!("Size of: ", stringify!(clone_args)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(clone_args)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pidfd as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(pidfd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).child_tid as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(child_tid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).parent_tid as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(parent_tid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).exit_signal as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(exit_signal) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(stack) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_size as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(stack_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tls as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(tls) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sched_param { + pub sched_priority: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout_sched_param() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(sched_param)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sched_param)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_priority as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sched_param), + "::", + stringify!(sched_priority) + ) + ); +} +extern "C" { + pub fn sched_setscheduler( + __pid: pid_t, + __policy: ::std::os::raw::c_int, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_getscheduler(__pid: pid_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_yield() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_get_priority_max(__policy: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_get_priority_min(__policy: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_setparam(__pid: pid_t, __param: *const sched_param) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_getparam(__pid: pid_t, __param: *mut sched_param) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_rr_get_interval(__pid: pid_t, __quantum: *mut timespec) -> ::std::os::raw::c_int; +} +pub const PTHREAD_MUTEX_NORMAL: ::std::os::raw::c_uint = 0; +pub const PTHREAD_MUTEX_RECURSIVE: ::std::os::raw::c_uint = 1; +pub const PTHREAD_MUTEX_ERRORCHECK: ::std::os::raw::c_uint = 2; +pub const PTHREAD_MUTEX_ERRORCHECK_NP: ::std::os::raw::c_uint = 2; +pub const PTHREAD_MUTEX_RECURSIVE_NP: ::std::os::raw::c_uint = 1; +pub const PTHREAD_MUTEX_DEFAULT: ::std::os::raw::c_uint = 0; +pub type _bindgen_ty_23 = ::std::os::raw::c_uint; +pub const PTHREAD_RWLOCK_PREFER_READER_NP: ::std::os::raw::c_uint = 0; +pub const PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_24 = ::std::os::raw::c_uint; +extern "C" { + pub fn pthread_atfork( + __prepare: ::std::option::Option, + __parent: ::std::option::Option, + __child: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_destroy(__attr: *mut pthread_attr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getdetachstate( + __attr: *const pthread_attr_t, + __state: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getguardsize( + __attr: *const pthread_attr_t, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getinheritsched( + __attr: *const pthread_attr_t, + __flag: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getschedparam( + __attr: *const pthread_attr_t, + __param: *mut sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getschedpolicy( + __attr: *const pthread_attr_t, + __policy: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getscope( + __attr: *const pthread_attr_t, + __scope: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getstack( + __attr: *const pthread_attr_t, + __addr: *mut *mut ::std::os::raw::c_void, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getstacksize( + __attr: *const pthread_attr_t, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_init(__attr: *mut pthread_attr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setdetachstate( + __attr: *mut pthread_attr_t, + __state: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setguardsize( + __attr: *mut pthread_attr_t, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setinheritsched( + __attr: *mut pthread_attr_t, + __flag: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setschedparam( + __attr: *mut pthread_attr_t, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setschedpolicy( + __attr: *mut pthread_attr_t, + __policy: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setscope( + __attr: *mut pthread_attr_t, + __scope: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setstack( + __attr: *mut pthread_attr_t, + __addr: *mut ::std::os::raw::c_void, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setstacksize( + __addr: *mut pthread_attr_t, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_destroy(__attr: *mut pthread_condattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_getclock( + __attr: *const pthread_condattr_t, + __clock: *mut clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_getpshared( + __attr: *const pthread_condattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_init(__attr: *mut pthread_condattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_setclock( + __attr: *mut pthread_condattr_t, + __clock: clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_setpshared( + __attr: *mut pthread_condattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_broadcast(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_clockwait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_destroy(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_init( + __cond: *mut pthread_cond_t, + __attr: *const pthread_condattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_signal(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_timedwait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_timedwait_monotonic_np( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_wait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_create( + __pthread_ptr: *mut pthread_t, + __attr: *const pthread_attr_t, + __start_routine: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void) -> *mut ::std::os::raw::c_void, + >, + arg1: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_detach(__pthread: pthread_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_exit(__return_value: *mut ::std::os::raw::c_void); +} +extern "C" { + pub fn pthread_equal(__lhs: pthread_t, __rhs: pthread_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getattr_np( + __pthread: pthread_t, + __attr: *mut pthread_attr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getcpuclockid( + __pthread: pthread_t, + __clock: *mut clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getschedparam( + __pthread: pthread_t, + __policy: *mut ::std::os::raw::c_int, + __param: *mut sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getspecific(__key: pthread_key_t) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn pthread_gettid_np(__pthread: pthread_t) -> pid_t; +} +extern "C" { + pub fn pthread_join( + __pthread: pthread_t, + __return_value_ptr: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_key_create( + __key_ptr: *mut pthread_key_t, + __key_destructor: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void), + >, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_key_delete(__key: pthread_key_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_destroy(__attr: *mut pthread_mutexattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_getpshared( + __attr: *const pthread_mutexattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_gettype( + __attr: *const pthread_mutexattr_t, + __type: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_getprotocol( + __attr: *const pthread_mutexattr_t, + __protocol: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_init(__attr: *mut pthread_mutexattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_setpshared( + __attr: *mut pthread_mutexattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_settype( + __attr: *mut pthread_mutexattr_t, + __type: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_setprotocol( + __attr: *mut pthread_mutexattr_t, + __protocol: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_clocklock( + __mutex: *mut pthread_mutex_t, + __clock: clockid_t, + __abstime: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_destroy(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_init( + __mutex: *mut pthread_mutex_t, + __attr: *const pthread_mutexattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_lock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_timedlock( + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_timedlock_monotonic_np( + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_trylock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_unlock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_once( + __once: *mut pthread_once_t, + __init_routine: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_init(__attr: *mut pthread_rwlockattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_destroy(__attr: *mut pthread_rwlockattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_getpshared( + __attr: *const pthread_rwlockattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_setpshared( + __attr: *mut pthread_rwlockattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_getkind_np( + __attr: *const pthread_rwlockattr_t, + __kind: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_setkind_np( + __attr: *mut pthread_rwlockattr_t, + __kind: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_clockrdlock( + __rwlock: *mut pthread_rwlock_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_clockwrlock( + __rwlock: *mut pthread_rwlock_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_destroy(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_init( + __rwlock: *mut pthread_rwlock_t, + __attr: *const pthread_rwlockattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_rdlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedrdlock( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedrdlock_monotonic_np( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedwrlock( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedwrlock_monotonic_np( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_tryrdlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_trywrlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_unlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_wrlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_init(__attr: *mut pthread_barrierattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_destroy(__attr: *mut pthread_barrierattr_t) + -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_getpshared( + __attr: *const pthread_barrierattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_setpshared( + __attr: *mut pthread_barrierattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_init( + __barrier: *mut pthread_barrier_t, + __attr: *const pthread_barrierattr_t, + __count: ::std::os::raw::c_uint, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_destroy(__barrier: *mut pthread_barrier_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_wait(__barrier: *mut pthread_barrier_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_destroy(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_init( + __spinlock: *mut pthread_spinlock_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_lock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_trylock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_unlock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_self() -> pthread_t; +} +extern "C" { + pub fn pthread_setname_np( + __pthread: pthread_t, + __name: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setschedparam( + __pthread: pthread_t, + __policy: ::std::os::raw::c_int, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setschedprio( + __pthread: pthread_t, + __priority: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setspecific( + __key: pthread_key_t, + __value: *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +pub type __pthread_cleanup_func_t = + ::std::option::Option; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __pthread_cleanup_t { + pub __cleanup_prev: *mut __pthread_cleanup_t, + pub __cleanup_routine: __pthread_cleanup_func_t, + pub __cleanup_arg: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout___pthread_cleanup_t() { + assert_eq!( + ::std::mem::size_of::<__pthread_cleanup_t>(), + 12usize, + concat!("Size of: ", stringify!(__pthread_cleanup_t)) + ); + assert_eq!( + ::std::mem::align_of::<__pthread_cleanup_t>(), + 4usize, + concat!("Alignment of ", stringify!(__pthread_cleanup_t)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_prev as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_prev) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_routine as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_routine) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_arg as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_arg) + ) + ); +} +extern "C" { + pub fn __pthread_cleanup_push( + c: *mut __pthread_cleanup_t, + arg1: __pthread_cleanup_func_t, + arg2: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + pub fn __pthread_cleanup_pop(arg1: *mut __pthread_cleanup_t, arg2: ::std::os::raw::c_int); +} +#[doc = " Data associated with an ALooper fd that will be returned as the \"outData\""] +#[doc = " when that source has data ready."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_poll_source { + #[doc = " The identifier of this source. May be LOOPER_ID_MAIN or"] + #[doc = " LOOPER_ID_INPUT."] + pub id: i32, + #[doc = " The android_app this ident is associated with."] + pub app: *mut android_app, + #[doc = " Function to call to perform the standard processing of data from"] + #[doc = " this source."] + pub process: ::std::option::Option< + unsafe extern "C" fn(app: *mut android_app, source: *mut android_poll_source), + >, +} +#[test] +fn bindgen_test_layout_android_poll_source() { + assert_eq!( + ::std::mem::size_of::(), + 12usize, + concat!("Size of: ", stringify!(android_poll_source)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(android_poll_source)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).id as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(id) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).app as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(app) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).process as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(process) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_input_buffer { + #[doc = " Pointer to a read-only array of pointers to GameActivityMotionEvent."] + #[doc = " Only the first motionEventsCount events are valid."] + pub motionEvents: [GameActivityMotionEvent; 16usize], + #[doc = " The number of valid motion events in `motionEvents`."] + pub motionEventsCount: u64, + #[doc = " Pointer to a read-only array of pointers to GameActivityKeyEvent."] + #[doc = " Only the first keyEventsCount events are valid."] + pub keyEvents: [GameActivityKeyEvent; 4usize], + #[doc = " The number of valid \"Key\" events in `keyEvents`."] + pub keyEventsCount: u64, +} +#[test] +fn bindgen_test_layout_android_input_buffer() { + assert_eq!( + ::std::mem::size_of::(), + 27504usize, + concat!("Size of: ", stringify!(android_input_buffer)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(android_input_buffer)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).motionEvents as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(motionEvents) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).motionEventsCount as *const _ as usize + }, + 27264usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(motionEventsCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyEvents as *const _ as usize }, + 27272usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(keyEvents) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).keyEventsCount as *const _ as usize + }, + 27496usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(keyEventsCount) + ) + ); +} +#[doc = " Function pointer declaration for the filtering of key events."] +#[doc = " A function with this signature should be passed to"] +#[doc = " android_app_set_key_event_filter and return false for any events that should"] +#[doc = " not be handled by android_native_app_glue. These events will be handled by"] +#[doc = " the system instead."] +pub type android_key_event_filter = + ::std::option::Option bool>; +#[doc = " Function pointer definition for the filtering of motion events."] +#[doc = " A function with this signature should be passed to"] +#[doc = " android_app_set_motion_event_filter and return false for any events that"] +#[doc = " should not be handled by android_native_app_glue. These events will be"] +#[doc = " handled by the system instead."] +pub type android_motion_event_filter = + ::std::option::Option bool>; +#[doc = " The GameActivity interface provided by "] +#[doc = " is based on a set of application-provided callbacks that will be called"] +#[doc = " by the Activity's main thread when certain events occur."] +#[doc = ""] +#[doc = " This means that each one of this callbacks _should_ _not_ block, or they"] +#[doc = " risk having the system force-close the application. This programming"] +#[doc = " model is direct, lightweight, but constraining."] +#[doc = ""] +#[doc = " The 'android_native_app_glue' static library is used to provide a different"] +#[doc = " execution model where the application can implement its own main event"] +#[doc = " loop in a different thread instead. Here's how it works:"] +#[doc = ""] +#[doc = " 1/ The application must provide a function named \"android_main()\" that"] +#[doc = " will be called when the activity is created, in a new thread that is"] +#[doc = " distinct from the activity's main thread."] +#[doc = ""] +#[doc = " 2/ android_main() receives a pointer to a valid \"android_app\" structure"] +#[doc = " that contains references to other important objects, e.g. the"] +#[doc = " GameActivity obejct instance the application is running in."] +#[doc = ""] +#[doc = " 3/ the \"android_app\" object holds an ALooper instance that already"] +#[doc = " listens to activity lifecycle events (e.g. \"pause\", \"resume\")."] +#[doc = " See APP_CMD_XXX declarations below."] +#[doc = ""] +#[doc = " This corresponds to an ALooper identifier returned by"] +#[doc = " ALooper_pollOnce with value LOOPER_ID_MAIN."] +#[doc = ""] +#[doc = " Your application can use the same ALooper to listen to additional"] +#[doc = " file-descriptors. They can either be callback based, or with return"] +#[doc = " identifiers starting with LOOPER_ID_USER."] +#[doc = ""] +#[doc = " 4/ Whenever you receive a LOOPER_ID_MAIN event,"] +#[doc = " the returned data will point to an android_poll_source structure. You"] +#[doc = " can call the process() function on it, and fill in android_app->onAppCmd"] +#[doc = " to be called for your own processing of the event."] +#[doc = ""] +#[doc = " Alternatively, you can call the low-level functions to read and process"] +#[doc = " the data directly... look at the process_cmd() and process_input()"] +#[doc = " implementations in the glue to see how to do this."] +#[doc = ""] +#[doc = " See the sample named \"native-activity\" that comes with the NDK with a"] +#[doc = " full usage example. Also look at the documentation of GameActivity."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_app { + #[doc = " An optional pointer to application-defined state."] + pub userData: *mut ::std::os::raw::c_void, + #[doc = " A required callback for processing main app commands (`APP_CMD_*`)."] + #[doc = " This is called each frame if there are app commands that need processing."] + pub onAppCmd: ::std::option::Option, + #[doc = " The GameActivity object instance that this app is running in."] + pub activity: *mut GameActivity, + #[doc = " The current configuration the app is running in."] + pub config: *mut AConfiguration, + #[doc = " The last activity saved state, as provided at creation time."] + #[doc = " It is NULL if there was no state. You can use this as you need; the"] + #[doc = " memory will remain around until you call android_app_exec_cmd() for"] + #[doc = " APP_CMD_RESUME, at which point it will be freed and savedState set to"] + #[doc = " NULL. These variables should only be changed when processing a"] + #[doc = " APP_CMD_SAVE_STATE, at which point they will be initialized to NULL and"] + #[doc = " you can malloc your state and place the information here. In that case"] + #[doc = " the memory will be freed for you later."] + pub savedState: *mut ::std::os::raw::c_void, + #[doc = " The size of the activity saved state. It is 0 if `savedState` is NULL."] + pub savedStateSize: size_t, + #[doc = " The ALooper associated with the app's thread."] + pub looper: *mut ALooper, + #[doc = " When non-NULL, this is the window surface that the app can draw in."] + pub window: *mut ANativeWindow, + #[doc = " Current content rectangle of the window; this is the area where the"] + #[doc = " window's content should be placed to be seen by the user."] + pub contentRect: ARect, + #[doc = " Current state of the app's activity. May be either APP_CMD_START,"] + #[doc = " APP_CMD_RESUME, APP_CMD_PAUSE, or APP_CMD_STOP."] + pub activityState: ::std::os::raw::c_int, + #[doc = " This is non-zero when the application's GameActivity is being"] + #[doc = " destroyed and waiting for the app thread to complete."] + pub destroyRequested: ::std::os::raw::c_int, + #[doc = " This is used for buffering input from GameActivity. Once ready, the"] + #[doc = " application thread switches the buffers and processes what was"] + #[doc = " accumulated."] + pub inputBuffers: [android_input_buffer; 2usize], + pub currentInputBuffer: ::std::os::raw::c_int, + #[doc = " 0 if no text input event is outstanding, 1 if it is."] + #[doc = " Use `GameActivity_getTextInputState` to get information"] + #[doc = " about the text entered by the user."] + pub textInputState: ::std::os::raw::c_int, + #[doc = " @cond INTERNAL"] + pub mutex: pthread_mutex_t, + pub cond: pthread_cond_t, + pub msgread: ::std::os::raw::c_int, + pub msgwrite: ::std::os::raw::c_int, + pub thread: pthread_t, + pub cmdPollSource: android_poll_source, + pub running: ::std::os::raw::c_int, + pub stateSaved: ::std::os::raw::c_int, + pub destroyed: ::std::os::raw::c_int, + pub redrawNeeded: ::std::os::raw::c_int, + pub pendingWindow: *mut ANativeWindow, + pub pendingContentRect: ARect, + pub keyEventFilter: android_key_event_filter, + pub motionEventFilter: android_motion_event_filter, +} +#[test] +fn bindgen_test_layout_android_app() { + assert_eq!( + ::std::mem::size_of::(), + 55152usize, + concat!("Size of: ", stringify!(android_app)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(android_app)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).userData as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(userData) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onAppCmd as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(onAppCmd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).activity as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(activity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).config as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(config) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).savedState as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(savedState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).savedStateSize as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(savedStateSize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).looper as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(looper) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).window as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(window) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).contentRect as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(contentRect) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).activityState as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(activityState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).destroyRequested as *const _ as usize }, + 52usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(destroyRequested) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).inputBuffers as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(inputBuffers) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).currentInputBuffer as *const _ as usize }, + 55064usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(currentInputBuffer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).textInputState as *const _ as usize }, + 55068usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(textInputState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).mutex as *const _ as usize }, + 55072usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(mutex) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cond as *const _ as usize }, + 55076usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(cond) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).msgread as *const _ as usize }, + 55080usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(msgread) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).msgwrite as *const _ as usize }, + 55084usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(msgwrite) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).thread as *const _ as usize }, + 55088usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(thread) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cmdPollSource as *const _ as usize }, + 55092usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(cmdPollSource) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).running as *const _ as usize }, + 55104usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(running) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stateSaved as *const _ as usize }, + 55108usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(stateSaved) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).destroyed as *const _ as usize }, + 55112usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(destroyed) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).redrawNeeded as *const _ as usize }, + 55116usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(redrawNeeded) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pendingWindow as *const _ as usize }, + 55120usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(pendingWindow) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pendingContentRect as *const _ as usize }, + 55124usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(pendingContentRect) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyEventFilter as *const _ as usize }, + 55140usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(keyEventFilter) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).motionEventFilter as *const _ as usize }, + 55144usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(motionEventFilter) + ) + ); +} +#[doc = " Looper data ID of commands coming from the app's main thread, which"] +#[doc = " is returned as an identifier from ALooper_pollOnce(). The data for this"] +#[doc = " identifier is a pointer to an android_poll_source structure."] +#[doc = " These can be retrieved and processed with android_app_read_cmd()"] +#[doc = " and android_app_exec_cmd()."] +pub const NativeAppGlueLooperId_LOOPER_ID_MAIN: NativeAppGlueLooperId = 1; +#[doc = " Unused. Reserved for future use when usage of AInputQueue will be"] +#[doc = " supported."] +pub const NativeAppGlueLooperId_LOOPER_ID_INPUT: NativeAppGlueLooperId = 2; +#[doc = " Start of user-defined ALooper identifiers."] +pub const NativeAppGlueLooperId_LOOPER_ID_USER: NativeAppGlueLooperId = 3; +#[doc = " Looper ID of commands coming from the app's main thread, an AInputQueue or"] +#[doc = " user-defined sources."] +pub type NativeAppGlueLooperId = ::std::os::raw::c_uint; +#[doc = " Unused. Reserved for future use when usage of AInputQueue will be"] +#[doc = " supported."] +pub const NativeAppGlueAppCmd_UNUSED_APP_CMD_INPUT_CHANGED: NativeAppGlueAppCmd = 0; +#[doc = " Command from main thread: a new ANativeWindow is ready for use. Upon"] +#[doc = " receiving this command, android_app->window will contain the new window"] +#[doc = " surface."] +pub const NativeAppGlueAppCmd_APP_CMD_INIT_WINDOW: NativeAppGlueAppCmd = 1; +#[doc = " Command from main thread: the existing ANativeWindow needs to be"] +#[doc = " terminated. Upon receiving this command, android_app->window still"] +#[doc = " contains the existing window; after calling android_app_exec_cmd"] +#[doc = " it will be set to NULL."] +pub const NativeAppGlueAppCmd_APP_CMD_TERM_WINDOW: NativeAppGlueAppCmd = 2; +#[doc = " Command from main thread: the current ANativeWindow has been resized."] +#[doc = " Please redraw with its new size."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_RESIZED: NativeAppGlueAppCmd = 3; +#[doc = " Command from main thread: the system needs that the current ANativeWindow"] +#[doc = " be redrawn. You should redraw the window before handing this to"] +#[doc = " android_app_exec_cmd() in order to avoid transient drawing glitches."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_REDRAW_NEEDED: NativeAppGlueAppCmd = 4; +#[doc = " Command from main thread: the content area of the window has changed,"] +#[doc = " such as from the soft input window being shown or hidden. You can"] +#[doc = " find the new content rect in android_app::contentRect."] +pub const NativeAppGlueAppCmd_APP_CMD_CONTENT_RECT_CHANGED: NativeAppGlueAppCmd = 5; +#[doc = " Command from main thread: the app's activity window has gained"] +#[doc = " input focus."] +pub const NativeAppGlueAppCmd_APP_CMD_GAINED_FOCUS: NativeAppGlueAppCmd = 6; +#[doc = " Command from main thread: the app's activity window has lost"] +#[doc = " input focus."] +pub const NativeAppGlueAppCmd_APP_CMD_LOST_FOCUS: NativeAppGlueAppCmd = 7; +#[doc = " Command from main thread: the current device configuration has changed."] +pub const NativeAppGlueAppCmd_APP_CMD_CONFIG_CHANGED: NativeAppGlueAppCmd = 8; +#[doc = " Command from main thread: the system is running low on memory."] +#[doc = " Try to reduce your memory use."] +pub const NativeAppGlueAppCmd_APP_CMD_LOW_MEMORY: NativeAppGlueAppCmd = 9; +#[doc = " Command from main thread: the app's activity has been started."] +pub const NativeAppGlueAppCmd_APP_CMD_START: NativeAppGlueAppCmd = 10; +#[doc = " Command from main thread: the app's activity has been resumed."] +pub const NativeAppGlueAppCmd_APP_CMD_RESUME: NativeAppGlueAppCmd = 11; +#[doc = " Command from main thread: the app should generate a new saved state"] +#[doc = " for itself, to restore from later if needed. If you have saved state,"] +#[doc = " allocate it with malloc and place it in android_app.savedState with"] +#[doc = " the size in android_app.savedStateSize. The will be freed for you"] +#[doc = " later."] +pub const NativeAppGlueAppCmd_APP_CMD_SAVE_STATE: NativeAppGlueAppCmd = 12; +#[doc = " Command from main thread: the app's activity has been paused."] +pub const NativeAppGlueAppCmd_APP_CMD_PAUSE: NativeAppGlueAppCmd = 13; +#[doc = " Command from main thread: the app's activity has been stopped."] +pub const NativeAppGlueAppCmd_APP_CMD_STOP: NativeAppGlueAppCmd = 14; +#[doc = " Command from main thread: the app's activity is being destroyed,"] +#[doc = " and waiting for the app thread to clean up and exit before proceeding."] +pub const NativeAppGlueAppCmd_APP_CMD_DESTROY: NativeAppGlueAppCmd = 15; +#[doc = " Command from main thread: the app's insets have changed."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_INSETS_CHANGED: NativeAppGlueAppCmd = 16; +#[doc = " Commands passed from the application's main Java thread to the game's thread."] +pub type NativeAppGlueAppCmd = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Call when ALooper_pollAll() returns LOOPER_ID_MAIN, reading the next"] + #[doc = " app command message."] + pub fn android_app_read_cmd(android_app: *mut android_app) -> i8; +} +extern "C" { + #[doc = " Call with the command returned by android_app_read_cmd() to do the"] + #[doc = " initial pre-processing of the given command. You can perform your own"] + #[doc = " actions for the command after calling this function."] + pub fn android_app_pre_exec_cmd(android_app: *mut android_app, cmd: i8); +} +extern "C" { + #[doc = " Call with the command returned by android_app_read_cmd() to do the"] + #[doc = " final post-processing of the given command. You must have done your own"] + #[doc = " actions for the command before calling this function."] + pub fn android_app_post_exec_cmd(android_app: *mut android_app, cmd: i8); +} +extern "C" { + #[doc = " Call this before processing input events to get the events buffer."] + #[doc = " The function returns NULL if there are no events to process."] + pub fn android_app_swap_input_buffers( + android_app: *mut android_app, + ) -> *mut android_input_buffer; +} +extern "C" { + #[doc = " Clear the array of motion events that were waiting to be handled, and release"] + #[doc = " each of them."] + #[doc = ""] + #[doc = " This method should be called after you have processed the motion events in"] + #[doc = " your game loop. You should handle events at each iteration of your game loop."] + pub fn android_app_clear_motion_events(inputBuffer: *mut android_input_buffer); +} +extern "C" { + #[doc = " Clear the array of key events that were waiting to be handled, and release"] + #[doc = " each of them."] + #[doc = ""] + #[doc = " This method should be called after you have processed the key up events in"] + #[doc = " your game loop. You should handle events at each iteration of your game loop."] + pub fn android_app_clear_key_events(inputBuffer: *mut android_input_buffer); +} +extern "C" { + #[doc = " Set the filter to use when processing key events."] + #[doc = " Any events for which the filter returns false will be ignored by"] + #[doc = " android_native_app_glue. If filter is set to NULL, no filtering is done."] + #[doc = ""] + #[doc = " The default key filter will filter out volume and camera button presses."] + pub fn android_app_set_key_event_filter( + app: *mut android_app, + filter: android_key_event_filter, + ); +} +extern "C" { + #[doc = " Set the filter to use when processing touch and motion events."] + #[doc = " Any events for which the filter returns false will be ignored by"] + #[doc = " android_native_app_glue. If filter is set to NULL, no filtering is done."] + #[doc = ""] + #[doc = " Note that the default motion event filter will only allow touchscreen events"] + #[doc = " through, in order to mimic NativeActivity's behaviour, so for controller"] + #[doc = " events to be passed to the app, set the filter to NULL."] + pub fn android_app_set_motion_event_filter( + app: *mut android_app, + filter: android_motion_event_filter, + ); +} diff --git a/game-activity/src/ffi_i686.rs b/game-activity/src/ffi_i686.rs new file mode 100755 index 0000000..70ba9c0 --- /dev/null +++ b/game-activity/src/ffi_i686.rs @@ -0,0 +1,10739 @@ +/* automatically generated by rust-bindgen 0.59.2 */ + +pub const __BIONIC__: u32 = 1; +pub const __WORDSIZE: u32 = 32; +pub const __bos_level: u32 = 0; +pub const __ANDROID_API_FUTURE__: u32 = 10000; +pub const __ANDROID_API__: u32 = 10000; +pub const __ANDROID_API_G__: u32 = 9; +pub const __ANDROID_API_I__: u32 = 14; +pub const __ANDROID_API_J__: u32 = 16; +pub const __ANDROID_API_J_MR1__: u32 = 17; +pub const __ANDROID_API_J_MR2__: u32 = 18; +pub const __ANDROID_API_K__: u32 = 19; +pub const __ANDROID_API_L__: u32 = 21; +pub const __ANDROID_API_L_MR1__: u32 = 22; +pub const __ANDROID_API_M__: u32 = 23; +pub const __ANDROID_API_N__: u32 = 24; +pub const __ANDROID_API_N_MR1__: u32 = 25; +pub const __ANDROID_API_O__: u32 = 26; +pub const __ANDROID_API_O_MR1__: u32 = 27; +pub const __ANDROID_API_P__: u32 = 28; +pub const __ANDROID_API_Q__: u32 = 29; +pub const __ANDROID_API_R__: u32 = 30; +pub const __NDK_MAJOR__: u32 = 21; +pub const __NDK_MINOR__: u32 = 3; +pub const __NDK_BETA__: u32 = 0; +pub const __NDK_BUILD__: u32 = 6528147; +pub const __NDK_CANARY__: u32 = 0; +pub const INT8_MIN: i32 = -128; +pub const INT8_MAX: u32 = 127; +pub const INT_LEAST8_MIN: i32 = -128; +pub const INT_LEAST8_MAX: u32 = 127; +pub const INT_FAST8_MIN: i32 = -128; +pub const INT_FAST8_MAX: u32 = 127; +pub const UINT8_MAX: u32 = 255; +pub const UINT_LEAST8_MAX: u32 = 255; +pub const UINT_FAST8_MAX: u32 = 255; +pub const INT16_MIN: i32 = -32768; +pub const INT16_MAX: u32 = 32767; +pub const INT_LEAST16_MIN: i32 = -32768; +pub const INT_LEAST16_MAX: u32 = 32767; +pub const UINT16_MAX: u32 = 65535; +pub const UINT_LEAST16_MAX: u32 = 65535; +pub const INT32_MIN: i32 = -2147483648; +pub const INT32_MAX: u32 = 2147483647; +pub const INT_LEAST32_MIN: i32 = -2147483648; +pub const INT_LEAST32_MAX: u32 = 2147483647; +pub const INT_FAST32_MIN: i32 = -2147483648; +pub const INT_FAST32_MAX: u32 = 2147483647; +pub const UINT32_MAX: u32 = 4294967295; +pub const UINT_LEAST32_MAX: u32 = 4294967295; +pub const UINT_FAST32_MAX: u32 = 4294967295; +pub const SIG_ATOMIC_MAX: u32 = 2147483647; +pub const SIG_ATOMIC_MIN: i32 = -2147483648; +pub const WINT_MAX: u32 = 4294967295; +pub const WINT_MIN: u32 = 0; +pub const INTPTR_MIN: i32 = -2147483648; +pub const INTPTR_MAX: u32 = 2147483647; +pub const UINTPTR_MAX: u32 = 4294967295; +pub const PTRDIFF_MIN: i32 = -2147483648; +pub const PTRDIFF_MAX: u32 = 2147483647; +pub const SIZE_MAX: u32 = 4294967295; +pub const __BITS_PER_LONG: u32 = 32; +pub const __FD_SETSIZE: u32 = 1024; +pub const AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT: u32 = 8; +pub const __PRI_64_prefix: &[u8; 3usize] = b"ll\0"; +pub const PRId8: &[u8; 2usize] = b"d\0"; +pub const PRId16: &[u8; 2usize] = b"d\0"; +pub const PRId32: &[u8; 2usize] = b"d\0"; +pub const PRId64: &[u8; 4usize] = b"lld\0"; +pub const PRIdLEAST8: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST16: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST32: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST64: &[u8; 4usize] = b"lld\0"; +pub const PRIdFAST8: &[u8; 2usize] = b"d\0"; +pub const PRIdFAST64: &[u8; 4usize] = b"lld\0"; +pub const PRIdMAX: &[u8; 3usize] = b"jd\0"; +pub const PRIi8: &[u8; 2usize] = b"i\0"; +pub const PRIi16: &[u8; 2usize] = b"i\0"; +pub const PRIi32: &[u8; 2usize] = b"i\0"; +pub const PRIi64: &[u8; 4usize] = b"lli\0"; +pub const PRIiLEAST8: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST16: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST32: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST64: &[u8; 4usize] = b"lli\0"; +pub const PRIiFAST8: &[u8; 2usize] = b"i\0"; +pub const PRIiFAST64: &[u8; 4usize] = b"lli\0"; +pub const PRIiMAX: &[u8; 3usize] = b"ji\0"; +pub const PRIo8: &[u8; 2usize] = b"o\0"; +pub const PRIo16: &[u8; 2usize] = b"o\0"; +pub const PRIo32: &[u8; 2usize] = b"o\0"; +pub const PRIo64: &[u8; 4usize] = b"llo\0"; +pub const PRIoLEAST8: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST16: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST32: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST64: &[u8; 4usize] = b"llo\0"; +pub const PRIoFAST8: &[u8; 2usize] = b"o\0"; +pub const PRIoFAST64: &[u8; 4usize] = b"llo\0"; +pub const PRIoMAX: &[u8; 3usize] = b"jo\0"; +pub const PRIu8: &[u8; 2usize] = b"u\0"; +pub const PRIu16: &[u8; 2usize] = b"u\0"; +pub const PRIu32: &[u8; 2usize] = b"u\0"; +pub const PRIu64: &[u8; 4usize] = b"llu\0"; +pub const PRIuLEAST8: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST16: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST32: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST64: &[u8; 4usize] = b"llu\0"; +pub const PRIuFAST8: &[u8; 2usize] = b"u\0"; +pub const PRIuFAST64: &[u8; 4usize] = b"llu\0"; +pub const PRIuMAX: &[u8; 3usize] = b"ju\0"; +pub const PRIx8: &[u8; 2usize] = b"x\0"; +pub const PRIx16: &[u8; 2usize] = b"x\0"; +pub const PRIx32: &[u8; 2usize] = b"x\0"; +pub const PRIx64: &[u8; 4usize] = b"llx\0"; +pub const PRIxLEAST8: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST16: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST32: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST64: &[u8; 4usize] = b"llx\0"; +pub const PRIxFAST8: &[u8; 2usize] = b"x\0"; +pub const PRIxFAST64: &[u8; 4usize] = b"llx\0"; +pub const PRIxMAX: &[u8; 3usize] = b"jx\0"; +pub const PRIX8: &[u8; 2usize] = b"X\0"; +pub const PRIX16: &[u8; 2usize] = b"X\0"; +pub const PRIX32: &[u8; 2usize] = b"X\0"; +pub const PRIX64: &[u8; 4usize] = b"llX\0"; +pub const PRIXLEAST8: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST16: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST32: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST64: &[u8; 4usize] = b"llX\0"; +pub const PRIXFAST8: &[u8; 2usize] = b"X\0"; +pub const PRIXFAST64: &[u8; 4usize] = b"llX\0"; +pub const PRIXMAX: &[u8; 3usize] = b"jX\0"; +pub const SCNd8: &[u8; 4usize] = b"hhd\0"; +pub const SCNd16: &[u8; 3usize] = b"hd\0"; +pub const SCNd32: &[u8; 2usize] = b"d\0"; +pub const SCNd64: &[u8; 4usize] = b"lld\0"; +pub const SCNdLEAST8: &[u8; 4usize] = b"hhd\0"; +pub const SCNdLEAST16: &[u8; 3usize] = b"hd\0"; +pub const SCNdLEAST32: &[u8; 2usize] = b"d\0"; +pub const SCNdLEAST64: &[u8; 4usize] = b"lld\0"; +pub const SCNdFAST8: &[u8; 4usize] = b"hhd\0"; +pub const SCNdFAST64: &[u8; 4usize] = b"lld\0"; +pub const SCNdMAX: &[u8; 3usize] = b"jd\0"; +pub const SCNi8: &[u8; 4usize] = b"hhi\0"; +pub const SCNi16: &[u8; 3usize] = b"hi\0"; +pub const SCNi32: &[u8; 2usize] = b"i\0"; +pub const SCNi64: &[u8; 4usize] = b"lli\0"; +pub const SCNiLEAST8: &[u8; 4usize] = b"hhi\0"; +pub const SCNiLEAST16: &[u8; 3usize] = b"hi\0"; +pub const SCNiLEAST32: &[u8; 2usize] = b"i\0"; +pub const SCNiLEAST64: &[u8; 4usize] = b"lli\0"; +pub const SCNiFAST8: &[u8; 4usize] = b"hhi\0"; +pub const SCNiFAST64: &[u8; 4usize] = b"lli\0"; +pub const SCNiMAX: &[u8; 3usize] = b"ji\0"; +pub const SCNo8: &[u8; 4usize] = b"hho\0"; +pub const SCNo16: &[u8; 3usize] = b"ho\0"; +pub const SCNo32: &[u8; 2usize] = b"o\0"; +pub const SCNo64: &[u8; 4usize] = b"llo\0"; +pub const SCNoLEAST8: &[u8; 4usize] = b"hho\0"; +pub const SCNoLEAST16: &[u8; 3usize] = b"ho\0"; +pub const SCNoLEAST32: &[u8; 2usize] = b"o\0"; +pub const SCNoLEAST64: &[u8; 4usize] = b"llo\0"; +pub const SCNoFAST8: &[u8; 4usize] = b"hho\0"; +pub const SCNoFAST64: &[u8; 4usize] = b"llo\0"; +pub const SCNoMAX: &[u8; 3usize] = b"jo\0"; +pub const SCNu8: &[u8; 4usize] = b"hhu\0"; +pub const SCNu16: &[u8; 3usize] = b"hu\0"; +pub const SCNu32: &[u8; 2usize] = b"u\0"; +pub const SCNu64: &[u8; 4usize] = b"llu\0"; +pub const SCNuLEAST8: &[u8; 4usize] = b"hhu\0"; +pub const SCNuLEAST16: &[u8; 3usize] = b"hu\0"; +pub const SCNuLEAST32: &[u8; 2usize] = b"u\0"; +pub const SCNuLEAST64: &[u8; 4usize] = b"llu\0"; +pub const SCNuFAST8: &[u8; 4usize] = b"hhu\0"; +pub const SCNuFAST64: &[u8; 4usize] = b"llu\0"; +pub const SCNuMAX: &[u8; 3usize] = b"ju\0"; +pub const SCNx8: &[u8; 4usize] = b"hhx\0"; +pub const SCNx16: &[u8; 3usize] = b"hx\0"; +pub const SCNx32: &[u8; 2usize] = b"x\0"; +pub const SCNx64: &[u8; 4usize] = b"llx\0"; +pub const SCNxLEAST8: &[u8; 4usize] = b"hhx\0"; +pub const SCNxLEAST16: &[u8; 3usize] = b"hx\0"; +pub const SCNxLEAST32: &[u8; 2usize] = b"x\0"; +pub const SCNxLEAST64: &[u8; 4usize] = b"llx\0"; +pub const SCNxFAST8: &[u8; 4usize] = b"hhx\0"; +pub const SCNxFAST64: &[u8; 4usize] = b"llx\0"; +pub const SCNxMAX: &[u8; 3usize] = b"jx\0"; +pub const __GNUC_VA_LIST: u32 = 1; +pub const true_: u32 = 1; +pub const false_: u32 = 0; +pub const __bool_true_false_are_defined: u32 = 1; +pub const GAME_ACTIVITY_POINTER_INFO_AXIS_COUNT: u32 = 48; +pub const GAMEACTIVITY_MAX_NUM_POINTERS_IN_MOTION_EVENT: u32 = 8; +pub const POLLIN: u32 = 1; +pub const POLLPRI: u32 = 2; +pub const POLLOUT: u32 = 4; +pub const POLLERR: u32 = 8; +pub const POLLHUP: u32 = 16; +pub const POLLNVAL: u32 = 32; +pub const POLLRDNORM: u32 = 64; +pub const POLLRDBAND: u32 = 128; +pub const POLLWRNORM: u32 = 256; +pub const POLLWRBAND: u32 = 512; +pub const POLLMSG: u32 = 1024; +pub const POLLREMOVE: u32 = 4096; +pub const POLLRDHUP: u32 = 8192; +pub const FP_XSTATE_MAGIC1: u32 = 1179670611; +pub const FP_XSTATE_MAGIC2: u32 = 1179670597; +pub const X86_FXSR_MAGIC: u32 = 0; +pub const NR_OPEN: u32 = 1024; +pub const NGROUPS_MAX: u32 = 65536; +pub const ARG_MAX: u32 = 131072; +pub const LINK_MAX: u32 = 127; +pub const MAX_CANON: u32 = 255; +pub const MAX_INPUT: u32 = 255; +pub const NAME_MAX: u32 = 255; +pub const PATH_MAX: u32 = 4096; +pub const PIPE_BUF: u32 = 4096; +pub const XATTR_NAME_MAX: u32 = 255; +pub const XATTR_SIZE_MAX: u32 = 65536; +pub const XATTR_LIST_MAX: u32 = 65536; +pub const RTSIG_MAX: u32 = 32; +pub const PASS_MAX: u32 = 128; +pub const NL_ARGMAX: u32 = 9; +pub const NL_LANGMAX: u32 = 14; +pub const NL_MSGMAX: u32 = 32767; +pub const NL_NMAX: u32 = 1; +pub const NL_SETMAX: u32 = 255; +pub const NL_TEXTMAX: u32 = 255; +pub const TMP_MAX: u32 = 308915776; +pub const CHAR_BIT: u32 = 8; +pub const LONG_BIT: u32 = 32; +pub const WORD_BIT: u32 = 32; +pub const SCHAR_MAX: u32 = 127; +pub const SCHAR_MIN: i32 = -128; +pub const UCHAR_MAX: u32 = 255; +pub const CHAR_MAX: u32 = 127; +pub const CHAR_MIN: i32 = -128; +pub const USHRT_MAX: u32 = 65535; +pub const SHRT_MAX: u32 = 32767; +pub const SHRT_MIN: i32 = -32768; +pub const UINT_MAX: u32 = 4294967295; +pub const INT_MAX: u32 = 2147483647; +pub const INT_MIN: i32 = -2147483648; +pub const ULONG_MAX: u32 = 4294967295; +pub const LONG_MAX: u32 = 2147483647; +pub const LONG_MIN: i32 = -2147483648; +pub const ULLONG_MAX: i32 = -1; +pub const LLONG_MAX: u64 = 9223372036854775807; +pub const LLONG_MIN: i64 = -9223372036854775808; +pub const LONG_LONG_MIN: i64 = -9223372036854775808; +pub const LONG_LONG_MAX: u64 = 9223372036854775807; +pub const ULONG_LONG_MAX: i32 = -1; +pub const UID_MAX: u32 = 4294967295; +pub const GID_MAX: u32 = 4294967295; +pub const SIZE_T_MAX: u32 = 4294967295; +pub const SSIZE_MAX: u32 = 2147483647; +pub const MB_LEN_MAX: u32 = 4; +pub const NZERO: u32 = 20; +pub const IOV_MAX: u32 = 1024; +pub const SEM_VALUE_MAX: u32 = 1073741823; +pub const _POSIX_VERSION: u32 = 200809; +pub const _POSIX2_VERSION: u32 = 200809; +pub const _XOPEN_VERSION: u32 = 700; +pub const __BIONIC_POSIX_FEATURE_MISSING: i32 = -1; +pub const _POSIX_ASYNCHRONOUS_IO: i32 = -1; +pub const _POSIX_CHOWN_RESTRICTED: u32 = 1; +pub const _POSIX_CPUTIME: u32 = 200809; +pub const _POSIX_FSYNC: u32 = 200809; +pub const _POSIX_IPV6: u32 = 200809; +pub const _POSIX_MAPPED_FILES: u32 = 200809; +pub const _POSIX_MEMLOCK_RANGE: u32 = 200809; +pub const _POSIX_MEMORY_PROTECTION: u32 = 200809; +pub const _POSIX_MESSAGE_PASSING: i32 = -1; +pub const _POSIX_MONOTONIC_CLOCK: u32 = 200809; +pub const _POSIX_NO_TRUNC: u32 = 1; +pub const _POSIX_PRIORITIZED_IO: i32 = -1; +pub const _POSIX_PRIORITY_SCHEDULING: u32 = 200809; +pub const _POSIX_RAW_SOCKETS: u32 = 200809; +pub const _POSIX_READER_WRITER_LOCKS: u32 = 200809; +pub const _POSIX_REGEXP: u32 = 1; +pub const _POSIX_SAVED_IDS: u32 = 1; +pub const _POSIX_SEMAPHORES: u32 = 200809; +pub const _POSIX_SHARED_MEMORY_OBJECTS: i32 = -1; +pub const _POSIX_SHELL: u32 = 1; +pub const _POSIX_SPORADIC_SERVER: i32 = -1; +pub const _POSIX_SYNCHRONIZED_IO: u32 = 200809; +pub const _POSIX_THREAD_ATTR_STACKADDR: u32 = 200809; +pub const _POSIX_THREAD_ATTR_STACKSIZE: u32 = 200809; +pub const _POSIX_THREAD_CPUTIME: u32 = 200809; +pub const _POSIX_THREAD_PRIO_INHERIT: i32 = -1; +pub const _POSIX_THREAD_PRIO_PROTECT: i32 = -1; +pub const _POSIX_THREAD_PRIORITY_SCHEDULING: u32 = 200809; +pub const _POSIX_THREAD_PROCESS_SHARED: u32 = 200809; +pub const _POSIX_THREAD_ROBUST_PRIO_INHERIT: i32 = -1; +pub const _POSIX_THREAD_ROBUST_PRIO_PROTECT: i32 = -1; +pub const _POSIX_THREAD_SAFE_FUNCTIONS: u32 = 200809; +pub const _POSIX_THREAD_SPORADIC_SERVER: i32 = -1; +pub const _POSIX_THREADS: u32 = 200809; +pub const _POSIX_TIMERS: u32 = 200809; +pub const _POSIX_TRACE: i32 = -1; +pub const _POSIX_TRACE_EVENT_FILTER: i32 = -1; +pub const _POSIX_TRACE_INHERIT: i32 = -1; +pub const _POSIX_TRACE_LOG: i32 = -1; +pub const _POSIX_TYPED_MEMORY_OBJECTS: i32 = -1; +pub const _POSIX_VDISABLE: u8 = 0u8; +pub const _POSIX2_C_BIND: u32 = 200809; +pub const _POSIX2_C_DEV: i32 = -1; +pub const _POSIX2_CHAR_TERM: u32 = 200809; +pub const _POSIX2_FORT_DEV: i32 = -1; +pub const _POSIX2_FORT_RUN: i32 = -1; +pub const _POSIX2_LOCALEDEF: i32 = -1; +pub const _POSIX2_SW_DEV: i32 = -1; +pub const _POSIX2_UPE: i32 = -1; +pub const _POSIX_V7_ILP32_OFF32: u32 = 1; +pub const _POSIX_V7_ILP32_OFFBIG: i32 = -1; +pub const _POSIX_V7_LP64_OFF64: i32 = -1; +pub const _POSIX_V7_LPBIG_OFFBIG: i32 = -1; +pub const _XOPEN_CRYPT: i32 = -1; +pub const _XOPEN_ENH_I18N: u32 = 1; +pub const _XOPEN_LEGACY: i32 = -1; +pub const _XOPEN_REALTIME: u32 = 1; +pub const _XOPEN_REALTIME_THREADS: u32 = 1; +pub const _XOPEN_SHM: u32 = 1; +pub const _XOPEN_STREAMS: i32 = -1; +pub const _XOPEN_UNIX: u32 = 1; +pub const _POSIX_AIO_LISTIO_MAX: u32 = 2; +pub const _POSIX_AIO_MAX: u32 = 1; +pub const _POSIX_ARG_MAX: u32 = 4096; +pub const _POSIX_CHILD_MAX: u32 = 25; +pub const _POSIX_CLOCKRES_MIN: u32 = 20000000; +pub const _POSIX_DELAYTIMER_MAX: u32 = 32; +pub const _POSIX_HOST_NAME_MAX: u32 = 255; +pub const _POSIX_LINK_MAX: u32 = 8; +pub const _POSIX_LOGIN_NAME_MAX: u32 = 9; +pub const _POSIX_MAX_CANON: u32 = 255; +pub const _POSIX_MAX_INPUT: u32 = 255; +pub const _POSIX_MQ_OPEN_MAX: u32 = 8; +pub const _POSIX_MQ_PRIO_MAX: u32 = 32; +pub const _POSIX_NAME_MAX: u32 = 14; +pub const _POSIX_NGROUPS_MAX: u32 = 8; +pub const _POSIX_OPEN_MAX: u32 = 20; +pub const _POSIX_PATH_MAX: u32 = 256; +pub const _POSIX_PIPE_BUF: u32 = 512; +pub const _POSIX_RE_DUP_MAX: u32 = 255; +pub const _POSIX_RTSIG_MAX: u32 = 8; +pub const _POSIX_SEM_NSEMS_MAX: u32 = 256; +pub const _POSIX_SEM_VALUE_MAX: u32 = 32767; +pub const _POSIX_SIGQUEUE_MAX: u32 = 32; +pub const _POSIX_SSIZE_MAX: u32 = 32767; +pub const _POSIX_STREAM_MAX: u32 = 8; +pub const _POSIX_SS_REPL_MAX: u32 = 4; +pub const _POSIX_SYMLINK_MAX: u32 = 255; +pub const _POSIX_SYMLOOP_MAX: u32 = 8; +pub const _POSIX_THREAD_DESTRUCTOR_ITERATIONS: u32 = 4; +pub const _POSIX_THREAD_KEYS_MAX: u32 = 128; +pub const _POSIX_THREAD_THREADS_MAX: u32 = 64; +pub const _POSIX_TIMER_MAX: u32 = 32; +pub const _POSIX_TRACE_EVENT_NAME_MAX: u32 = 30; +pub const _POSIX_TRACE_NAME_MAX: u32 = 8; +pub const _POSIX_TRACE_SYS_MAX: u32 = 8; +pub const _POSIX_TRACE_USER_EVENT_MAX: u32 = 32; +pub const _POSIX_TTY_NAME_MAX: u32 = 9; +pub const _POSIX_TZNAME_MAX: u32 = 6; +pub const _POSIX2_BC_BASE_MAX: u32 = 99; +pub const _POSIX2_BC_DIM_MAX: u32 = 2048; +pub const _POSIX2_BC_SCALE_MAX: u32 = 99; +pub const _POSIX2_BC_STRING_MAX: u32 = 1000; +pub const _POSIX2_CHARCLASS_NAME_MAX: u32 = 14; +pub const _POSIX2_COLL_WEIGHTS_MAX: u32 = 2; +pub const _POSIX2_EXPR_NEST_MAX: u32 = 32; +pub const _POSIX2_LINE_MAX: u32 = 2048; +pub const _POSIX2_RE_DUP_MAX: u32 = 255; +pub const _XOPEN_IOV_MAX: u32 = 16; +pub const _XOPEN_NAME_MAX: u32 = 255; +pub const _XOPEN_PATH_MAX: u32 = 1024; +pub const HOST_NAME_MAX: u32 = 255; +pub const LOGIN_NAME_MAX: u32 = 256; +pub const TTY_NAME_MAX: u32 = 32; +pub const PTHREAD_DESTRUCTOR_ITERATIONS: u32 = 4; +pub const PTHREAD_KEYS_MAX: u32 = 128; +pub const ITIMER_REAL: u32 = 0; +pub const ITIMER_VIRTUAL: u32 = 1; +pub const ITIMER_PROF: u32 = 2; +pub const CLOCK_REALTIME: u32 = 0; +pub const CLOCK_MONOTONIC: u32 = 1; +pub const CLOCK_PROCESS_CPUTIME_ID: u32 = 2; +pub const CLOCK_THREAD_CPUTIME_ID: u32 = 3; +pub const CLOCK_MONOTONIC_RAW: u32 = 4; +pub const CLOCK_REALTIME_COARSE: u32 = 5; +pub const CLOCK_MONOTONIC_COARSE: u32 = 6; +pub const CLOCK_BOOTTIME: u32 = 7; +pub const CLOCK_REALTIME_ALARM: u32 = 8; +pub const CLOCK_BOOTTIME_ALARM: u32 = 9; +pub const CLOCK_SGI_CYCLE: u32 = 10; +pub const CLOCK_TAI: u32 = 11; +pub const MAX_CLOCKS: u32 = 16; +pub const CLOCKS_MASK: u32 = 1; +pub const CLOCKS_MONO: u32 = 1; +pub const TIMER_ABSTIME: u32 = 1; +pub const _KERNEL_NSIG: u32 = 32; +pub const SIGHUP: u32 = 1; +pub const SIGINT: u32 = 2; +pub const SIGQUIT: u32 = 3; +pub const SIGILL: u32 = 4; +pub const SIGTRAP: u32 = 5; +pub const SIGABRT: u32 = 6; +pub const SIGIOT: u32 = 6; +pub const SIGBUS: u32 = 7; +pub const SIGFPE: u32 = 8; +pub const SIGKILL: u32 = 9; +pub const SIGUSR1: u32 = 10; +pub const SIGSEGV: u32 = 11; +pub const SIGUSR2: u32 = 12; +pub const SIGPIPE: u32 = 13; +pub const SIGALRM: u32 = 14; +pub const SIGTERM: u32 = 15; +pub const SIGSTKFLT: u32 = 16; +pub const SIGCHLD: u32 = 17; +pub const SIGCONT: u32 = 18; +pub const SIGSTOP: u32 = 19; +pub const SIGTSTP: u32 = 20; +pub const SIGTTIN: u32 = 21; +pub const SIGTTOU: u32 = 22; +pub const SIGURG: u32 = 23; +pub const SIGXCPU: u32 = 24; +pub const SIGXFSZ: u32 = 25; +pub const SIGVTALRM: u32 = 26; +pub const SIGPROF: u32 = 27; +pub const SIGWINCH: u32 = 28; +pub const SIGIO: u32 = 29; +pub const SIGPOLL: u32 = 29; +pub const SIGPWR: u32 = 30; +pub const SIGSYS: u32 = 31; +pub const SIGUNUSED: u32 = 31; +pub const __SIGRTMIN: u32 = 32; +pub const SA_NOCLDSTOP: u32 = 1; +pub const SA_NOCLDWAIT: u32 = 2; +pub const SA_SIGINFO: u32 = 4; +pub const SA_ONSTACK: u32 = 134217728; +pub const SA_RESTART: u32 = 268435456; +pub const SA_NODEFER: u32 = 1073741824; +pub const SA_RESETHAND: u32 = 2147483648; +pub const SA_NOMASK: u32 = 1073741824; +pub const SA_ONESHOT: u32 = 2147483648; +pub const SA_RESTORER: u32 = 67108864; +pub const MINSIGSTKSZ: u32 = 2048; +pub const SIGSTKSZ: u32 = 8192; +pub const SIG_BLOCK: u32 = 0; +pub const SIG_UNBLOCK: u32 = 1; +pub const SIG_SETMASK: u32 = 2; +pub const SI_MAX_SIZE: u32 = 128; +pub const SI_USER: u32 = 0; +pub const SI_KERNEL: u32 = 128; +pub const SI_QUEUE: i32 = -1; +pub const SI_TIMER: i32 = -2; +pub const SI_MESGQ: i32 = -3; +pub const SI_ASYNCIO: i32 = -4; +pub const SI_SIGIO: i32 = -5; +pub const SI_TKILL: i32 = -6; +pub const SI_DETHREAD: i32 = -7; +pub const SI_ASYNCNL: i32 = -60; +pub const ILL_ILLOPC: u32 = 1; +pub const ILL_ILLOPN: u32 = 2; +pub const ILL_ILLADR: u32 = 3; +pub const ILL_ILLTRP: u32 = 4; +pub const ILL_PRVOPC: u32 = 5; +pub const ILL_PRVREG: u32 = 6; +pub const ILL_COPROC: u32 = 7; +pub const ILL_BADSTK: u32 = 8; +pub const ILL_BADIADDR: u32 = 9; +pub const __ILL_BREAK: u32 = 10; +pub const __ILL_BNDMOD: u32 = 11; +pub const NSIGILL: u32 = 11; +pub const FPE_INTDIV: u32 = 1; +pub const FPE_INTOVF: u32 = 2; +pub const FPE_FLTDIV: u32 = 3; +pub const FPE_FLTOVF: u32 = 4; +pub const FPE_FLTUND: u32 = 5; +pub const FPE_FLTRES: u32 = 6; +pub const FPE_FLTINV: u32 = 7; +pub const FPE_FLTSUB: u32 = 8; +pub const __FPE_DECOVF: u32 = 9; +pub const __FPE_DECDIV: u32 = 10; +pub const __FPE_DECERR: u32 = 11; +pub const __FPE_INVASC: u32 = 12; +pub const __FPE_INVDEC: u32 = 13; +pub const FPE_FLTUNK: u32 = 14; +pub const FPE_CONDTRAP: u32 = 15; +pub const NSIGFPE: u32 = 15; +pub const SEGV_MAPERR: u32 = 1; +pub const SEGV_ACCERR: u32 = 2; +pub const SEGV_BNDERR: u32 = 3; +pub const SEGV_PKUERR: u32 = 4; +pub const SEGV_ACCADI: u32 = 5; +pub const SEGV_ADIDERR: u32 = 6; +pub const SEGV_ADIPERR: u32 = 7; +pub const NSIGSEGV: u32 = 7; +pub const BUS_ADRALN: u32 = 1; +pub const BUS_ADRERR: u32 = 2; +pub const BUS_OBJERR: u32 = 3; +pub const BUS_MCEERR_AR: u32 = 4; +pub const BUS_MCEERR_AO: u32 = 5; +pub const NSIGBUS: u32 = 5; +pub const TRAP_BRKPT: u32 = 1; +pub const TRAP_TRACE: u32 = 2; +pub const TRAP_BRANCH: u32 = 3; +pub const TRAP_HWBKPT: u32 = 4; +pub const TRAP_UNK: u32 = 5; +pub const NSIGTRAP: u32 = 5; +pub const CLD_EXITED: u32 = 1; +pub const CLD_KILLED: u32 = 2; +pub const CLD_DUMPED: u32 = 3; +pub const CLD_TRAPPED: u32 = 4; +pub const CLD_STOPPED: u32 = 5; +pub const CLD_CONTINUED: u32 = 6; +pub const NSIGCHLD: u32 = 6; +pub const POLL_IN: u32 = 1; +pub const POLL_OUT: u32 = 2; +pub const POLL_MSG: u32 = 3; +pub const POLL_ERR: u32 = 4; +pub const POLL_PRI: u32 = 5; +pub const POLL_HUP: u32 = 6; +pub const NSIGPOLL: u32 = 6; +pub const SYS_SECCOMP: u32 = 1; +pub const NSIGSYS: u32 = 1; +pub const EMT_TAGOVF: u32 = 1; +pub const NSIGEMT: u32 = 1; +pub const SIGEV_SIGNAL: u32 = 0; +pub const SIGEV_NONE: u32 = 1; +pub const SIGEV_THREAD: u32 = 2; +pub const SIGEV_THREAD_ID: u32 = 4; +pub const SIGEV_MAX_SIZE: u32 = 64; +pub const SS_ONSTACK: u32 = 1; +pub const SS_DISABLE: u32 = 2; +pub const SS_AUTODISARM: u32 = 2147483648; +pub const SS_FLAG_BITS: u32 = 2147483648; +pub const _KERNEL__NSIG: u32 = 64; +pub const _NSIG: u32 = 65; +pub const NSIG: u32 = 65; +pub const PAGE_SIZE: u32 = 4096; +pub const PAGE_MASK: i32 = -4096; +pub const UPAGES: u32 = 1; +pub const FD_SETSIZE: u32 = 1024; +pub const CLOCKS_PER_SEC: u32 = 1000000; +pub const TIME_UTC: u32 = 1; +pub const CSIGNAL: u32 = 255; +pub const CLONE_VM: u32 = 256; +pub const CLONE_FS: u32 = 512; +pub const CLONE_FILES: u32 = 1024; +pub const CLONE_SIGHAND: u32 = 2048; +pub const CLONE_PIDFD: u32 = 4096; +pub const CLONE_PTRACE: u32 = 8192; +pub const CLONE_VFORK: u32 = 16384; +pub const CLONE_PARENT: u32 = 32768; +pub const CLONE_THREAD: u32 = 65536; +pub const CLONE_NEWNS: u32 = 131072; +pub const CLONE_SYSVSEM: u32 = 262144; +pub const CLONE_SETTLS: u32 = 524288; +pub const CLONE_PARENT_SETTID: u32 = 1048576; +pub const CLONE_CHILD_CLEARTID: u32 = 2097152; +pub const CLONE_DETACHED: u32 = 4194304; +pub const CLONE_UNTRACED: u32 = 8388608; +pub const CLONE_CHILD_SETTID: u32 = 16777216; +pub const CLONE_NEWCGROUP: u32 = 33554432; +pub const CLONE_NEWUTS: u32 = 67108864; +pub const CLONE_NEWIPC: u32 = 134217728; +pub const CLONE_NEWUSER: u32 = 268435456; +pub const CLONE_NEWPID: u32 = 536870912; +pub const CLONE_NEWNET: u32 = 1073741824; +pub const CLONE_IO: u32 = 2147483648; +pub const SCHED_NORMAL: u32 = 0; +pub const SCHED_FIFO: u32 = 1; +pub const SCHED_RR: u32 = 2; +pub const SCHED_BATCH: u32 = 3; +pub const SCHED_IDLE: u32 = 5; +pub const SCHED_DEADLINE: u32 = 6; +pub const SCHED_RESET_ON_FORK: u32 = 1073741824; +pub const SCHED_FLAG_RESET_ON_FORK: u32 = 1; +pub const SCHED_FLAG_RECLAIM: u32 = 2; +pub const SCHED_FLAG_DL_OVERRUN: u32 = 4; +pub const SCHED_FLAG_KEEP_POLICY: u32 = 8; +pub const SCHED_FLAG_KEEP_PARAMS: u32 = 16; +pub const SCHED_FLAG_UTIL_CLAMP_MIN: u32 = 32; +pub const SCHED_FLAG_UTIL_CLAMP_MAX: u32 = 64; +pub const SCHED_FLAG_KEEP_ALL: u32 = 24; +pub const SCHED_FLAG_UTIL_CLAMP: u32 = 96; +pub const SCHED_FLAG_ALL: u32 = 127; +pub const SCHED_OTHER: u32 = 0; +pub const PTHREAD_ONCE_INIT: u32 = 0; +pub const PTHREAD_BARRIER_SERIAL_THREAD: i32 = -1; +pub const PTHREAD_STACK_MIN: u32 = 8192; +pub const PTHREAD_CREATE_DETACHED: u32 = 1; +pub const PTHREAD_CREATE_JOINABLE: u32 = 0; +pub const PTHREAD_EXPLICIT_SCHED: u32 = 0; +pub const PTHREAD_INHERIT_SCHED: u32 = 1; +pub const PTHREAD_PRIO_NONE: u32 = 0; +pub const PTHREAD_PRIO_INHERIT: u32 = 1; +pub const PTHREAD_PROCESS_PRIVATE: u32 = 0; +pub const PTHREAD_PROCESS_SHARED: u32 = 1; +pub const PTHREAD_SCOPE_SYSTEM: u32 = 0; +pub const PTHREAD_SCOPE_PROCESS: u32 = 1; +pub const NATIVE_APP_GLUE_MAX_NUM_MOTION_EVENTS: u32 = 16; +pub const NATIVE_APP_GLUE_MAX_NUM_KEY_EVENTS: u32 = 4; +pub const NATIVE_APP_GLUE_MAX_INPUT_BUFFERS: u32 = 2; +extern "C" { + pub fn android_get_application_target_sdk_version() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn android_get_device_api_level() -> ::std::os::raw::c_int; +} +pub type size_t = ::std::os::raw::c_uint; +pub type wchar_t = ::std::os::raw::c_int; +#[repr(C)] +#[repr(align(8))] +#[derive(Debug, Copy, Clone)] +pub struct max_align_t { + pub __clang_max_align_nonce1: ::std::os::raw::c_longlong, + pub __clang_max_align_nonce2: f64, +} +#[test] +fn bindgen_test_layout_max_align_t() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(max_align_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(max_align_t)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).__clang_max_align_nonce1 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(max_align_t), + "::", + stringify!(__clang_max_align_nonce1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).__clang_max_align_nonce2 as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(max_align_t), + "::", + stringify!(__clang_max_align_nonce2) + ) + ); +} +pub type __int8_t = ::std::os::raw::c_schar; +pub type __uint8_t = ::std::os::raw::c_uchar; +pub type __int16_t = ::std::os::raw::c_short; +pub type __uint16_t = ::std::os::raw::c_ushort; +pub type __int32_t = ::std::os::raw::c_int; +pub type __uint32_t = ::std::os::raw::c_uint; +pub type __int64_t = ::std::os::raw::c_longlong; +pub type __uint64_t = ::std::os::raw::c_ulonglong; +pub type __intptr_t = ::std::os::raw::c_int; +pub type __uintptr_t = ::std::os::raw::c_uint; +pub type int_least8_t = i8; +pub type uint_least8_t = u8; +pub type int_least16_t = i16; +pub type uint_least16_t = u16; +pub type int_least32_t = i32; +pub type uint_least32_t = u32; +pub type int_least64_t = i64; +pub type uint_least64_t = u64; +pub type int_fast8_t = i8; +pub type uint_fast8_t = u8; +pub type int_fast64_t = i64; +pub type uint_fast64_t = u64; +pub type int_fast16_t = i32; +pub type uint_fast16_t = u32; +pub type int_fast32_t = i32; +pub type uint_fast32_t = u32; +pub type uintmax_t = u64; +pub type intmax_t = i64; +pub type __s8 = ::std::os::raw::c_schar; +pub type __u8 = ::std::os::raw::c_uchar; +pub type __s16 = ::std::os::raw::c_short; +pub type __u16 = ::std::os::raw::c_ushort; +pub type __s32 = ::std::os::raw::c_int; +pub type __u32 = ::std::os::raw::c_uint; +pub type __s64 = ::std::os::raw::c_longlong; +pub type __u64 = ::std::os::raw::c_ulonglong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_fd_set { + pub fds_bits: [::std::os::raw::c_ulong; 32usize], +} +#[test] +fn bindgen_test_layout___kernel_fd_set() { + assert_eq!( + ::std::mem::size_of::<__kernel_fd_set>(), + 128usize, + concat!("Size of: ", stringify!(__kernel_fd_set)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_fd_set>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_fd_set)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_fd_set>())).fds_bits as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_fd_set), + "::", + stringify!(fds_bits) + ) + ); +} +pub type __kernel_sighandler_t = + ::std::option::Option; +pub type __kernel_key_t = ::std::os::raw::c_int; +pub type __kernel_mqd_t = ::std::os::raw::c_int; +pub type __kernel_mode_t = ::std::os::raw::c_ushort; +pub type __kernel_ipc_pid_t = ::std::os::raw::c_ushort; +pub type __kernel_uid_t = ::std::os::raw::c_ushort; +pub type __kernel_gid_t = ::std::os::raw::c_ushort; +pub type __kernel_old_dev_t = ::std::os::raw::c_ushort; +pub type __kernel_long_t = ::std::os::raw::c_long; +pub type __kernel_ulong_t = ::std::os::raw::c_ulong; +pub type __kernel_ino_t = __kernel_ulong_t; +pub type __kernel_pid_t = ::std::os::raw::c_int; +pub type __kernel_suseconds_t = __kernel_long_t; +pub type __kernel_daddr_t = ::std::os::raw::c_int; +pub type __kernel_uid32_t = ::std::os::raw::c_uint; +pub type __kernel_gid32_t = ::std::os::raw::c_uint; +pub type __kernel_old_uid_t = __kernel_uid_t; +pub type __kernel_old_gid_t = __kernel_gid_t; +pub type __kernel_size_t = ::std::os::raw::c_uint; +pub type __kernel_ssize_t = ::std::os::raw::c_int; +pub type __kernel_ptrdiff_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_fsid_t { + pub val: [::std::os::raw::c_int; 2usize], +} +#[test] +fn bindgen_test_layout___kernel_fsid_t() { + assert_eq!( + ::std::mem::size_of::<__kernel_fsid_t>(), + 8usize, + concat!("Size of: ", stringify!(__kernel_fsid_t)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_fsid_t>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_fsid_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_fsid_t>())).val as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_fsid_t), + "::", + stringify!(val) + ) + ); +} +pub type __kernel_off_t = __kernel_long_t; +pub type __kernel_loff_t = ::std::os::raw::c_longlong; +pub type __kernel_time_t = __kernel_long_t; +pub type __kernel_time64_t = ::std::os::raw::c_longlong; +pub type __kernel_clock_t = __kernel_long_t; +pub type __kernel_timer_t = ::std::os::raw::c_int; +pub type __kernel_clockid_t = ::std::os::raw::c_int; +pub type __kernel_caddr_t = *mut ::std::os::raw::c_char; +pub type __kernel_uid16_t = ::std::os::raw::c_ushort; +pub type __kernel_gid16_t = ::std::os::raw::c_ushort; +pub type __le16 = __u16; +pub type __be16 = __u16; +pub type __le32 = __u32; +pub type __be32 = __u32; +pub type __le64 = __u64; +pub type __be64 = __u64; +pub type __sum16 = __u16; +pub type __wsum = __u32; +pub type __poll_t = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_attr_t { + pub flags: u32, + pub stack_base: *mut ::std::os::raw::c_void, + pub stack_size: size_t, + pub guard_size: size_t, + pub sched_policy: i32, + pub sched_priority: i32, +} +#[test] +fn bindgen_test_layout_pthread_attr_t() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(pthread_attr_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_attr_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_base as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(stack_base) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_size as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(stack_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).guard_size as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(guard_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_policy as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(sched_policy) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_priority as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(sched_priority) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_barrier_t { + pub __private: [i32; 8usize], +} +#[test] +fn bindgen_test_layout_pthread_barrier_t() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(pthread_barrier_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_barrier_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_barrier_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_barrierattr_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_cond_t { + pub __private: [i32; 1usize], +} +#[test] +fn bindgen_test_layout_pthread_cond_t() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(pthread_cond_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_cond_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_cond_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_condattr_t = ::std::os::raw::c_long; +pub type pthread_key_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_mutex_t { + pub __private: [i32; 1usize], +} +#[test] +fn bindgen_test_layout_pthread_mutex_t() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(pthread_mutex_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_mutex_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_mutex_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_mutexattr_t = ::std::os::raw::c_long; +pub type pthread_once_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_rwlock_t { + pub __private: [i32; 10usize], +} +#[test] +fn bindgen_test_layout_pthread_rwlock_t() { + assert_eq!( + ::std::mem::size_of::(), + 40usize, + concat!("Size of: ", stringify!(pthread_rwlock_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_rwlock_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_rwlock_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_rwlockattr_t = ::std::os::raw::c_long; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_spinlock_t { + pub __private: [i32; 2usize], +} +#[test] +fn bindgen_test_layout_pthread_spinlock_t() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(pthread_spinlock_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_spinlock_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_spinlock_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_t = ::std::os::raw::c_long; +pub type __gid_t = __kernel_gid32_t; +pub type gid_t = __gid_t; +pub type __uid_t = __kernel_uid32_t; +pub type uid_t = __uid_t; +pub type __pid_t = __kernel_pid_t; +pub type pid_t = __pid_t; +pub type __id_t = u32; +pub type id_t = __id_t; +pub type blkcnt_t = ::std::os::raw::c_ulong; +pub type blksize_t = ::std::os::raw::c_ulong; +pub type caddr_t = __kernel_caddr_t; +pub type clock_t = __kernel_clock_t; +pub type __clockid_t = __kernel_clockid_t; +pub type clockid_t = __clockid_t; +pub type daddr_t = __kernel_daddr_t; +pub type fsblkcnt_t = ::std::os::raw::c_ulong; +pub type fsfilcnt_t = ::std::os::raw::c_ulong; +pub type __mode_t = __kernel_mode_t; +pub type mode_t = __mode_t; +pub type __key_t = __kernel_key_t; +pub type key_t = __key_t; +pub type __ino_t = __kernel_ino_t; +pub type ino_t = __ino_t; +pub type ino64_t = u64; +pub type __nlink_t = u32; +pub type nlink_t = __nlink_t; +pub type __timer_t = *mut ::std::os::raw::c_void; +pub type timer_t = __timer_t; +pub type __suseconds_t = __kernel_suseconds_t; +pub type suseconds_t = __suseconds_t; +pub type __useconds_t = u32; +pub type useconds_t = __useconds_t; +pub type dev_t = u32; +pub type __time_t = __kernel_time_t; +pub type time_t = __time_t; +pub type off_t = __kernel_off_t; +pub type loff_t = __kernel_loff_t; +pub type off64_t = loff_t; +pub type __socklen_t = i32; +pub type socklen_t = __socklen_t; +pub type __va_list = __builtin_va_list; +pub type ssize_t = __kernel_ssize_t; +pub type uint_t = ::std::os::raw::c_uint; +pub type uint = ::std::os::raw::c_uint; +pub type u_char = ::std::os::raw::c_uchar; +pub type u_short = ::std::os::raw::c_ushort; +pub type u_int = ::std::os::raw::c_uint; +pub type u_long = ::std::os::raw::c_ulong; +pub type u_int32_t = u32; +pub type u_int16_t = u16; +pub type u_int8_t = u8; +pub type u_int64_t = u64; +pub const AASSET_MODE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AASSET_MODE_RANDOM: ::std::os::raw::c_uint = 1; +pub const AASSET_MODE_STREAMING: ::std::os::raw::c_uint = 2; +pub const AASSET_MODE_BUFFER: ::std::os::raw::c_uint = 3; +pub type _bindgen_ty_1 = ::std::os::raw::c_uint; +pub const AKEYCODE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AKEYCODE_SOFT_LEFT: ::std::os::raw::c_uint = 1; +pub const AKEYCODE_SOFT_RIGHT: ::std::os::raw::c_uint = 2; +pub const AKEYCODE_HOME: ::std::os::raw::c_uint = 3; +pub const AKEYCODE_BACK: ::std::os::raw::c_uint = 4; +pub const AKEYCODE_CALL: ::std::os::raw::c_uint = 5; +pub const AKEYCODE_ENDCALL: ::std::os::raw::c_uint = 6; +pub const AKEYCODE_0: ::std::os::raw::c_uint = 7; +pub const AKEYCODE_1: ::std::os::raw::c_uint = 8; +pub const AKEYCODE_2: ::std::os::raw::c_uint = 9; +pub const AKEYCODE_3: ::std::os::raw::c_uint = 10; +pub const AKEYCODE_4: ::std::os::raw::c_uint = 11; +pub const AKEYCODE_5: ::std::os::raw::c_uint = 12; +pub const AKEYCODE_6: ::std::os::raw::c_uint = 13; +pub const AKEYCODE_7: ::std::os::raw::c_uint = 14; +pub const AKEYCODE_8: ::std::os::raw::c_uint = 15; +pub const AKEYCODE_9: ::std::os::raw::c_uint = 16; +pub const AKEYCODE_STAR: ::std::os::raw::c_uint = 17; +pub const AKEYCODE_POUND: ::std::os::raw::c_uint = 18; +pub const AKEYCODE_DPAD_UP: ::std::os::raw::c_uint = 19; +pub const AKEYCODE_DPAD_DOWN: ::std::os::raw::c_uint = 20; +pub const AKEYCODE_DPAD_LEFT: ::std::os::raw::c_uint = 21; +pub const AKEYCODE_DPAD_RIGHT: ::std::os::raw::c_uint = 22; +pub const AKEYCODE_DPAD_CENTER: ::std::os::raw::c_uint = 23; +pub const AKEYCODE_VOLUME_UP: ::std::os::raw::c_uint = 24; +pub const AKEYCODE_VOLUME_DOWN: ::std::os::raw::c_uint = 25; +pub const AKEYCODE_POWER: ::std::os::raw::c_uint = 26; +pub const AKEYCODE_CAMERA: ::std::os::raw::c_uint = 27; +pub const AKEYCODE_CLEAR: ::std::os::raw::c_uint = 28; +pub const AKEYCODE_A: ::std::os::raw::c_uint = 29; +pub const AKEYCODE_B: ::std::os::raw::c_uint = 30; +pub const AKEYCODE_C: ::std::os::raw::c_uint = 31; +pub const AKEYCODE_D: ::std::os::raw::c_uint = 32; +pub const AKEYCODE_E: ::std::os::raw::c_uint = 33; +pub const AKEYCODE_F: ::std::os::raw::c_uint = 34; +pub const AKEYCODE_G: ::std::os::raw::c_uint = 35; +pub const AKEYCODE_H: ::std::os::raw::c_uint = 36; +pub const AKEYCODE_I: ::std::os::raw::c_uint = 37; +pub const AKEYCODE_J: ::std::os::raw::c_uint = 38; +pub const AKEYCODE_K: ::std::os::raw::c_uint = 39; +pub const AKEYCODE_L: ::std::os::raw::c_uint = 40; +pub const AKEYCODE_M: ::std::os::raw::c_uint = 41; +pub const AKEYCODE_N: ::std::os::raw::c_uint = 42; +pub const AKEYCODE_O: ::std::os::raw::c_uint = 43; +pub const AKEYCODE_P: ::std::os::raw::c_uint = 44; +pub const AKEYCODE_Q: ::std::os::raw::c_uint = 45; +pub const AKEYCODE_R: ::std::os::raw::c_uint = 46; +pub const AKEYCODE_S: ::std::os::raw::c_uint = 47; +pub const AKEYCODE_T: ::std::os::raw::c_uint = 48; +pub const AKEYCODE_U: ::std::os::raw::c_uint = 49; +pub const AKEYCODE_V: ::std::os::raw::c_uint = 50; +pub const AKEYCODE_W: ::std::os::raw::c_uint = 51; +pub const AKEYCODE_X: ::std::os::raw::c_uint = 52; +pub const AKEYCODE_Y: ::std::os::raw::c_uint = 53; +pub const AKEYCODE_Z: ::std::os::raw::c_uint = 54; +pub const AKEYCODE_COMMA: ::std::os::raw::c_uint = 55; +pub const AKEYCODE_PERIOD: ::std::os::raw::c_uint = 56; +pub const AKEYCODE_ALT_LEFT: ::std::os::raw::c_uint = 57; +pub const AKEYCODE_ALT_RIGHT: ::std::os::raw::c_uint = 58; +pub const AKEYCODE_SHIFT_LEFT: ::std::os::raw::c_uint = 59; +pub const AKEYCODE_SHIFT_RIGHT: ::std::os::raw::c_uint = 60; +pub const AKEYCODE_TAB: ::std::os::raw::c_uint = 61; +pub const AKEYCODE_SPACE: ::std::os::raw::c_uint = 62; +pub const AKEYCODE_SYM: ::std::os::raw::c_uint = 63; +pub const AKEYCODE_EXPLORER: ::std::os::raw::c_uint = 64; +pub const AKEYCODE_ENVELOPE: ::std::os::raw::c_uint = 65; +pub const AKEYCODE_ENTER: ::std::os::raw::c_uint = 66; +pub const AKEYCODE_DEL: ::std::os::raw::c_uint = 67; +pub const AKEYCODE_GRAVE: ::std::os::raw::c_uint = 68; +pub const AKEYCODE_MINUS: ::std::os::raw::c_uint = 69; +pub const AKEYCODE_EQUALS: ::std::os::raw::c_uint = 70; +pub const AKEYCODE_LEFT_BRACKET: ::std::os::raw::c_uint = 71; +pub const AKEYCODE_RIGHT_BRACKET: ::std::os::raw::c_uint = 72; +pub const AKEYCODE_BACKSLASH: ::std::os::raw::c_uint = 73; +pub const AKEYCODE_SEMICOLON: ::std::os::raw::c_uint = 74; +pub const AKEYCODE_APOSTROPHE: ::std::os::raw::c_uint = 75; +pub const AKEYCODE_SLASH: ::std::os::raw::c_uint = 76; +pub const AKEYCODE_AT: ::std::os::raw::c_uint = 77; +pub const AKEYCODE_NUM: ::std::os::raw::c_uint = 78; +pub const AKEYCODE_HEADSETHOOK: ::std::os::raw::c_uint = 79; +pub const AKEYCODE_FOCUS: ::std::os::raw::c_uint = 80; +pub const AKEYCODE_PLUS: ::std::os::raw::c_uint = 81; +pub const AKEYCODE_MENU: ::std::os::raw::c_uint = 82; +pub const AKEYCODE_NOTIFICATION: ::std::os::raw::c_uint = 83; +pub const AKEYCODE_SEARCH: ::std::os::raw::c_uint = 84; +pub const AKEYCODE_MEDIA_PLAY_PAUSE: ::std::os::raw::c_uint = 85; +pub const AKEYCODE_MEDIA_STOP: ::std::os::raw::c_uint = 86; +pub const AKEYCODE_MEDIA_NEXT: ::std::os::raw::c_uint = 87; +pub const AKEYCODE_MEDIA_PREVIOUS: ::std::os::raw::c_uint = 88; +pub const AKEYCODE_MEDIA_REWIND: ::std::os::raw::c_uint = 89; +pub const AKEYCODE_MEDIA_FAST_FORWARD: ::std::os::raw::c_uint = 90; +pub const AKEYCODE_MUTE: ::std::os::raw::c_uint = 91; +pub const AKEYCODE_PAGE_UP: ::std::os::raw::c_uint = 92; +pub const AKEYCODE_PAGE_DOWN: ::std::os::raw::c_uint = 93; +pub const AKEYCODE_PICTSYMBOLS: ::std::os::raw::c_uint = 94; +pub const AKEYCODE_SWITCH_CHARSET: ::std::os::raw::c_uint = 95; +pub const AKEYCODE_BUTTON_A: ::std::os::raw::c_uint = 96; +pub const AKEYCODE_BUTTON_B: ::std::os::raw::c_uint = 97; +pub const AKEYCODE_BUTTON_C: ::std::os::raw::c_uint = 98; +pub const AKEYCODE_BUTTON_X: ::std::os::raw::c_uint = 99; +pub const AKEYCODE_BUTTON_Y: ::std::os::raw::c_uint = 100; +pub const AKEYCODE_BUTTON_Z: ::std::os::raw::c_uint = 101; +pub const AKEYCODE_BUTTON_L1: ::std::os::raw::c_uint = 102; +pub const AKEYCODE_BUTTON_R1: ::std::os::raw::c_uint = 103; +pub const AKEYCODE_BUTTON_L2: ::std::os::raw::c_uint = 104; +pub const AKEYCODE_BUTTON_R2: ::std::os::raw::c_uint = 105; +pub const AKEYCODE_BUTTON_THUMBL: ::std::os::raw::c_uint = 106; +pub const AKEYCODE_BUTTON_THUMBR: ::std::os::raw::c_uint = 107; +pub const AKEYCODE_BUTTON_START: ::std::os::raw::c_uint = 108; +pub const AKEYCODE_BUTTON_SELECT: ::std::os::raw::c_uint = 109; +pub const AKEYCODE_BUTTON_MODE: ::std::os::raw::c_uint = 110; +pub const AKEYCODE_ESCAPE: ::std::os::raw::c_uint = 111; +pub const AKEYCODE_FORWARD_DEL: ::std::os::raw::c_uint = 112; +pub const AKEYCODE_CTRL_LEFT: ::std::os::raw::c_uint = 113; +pub const AKEYCODE_CTRL_RIGHT: ::std::os::raw::c_uint = 114; +pub const AKEYCODE_CAPS_LOCK: ::std::os::raw::c_uint = 115; +pub const AKEYCODE_SCROLL_LOCK: ::std::os::raw::c_uint = 116; +pub const AKEYCODE_META_LEFT: ::std::os::raw::c_uint = 117; +pub const AKEYCODE_META_RIGHT: ::std::os::raw::c_uint = 118; +pub const AKEYCODE_FUNCTION: ::std::os::raw::c_uint = 119; +pub const AKEYCODE_SYSRQ: ::std::os::raw::c_uint = 120; +pub const AKEYCODE_BREAK: ::std::os::raw::c_uint = 121; +pub const AKEYCODE_MOVE_HOME: ::std::os::raw::c_uint = 122; +pub const AKEYCODE_MOVE_END: ::std::os::raw::c_uint = 123; +pub const AKEYCODE_INSERT: ::std::os::raw::c_uint = 124; +pub const AKEYCODE_FORWARD: ::std::os::raw::c_uint = 125; +pub const AKEYCODE_MEDIA_PLAY: ::std::os::raw::c_uint = 126; +pub const AKEYCODE_MEDIA_PAUSE: ::std::os::raw::c_uint = 127; +pub const AKEYCODE_MEDIA_CLOSE: ::std::os::raw::c_uint = 128; +pub const AKEYCODE_MEDIA_EJECT: ::std::os::raw::c_uint = 129; +pub const AKEYCODE_MEDIA_RECORD: ::std::os::raw::c_uint = 130; +pub const AKEYCODE_F1: ::std::os::raw::c_uint = 131; +pub const AKEYCODE_F2: ::std::os::raw::c_uint = 132; +pub const AKEYCODE_F3: ::std::os::raw::c_uint = 133; +pub const AKEYCODE_F4: ::std::os::raw::c_uint = 134; +pub const AKEYCODE_F5: ::std::os::raw::c_uint = 135; +pub const AKEYCODE_F6: ::std::os::raw::c_uint = 136; +pub const AKEYCODE_F7: ::std::os::raw::c_uint = 137; +pub const AKEYCODE_F8: ::std::os::raw::c_uint = 138; +pub const AKEYCODE_F9: ::std::os::raw::c_uint = 139; +pub const AKEYCODE_F10: ::std::os::raw::c_uint = 140; +pub const AKEYCODE_F11: ::std::os::raw::c_uint = 141; +pub const AKEYCODE_F12: ::std::os::raw::c_uint = 142; +pub const AKEYCODE_NUM_LOCK: ::std::os::raw::c_uint = 143; +pub const AKEYCODE_NUMPAD_0: ::std::os::raw::c_uint = 144; +pub const AKEYCODE_NUMPAD_1: ::std::os::raw::c_uint = 145; +pub const AKEYCODE_NUMPAD_2: ::std::os::raw::c_uint = 146; +pub const AKEYCODE_NUMPAD_3: ::std::os::raw::c_uint = 147; +pub const AKEYCODE_NUMPAD_4: ::std::os::raw::c_uint = 148; +pub const AKEYCODE_NUMPAD_5: ::std::os::raw::c_uint = 149; +pub const AKEYCODE_NUMPAD_6: ::std::os::raw::c_uint = 150; +pub const AKEYCODE_NUMPAD_7: ::std::os::raw::c_uint = 151; +pub const AKEYCODE_NUMPAD_8: ::std::os::raw::c_uint = 152; +pub const AKEYCODE_NUMPAD_9: ::std::os::raw::c_uint = 153; +pub const AKEYCODE_NUMPAD_DIVIDE: ::std::os::raw::c_uint = 154; +pub const AKEYCODE_NUMPAD_MULTIPLY: ::std::os::raw::c_uint = 155; +pub const AKEYCODE_NUMPAD_SUBTRACT: ::std::os::raw::c_uint = 156; +pub const AKEYCODE_NUMPAD_ADD: ::std::os::raw::c_uint = 157; +pub const AKEYCODE_NUMPAD_DOT: ::std::os::raw::c_uint = 158; +pub const AKEYCODE_NUMPAD_COMMA: ::std::os::raw::c_uint = 159; +pub const AKEYCODE_NUMPAD_ENTER: ::std::os::raw::c_uint = 160; +pub const AKEYCODE_NUMPAD_EQUALS: ::std::os::raw::c_uint = 161; +pub const AKEYCODE_NUMPAD_LEFT_PAREN: ::std::os::raw::c_uint = 162; +pub const AKEYCODE_NUMPAD_RIGHT_PAREN: ::std::os::raw::c_uint = 163; +pub const AKEYCODE_VOLUME_MUTE: ::std::os::raw::c_uint = 164; +pub const AKEYCODE_INFO: ::std::os::raw::c_uint = 165; +pub const AKEYCODE_CHANNEL_UP: ::std::os::raw::c_uint = 166; +pub const AKEYCODE_CHANNEL_DOWN: ::std::os::raw::c_uint = 167; +pub const AKEYCODE_ZOOM_IN: ::std::os::raw::c_uint = 168; +pub const AKEYCODE_ZOOM_OUT: ::std::os::raw::c_uint = 169; +pub const AKEYCODE_TV: ::std::os::raw::c_uint = 170; +pub const AKEYCODE_WINDOW: ::std::os::raw::c_uint = 171; +pub const AKEYCODE_GUIDE: ::std::os::raw::c_uint = 172; +pub const AKEYCODE_DVR: ::std::os::raw::c_uint = 173; +pub const AKEYCODE_BOOKMARK: ::std::os::raw::c_uint = 174; +pub const AKEYCODE_CAPTIONS: ::std::os::raw::c_uint = 175; +pub const AKEYCODE_SETTINGS: ::std::os::raw::c_uint = 176; +pub const AKEYCODE_TV_POWER: ::std::os::raw::c_uint = 177; +pub const AKEYCODE_TV_INPUT: ::std::os::raw::c_uint = 178; +pub const AKEYCODE_STB_POWER: ::std::os::raw::c_uint = 179; +pub const AKEYCODE_STB_INPUT: ::std::os::raw::c_uint = 180; +pub const AKEYCODE_AVR_POWER: ::std::os::raw::c_uint = 181; +pub const AKEYCODE_AVR_INPUT: ::std::os::raw::c_uint = 182; +pub const AKEYCODE_PROG_RED: ::std::os::raw::c_uint = 183; +pub const AKEYCODE_PROG_GREEN: ::std::os::raw::c_uint = 184; +pub const AKEYCODE_PROG_YELLOW: ::std::os::raw::c_uint = 185; +pub const AKEYCODE_PROG_BLUE: ::std::os::raw::c_uint = 186; +pub const AKEYCODE_APP_SWITCH: ::std::os::raw::c_uint = 187; +pub const AKEYCODE_BUTTON_1: ::std::os::raw::c_uint = 188; +pub const AKEYCODE_BUTTON_2: ::std::os::raw::c_uint = 189; +pub const AKEYCODE_BUTTON_3: ::std::os::raw::c_uint = 190; +pub const AKEYCODE_BUTTON_4: ::std::os::raw::c_uint = 191; +pub const AKEYCODE_BUTTON_5: ::std::os::raw::c_uint = 192; +pub const AKEYCODE_BUTTON_6: ::std::os::raw::c_uint = 193; +pub const AKEYCODE_BUTTON_7: ::std::os::raw::c_uint = 194; +pub const AKEYCODE_BUTTON_8: ::std::os::raw::c_uint = 195; +pub const AKEYCODE_BUTTON_9: ::std::os::raw::c_uint = 196; +pub const AKEYCODE_BUTTON_10: ::std::os::raw::c_uint = 197; +pub const AKEYCODE_BUTTON_11: ::std::os::raw::c_uint = 198; +pub const AKEYCODE_BUTTON_12: ::std::os::raw::c_uint = 199; +pub const AKEYCODE_BUTTON_13: ::std::os::raw::c_uint = 200; +pub const AKEYCODE_BUTTON_14: ::std::os::raw::c_uint = 201; +pub const AKEYCODE_BUTTON_15: ::std::os::raw::c_uint = 202; +pub const AKEYCODE_BUTTON_16: ::std::os::raw::c_uint = 203; +pub const AKEYCODE_LANGUAGE_SWITCH: ::std::os::raw::c_uint = 204; +pub const AKEYCODE_MANNER_MODE: ::std::os::raw::c_uint = 205; +pub const AKEYCODE_3D_MODE: ::std::os::raw::c_uint = 206; +pub const AKEYCODE_CONTACTS: ::std::os::raw::c_uint = 207; +pub const AKEYCODE_CALENDAR: ::std::os::raw::c_uint = 208; +pub const AKEYCODE_MUSIC: ::std::os::raw::c_uint = 209; +pub const AKEYCODE_CALCULATOR: ::std::os::raw::c_uint = 210; +pub const AKEYCODE_ZENKAKU_HANKAKU: ::std::os::raw::c_uint = 211; +pub const AKEYCODE_EISU: ::std::os::raw::c_uint = 212; +pub const AKEYCODE_MUHENKAN: ::std::os::raw::c_uint = 213; +pub const AKEYCODE_HENKAN: ::std::os::raw::c_uint = 214; +pub const AKEYCODE_KATAKANA_HIRAGANA: ::std::os::raw::c_uint = 215; +pub const AKEYCODE_YEN: ::std::os::raw::c_uint = 216; +pub const AKEYCODE_RO: ::std::os::raw::c_uint = 217; +pub const AKEYCODE_KANA: ::std::os::raw::c_uint = 218; +pub const AKEYCODE_ASSIST: ::std::os::raw::c_uint = 219; +pub const AKEYCODE_BRIGHTNESS_DOWN: ::std::os::raw::c_uint = 220; +pub const AKEYCODE_BRIGHTNESS_UP: ::std::os::raw::c_uint = 221; +pub const AKEYCODE_MEDIA_AUDIO_TRACK: ::std::os::raw::c_uint = 222; +pub const AKEYCODE_SLEEP: ::std::os::raw::c_uint = 223; +pub const AKEYCODE_WAKEUP: ::std::os::raw::c_uint = 224; +pub const AKEYCODE_PAIRING: ::std::os::raw::c_uint = 225; +pub const AKEYCODE_MEDIA_TOP_MENU: ::std::os::raw::c_uint = 226; +pub const AKEYCODE_11: ::std::os::raw::c_uint = 227; +pub const AKEYCODE_12: ::std::os::raw::c_uint = 228; +pub const AKEYCODE_LAST_CHANNEL: ::std::os::raw::c_uint = 229; +pub const AKEYCODE_TV_DATA_SERVICE: ::std::os::raw::c_uint = 230; +pub const AKEYCODE_VOICE_ASSIST: ::std::os::raw::c_uint = 231; +pub const AKEYCODE_TV_RADIO_SERVICE: ::std::os::raw::c_uint = 232; +pub const AKEYCODE_TV_TELETEXT: ::std::os::raw::c_uint = 233; +pub const AKEYCODE_TV_NUMBER_ENTRY: ::std::os::raw::c_uint = 234; +pub const AKEYCODE_TV_TERRESTRIAL_ANALOG: ::std::os::raw::c_uint = 235; +pub const AKEYCODE_TV_TERRESTRIAL_DIGITAL: ::std::os::raw::c_uint = 236; +pub const AKEYCODE_TV_SATELLITE: ::std::os::raw::c_uint = 237; +pub const AKEYCODE_TV_SATELLITE_BS: ::std::os::raw::c_uint = 238; +pub const AKEYCODE_TV_SATELLITE_CS: ::std::os::raw::c_uint = 239; +pub const AKEYCODE_TV_SATELLITE_SERVICE: ::std::os::raw::c_uint = 240; +pub const AKEYCODE_TV_NETWORK: ::std::os::raw::c_uint = 241; +pub const AKEYCODE_TV_ANTENNA_CABLE: ::std::os::raw::c_uint = 242; +pub const AKEYCODE_TV_INPUT_HDMI_1: ::std::os::raw::c_uint = 243; +pub const AKEYCODE_TV_INPUT_HDMI_2: ::std::os::raw::c_uint = 244; +pub const AKEYCODE_TV_INPUT_HDMI_3: ::std::os::raw::c_uint = 245; +pub const AKEYCODE_TV_INPUT_HDMI_4: ::std::os::raw::c_uint = 246; +pub const AKEYCODE_TV_INPUT_COMPOSITE_1: ::std::os::raw::c_uint = 247; +pub const AKEYCODE_TV_INPUT_COMPOSITE_2: ::std::os::raw::c_uint = 248; +pub const AKEYCODE_TV_INPUT_COMPONENT_1: ::std::os::raw::c_uint = 249; +pub const AKEYCODE_TV_INPUT_COMPONENT_2: ::std::os::raw::c_uint = 250; +pub const AKEYCODE_TV_INPUT_VGA_1: ::std::os::raw::c_uint = 251; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION: ::std::os::raw::c_uint = 252; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP: ::std::os::raw::c_uint = 253; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN: ::std::os::raw::c_uint = 254; +pub const AKEYCODE_TV_ZOOM_MODE: ::std::os::raw::c_uint = 255; +pub const AKEYCODE_TV_CONTENTS_MENU: ::std::os::raw::c_uint = 256; +pub const AKEYCODE_TV_MEDIA_CONTEXT_MENU: ::std::os::raw::c_uint = 257; +pub const AKEYCODE_TV_TIMER_PROGRAMMING: ::std::os::raw::c_uint = 258; +pub const AKEYCODE_HELP: ::std::os::raw::c_uint = 259; +pub const AKEYCODE_NAVIGATE_PREVIOUS: ::std::os::raw::c_uint = 260; +pub const AKEYCODE_NAVIGATE_NEXT: ::std::os::raw::c_uint = 261; +pub const AKEYCODE_NAVIGATE_IN: ::std::os::raw::c_uint = 262; +pub const AKEYCODE_NAVIGATE_OUT: ::std::os::raw::c_uint = 263; +pub const AKEYCODE_STEM_PRIMARY: ::std::os::raw::c_uint = 264; +pub const AKEYCODE_STEM_1: ::std::os::raw::c_uint = 265; +pub const AKEYCODE_STEM_2: ::std::os::raw::c_uint = 266; +pub const AKEYCODE_STEM_3: ::std::os::raw::c_uint = 267; +pub const AKEYCODE_DPAD_UP_LEFT: ::std::os::raw::c_uint = 268; +pub const AKEYCODE_DPAD_DOWN_LEFT: ::std::os::raw::c_uint = 269; +pub const AKEYCODE_DPAD_UP_RIGHT: ::std::os::raw::c_uint = 270; +pub const AKEYCODE_DPAD_DOWN_RIGHT: ::std::os::raw::c_uint = 271; +pub const AKEYCODE_MEDIA_SKIP_FORWARD: ::std::os::raw::c_uint = 272; +pub const AKEYCODE_MEDIA_SKIP_BACKWARD: ::std::os::raw::c_uint = 273; +pub const AKEYCODE_MEDIA_STEP_FORWARD: ::std::os::raw::c_uint = 274; +pub const AKEYCODE_MEDIA_STEP_BACKWARD: ::std::os::raw::c_uint = 275; +pub const AKEYCODE_SOFT_SLEEP: ::std::os::raw::c_uint = 276; +pub const AKEYCODE_CUT: ::std::os::raw::c_uint = 277; +pub const AKEYCODE_COPY: ::std::os::raw::c_uint = 278; +pub const AKEYCODE_PASTE: ::std::os::raw::c_uint = 279; +pub const AKEYCODE_SYSTEM_NAVIGATION_UP: ::std::os::raw::c_uint = 280; +pub const AKEYCODE_SYSTEM_NAVIGATION_DOWN: ::std::os::raw::c_uint = 281; +pub const AKEYCODE_SYSTEM_NAVIGATION_LEFT: ::std::os::raw::c_uint = 282; +pub const AKEYCODE_SYSTEM_NAVIGATION_RIGHT: ::std::os::raw::c_uint = 283; +pub const AKEYCODE_ALL_APPS: ::std::os::raw::c_uint = 284; +pub const AKEYCODE_REFRESH: ::std::os::raw::c_uint = 285; +pub const AKEYCODE_THUMBS_UP: ::std::os::raw::c_uint = 286; +pub const AKEYCODE_THUMBS_DOWN: ::std::os::raw::c_uint = 287; +pub const AKEYCODE_PROFILE_SWITCH: ::std::os::raw::c_uint = 288; +pub type _bindgen_ty_2 = ::std::os::raw::c_uint; +pub const ALOOPER_PREPARE_ALLOW_NON_CALLBACKS: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_3 = ::std::os::raw::c_uint; +pub const ALOOPER_POLL_WAKE: ::std::os::raw::c_int = -1; +pub const ALOOPER_POLL_CALLBACK: ::std::os::raw::c_int = -2; +pub const ALOOPER_POLL_TIMEOUT: ::std::os::raw::c_int = -3; +pub const ALOOPER_POLL_ERROR: ::std::os::raw::c_int = -4; +pub type _bindgen_ty_4 = ::std::os::raw::c_int; +pub const ALOOPER_EVENT_INPUT: ::std::os::raw::c_uint = 1; +pub const ALOOPER_EVENT_OUTPUT: ::std::os::raw::c_uint = 2; +pub const ALOOPER_EVENT_ERROR: ::std::os::raw::c_uint = 4; +pub const ALOOPER_EVENT_HANGUP: ::std::os::raw::c_uint = 8; +pub const ALOOPER_EVENT_INVALID: ::std::os::raw::c_uint = 16; +pub type _bindgen_ty_5 = ::std::os::raw::c_uint; +pub const AKEY_STATE_UNKNOWN: ::std::os::raw::c_int = -1; +pub const AKEY_STATE_UP: ::std::os::raw::c_int = 0; +pub const AKEY_STATE_DOWN: ::std::os::raw::c_int = 1; +pub const AKEY_STATE_VIRTUAL: ::std::os::raw::c_int = 2; +pub type _bindgen_ty_6 = ::std::os::raw::c_int; +pub const AMETA_NONE: ::std::os::raw::c_uint = 0; +pub const AMETA_ALT_ON: ::std::os::raw::c_uint = 2; +pub const AMETA_ALT_LEFT_ON: ::std::os::raw::c_uint = 16; +pub const AMETA_ALT_RIGHT_ON: ::std::os::raw::c_uint = 32; +pub const AMETA_SHIFT_ON: ::std::os::raw::c_uint = 1; +pub const AMETA_SHIFT_LEFT_ON: ::std::os::raw::c_uint = 64; +pub const AMETA_SHIFT_RIGHT_ON: ::std::os::raw::c_uint = 128; +pub const AMETA_SYM_ON: ::std::os::raw::c_uint = 4; +pub const AMETA_FUNCTION_ON: ::std::os::raw::c_uint = 8; +pub const AMETA_CTRL_ON: ::std::os::raw::c_uint = 4096; +pub const AMETA_CTRL_LEFT_ON: ::std::os::raw::c_uint = 8192; +pub const AMETA_CTRL_RIGHT_ON: ::std::os::raw::c_uint = 16384; +pub const AMETA_META_ON: ::std::os::raw::c_uint = 65536; +pub const AMETA_META_LEFT_ON: ::std::os::raw::c_uint = 131072; +pub const AMETA_META_RIGHT_ON: ::std::os::raw::c_uint = 262144; +pub const AMETA_CAPS_LOCK_ON: ::std::os::raw::c_uint = 1048576; +pub const AMETA_NUM_LOCK_ON: ::std::os::raw::c_uint = 2097152; +pub const AMETA_SCROLL_LOCK_ON: ::std::os::raw::c_uint = 4194304; +pub type _bindgen_ty_7 = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AInputEvent { + _unused: [u8; 0], +} +pub const AINPUT_EVENT_TYPE_KEY: ::std::os::raw::c_uint = 1; +pub const AINPUT_EVENT_TYPE_MOTION: ::std::os::raw::c_uint = 2; +pub const AINPUT_EVENT_TYPE_FOCUS: ::std::os::raw::c_uint = 3; +pub type _bindgen_ty_8 = ::std::os::raw::c_uint; +pub const AKEY_EVENT_ACTION_DOWN: ::std::os::raw::c_uint = 0; +pub const AKEY_EVENT_ACTION_UP: ::std::os::raw::c_uint = 1; +pub const AKEY_EVENT_ACTION_MULTIPLE: ::std::os::raw::c_uint = 2; +pub type _bindgen_ty_9 = ::std::os::raw::c_uint; +pub const AKEY_EVENT_FLAG_WOKE_HERE: ::std::os::raw::c_uint = 1; +pub const AKEY_EVENT_FLAG_SOFT_KEYBOARD: ::std::os::raw::c_uint = 2; +pub const AKEY_EVENT_FLAG_KEEP_TOUCH_MODE: ::std::os::raw::c_uint = 4; +pub const AKEY_EVENT_FLAG_FROM_SYSTEM: ::std::os::raw::c_uint = 8; +pub const AKEY_EVENT_FLAG_EDITOR_ACTION: ::std::os::raw::c_uint = 16; +pub const AKEY_EVENT_FLAG_CANCELED: ::std::os::raw::c_uint = 32; +pub const AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY: ::std::os::raw::c_uint = 64; +pub const AKEY_EVENT_FLAG_LONG_PRESS: ::std::os::raw::c_uint = 128; +pub const AKEY_EVENT_FLAG_CANCELED_LONG_PRESS: ::std::os::raw::c_uint = 256; +pub const AKEY_EVENT_FLAG_TRACKING: ::std::os::raw::c_uint = 512; +pub const AKEY_EVENT_FLAG_FALLBACK: ::std::os::raw::c_uint = 1024; +pub type _bindgen_ty_10 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_ACTION_MASK: ::std::os::raw::c_uint = 255; +pub const AMOTION_EVENT_ACTION_POINTER_INDEX_MASK: ::std::os::raw::c_uint = 65280; +pub const AMOTION_EVENT_ACTION_DOWN: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_ACTION_UP: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_ACTION_MOVE: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_ACTION_CANCEL: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_ACTION_OUTSIDE: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_ACTION_POINTER_DOWN: ::std::os::raw::c_uint = 5; +pub const AMOTION_EVENT_ACTION_POINTER_UP: ::std::os::raw::c_uint = 6; +pub const AMOTION_EVENT_ACTION_HOVER_MOVE: ::std::os::raw::c_uint = 7; +pub const AMOTION_EVENT_ACTION_SCROLL: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_ACTION_HOVER_ENTER: ::std::os::raw::c_uint = 9; +pub const AMOTION_EVENT_ACTION_HOVER_EXIT: ::std::os::raw::c_uint = 10; +pub const AMOTION_EVENT_ACTION_BUTTON_PRESS: ::std::os::raw::c_uint = 11; +pub const AMOTION_EVENT_ACTION_BUTTON_RELEASE: ::std::os::raw::c_uint = 12; +pub type _bindgen_ty_11 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_12 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_EDGE_FLAG_NONE: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_EDGE_FLAG_TOP: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_EDGE_FLAG_BOTTOM: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_EDGE_FLAG_LEFT: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_EDGE_FLAG_RIGHT: ::std::os::raw::c_uint = 8; +pub type _bindgen_ty_13 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_AXIS_X: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_AXIS_Y: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_AXIS_PRESSURE: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_AXIS_SIZE: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_AXIS_TOUCH_MAJOR: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_AXIS_TOUCH_MINOR: ::std::os::raw::c_uint = 5; +pub const AMOTION_EVENT_AXIS_TOOL_MAJOR: ::std::os::raw::c_uint = 6; +pub const AMOTION_EVENT_AXIS_TOOL_MINOR: ::std::os::raw::c_uint = 7; +pub const AMOTION_EVENT_AXIS_ORIENTATION: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_AXIS_VSCROLL: ::std::os::raw::c_uint = 9; +pub const AMOTION_EVENT_AXIS_HSCROLL: ::std::os::raw::c_uint = 10; +pub const AMOTION_EVENT_AXIS_Z: ::std::os::raw::c_uint = 11; +pub const AMOTION_EVENT_AXIS_RX: ::std::os::raw::c_uint = 12; +pub const AMOTION_EVENT_AXIS_RY: ::std::os::raw::c_uint = 13; +pub const AMOTION_EVENT_AXIS_RZ: ::std::os::raw::c_uint = 14; +pub const AMOTION_EVENT_AXIS_HAT_X: ::std::os::raw::c_uint = 15; +pub const AMOTION_EVENT_AXIS_HAT_Y: ::std::os::raw::c_uint = 16; +pub const AMOTION_EVENT_AXIS_LTRIGGER: ::std::os::raw::c_uint = 17; +pub const AMOTION_EVENT_AXIS_RTRIGGER: ::std::os::raw::c_uint = 18; +pub const AMOTION_EVENT_AXIS_THROTTLE: ::std::os::raw::c_uint = 19; +pub const AMOTION_EVENT_AXIS_RUDDER: ::std::os::raw::c_uint = 20; +pub const AMOTION_EVENT_AXIS_WHEEL: ::std::os::raw::c_uint = 21; +pub const AMOTION_EVENT_AXIS_GAS: ::std::os::raw::c_uint = 22; +pub const AMOTION_EVENT_AXIS_BRAKE: ::std::os::raw::c_uint = 23; +pub const AMOTION_EVENT_AXIS_DISTANCE: ::std::os::raw::c_uint = 24; +pub const AMOTION_EVENT_AXIS_TILT: ::std::os::raw::c_uint = 25; +pub const AMOTION_EVENT_AXIS_SCROLL: ::std::os::raw::c_uint = 26; +pub const AMOTION_EVENT_AXIS_RELATIVE_X: ::std::os::raw::c_uint = 27; +pub const AMOTION_EVENT_AXIS_RELATIVE_Y: ::std::os::raw::c_uint = 28; +pub const AMOTION_EVENT_AXIS_GENERIC_1: ::std::os::raw::c_uint = 32; +pub const AMOTION_EVENT_AXIS_GENERIC_2: ::std::os::raw::c_uint = 33; +pub const AMOTION_EVENT_AXIS_GENERIC_3: ::std::os::raw::c_uint = 34; +pub const AMOTION_EVENT_AXIS_GENERIC_4: ::std::os::raw::c_uint = 35; +pub const AMOTION_EVENT_AXIS_GENERIC_5: ::std::os::raw::c_uint = 36; +pub const AMOTION_EVENT_AXIS_GENERIC_6: ::std::os::raw::c_uint = 37; +pub const AMOTION_EVENT_AXIS_GENERIC_7: ::std::os::raw::c_uint = 38; +pub const AMOTION_EVENT_AXIS_GENERIC_8: ::std::os::raw::c_uint = 39; +pub const AMOTION_EVENT_AXIS_GENERIC_9: ::std::os::raw::c_uint = 40; +pub const AMOTION_EVENT_AXIS_GENERIC_10: ::std::os::raw::c_uint = 41; +pub const AMOTION_EVENT_AXIS_GENERIC_11: ::std::os::raw::c_uint = 42; +pub const AMOTION_EVENT_AXIS_GENERIC_12: ::std::os::raw::c_uint = 43; +pub const AMOTION_EVENT_AXIS_GENERIC_13: ::std::os::raw::c_uint = 44; +pub const AMOTION_EVENT_AXIS_GENERIC_14: ::std::os::raw::c_uint = 45; +pub const AMOTION_EVENT_AXIS_GENERIC_15: ::std::os::raw::c_uint = 46; +pub const AMOTION_EVENT_AXIS_GENERIC_16: ::std::os::raw::c_uint = 47; +pub type _bindgen_ty_14 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_BUTTON_PRIMARY: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_BUTTON_SECONDARY: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_BUTTON_TERTIARY: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_BUTTON_BACK: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_BUTTON_FORWARD: ::std::os::raw::c_uint = 16; +pub const AMOTION_EVENT_BUTTON_STYLUS_PRIMARY: ::std::os::raw::c_uint = 32; +pub const AMOTION_EVENT_BUTTON_STYLUS_SECONDARY: ::std::os::raw::c_uint = 64; +pub type _bindgen_ty_15 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_TOOL_TYPE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_TOOL_TYPE_FINGER: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_TOOL_TYPE_STYLUS: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_TOOL_TYPE_MOUSE: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_TOOL_TYPE_ERASER: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_TOOL_TYPE_PALM: ::std::os::raw::c_uint = 5; +pub type _bindgen_ty_16 = ::std::os::raw::c_uint; +pub const AINPUT_SOURCE_CLASS_MASK: ::std::os::raw::c_uint = 255; +pub const AINPUT_SOURCE_CLASS_NONE: ::std::os::raw::c_uint = 0; +pub const AINPUT_SOURCE_CLASS_BUTTON: ::std::os::raw::c_uint = 1; +pub const AINPUT_SOURCE_CLASS_POINTER: ::std::os::raw::c_uint = 2; +pub const AINPUT_SOURCE_CLASS_NAVIGATION: ::std::os::raw::c_uint = 4; +pub const AINPUT_SOURCE_CLASS_POSITION: ::std::os::raw::c_uint = 8; +pub const AINPUT_SOURCE_CLASS_JOYSTICK: ::std::os::raw::c_uint = 16; +pub type _bindgen_ty_17 = ::std::os::raw::c_uint; +pub const AINPUT_SOURCE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AINPUT_SOURCE_KEYBOARD: ::std::os::raw::c_uint = 257; +pub const AINPUT_SOURCE_DPAD: ::std::os::raw::c_uint = 513; +pub const AINPUT_SOURCE_GAMEPAD: ::std::os::raw::c_uint = 1025; +pub const AINPUT_SOURCE_TOUCHSCREEN: ::std::os::raw::c_uint = 4098; +pub const AINPUT_SOURCE_MOUSE: ::std::os::raw::c_uint = 8194; +pub const AINPUT_SOURCE_STYLUS: ::std::os::raw::c_uint = 16386; +pub const AINPUT_SOURCE_BLUETOOTH_STYLUS: ::std::os::raw::c_uint = 49154; +pub const AINPUT_SOURCE_TRACKBALL: ::std::os::raw::c_uint = 65540; +pub const AINPUT_SOURCE_MOUSE_RELATIVE: ::std::os::raw::c_uint = 131076; +pub const AINPUT_SOURCE_TOUCHPAD: ::std::os::raw::c_uint = 1048584; +pub const AINPUT_SOURCE_TOUCH_NAVIGATION: ::std::os::raw::c_uint = 2097152; +pub const AINPUT_SOURCE_JOYSTICK: ::std::os::raw::c_uint = 16777232; +pub const AINPUT_SOURCE_ROTARY_ENCODER: ::std::os::raw::c_uint = 4194304; +pub const AINPUT_SOURCE_ANY: ::std::os::raw::c_uint = 4294967040; +pub type _bindgen_ty_18 = ::std::os::raw::c_uint; +pub const AINPUT_KEYBOARD_TYPE_NONE: ::std::os::raw::c_uint = 0; +pub const AINPUT_KEYBOARD_TYPE_NON_ALPHABETIC: ::std::os::raw::c_uint = 1; +pub const AINPUT_KEYBOARD_TYPE_ALPHABETIC: ::std::os::raw::c_uint = 2; +pub type _bindgen_ty_19 = ::std::os::raw::c_uint; +pub const AINPUT_MOTION_RANGE_X: ::std::os::raw::c_uint = 0; +pub const AINPUT_MOTION_RANGE_Y: ::std::os::raw::c_uint = 1; +pub const AINPUT_MOTION_RANGE_PRESSURE: ::std::os::raw::c_uint = 2; +pub const AINPUT_MOTION_RANGE_SIZE: ::std::os::raw::c_uint = 3; +pub const AINPUT_MOTION_RANGE_TOUCH_MAJOR: ::std::os::raw::c_uint = 4; +pub const AINPUT_MOTION_RANGE_TOUCH_MINOR: ::std::os::raw::c_uint = 5; +pub const AINPUT_MOTION_RANGE_TOOL_MAJOR: ::std::os::raw::c_uint = 6; +pub const AINPUT_MOTION_RANGE_TOOL_MINOR: ::std::os::raw::c_uint = 7; +pub const AINPUT_MOTION_RANGE_ORIENTATION: ::std::os::raw::c_uint = 8; +pub type _bindgen_ty_20 = ::std::os::raw::c_uint; +extern "C" { + pub fn AInputEvent_getType(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AInputEvent_getDeviceId(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AInputEvent_getSource(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getAction(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getFlags(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getKeyCode(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getScanCode(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getMetaState(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getRepeatCount(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getDownTime(key_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AKeyEvent_getEventTime(key_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getAction(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getFlags(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getMetaState(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getButtonState(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getEdgeFlags(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getDownTime(motion_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getEventTime(motion_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getXOffset(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getYOffset(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getXPrecision(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getYPrecision(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getPointerCount(motion_event: *const AInputEvent) -> size_t; +} +extern "C" { + pub fn AMotionEvent_getPointerId( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> i32; +} +extern "C" { + pub fn AMotionEvent_getToolType(motion_event: *const AInputEvent, pointer_index: size_t) + -> i32; +} +extern "C" { + pub fn AMotionEvent_getRawX(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getRawY(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getX(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getY(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getPressure(motion_event: *const AInputEvent, pointer_index: size_t) + -> f32; +} +extern "C" { + pub fn AMotionEvent_getSize(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getTouchMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getTouchMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getToolMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getToolMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getOrientation( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getAxisValue( + motion_event: *const AInputEvent, + axis: i32, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistorySize(motion_event: *const AInputEvent) -> size_t; +} +extern "C" { + pub fn AMotionEvent_getHistoricalEventTime( + motion_event: *const AInputEvent, + history_index: size_t, + ) -> i64; +} +extern "C" { + pub fn AMotionEvent_getHistoricalRawX( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalRawY( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalX( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalY( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalPressure( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalSize( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalTouchMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalTouchMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalToolMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalToolMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalOrientation( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalAxisValue( + motion_event: *const AInputEvent, + axis: i32, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AInputQueue { + _unused: [u8; 0], +} +extern "C" { + pub fn AInputQueue_attachLooper( + queue: *mut AInputQueue, + looper: *mut ALooper, + ident: ::std::os::raw::c_int, + callback: ALooper_callbackFunc, + data: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + pub fn AInputQueue_detachLooper(queue: *mut AInputQueue); +} +extern "C" { + pub fn AInputQueue_hasEvents(queue: *mut AInputQueue) -> i32; +} +extern "C" { + pub fn AInputQueue_getEvent(queue: *mut AInputQueue, outEvent: *mut *mut AInputEvent) -> i32; +} +extern "C" { + pub fn AInputQueue_preDispatchEvent(queue: *mut AInputQueue, event: *mut AInputEvent) -> i32; +} +extern "C" { + pub fn AInputQueue_finishEvent( + queue: *mut AInputQueue, + event: *mut AInputEvent, + handled: ::std::os::raw::c_int, + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct imaxdiv_t { + pub quot: intmax_t, + pub rem: intmax_t, +} +#[test] +fn bindgen_test_layout_imaxdiv_t() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(imaxdiv_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(imaxdiv_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).quot as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(imaxdiv_t), + "::", + stringify!(quot) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rem as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(imaxdiv_t), + "::", + stringify!(rem) + ) + ); +} +extern "C" { + pub fn imaxabs(__i: intmax_t) -> intmax_t; +} +extern "C" { + pub fn imaxdiv(__numerator: intmax_t, __denominator: intmax_t) -> imaxdiv_t; +} +extern "C" { + pub fn strtoimax( + __s: *const ::std::os::raw::c_char, + __end_ptr: *mut *mut ::std::os::raw::c_char, + __base: ::std::os::raw::c_int, + ) -> intmax_t; +} +extern "C" { + pub fn strtoumax( + __s: *const ::std::os::raw::c_char, + __end_ptr: *mut *mut ::std::os::raw::c_char, + __base: ::std::os::raw::c_int, + ) -> uintmax_t; +} +extern "C" { + pub fn wcstoimax( + __s: *const wchar_t, + __end_ptr: *mut *mut wchar_t, + __base: ::std::os::raw::c_int, + ) -> intmax_t; +} +extern "C" { + pub fn wcstoumax( + __s: *const wchar_t, + __end_ptr: *mut *mut wchar_t, + __base: ::std::os::raw::c_int, + ) -> uintmax_t; +} +pub const ADataSpace_ADATASPACE_UNKNOWN: ADataSpace = 0; +pub const ADataSpace_ADATASPACE_SCRGB_LINEAR: ADataSpace = 406913024; +pub const ADataSpace_ADATASPACE_SRGB: ADataSpace = 142671872; +pub const ADataSpace_ADATASPACE_SCRGB: ADataSpace = 411107328; +pub const ADataSpace_ADATASPACE_DISPLAY_P3: ADataSpace = 143261696; +pub const ADataSpace_ADATASPACE_BT2020_PQ: ADataSpace = 163971072; +pub const ADataSpace_ADATASPACE_ADOBE_RGB: ADataSpace = 151715840; +pub const ADataSpace_ADATASPACE_BT2020: ADataSpace = 147193856; +pub const ADataSpace_ADATASPACE_BT709: ADataSpace = 281083904; +pub const ADataSpace_ADATASPACE_DCI_P3: ADataSpace = 155844608; +pub const ADataSpace_ADATASPACE_SRGB_LINEAR: ADataSpace = 138477568; +pub type ADataSpace = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct ARect { + pub left: i32, + pub top: i32, + pub right: i32, + pub bottom: i32, +} +#[test] +fn bindgen_test_layout_ARect() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ARect)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(ARect)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).left as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(left) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).top as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(top) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).right as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(right) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bottom as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(bottom) + ) + ); +} +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8A8_UNORM: AHardwareBuffer_Format = 1; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8X8_UNORM: AHardwareBuffer_Format = 2; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8_UNORM: AHardwareBuffer_Format = 3; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R5G6B5_UNORM: AHardwareBuffer_Format = 4; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R16G16B16A16_FLOAT: AHardwareBuffer_Format = + 22; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R10G10B10A2_UNORM: AHardwareBuffer_Format = + 43; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_BLOB: AHardwareBuffer_Format = 33; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D16_UNORM: AHardwareBuffer_Format = 48; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D24_UNORM: AHardwareBuffer_Format = 49; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D24_UNORM_S8_UINT: AHardwareBuffer_Format = + 50; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D32_FLOAT: AHardwareBuffer_Format = 51; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D32_FLOAT_S8_UINT: AHardwareBuffer_Format = + 52; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_S8_UINT: AHardwareBuffer_Format = 53; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_Y8Cb8Cr8_420: AHardwareBuffer_Format = 35; +pub type AHardwareBuffer_Format = ::std::os::raw::c_uint; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_NEVER: + AHardwareBuffer_UsageFlags = 0; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_RARELY: + AHardwareBuffer_UsageFlags = 2; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_OFTEN: + AHardwareBuffer_UsageFlags = 3; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_MASK: + AHardwareBuffer_UsageFlags = 15; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_NEVER: + AHardwareBuffer_UsageFlags = 0; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_RARELY: + AHardwareBuffer_UsageFlags = 32; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_OFTEN: + AHardwareBuffer_UsageFlags = 48; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_MASK: + AHardwareBuffer_UsageFlags = 240; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_SAMPLED_IMAGE: + AHardwareBuffer_UsageFlags = 256; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_FRAMEBUFFER: + AHardwareBuffer_UsageFlags = 512; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_COLOR_OUTPUT: + AHardwareBuffer_UsageFlags = 512; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_COMPOSER_OVERLAY: + AHardwareBuffer_UsageFlags = 2048; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_PROTECTED_CONTENT: + AHardwareBuffer_UsageFlags = 16384; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VIDEO_ENCODE: + AHardwareBuffer_UsageFlags = 65536; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_SENSOR_DIRECT_DATA: + AHardwareBuffer_UsageFlags = 8388608; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_DATA_BUFFER: + AHardwareBuffer_UsageFlags = 16777216; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_CUBE_MAP: + AHardwareBuffer_UsageFlags = 33554432; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_MIPMAP_COMPLETE: + AHardwareBuffer_UsageFlags = 67108864; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_0: AHardwareBuffer_UsageFlags = + 268435456; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_1: AHardwareBuffer_UsageFlags = + 536870912; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_2: AHardwareBuffer_UsageFlags = + 1073741824; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_3: AHardwareBuffer_UsageFlags = + 2147483648; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_4: AHardwareBuffer_UsageFlags = + 281474976710656; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_5: AHardwareBuffer_UsageFlags = + 562949953421312; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_6: AHardwareBuffer_UsageFlags = + 1125899906842624; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_7: AHardwareBuffer_UsageFlags = + 2251799813685248; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_8: AHardwareBuffer_UsageFlags = + 4503599627370496; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_9: AHardwareBuffer_UsageFlags = + 9007199254740992; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_10: AHardwareBuffer_UsageFlags = + 18014398509481984; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_11: AHardwareBuffer_UsageFlags = + 36028797018963968; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_12: AHardwareBuffer_UsageFlags = + 72057594037927936; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_13: AHardwareBuffer_UsageFlags = + 144115188075855872; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_14: AHardwareBuffer_UsageFlags = + 288230376151711744; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_15: AHardwareBuffer_UsageFlags = + 576460752303423488; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_16: AHardwareBuffer_UsageFlags = + 1152921504606846976; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_17: AHardwareBuffer_UsageFlags = + 2305843009213693952; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_18: AHardwareBuffer_UsageFlags = + 4611686018427387904; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_19: AHardwareBuffer_UsageFlags = + 9223372036854775808; +pub type AHardwareBuffer_UsageFlags = ::std::os::raw::c_ulonglong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Desc { + pub width: u32, + pub height: u32, + pub layers: u32, + pub format: u32, + pub usage: u64, + pub stride: u32, + pub rfu0: u32, + pub rfu1: u64, +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Desc() { + assert_eq!( + ::std::mem::size_of::(), + 40usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Desc)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Desc)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).width as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(width) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).height as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(height) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).layers as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(layers) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).format as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(format) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).usage as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(usage) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stride as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(stride) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rfu0 as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(rfu0) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rfu1 as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(rfu1) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Plane { + pub data: *mut ::std::os::raw::c_void, + pub pixelStride: u32, + pub rowStride: u32, +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Plane() { + assert_eq!( + ::std::mem::size_of::(), + 12usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Plane)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Plane)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).data as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(data) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pixelStride as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(pixelStride) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rowStride as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(rowStride) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Planes { + pub planeCount: u32, + pub planes: [AHardwareBuffer_Plane; 4usize], +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Planes() { + assert_eq!( + ::std::mem::size_of::(), + 52usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Planes)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Planes)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).planeCount as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Planes), + "::", + stringify!(planeCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).planes as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Planes), + "::", + stringify!(planes) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer { + _unused: [u8; 0], +} +extern "C" { + pub fn AHardwareBuffer_allocate( + desc: *const AHardwareBuffer_Desc, + outBuffer: *mut *mut AHardwareBuffer, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_acquire(buffer: *mut AHardwareBuffer); +} +extern "C" { + pub fn AHardwareBuffer_release(buffer: *mut AHardwareBuffer); +} +extern "C" { + pub fn AHardwareBuffer_describe( + buffer: *const AHardwareBuffer, + outDesc: *mut AHardwareBuffer_Desc, + ); +} +extern "C" { + pub fn AHardwareBuffer_lock( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outVirtualAddress: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_lockPlanes( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outPlanes: *mut AHardwareBuffer_Planes, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_unlock( + buffer: *mut AHardwareBuffer, + fence: *mut i32, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_sendHandleToUnixSocket( + buffer: *const AHardwareBuffer, + socketFd: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_recvHandleFromUnixSocket( + socketFd: ::std::os::raw::c_int, + outBuffer: *mut *mut AHardwareBuffer, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_isSupported(desc: *const AHardwareBuffer_Desc) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_lockAndGetInfo( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outVirtualAddress: *mut *mut ::std::os::raw::c_void, + outBytesPerPixel: *mut i32, + outBytesPerStride: *mut i32, + ) -> ::std::os::raw::c_int; +} +pub type va_list = __builtin_va_list; +pub type __gnuc_va_list = __builtin_va_list; +#[repr(C)] +pub struct JavaVMAttachArgs { + pub version: jint, + pub name: *const ::std::os::raw::c_char, + pub group: jobject, +} +#[test] +fn bindgen_test_layout_JavaVMAttachArgs() { + assert_eq!( + ::std::mem::size_of::(), + 12usize, + concat!("Size of: ", stringify!(JavaVMAttachArgs)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(JavaVMAttachArgs)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).version as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(version) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).name as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(name) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).group as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(group) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct JavaVMOption { + pub optionString: *const ::std::os::raw::c_char, + pub extraInfo: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_JavaVMOption() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(JavaVMOption)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(JavaVMOption)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).optionString as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMOption), + "::", + stringify!(optionString) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).extraInfo as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(JavaVMOption), + "::", + stringify!(extraInfo) + ) + ); +} +#[repr(C)] +pub struct JavaVMInitArgs { + pub version: jint, + pub nOptions: jint, + pub options: *mut JavaVMOption, + pub ignoreUnrecognized: jboolean, +} +#[test] +fn bindgen_test_layout_JavaVMInitArgs() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(JavaVMInitArgs)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(JavaVMInitArgs)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).version as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(version) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).nOptions as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(nOptions) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).options as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(options) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).ignoreUnrecognized as *const _ as usize + }, + 12usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(ignoreUnrecognized) + ) + ); +} +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_CAPTION_BAR: GameCommonInsetsType = 0; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_DISPLAY_CUTOUT: GameCommonInsetsType = 1; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_IME: GameCommonInsetsType = 2; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_MANDATORY_SYSTEM_GESTURES: + GameCommonInsetsType = 3; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_NAVIGATION_BARS: GameCommonInsetsType = 4; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_STATUS_BARS: GameCommonInsetsType = 5; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_SYSTEM_BARS: GameCommonInsetsType = 6; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_SYSTEM_GESTURES: GameCommonInsetsType = 7; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_TAPABLE_ELEMENT: GameCommonInsetsType = 8; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_WATERFALL: GameCommonInsetsType = 9; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_COUNT: GameCommonInsetsType = 10; +#[doc = " The type of a component for which to retrieve insets. See"] +#[doc = " https://developer.android.com/reference/androidx/core/view/WindowInsetsCompat.Type"] +pub type GameCommonInsetsType = ::std::os::raw::c_uint; +#[doc = " This struct holds a span within a region of text from start (inclusive) to"] +#[doc = " end (exclusive). An empty span or cursor position is specified with"] +#[doc = " start==end. An undefined span is specified with start = end = SPAN_UNDEFINED."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInputSpan { + #[doc = " The start of the region (inclusive)."] + pub start: i32, + #[doc = " The end of the region (exclusive)."] + pub end: i32, +} +#[test] +fn bindgen_test_layout_GameTextInputSpan() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(GameTextInputSpan)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameTextInputSpan)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).start as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputSpan), + "::", + stringify!(start) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).end as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputSpan), + "::", + stringify!(end) + ) + ); +} +pub const GameTextInputSpanFlag_SPAN_UNDEFINED: GameTextInputSpanFlag = -1; +#[doc = " Values with special meaning in a GameTextInputSpan."] +pub type GameTextInputSpanFlag = ::std::os::raw::c_int; +#[doc = " This struct holds the state of an editable section of text."] +#[doc = " The text can have a selection and a composing region defined on it."] +#[doc = " A composing region is used by IMEs that allow input using multiple steps to"] +#[doc = " compose a glyph or word. Use functions GameTextInput_getState and"] +#[doc = " GameTextInput_setState to read and modify the state that an IME is editing."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInputState { + #[doc = " Text owned by the state, as a modified UTF-8 string. Null-terminated."] + #[doc = " https://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8"] + pub text_UTF8: *const ::std::os::raw::c_char, + #[doc = " Length in bytes of text_UTF8, *not* including the null at end."] + pub text_length: i32, + #[doc = " A selection defined on the text."] + pub selection: GameTextInputSpan, + #[doc = " A composing region defined on the text."] + pub composingRegion: GameTextInputSpan, +} +#[test] +fn bindgen_test_layout_GameTextInputState() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(GameTextInputState)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameTextInputState)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).text_UTF8 as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(text_UTF8) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).text_length as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(text_length) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).selection as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(selection) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).composingRegion as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(composingRegion) + ) + ); +} +#[doc = " A callback called by GameTextInput_getState."] +#[doc = " @param context User-defined context."] +#[doc = " @param state State, owned by the library, that will be valid for the duration"] +#[doc = " of the callback."] +pub type GameTextInputGetStateCallback = ::std::option::Option< + unsafe extern "C" fn(context: *mut ::std::os::raw::c_void, state: *const GameTextInputState), +>; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInput { + _unused: [u8; 0], +} +extern "C" { + #[doc = " Initialize the GameTextInput library."] + #[doc = " If called twice without GameTextInput_destroy being called, the same pointer"] + #[doc = " will be returned and a warning will be issued."] + #[doc = " @param env A JNI env valid on the calling thread."] + #[doc = " @param max_string_size The maximum length of a string that can be edited. If"] + #[doc = " zero, the maximum defaults to 65536 bytes. A buffer of this size is allocated"] + #[doc = " at initialization."] + #[doc = " @return A handle to the library."] + pub fn GameTextInput_init(env: *mut JNIEnv, max_string_size: u32) -> *mut GameTextInput; +} +extern "C" { + #[doc = " When using GameTextInput, you need to create a gametextinput.InputConnection"] + #[doc = " on the Java side and pass it using this function to the library, unless using"] + #[doc = " GameActivity in which case this will be done for you. See the GameActivity"] + #[doc = " source code or GameTextInput samples for examples of usage."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param inputConnection A gametextinput.InputConnection object."] + pub fn GameTextInput_setInputConnection(input: *mut GameTextInput, inputConnection: jobject); +} +extern "C" { + #[doc = " Unless using GameActivity, it is required to call this function from your"] + #[doc = " Java gametextinput.Listener.stateChanged method to convert eventState and"] + #[doc = " trigger any event callbacks. When using GameActivity, this does not need to"] + #[doc = " be called as event processing is handled by the Activity."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param eventState A Java gametextinput.State object."] + pub fn GameTextInput_processEvent(input: *mut GameTextInput, eventState: jobject); +} +extern "C" { + #[doc = " Free any resources owned by the GameTextInput library."] + #[doc = " Any subsequent calls to the library will fail until GameTextInput_init is"] + #[doc = " called again."] + #[doc = " @param input A valid GameTextInput library handle."] + pub fn GameTextInput_destroy(input: *mut GameTextInput); +} +pub const ShowImeFlags_SHOW_IME_UNDEFINED: ShowImeFlags = 0; +pub const ShowImeFlags_SHOW_IMPLICIT: ShowImeFlags = 1; +pub const ShowImeFlags_SHOW_FORCED: ShowImeFlags = 2; +#[doc = " Flags to be passed to GameTextInput_showIme."] +pub type ShowImeFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME. Calls InputMethodManager.showSoftInput()."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param flags Defined in ShowImeFlags above. For more information see:"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/InputMethodManager"] + pub fn GameTextInput_showIme(input: *mut GameTextInput, flags: u32); +} +pub const HideImeFlags_HIDE_IME_UNDEFINED: HideImeFlags = 0; +pub const HideImeFlags_HIDE_IMPLICIT_ONLY: HideImeFlags = 1; +pub const HideImeFlags_HIDE_NOT_ALWAYS: HideImeFlags = 2; +#[doc = " Flags to be passed to GameTextInput_hideIme."] +pub type HideImeFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME. Calls InputMethodManager.hideSoftInputFromWindow()."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param flags Defined in HideImeFlags above. For more information see:"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/InputMethodManager"] + pub fn GameTextInput_hideIme(input: *mut GameTextInput, flags: u32); +} +extern "C" { + #[doc = " Call a callback with the current GameTextInput state, which may have been"] + #[doc = " modified by changes in the IME and calls to GameTextInput_setState. We use a"] + #[doc = " callback rather than returning the state in order to simplify ownership of"] + #[doc = " text_UTF8 strings. These strings are only valid during the calling of the"] + #[doc = " callback."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback A function that will be called with valid state."] + #[doc = " @param context Context used by the callback."] + pub fn GameTextInput_getState( + input: *mut GameTextInput, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Set the current GameTextInput state. This state is reflected to any active"] + #[doc = " IME."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state The state to set. Ownership is maintained by the caller and must"] + #[doc = " remain valid for the duration of the call."] + pub fn GameTextInput_setState(input: *mut GameTextInput, state: *const GameTextInputState); +} +#[doc = " Type of the callback needed by GameTextInput_setEventCallback that will be"] +#[doc = " called every time the IME state changes."] +#[doc = " @param context User-defined context set in GameTextInput_setEventCallback."] +#[doc = " @param current_state Current IME state, owned by the library and valid during"] +#[doc = " the callback."] +pub type GameTextInputEventCallback = ::std::option::Option< + unsafe extern "C" fn( + context: *mut ::std::os::raw::c_void, + current_state: *const GameTextInputState, + ), +>; +extern "C" { + #[doc = " Optionally set a callback to be called whenever the IME state changes."] + #[doc = " Not necessary if you are using GameActivity, which handles these callbacks"] + #[doc = " for you."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback Called by the library when the IME state changes."] + #[doc = " @param context Context passed as first argument to the callback."] + pub fn GameTextInput_setEventCallback( + input: *mut GameTextInput, + callback: GameTextInputEventCallback, + context: *mut ::std::os::raw::c_void, + ); +} +#[doc = " Type of the callback needed by GameTextInput_setImeInsetsCallback that will"] +#[doc = " be called every time the IME window insets change."] +#[doc = " @param context User-defined context set in"] +#[doc = " GameTextInput_setImeWIndowInsetsCallback."] +#[doc = " @param current_insets Current IME insets, owned by the library and valid"] +#[doc = " during the callback."] +pub type GameTextInputImeInsetsCallback = ::std::option::Option< + unsafe extern "C" fn(context: *mut ::std::os::raw::c_void, current_insets: *const ARect), +>; +extern "C" { + #[doc = " Optionally set a callback to be called whenever the IME insets change."] + #[doc = " Not necessary if you are using GameActivity, which handles these callbacks"] + #[doc = " for you."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback Called by the library when the IME insets change."] + #[doc = " @param context Context passed as first argument to the callback."] + pub fn GameTextInput_setImeInsetsCallback( + input: *mut GameTextInput, + callback: GameTextInputImeInsetsCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Get the current window insets for the IME."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param insets Filled with the current insets by this function."] + pub fn GameTextInput_getImeInsets(input: *const GameTextInput, insets: *mut ARect); +} +extern "C" { + #[doc = " Unless using GameActivity, it is required to call this function from your"] + #[doc = " Java gametextinput.Listener.onImeInsetsChanged method to"] + #[doc = " trigger any event callbacks. When using GameActivity, this does not need to"] + #[doc = " be called as insets processing is handled by the Activity."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param eventState A Java gametextinput.State object."] + pub fn GameTextInput_processImeInsets(input: *mut GameTextInput, insets: *const ARect); +} +extern "C" { + #[doc = " Convert a GameTextInputState struct to a Java gametextinput.State object."] + #[doc = " Don't forget to delete the returned Java local ref when you're done."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state Input state to convert."] + #[doc = " @return A Java object of class gametextinput.State. The caller is required to"] + #[doc = " delete this local reference."] + pub fn GameTextInputState_toJava( + input: *const GameTextInput, + state: *const GameTextInputState, + ) -> jobject; +} +extern "C" { + #[doc = " Convert from a Java gametextinput.State object into a C GameTextInputState"] + #[doc = " struct."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state A Java gametextinput.State object."] + #[doc = " @param callback A function called with the C struct, valid for the duration"] + #[doc = " of the call."] + #[doc = " @param context Context passed to the callback."] + pub fn GameTextInputState_fromJava( + input: *const GameTextInput, + state: jobject, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +#[doc = " This structure defines the native side of an android.app.GameActivity."] +#[doc = " It is created by the framework, and handed to the application's native"] +#[doc = " code as it is being launched."] +#[repr(C)] +pub struct GameActivity { + #[doc = " Pointer to the callback function table of the native application."] + #[doc = " You can set the functions here to your own callbacks. The callbacks"] + #[doc = " pointer itself here should not be changed; it is allocated and managed"] + #[doc = " for you by the framework."] + pub callbacks: *mut GameActivityCallbacks, + #[doc = " The global handle on the process's Java VM."] + pub vm: *mut JavaVM, + #[doc = " JNI context for the main thread of the app. Note that this field"] + #[doc = " can ONLY be used from the main thread of the process; that is, the"] + #[doc = " thread that calls into the GameActivityCallbacks."] + pub env: *mut JNIEnv, + #[doc = " The GameActivity object handle."] + pub javaGameActivity: jobject, + #[doc = " Path to this application's internal data directory."] + pub internalDataPath: *const ::std::os::raw::c_char, + #[doc = " Path to this application's external (removable/mountable) data directory."] + pub externalDataPath: *const ::std::os::raw::c_char, + #[doc = " The platform's SDK version code."] + pub sdkVersion: i32, + #[doc = " This is the native instance of the application. It is not used by"] + #[doc = " the framework, but can be set by the application to its own instance"] + #[doc = " state."] + pub instance: *mut ::std::os::raw::c_void, + #[doc = " Pointer to the Asset Manager instance for the application. The"] + #[doc = " application uses this to access binary assets bundled inside its own .apk"] + #[doc = " file."] + pub assetManager: *mut AAssetManager, + #[doc = " Available starting with Honeycomb: path to the directory containing"] + #[doc = " the application's OBB files (if any). If the app doesn't have any"] + #[doc = " OBB files, this directory may not exist."] + pub obbPath: *const ::std::os::raw::c_char, +} +#[test] +fn bindgen_test_layout_GameActivity() { + assert_eq!( + ::std::mem::size_of::(), + 40usize, + concat!("Size of: ", stringify!(GameActivity)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameActivity)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).callbacks as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(callbacks) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).vm as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(vm) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).env as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(env) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).javaGameActivity as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(javaGameActivity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).internalDataPath as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(internalDataPath) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).externalDataPath as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(externalDataPath) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sdkVersion as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(sdkVersion) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).instance as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(instance) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).assetManager as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(assetManager) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).obbPath as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(obbPath) + ) + ); +} +#[doc = " \\brief Describe information about a pointer, found in a"] +#[doc = " GameActivityMotionEvent."] +#[doc = ""] +#[doc = " You can read values directly from this structure, or use helper functions"] +#[doc = " (`GameActivityPointerAxes_getX`, `GameActivityPointerAxes_getY` and"] +#[doc = " `GameActivityPointerAxes_getAxisValue`)."] +#[doc = ""] +#[doc = " The X axis and Y axis are enabled by default but any other axis that you want"] +#[doc = " to read **must** be enabled first, using"] +#[doc = " `GameActivityPointerAxes_enableAxis`."] +#[doc = ""] +#[doc = " \\see GameActivityMotionEvent"] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityPointerAxes { + pub id: i32, + pub axisValues: [f32; 48usize], + pub rawX: f32, + pub rawY: f32, +} +#[test] +fn bindgen_test_layout_GameActivityPointerAxes() { + assert_eq!( + ::std::mem::size_of::(), + 204usize, + concat!("Size of: ", stringify!(GameActivityPointerAxes)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameActivityPointerAxes)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).id as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(id) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).axisValues as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(axisValues) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rawX as *const _ as usize }, + 196usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(rawX) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rawY as *const _ as usize }, + 200usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(rawY) + ) + ); +} +extern "C" { + #[doc = " \\brief Enable the specified axis, so that its value is reported in the"] + #[doc = " GameActivityPointerAxes structures stored in a motion event."] + #[doc = ""] + #[doc = " You must enable any axis that you want to read, apart from"] + #[doc = " `AMOTION_EVENT_AXIS_X` and `AMOTION_EVENT_AXIS_Y` that are enabled by"] + #[doc = " default."] + #[doc = ""] + #[doc = " If the axis index is out of range, nothing is done."] + pub fn GameActivityPointerAxes_enableAxis(axis: i32); +} +extern "C" { + #[doc = " \\brief Disable the specified axis. Its value won't be reported in the"] + #[doc = " GameActivityPointerAxes structures stored in a motion event anymore."] + #[doc = ""] + #[doc = " Apart from X and Y, any axis that you want to read **must** be enabled first,"] + #[doc = " using `GameActivityPointerAxes_enableAxis`."] + #[doc = ""] + #[doc = " If the axis index is out of range, nothing is done."] + pub fn GameActivityPointerAxes_disableAxis(axis: i32); +} +#[doc = " \\brief Describe a motion event that happened on the GameActivity SurfaceView."] +#[doc = ""] +#[doc = " This is 1:1 mapping to the information contained in a Java `MotionEvent`"] +#[doc = " (see https://developer.android.com/reference/android/view/MotionEvent)."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityMotionEvent { + pub deviceId: i32, + pub source: i32, + pub action: i32, + pub eventTime: i64, + pub downTime: i64, + pub flags: i32, + pub metaState: i32, + pub actionButton: i32, + pub buttonState: i32, + pub classification: i32, + pub edgeFlags: i32, + pub pointerCount: u32, + pub pointers: [GameActivityPointerAxes; 8usize], + pub precisionX: f32, + pub precisionY: f32, +} +#[test] +fn bindgen_test_layout_GameActivityMotionEvent() { + assert_eq!( + ::std::mem::size_of::(), + 1696usize, + concat!("Size of: ", stringify!(GameActivityMotionEvent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameActivityMotionEvent)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).deviceId as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(deviceId) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).source as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(source) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).action as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(action) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).eventTime as *const _ as usize + }, + 12usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(eventTime) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).downTime as *const _ as usize + }, + 20usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(downTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).metaState as *const _ as usize + }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(metaState) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).actionButton as *const _ as usize + }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(actionButton) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).buttonState as *const _ as usize + }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(buttonState) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).classification as *const _ as usize + }, + 44usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(classification) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).edgeFlags as *const _ as usize + }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(edgeFlags) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pointerCount as *const _ as usize + }, + 52usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(pointerCount) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pointers as *const _ as usize + }, + 56usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(pointers) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).precisionX as *const _ as usize + }, + 1688usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(precisionX) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).precisionY as *const _ as usize + }, + 1692usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(precisionY) + ) + ); +} +#[doc = " \\brief Describe a key event that happened on the GameActivity SurfaceView."] +#[doc = ""] +#[doc = " This is 1:1 mapping to the information contained in a Java `KeyEvent`"] +#[doc = " (see https://developer.android.com/reference/android/view/KeyEvent)."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityKeyEvent { + pub deviceId: i32, + pub source: i32, + pub action: i32, + pub eventTime: i64, + pub downTime: i64, + pub flags: i32, + pub metaState: i32, + pub modifiers: i32, + pub repeatCount: i32, + pub keyCode: i32, + pub scanCode: i32, +} +#[test] +fn bindgen_test_layout_GameActivityKeyEvent() { + assert_eq!( + ::std::mem::size_of::(), + 52usize, + concat!("Size of: ", stringify!(GameActivityKeyEvent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameActivityKeyEvent)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).deviceId as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(deviceId) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).source as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(source) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).action as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(action) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eventTime as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(eventTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).downTime as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(downTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).metaState as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(metaState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).modifiers as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(modifiers) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).repeatCount as *const _ as usize + }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(repeatCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyCode as *const _ as usize }, + 44usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(keyCode) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).scanCode as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(scanCode) + ) + ); +} +#[doc = " A function the user should call from their callback with the data, its length"] +#[doc = " and the library- supplied context."] +pub type SaveInstanceStateRecallback = ::std::option::Option< + unsafe extern "C" fn( + bytes: *const ::std::os::raw::c_char, + len: ::std::os::raw::c_int, + context: *mut ::std::os::raw::c_void, + ), +>; +#[doc = " {@link GameActivityCallbacks}"] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityCallbacks { + #[doc = " GameActivity has started. See Java documentation for Activity.onStart()"] + #[doc = " for more information."] + pub onStart: ::std::option::Option, + #[doc = " GameActivity has resumed. See Java documentation for Activity.onResume()"] + #[doc = " for more information."] + pub onResume: ::std::option::Option, + #[doc = " The framework is asking GameActivity to save its current instance state."] + #[doc = " See the Java documentation for Activity.onSaveInstanceState() for more"] + #[doc = " information. The user should call the recallback with their data, its"] + #[doc = " length and the provided context; they retain ownership of the data. Note"] + #[doc = " that the saved state will be persisted, so it can not contain any active"] + #[doc = " entities (pointers to memory, file descriptors, etc)."] + pub onSaveInstanceState: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + recallback: SaveInstanceStateRecallback, + context: *mut ::std::os::raw::c_void, + ), + >, + #[doc = " GameActivity has paused. See Java documentation for Activity.onPause()"] + #[doc = " for more information."] + pub onPause: ::std::option::Option, + #[doc = " GameActivity has stopped. See Java documentation for Activity.onStop()"] + #[doc = " for more information."] + pub onStop: ::std::option::Option, + #[doc = " GameActivity is being destroyed. See Java documentation for"] + #[doc = " Activity.onDestroy() for more information."] + pub onDestroy: ::std::option::Option, + #[doc = " Focus has changed in this GameActivity's window. This is often used,"] + #[doc = " for example, to pause a game when it loses input focus."] + pub onWindowFocusChanged: + ::std::option::Option, + #[doc = " The drawing window for this native activity has been created. You"] + #[doc = " can use the given native window object to start drawing."] + pub onNativeWindowCreated: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The drawing window for this native activity has been resized. You should"] + #[doc = " retrieve the new size from the window and ensure that your rendering in"] + #[doc = " it now matches."] + pub onNativeWindowResized: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + window: *mut ANativeWindow, + newWidth: i32, + newHeight: i32, + ), + >, + #[doc = " The drawing window for this native activity needs to be redrawn. To"] + #[doc = " avoid transient artifacts during screen changes (such resizing after"] + #[doc = " rotation), applications should not return from this function until they"] + #[doc = " have finished drawing their window in its current state."] + pub onNativeWindowRedrawNeeded: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The drawing window for this native activity is going to be destroyed."] + #[doc = " You MUST ensure that you do not touch the window object after returning"] + #[doc = " from this function: in the common case of drawing to the window from"] + #[doc = " another thread, that means the implementation of this callback must"] + #[doc = " properly synchronize with the other thread to stop its drawing before"] + #[doc = " returning from here."] + pub onNativeWindowDestroyed: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The current device AConfiguration has changed. The new configuration can"] + #[doc = " be retrieved from assetManager."] + pub onConfigurationChanged: + ::std::option::Option, + #[doc = " The system is running low on memory. Use this callback to release"] + #[doc = " resources you do not need, to help the system avoid killing more"] + #[doc = " important processes."] + pub onTrimMemory: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, level: ::std::os::raw::c_int), + >, + #[doc = " Callback called for every MotionEvent done on the GameActivity"] + #[doc = " SurfaceView. Ownership of `event` is maintained by the library and it is"] + #[doc = " only valid during the callback."] + pub onTouchEvent: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityMotionEvent, + ) -> bool, + >, + #[doc = " Callback called for every key down event on the GameActivity SurfaceView."] + #[doc = " Ownership of `event` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onKeyDown: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityKeyEvent, + ) -> bool, + >, + #[doc = " Callback called for every key up event on the GameActivity SurfaceView."] + #[doc = " Ownership of `event` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onKeyUp: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityKeyEvent, + ) -> bool, + >, + #[doc = " Callback called for every soft-keyboard text input event."] + #[doc = " Ownership of `state` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onTextInputEvent: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, state: *const GameTextInputState), + >, + #[doc = " Callback called when WindowInsets of the main app window have changed."] + #[doc = " Call GameActivity_getWindowInsets to retrieve the insets themselves."] + pub onWindowInsetsChanged: + ::std::option::Option, +} +#[test] +fn bindgen_test_layout_GameActivityCallbacks() { + assert_eq!( + ::std::mem::size_of::(), + 72usize, + concat!("Size of: ", stringify!(GameActivityCallbacks)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameActivityCallbacks)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onStart as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onStart) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onResume as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onResume) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onSaveInstanceState as *const _ + as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onSaveInstanceState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onPause as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onPause) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onStop as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onStop) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onDestroy as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onDestroy) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onWindowFocusChanged as *const _ + as usize + }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onWindowFocusChanged) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowCreated as *const _ + as usize + }, + 28usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowCreated) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowResized as *const _ + as usize + }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowResized) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowRedrawNeeded as *const _ + as usize + }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowRedrawNeeded) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowDestroyed as *const _ + as usize + }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowDestroyed) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onConfigurationChanged as *const _ + as usize + }, + 44usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onConfigurationChanged) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTrimMemory as *const _ as usize + }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTrimMemory) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTouchEvent as *const _ as usize + }, + 52usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTouchEvent) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onKeyDown as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onKeyDown) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onKeyUp as *const _ as usize }, + 60usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onKeyUp) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTextInputEvent as *const _ as usize + }, + 64usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTextInputEvent) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onWindowInsetsChanged as *const _ + as usize + }, + 68usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onWindowInsetsChanged) + ) + ); +} +extern "C" { + #[doc = " \\brief Convert a Java `MotionEvent` to a `GameActivityMotionEvent`."] + #[doc = ""] + #[doc = " This is done automatically by the GameActivity: see `onTouchEvent` to set"] + #[doc = " a callback to consume the received events."] + #[doc = " This function can be used if you re-implement events handling in your own"] + #[doc = " activity."] + #[doc = " Ownership of out_event is maintained by the caller."] + pub fn GameActivityMotionEvent_fromJava( + env: *mut JNIEnv, + motionEvent: jobject, + out_event: *mut GameActivityMotionEvent, + ); +} +extern "C" { + #[doc = " \\brief Convert a Java `KeyEvent` to a `GameActivityKeyEvent`."] + #[doc = ""] + #[doc = " This is done automatically by the GameActivity: see `onKeyUp` and `onKeyDown`"] + #[doc = " to set a callback to consume the received events."] + #[doc = " This function can be used if you re-implement events handling in your own"] + #[doc = " activity."] + #[doc = " Ownership of out_event is maintained by the caller."] + pub fn GameActivityKeyEvent_fromJava( + env: *mut JNIEnv, + motionEvent: jobject, + out_event: *mut GameActivityKeyEvent, + ); +} +#[doc = " This is the function that must be in the native code to instantiate the"] +#[doc = " application's native activity. It is called with the activity instance (see"] +#[doc = " above); if the code is being instantiated from a previously saved instance,"] +#[doc = " the savedState will be non-NULL and point to the saved data. You must make"] +#[doc = " any copy of this data you need -- it will be released after you return from"] +#[doc = " this function."] +pub type GameActivity_createFunc = ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + savedState: *mut ::std::os::raw::c_void, + savedStateSize: size_t, + ), +>; +extern "C" { + #[doc = " Finish the given activity. Its finish() method will be called, causing it"] + #[doc = " to be stopped and destroyed. Note that this method can be called from"] + #[doc = " *any* thread; it will send a message to the main thread of the process"] + #[doc = " where the Java finish call will take place."] + pub fn GameActivity_finish(activity: *mut GameActivity); +} +#[doc = " As long as this window is visible to the user, allow the lock"] +#[doc = " screen to activate while the screen is on. This can be used"] +#[doc = " independently, or in combination with {@link"] +#[doc = " GAMEACTIVITY_FLAG_KEEP_SCREEN_ON} and/or {@link"] +#[doc = " GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED}"] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_ALLOW_LOCK_WHILE_SCREEN_ON: + GameActivitySetWindowFlags = 1; +#[doc = " Everything behind this window will be dimmed."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DIM_BEHIND: GameActivitySetWindowFlags = 2; +#[doc = " Blur everything behind this window."] +#[doc = " @deprecated Blurring is no longer supported."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_BLUR_BEHIND: GameActivitySetWindowFlags = 4; +#[doc = " This window won't ever get key input focus, so the"] +#[doc = " user can not send key or other button events to it. Those will"] +#[doc = " instead go to whatever focusable window is behind it. This flag"] +#[doc = " will also enable {@link GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL} whether or not"] +#[doc = " that is explicitly set."] +#[doc = ""] +#[doc = " Setting this flag also implies that the window will not need to"] +#[doc = " interact with"] +#[doc = " a soft input method, so it will be Z-ordered and positioned"] +#[doc = " independently of any active input method (typically this means it"] +#[doc = " gets Z-ordered on top of the input method, so it can use the full"] +#[doc = " screen for its content and cover the input method if needed. You"] +#[doc = " can use {@link GAMEACTIVITY_FLAG_ALT_FOCUSABLE_IM} to modify this"] +#[doc = " behavior."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_FOCUSABLE: GameActivitySetWindowFlags = + 8; +#[doc = " This window can never receive touch events."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_TOUCHABLE: GameActivitySetWindowFlags = + 16; +#[doc = " Even when this window is focusable (its"] +#[doc = " {@link GAMEACTIVITY_FLAG_NOT_FOCUSABLE} is not set), allow any pointer"] +#[doc = " events outside of the window to be sent to the windows behind it."] +#[doc = " Otherwise it will consume all pointer events itself, regardless of"] +#[doc = " whether they are inside of the window."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL: GameActivitySetWindowFlags = + 32; +#[doc = " When set, if the device is asleep when the touch"] +#[doc = " screen is pressed, you will receive this first touch event. Usually"] +#[doc = " the first touch event is consumed by the system since the user can"] +#[doc = " not see what they are pressing on."] +#[doc = ""] +#[doc = " @deprecated This flag has no effect."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_TOUCHABLE_WHEN_WAKING: + GameActivitySetWindowFlags = 64; +#[doc = " As long as this window is visible to the user, keep"] +#[doc = " the device's screen turned on and bright."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_KEEP_SCREEN_ON: GameActivitySetWindowFlags = + 128; +#[doc = " Place the window within the entire screen, ignoring"] +#[doc = " decorations around the border (such as the status bar). The"] +#[doc = " window must correctly position its contents to take the screen"] +#[doc = " decoration into account."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_IN_SCREEN: + GameActivitySetWindowFlags = 256; +#[doc = " Allows the window to extend outside of the screen."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_NO_LIMITS: + GameActivitySetWindowFlags = 512; +#[doc = " Hide all screen decorations (such as the status"] +#[doc = " bar) while this window is displayed. This allows the window to"] +#[doc = " use the entire display space for itself -- the status bar will"] +#[doc = " be hidden when an app window with this flag set is on the top"] +#[doc = " layer. A fullscreen window will ignore a value of {@link"] +#[doc = " GAMEACTIVITY_SOFT_INPUT_ADJUST_RESIZE}; the window will stay"] +#[doc = " fullscreen and will not resize."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_FULLSCREEN: GameActivitySetWindowFlags = + 1024; +#[doc = " Override {@link GAMEACTIVITY_FLAG_FULLSCREEN} and force the"] +#[doc = " screen decorations (such as the status bar) to be shown."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_FORCE_NOT_FULLSCREEN: + GameActivitySetWindowFlags = 2048; +#[doc = " Turn on dithering when compositing this window to"] +#[doc = " the screen."] +#[doc = " @deprecated This flag is no longer used."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DITHER: GameActivitySetWindowFlags = 4096; +#[doc = " Treat the content of the window as secure, preventing"] +#[doc = " it from appearing in screenshots or from being viewed on non-secure"] +#[doc = " displays."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SECURE: GameActivitySetWindowFlags = 8192; +#[doc = " A special mode where the layout parameters are used"] +#[doc = " to perform scaling of the surface when it is composited to the"] +#[doc = " screen."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SCALED: GameActivitySetWindowFlags = 16384; +#[doc = " Intended for windows that will often be used when the user is"] +#[doc = " holding the screen against their face, it will aggressively"] +#[doc = " filter the event stream to prevent unintended presses in this"] +#[doc = " situation that may not be desired for a particular window, when"] +#[doc = " such an event stream is detected, the application will receive"] +#[doc = " a {@link AMOTION_EVENT_ACTION_CANCEL} to indicate this so"] +#[doc = " applications can handle this accordingly by taking no action on"] +#[doc = " the event until the finger is released."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_IGNORE_CHEEK_PRESSES: + GameActivitySetWindowFlags = 32768; +#[doc = " A special option only for use in combination with"] +#[doc = " {@link GAMEACTIVITY_FLAG_LAYOUT_IN_SCREEN}. When requesting layout in"] +#[doc = " the screen your window may appear on top of or behind screen decorations"] +#[doc = " such as the status bar. By also including this flag, the window"] +#[doc = " manager will report the inset rectangle needed to ensure your"] +#[doc = " content is not covered by screen decorations."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_INSET_DECOR: + GameActivitySetWindowFlags = 65536; +#[doc = " Invert the state of {@link GAMEACTIVITY_FLAG_NOT_FOCUSABLE} with"] +#[doc = " respect to how this window interacts with the current method."] +#[doc = " That is, if FLAG_NOT_FOCUSABLE is set and this flag is set,"] +#[doc = " then the window will behave as if it needs to interact with the"] +#[doc = " input method and thus be placed behind/away from it; if {@link"] +#[doc = " GAMEACTIVITY_FLAG_NOT_FOCUSABLE} is not set and this flag is set,"] +#[doc = " then the window will behave as if it doesn't need to interact"] +#[doc = " with the input method and can be placed to use more space and"] +#[doc = " cover the input method."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_ALT_FOCUSABLE_IM: + GameActivitySetWindowFlags = 131072; +#[doc = " If you have set {@link GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL}, you"] +#[doc = " can set this flag to receive a single special MotionEvent with"] +#[doc = " the action"] +#[doc = " {@link AMOTION_EVENT_ACTION_OUTSIDE} for"] +#[doc = " touches that occur outside of your window. Note that you will not"] +#[doc = " receive the full down/move/up gesture, only the location of the"] +#[doc = " first down as an {@link AMOTION_EVENT_ACTION_OUTSIDE}."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_WATCH_OUTSIDE_TOUCH: + GameActivitySetWindowFlags = 262144; +#[doc = " Special flag to let windows be shown when the screen"] +#[doc = " is locked. This will let application windows take precedence over"] +#[doc = " key guard or any other lock screens. Can be used with"] +#[doc = " {@link GAMEACTIVITY_FLAG_KEEP_SCREEN_ON} to turn screen on and display"] +#[doc = " windows directly before showing the key guard window. Can be used with"] +#[doc = " {@link GAMEACTIVITY_FLAG_DISMISS_KEYGUARD} to automatically fully"] +#[doc = " dismisss non-secure keyguards. This flag only applies to the top-most"] +#[doc = " full-screen window."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED: + GameActivitySetWindowFlags = 524288; +#[doc = " Ask that the system wallpaper be shown behind"] +#[doc = " your window. The window surface must be translucent to be able"] +#[doc = " to actually see the wallpaper behind it; this flag just ensures"] +#[doc = " that the wallpaper surface will be there if this window actually"] +#[doc = " has translucent regions."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SHOW_WALLPAPER: GameActivitySetWindowFlags = + 1048576; +#[doc = " When set as a window is being added or made"] +#[doc = " visible, once the window has been shown then the system will"] +#[doc = " poke the power manager's user activity (as if the user had woken"] +#[doc = " up the device) to turn the screen on."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_TURN_SCREEN_ON: GameActivitySetWindowFlags = + 2097152; +#[doc = " When set the window will cause the keyguard to"] +#[doc = " be dismissed, only if it is not a secure lock keyguard. Because such"] +#[doc = " a keyguard is not needed for security, it will never re-appear if"] +#[doc = " the user navigates to another window (in contrast to"] +#[doc = " {@link GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED}, which will only temporarily"] +#[doc = " hide both secure and non-secure keyguards but ensure they reappear"] +#[doc = " when the user moves to another UI that doesn't hide them)."] +#[doc = " If the keyguard is currently active and is secure (requires an"] +#[doc = " unlock pattern) than the user will still need to confirm it before"] +#[doc = " seeing this window, unless {@link GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED} has"] +#[doc = " also been set."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DISMISS_KEYGUARD: + GameActivitySetWindowFlags = 4194304; +#[doc = " Flags for GameActivity_setWindowFlags,"] +#[doc = " as per the Java API at android.view.WindowManager.LayoutParams."] +pub type GameActivitySetWindowFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Change the window flags of the given activity. Calls getWindow().setFlags()"] + #[doc = " of the given activity."] + #[doc = " Note that some flags must be set before the window decoration is created,"] + #[doc = " see"] + #[doc = " https://developer.android.com/reference/android/view/Window#setFlags(int,%20int)."] + #[doc = " Note also that this method can be called from"] + #[doc = " *any* thread; it will send a message to the main thread of the process"] + #[doc = " where the Java finish call will take place."] + pub fn GameActivity_setWindowFlags( + activity: *mut GameActivity, + addFlags: u32, + removeFlags: u32, + ); +} +#[doc = " Implicit request to show the input window, not as the result"] +#[doc = " of a direct request by the user."] +pub const GameActivityShowSoftInputFlags_GAMEACTIVITY_SHOW_SOFT_INPUT_IMPLICIT: + GameActivityShowSoftInputFlags = 1; +#[doc = " The user has forced the input method open (such as by"] +#[doc = " long-pressing menu) so it should not be closed until they"] +#[doc = " explicitly do so."] +pub const GameActivityShowSoftInputFlags_GAMEACTIVITY_SHOW_SOFT_INPUT_FORCED: + GameActivityShowSoftInputFlags = 2; +#[doc = " Flags for GameActivity_showSoftInput; see the Java InputMethodManager"] +#[doc = " API for documentation."] +pub type GameActivityShowSoftInputFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME while in the given activity. Calls"] + #[doc = " InputMethodManager.showSoftInput() for the given activity. Note that this"] + #[doc = " method can be called from *any* thread; it will send a message to the main"] + #[doc = " thread of the process where the Java call will take place."] + pub fn GameActivity_showSoftInput(activity: *mut GameActivity, flags: u32); +} +extern "C" { + #[doc = " Set the text entry state (see documentation of the GameTextInputState struct"] + #[doc = " in the Game Text Input library reference)."] + #[doc = ""] + #[doc = " Ownership of the state is maintained by the caller."] + pub fn GameActivity_setTextInputState( + activity: *mut GameActivity, + state: *const GameTextInputState, + ); +} +extern "C" { + #[doc = " Get the last-received text entry state (see documentation of the"] + #[doc = " GameTextInputState struct in the Game Text Input library reference)."] + #[doc = ""] + pub fn GameActivity_getTextInputState( + activity: *mut GameActivity, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Get a pointer to the GameTextInput library instance."] + pub fn GameActivity_getTextInput(activity: *const GameActivity) -> *mut GameTextInput; +} +#[doc = " The soft input window should only be hidden if it was not"] +#[doc = " explicitly shown by the user."] +pub const GameActivityHideSoftInputFlags_GAMEACTIVITY_HIDE_SOFT_INPUT_IMPLICIT_ONLY: + GameActivityHideSoftInputFlags = 1; +#[doc = " The soft input window should normally be hidden, unless it was"] +#[doc = " originally shown with {@link GAMEACTIVITY_SHOW_SOFT_INPUT_FORCED}."] +pub const GameActivityHideSoftInputFlags_GAMEACTIVITY_HIDE_SOFT_INPUT_NOT_ALWAYS: + GameActivityHideSoftInputFlags = 2; +#[doc = " Flags for GameActivity_hideSoftInput; see the Java InputMethodManager"] +#[doc = " API for documentation."] +pub type GameActivityHideSoftInputFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Hide the IME while in the given activity. Calls"] + #[doc = " InputMethodManager.hideSoftInput() for the given activity. Note that this"] + #[doc = " method can be called from *any* thread; it will send a message to the main"] + #[doc = " thread of the process where the Java finish call will take place."] + pub fn GameActivity_hideSoftInput(activity: *mut GameActivity, flags: u32); +} +extern "C" { + #[doc = " Get the current window insets of the particular component. See"] + #[doc = " https://developer.android.com/reference/androidx/core/view/WindowInsetsCompat.Type"] + #[doc = " for more details."] + #[doc = " You can use these insets to influence what you show on the screen."] + pub fn GameActivity_getWindowInsets( + activity: *mut GameActivity, + type_: GameCommonInsetsType, + insets: *mut ARect, + ); +} +extern "C" { + #[doc = " Set options on how the IME behaves when it is requested for text input."] + #[doc = " See"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/EditorInfo"] + #[doc = " for the meaning of inputType, actionId and imeOptions."] + #[doc = ""] + #[doc = " Note that this function will attach the current thread to the JVM if it is"] + #[doc = " not already attached, so the caller must detach the thread from the JVM"] + #[doc = " before the thread is destroyed using DetachCurrentThread."] + pub fn GameActivity_setImeEditorInfo( + activity: *mut GameActivity, + inputType: ::std::os::raw::c_int, + actionId: ::std::os::raw::c_int, + imeOptions: ::std::os::raw::c_int, + ); +} +pub const ACONFIGURATION_ORIENTATION_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_ORIENTATION_PORT: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_ORIENTATION_LAND: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_ORIENTATION_SQUARE: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_TOUCHSCREEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_TOUCHSCREEN_NOTOUCH: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_TOUCHSCREEN_STYLUS: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_TOUCHSCREEN_FINGER: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_DENSITY_DEFAULT: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_DENSITY_LOW: ::std::os::raw::c_uint = 120; +pub const ACONFIGURATION_DENSITY_MEDIUM: ::std::os::raw::c_uint = 160; +pub const ACONFIGURATION_DENSITY_TV: ::std::os::raw::c_uint = 213; +pub const ACONFIGURATION_DENSITY_HIGH: ::std::os::raw::c_uint = 240; +pub const ACONFIGURATION_DENSITY_XHIGH: ::std::os::raw::c_uint = 320; +pub const ACONFIGURATION_DENSITY_XXHIGH: ::std::os::raw::c_uint = 480; +pub const ACONFIGURATION_DENSITY_XXXHIGH: ::std::os::raw::c_uint = 640; +pub const ACONFIGURATION_DENSITY_ANY: ::std::os::raw::c_uint = 65534; +pub const ACONFIGURATION_DENSITY_NONE: ::std::os::raw::c_uint = 65535; +pub const ACONFIGURATION_KEYBOARD_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_KEYBOARD_NOKEYS: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_KEYBOARD_QWERTY: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_KEYBOARD_12KEY: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVIGATION_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_NAVIGATION_NONAV: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_NAVIGATION_DPAD: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_NAVIGATION_TRACKBALL: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVIGATION_WHEEL: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_KEYSHIDDEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_KEYSHIDDEN_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_KEYSHIDDEN_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_KEYSHIDDEN_SOFT: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVHIDDEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_NAVHIDDEN_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_NAVHIDDEN_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENSIZE_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENSIZE_SMALL: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENSIZE_NORMAL: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENSIZE_LARGE: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_SCREENSIZE_XLARGE: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_SCREENLONG_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENLONG_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENLONG_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENROUND_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENROUND_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENROUND_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_HDR_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_HDR_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_HDR_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_UI_MODE_TYPE_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_UI_MODE_TYPE_NORMAL: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_UI_MODE_TYPE_DESK: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_UI_MODE_TYPE_CAR: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_UI_MODE_TYPE_TELEVISION: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_UI_MODE_TYPE_APPLIANCE: ::std::os::raw::c_uint = 5; +pub const ACONFIGURATION_UI_MODE_TYPE_WATCH: ::std::os::raw::c_uint = 6; +pub const ACONFIGURATION_UI_MODE_TYPE_VR_HEADSET: ::std::os::raw::c_uint = 7; +pub const ACONFIGURATION_UI_MODE_NIGHT_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_UI_MODE_NIGHT_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_UI_MODE_NIGHT_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREEN_WIDTH_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREEN_HEIGHT_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SMALLEST_SCREEN_WIDTH_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_LAYOUTDIR_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_LAYOUTDIR_LTR: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_LAYOUTDIR_RTL: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_MCC: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_MNC: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_LOCALE: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_TOUCHSCREEN: ::std::os::raw::c_uint = 8; +pub const ACONFIGURATION_KEYBOARD: ::std::os::raw::c_uint = 16; +pub const ACONFIGURATION_KEYBOARD_HIDDEN: ::std::os::raw::c_uint = 32; +pub const ACONFIGURATION_NAVIGATION: ::std::os::raw::c_uint = 64; +pub const ACONFIGURATION_ORIENTATION: ::std::os::raw::c_uint = 128; +pub const ACONFIGURATION_DENSITY: ::std::os::raw::c_uint = 256; +pub const ACONFIGURATION_SCREEN_SIZE: ::std::os::raw::c_uint = 512; +pub const ACONFIGURATION_VERSION: ::std::os::raw::c_uint = 1024; +pub const ACONFIGURATION_SCREEN_LAYOUT: ::std::os::raw::c_uint = 2048; +pub const ACONFIGURATION_UI_MODE: ::std::os::raw::c_uint = 4096; +pub const ACONFIGURATION_SMALLEST_SCREEN_SIZE: ::std::os::raw::c_uint = 8192; +pub const ACONFIGURATION_LAYOUTDIR: ::std::os::raw::c_uint = 16384; +pub const ACONFIGURATION_SCREEN_ROUND: ::std::os::raw::c_uint = 32768; +pub const ACONFIGURATION_COLOR_MODE: ::std::os::raw::c_uint = 65536; +pub const ACONFIGURATION_MNC_ZERO: ::std::os::raw::c_uint = 65535; +pub type _bindgen_ty_21 = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pollfd { + pub fd: ::std::os::raw::c_int, + pub events: ::std::os::raw::c_short, + pub revents: ::std::os::raw::c_short, +} +#[test] +fn bindgen_test_layout_pollfd() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(pollfd)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pollfd)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fd as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(fd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).events as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(events) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).revents as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(revents) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _fpx_sw_bytes { + pub magic1: __u32, + pub extended_size: __u32, + pub xfeatures: __u64, + pub xstate_size: __u32, + pub padding: [__u32; 7usize], +} +#[test] +fn bindgen_test_layout__fpx_sw_bytes() { + assert_eq!( + ::std::mem::size_of::<_fpx_sw_bytes>(), + 48usize, + concat!("Size of: ", stringify!(_fpx_sw_bytes)) + ); + assert_eq!( + ::std::mem::align_of::<_fpx_sw_bytes>(), + 4usize, + concat!("Alignment of ", stringify!(_fpx_sw_bytes)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpx_sw_bytes>())).magic1 as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpx_sw_bytes), + "::", + stringify!(magic1) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpx_sw_bytes>())).extended_size as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(_fpx_sw_bytes), + "::", + stringify!(extended_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpx_sw_bytes>())).xfeatures as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_fpx_sw_bytes), + "::", + stringify!(xfeatures) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpx_sw_bytes>())).xstate_size as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(_fpx_sw_bytes), + "::", + stringify!(xstate_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpx_sw_bytes>())).padding as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(_fpx_sw_bytes), + "::", + stringify!(padding) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _fpreg { + pub significand: [__u16; 4usize], + pub exponent: __u16, +} +#[test] +fn bindgen_test_layout__fpreg() { + assert_eq!( + ::std::mem::size_of::<_fpreg>(), + 10usize, + concat!("Size of: ", stringify!(_fpreg)) + ); + assert_eq!( + ::std::mem::align_of::<_fpreg>(), + 2usize, + concat!("Alignment of ", stringify!(_fpreg)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpreg>())).significand as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpreg), + "::", + stringify!(significand) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpreg>())).exponent as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_fpreg), + "::", + stringify!(exponent) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _fpxreg { + pub significand: [__u16; 4usize], + pub exponent: __u16, + pub padding: [__u16; 3usize], +} +#[test] +fn bindgen_test_layout__fpxreg() { + assert_eq!( + ::std::mem::size_of::<_fpxreg>(), + 16usize, + concat!("Size of: ", stringify!(_fpxreg)) + ); + assert_eq!( + ::std::mem::align_of::<_fpxreg>(), + 2usize, + concat!("Alignment of ", stringify!(_fpxreg)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpxreg>())).significand as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpxreg), + "::", + stringify!(significand) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpxreg>())).exponent as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_fpxreg), + "::", + stringify!(exponent) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpxreg>())).padding as *const _ as usize }, + 10usize, + concat!( + "Offset of field: ", + stringify!(_fpxreg), + "::", + stringify!(padding) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _xmmreg { + pub element: [__u32; 4usize], +} +#[test] +fn bindgen_test_layout__xmmreg() { + assert_eq!( + ::std::mem::size_of::<_xmmreg>(), + 16usize, + concat!("Size of: ", stringify!(_xmmreg)) + ); + assert_eq!( + ::std::mem::align_of::<_xmmreg>(), + 4usize, + concat!("Alignment of ", stringify!(_xmmreg)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_xmmreg>())).element as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_xmmreg), + "::", + stringify!(element) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct _fpstate_32 { + pub cw: __u32, + pub sw: __u32, + pub tag: __u32, + pub ipoff: __u32, + pub cssel: __u32, + pub dataoff: __u32, + pub datasel: __u32, + pub _st: [_fpreg; 8usize], + pub status: __u16, + pub magic: __u16, + pub _fxsr_env: [__u32; 6usize], + pub mxcsr: __u32, + pub reserved: __u32, + pub _fxsr_st: [_fpxreg; 8usize], + pub _xmm: [_xmmreg; 8usize], + pub __bindgen_anon_1: _fpstate_32__bindgen_ty_1, + pub __bindgen_anon_2: _fpstate_32__bindgen_ty_2, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union _fpstate_32__bindgen_ty_1 { + pub padding1: [__u32; 44usize], + pub padding: [__u32; 44usize], +} +#[test] +fn bindgen_test_layout__fpstate_32__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<_fpstate_32__bindgen_ty_1>(), + 176usize, + concat!("Size of: ", stringify!(_fpstate_32__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::<_fpstate_32__bindgen_ty_1>(), + 4usize, + concat!("Alignment of ", stringify!(_fpstate_32__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_32__bindgen_ty_1>())).padding1 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32__bindgen_ty_1), + "::", + stringify!(padding1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_32__bindgen_ty_1>())).padding as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32__bindgen_ty_1), + "::", + stringify!(padding) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union _fpstate_32__bindgen_ty_2 { + pub padding2: [__u32; 12usize], + pub sw_reserved: _fpx_sw_bytes, +} +#[test] +fn bindgen_test_layout__fpstate_32__bindgen_ty_2() { + assert_eq!( + ::std::mem::size_of::<_fpstate_32__bindgen_ty_2>(), + 48usize, + concat!("Size of: ", stringify!(_fpstate_32__bindgen_ty_2)) + ); + assert_eq!( + ::std::mem::align_of::<_fpstate_32__bindgen_ty_2>(), + 4usize, + concat!("Alignment of ", stringify!(_fpstate_32__bindgen_ty_2)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_32__bindgen_ty_2>())).padding2 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32__bindgen_ty_2), + "::", + stringify!(padding2) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_32__bindgen_ty_2>())).sw_reserved as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32__bindgen_ty_2), + "::", + stringify!(sw_reserved) + ) + ); +} +#[test] +fn bindgen_test_layout__fpstate_32() { + assert_eq!( + ::std::mem::size_of::<_fpstate_32>(), + 624usize, + concat!("Size of: ", stringify!(_fpstate_32)) + ); + assert_eq!( + ::std::mem::align_of::<_fpstate_32>(), + 4usize, + concat!("Alignment of ", stringify!(_fpstate_32)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).cw as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(cw) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).sw as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(sw) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).tag as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(tag) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).ipoff as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(ipoff) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).cssel as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(cssel) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).dataoff as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(dataoff) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).datasel as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(datasel) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>()))._st as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(_st) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).status as *const _ as usize }, + 108usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(status) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).magic as *const _ as usize }, + 110usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(magic) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>()))._fxsr_env as *const _ as usize }, + 112usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(_fxsr_env) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).mxcsr as *const _ as usize }, + 136usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(mxcsr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).reserved as *const _ as usize }, + 140usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(reserved) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>()))._fxsr_st as *const _ as usize }, + 144usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(_fxsr_st) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>()))._xmm as *const _ as usize }, + 272usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(_xmm) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct _fpstate_64 { + pub cwd: __u16, + pub swd: __u16, + pub twd: __u16, + pub fop: __u16, + pub rip: __u64, + pub rdp: __u64, + pub mxcsr: __u32, + pub mxcsr_mask: __u32, + pub st_space: [__u32; 32usize], + pub xmm_space: [__u32; 64usize], + pub reserved2: [__u32; 12usize], + pub __bindgen_anon_1: _fpstate_64__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union _fpstate_64__bindgen_ty_1 { + pub reserved3: [__u32; 12usize], + pub sw_reserved: _fpx_sw_bytes, +} +#[test] +fn bindgen_test_layout__fpstate_64__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<_fpstate_64__bindgen_ty_1>(), + 48usize, + concat!("Size of: ", stringify!(_fpstate_64__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::<_fpstate_64__bindgen_ty_1>(), + 4usize, + concat!("Alignment of ", stringify!(_fpstate_64__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_64__bindgen_ty_1>())).reserved3 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64__bindgen_ty_1), + "::", + stringify!(reserved3) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_64__bindgen_ty_1>())).sw_reserved as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64__bindgen_ty_1), + "::", + stringify!(sw_reserved) + ) + ); +} +#[test] +fn bindgen_test_layout__fpstate_64() { + assert_eq!( + ::std::mem::size_of::<_fpstate_64>(), + 512usize, + concat!("Size of: ", stringify!(_fpstate_64)) + ); + assert_eq!( + ::std::mem::align_of::<_fpstate_64>(), + 4usize, + concat!("Alignment of ", stringify!(_fpstate_64)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).cwd as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(cwd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).swd as *const _ as usize }, + 2usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(swd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).twd as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(twd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).fop as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(fop) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).rip as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(rip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).rdp as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(rdp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).mxcsr as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(mxcsr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).mxcsr_mask as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(mxcsr_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).st_space as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(st_space) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).xmm_space as *const _ as usize }, + 160usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(xmm_space) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).reserved2 as *const _ as usize }, + 416usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(reserved2) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _header { + pub xfeatures: __u64, + pub reserved1: [__u64; 2usize], + pub reserved2: [__u64; 5usize], +} +#[test] +fn bindgen_test_layout__header() { + assert_eq!( + ::std::mem::size_of::<_header>(), + 64usize, + concat!("Size of: ", stringify!(_header)) + ); + assert_eq!( + ::std::mem::align_of::<_header>(), + 4usize, + concat!("Alignment of ", stringify!(_header)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_header>())).xfeatures as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_header), + "::", + stringify!(xfeatures) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_header>())).reserved1 as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_header), + "::", + stringify!(reserved1) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_header>())).reserved2 as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(_header), + "::", + stringify!(reserved2) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _ymmh_state { + pub ymmh_space: [__u32; 64usize], +} +#[test] +fn bindgen_test_layout__ymmh_state() { + assert_eq!( + ::std::mem::size_of::<_ymmh_state>(), + 256usize, + concat!("Size of: ", stringify!(_ymmh_state)) + ); + assert_eq!( + ::std::mem::align_of::<_ymmh_state>(), + 4usize, + concat!("Alignment of ", stringify!(_ymmh_state)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_ymmh_state>())).ymmh_space as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_ymmh_state), + "::", + stringify!(ymmh_space) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct _xstate { + pub fpstate: _fpstate_32, + pub xstate_hdr: _header, + pub ymmh: _ymmh_state, +} +#[test] +fn bindgen_test_layout__xstate() { + assert_eq!( + ::std::mem::size_of::<_xstate>(), + 944usize, + concat!("Size of: ", stringify!(_xstate)) + ); + assert_eq!( + ::std::mem::align_of::<_xstate>(), + 4usize, + concat!("Alignment of ", stringify!(_xstate)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_xstate>())).fpstate as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_xstate), + "::", + stringify!(fpstate) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_xstate>())).xstate_hdr as *const _ as usize }, + 624usize, + concat!( + "Offset of field: ", + stringify!(_xstate), + "::", + stringify!(xstate_hdr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_xstate>())).ymmh as *const _ as usize }, + 688usize, + concat!( + "Offset of field: ", + stringify!(_xstate), + "::", + stringify!(ymmh) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigcontext_32 { + pub gs: __u16, + pub __gsh: __u16, + pub fs: __u16, + pub __fsh: __u16, + pub es: __u16, + pub __esh: __u16, + pub ds: __u16, + pub __dsh: __u16, + pub di: __u32, + pub si: __u32, + pub bp: __u32, + pub sp: __u32, + pub bx: __u32, + pub dx: __u32, + pub cx: __u32, + pub ax: __u32, + pub trapno: __u32, + pub err: __u32, + pub ip: __u32, + pub cs: __u16, + pub __csh: __u16, + pub flags: __u32, + pub sp_at_signal: __u32, + pub ss: __u16, + pub __ssh: __u16, + pub fpstate: __u32, + pub oldmask: __u32, + pub cr2: __u32, +} +#[test] +fn bindgen_test_layout_sigcontext_32() { + assert_eq!( + ::std::mem::size_of::(), + 88usize, + concat!("Size of: ", stringify!(sigcontext_32)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigcontext_32)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).gs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(gs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__gsh as *const _ as usize }, + 2usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__gsh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fs as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(fs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__fsh as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__fsh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).es as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(es) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__esh as *const _ as usize }, + 10usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__esh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ds as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(ds) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__dsh as *const _ as usize }, + 14usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__dsh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).di as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(di) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).si as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(si) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bp as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(bp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sp as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(sp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bx as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(bx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).dx as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(dx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cx as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(cx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ax as *const _ as usize }, + 44usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(ax) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).trapno as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(trapno) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).err as *const _ as usize }, + 52usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(err) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ip as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(ip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cs as *const _ as usize }, + 60usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(cs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__csh as *const _ as usize }, + 62usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__csh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sp_at_signal as *const _ as usize }, + 68usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(sp_at_signal) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(ss) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__ssh as *const _ as usize }, + 74usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__ssh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpstate as *const _ as usize }, + 76usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(fpstate) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).oldmask as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(oldmask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cr2 as *const _ as usize }, + 84usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(cr2) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigcontext_64 { + pub r8: __u64, + pub r9: __u64, + pub r10: __u64, + pub r11: __u64, + pub r12: __u64, + pub r13: __u64, + pub r14: __u64, + pub r15: __u64, + pub di: __u64, + pub si: __u64, + pub bp: __u64, + pub bx: __u64, + pub dx: __u64, + pub ax: __u64, + pub cx: __u64, + pub sp: __u64, + pub ip: __u64, + pub flags: __u64, + pub cs: __u16, + pub gs: __u16, + pub fs: __u16, + pub ss: __u16, + pub err: __u64, + pub trapno: __u64, + pub oldmask: __u64, + pub cr2: __u64, + pub fpstate: __u64, + pub reserved1: [__u64; 8usize], +} +#[test] +fn bindgen_test_layout_sigcontext_64() { + assert_eq!( + ::std::mem::size_of::(), + 256usize, + concat!("Size of: ", stringify!(sigcontext_64)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigcontext_64)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r8 as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r8) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r9 as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r9) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r10 as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r10) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r11 as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r11) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r12 as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r12) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r13 as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r13) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r14 as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r14) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r15 as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r15) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).di as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(di) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).si as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(si) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bp as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(bp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bx as *const _ as usize }, + 88usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(bx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).dx as *const _ as usize }, + 96usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(dx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ax as *const _ as usize }, + 104usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(ax) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cx as *const _ as usize }, + 112usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(cx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sp as *const _ as usize }, + 120usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(sp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ip as *const _ as usize }, + 128usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(ip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 136usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cs as *const _ as usize }, + 144usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(cs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).gs as *const _ as usize }, + 146usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(gs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fs as *const _ as usize }, + 148usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(fs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss as *const _ as usize }, + 150usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(ss) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).err as *const _ as usize }, + 152usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(err) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).trapno as *const _ as usize }, + 160usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(trapno) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).oldmask as *const _ as usize }, + 168usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(oldmask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cr2 as *const _ as usize }, + 176usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(cr2) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpstate as *const _ as usize }, + 184usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(fpstate) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).reserved1 as *const _ as usize }, + 192usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(reserved1) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigcontext { + pub gs: __u16, + pub __gsh: __u16, + pub fs: __u16, + pub __fsh: __u16, + pub es: __u16, + pub __esh: __u16, + pub ds: __u16, + pub __dsh: __u16, + pub edi: __u32, + pub esi: __u32, + pub ebp: __u32, + pub esp: __u32, + pub ebx: __u32, + pub edx: __u32, + pub ecx: __u32, + pub eax: __u32, + pub trapno: __u32, + pub err: __u32, + pub eip: __u32, + pub cs: __u16, + pub __csh: __u16, + pub eflags: __u32, + pub esp_at_signal: __u32, + pub ss: __u16, + pub __ssh: __u16, + pub fpstate: *mut _fpstate_32, + pub oldmask: __u32, + pub cr2: __u32, +} +#[test] +fn bindgen_test_layout_sigcontext() { + assert_eq!( + ::std::mem::size_of::(), + 88usize, + concat!("Size of: ", stringify!(sigcontext)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigcontext)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).gs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(gs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__gsh as *const _ as usize }, + 2usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(__gsh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fs as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(fs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__fsh as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(__fsh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).es as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(es) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__esh as *const _ as usize }, + 10usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(__esh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ds as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(ds) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__dsh as *const _ as usize }, + 14usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(__dsh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).edi as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(edi) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).esi as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(esi) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ebp as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(ebp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).esp as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(esp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ebx as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(ebx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).edx as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(edx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ecx as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(ecx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eax as *const _ as usize }, + 44usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(eax) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).trapno as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(trapno) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).err as *const _ as usize }, + 52usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(err) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eip as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(eip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cs as *const _ as usize }, + 60usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(cs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__csh as *const _ as usize }, + 62usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(__csh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eflags as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(eflags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).esp_at_signal as *const _ as usize }, + 68usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(esp_at_signal) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(ss) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__ssh as *const _ as usize }, + 74usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(__ssh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpstate as *const _ as usize }, + 76usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(fpstate) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).oldmask as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(oldmask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cr2 as *const _ as usize }, + 84usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(cr2) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_timespec { + pub tv_sec: __kernel_time64_t, + pub tv_nsec: ::std::os::raw::c_longlong, +} +#[test] +fn bindgen_test_layout___kernel_timespec() { + assert_eq!( + ::std::mem::size_of::<__kernel_timespec>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_timespec)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_timespec>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_timespec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_timespec>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_timespec), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_timespec>())).tv_nsec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_timespec), + "::", + stringify!(tv_nsec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_itimerspec { + pub it_interval: __kernel_timespec, + pub it_value: __kernel_timespec, +} +#[test] +fn bindgen_test_layout___kernel_itimerspec() { + assert_eq!( + ::std::mem::size_of::<__kernel_itimerspec>(), + 32usize, + concat!("Size of: ", stringify!(__kernel_itimerspec)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_itimerspec>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_itimerspec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_itimerspec>())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_itimerspec), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_itimerspec>())).it_value as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__kernel_itimerspec), + "::", + stringify!(it_value) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_old_timeval { + pub tv_sec: __kernel_long_t, + pub tv_usec: __kernel_long_t, +} +#[test] +fn bindgen_test_layout___kernel_old_timeval() { + assert_eq!( + ::std::mem::size_of::<__kernel_old_timeval>(), + 8usize, + concat!("Size of: ", stringify!(__kernel_old_timeval)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_old_timeval>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_old_timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_old_timeval>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_old_timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_old_timeval>())).tv_usec as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__kernel_old_timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_sock_timeval { + pub tv_sec: __s64, + pub tv_usec: __s64, +} +#[test] +fn bindgen_test_layout___kernel_sock_timeval() { + assert_eq!( + ::std::mem::size_of::<__kernel_sock_timeval>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_sock_timeval)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_sock_timeval>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_sock_timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sock_timeval>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sock_timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sock_timeval>())).tv_usec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sock_timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timespec { + pub tv_sec: __kernel_time_t, + pub tv_nsec: ::std::os::raw::c_long, +} +#[test] +fn bindgen_test_layout_timespec() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(timespec)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(timespec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timespec), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_nsec as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(timespec), + "::", + stringify!(tv_nsec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timeval { + pub tv_sec: __kernel_time_t, + pub tv_usec: __kernel_suseconds_t, +} +#[test] +fn bindgen_test_layout_timeval() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(timeval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_usec as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timezone { + pub tz_minuteswest: ::std::os::raw::c_int, + pub tz_dsttime: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout_timezone() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(timezone)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(timezone)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tz_minuteswest as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timezone), + "::", + stringify!(tz_minuteswest) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tz_dsttime as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(timezone), + "::", + stringify!(tz_dsttime) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct itimerspec { + pub it_interval: timespec, + pub it_value: timespec, +} +#[test] +fn bindgen_test_layout_itimerspec() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(itimerspec)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(itimerspec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(itimerspec), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_value as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(itimerspec), + "::", + stringify!(it_value) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct itimerval { + pub it_interval: timeval, + pub it_value: timeval, +} +#[test] +fn bindgen_test_layout_itimerval() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(itimerval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(itimerval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(itimerval), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_value as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(itimerval), + "::", + stringify!(it_value) + ) + ); +} +pub type sigset_t = ::std::os::raw::c_ulong; +pub type __signalfn_t = ::std::option::Option; +pub type __sighandler_t = __signalfn_t; +pub type __restorefn_t = ::std::option::Option; +pub type __sigrestore_t = __restorefn_t; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __kernel_sigaction { + pub _u: __kernel_sigaction__bindgen_ty_1, + pub sa_mask: sigset_t, + pub sa_flags: ::std::os::raw::c_ulong, + pub sa_restorer: ::std::option::Option, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union __kernel_sigaction__bindgen_ty_1 { + pub _sa_handler: __sighandler_t, + pub _sa_sigaction: ::std::option::Option< + unsafe extern "C" fn( + arg1: ::std::os::raw::c_int, + arg2: *mut siginfo, + arg3: *mut ::std::os::raw::c_void, + ), + >, +} +#[test] +fn bindgen_test_layout___kernel_sigaction__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__kernel_sigaction__bindgen_ty_1>(), + 4usize, + concat!("Size of: ", stringify!(__kernel_sigaction__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_sigaction__bindgen_ty_1>(), + 4usize, + concat!( + "Alignment of ", + stringify!(__kernel_sigaction__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__kernel_sigaction__bindgen_ty_1>()))._sa_handler as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction__bindgen_ty_1), + "::", + stringify!(_sa_handler) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__kernel_sigaction__bindgen_ty_1>()))._sa_sigaction as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction__bindgen_ty_1), + "::", + stringify!(_sa_sigaction) + ) + ); +} +#[test] +fn bindgen_test_layout___kernel_sigaction() { + assert_eq!( + ::std::mem::size_of::<__kernel_sigaction>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_sigaction)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_sigaction>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_sigaction)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>()))._u as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(_u) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_mask as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_flags as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_restorer as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_restorer) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigaltstack { + pub ss_sp: *mut ::std::os::raw::c_void, + pub ss_flags: ::std::os::raw::c_int, + pub ss_size: size_t, +} +#[test] +fn bindgen_test_layout_sigaltstack() { + assert_eq!( + ::std::mem::size_of::(), + 12usize, + concat!("Size of: ", stringify!(sigaltstack)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigaltstack)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_sp as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_sp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_flags as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_size as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_size) + ) + ); +} +pub type stack_t = sigaltstack; +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigval { + pub sival_int: ::std::os::raw::c_int, + pub sival_ptr: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_sigval() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(sigval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sival_int as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigval), + "::", + stringify!(sival_int) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sival_ptr as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigval), + "::", + stringify!(sival_ptr) + ) + ); +} +pub type sigval_t = sigval; +#[repr(C)] +#[derive(Copy, Clone)] +pub union __sifields { + pub _kill: __sifields__bindgen_ty_1, + pub _timer: __sifields__bindgen_ty_2, + pub _rt: __sifields__bindgen_ty_3, + pub _sigchld: __sifields__bindgen_ty_4, + pub _sigfault: __sifields__bindgen_ty_5, + pub _sigpoll: __sifields__bindgen_ty_6, + pub _sigsys: __sifields__bindgen_ty_7, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_1 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_1>(), + 8usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_1>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_1>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_1), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_1>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_1), + "::", + stringify!(_uid) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_2 { + pub _tid: __kernel_timer_t, + pub _overrun: ::std::os::raw::c_int, + pub _sigval: sigval_t, + pub _sys_private: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_2() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_2>(), + 16usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_2)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_2>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_2)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._tid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_tid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._overrun as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_overrun) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._sigval as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_sigval) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._sys_private as *const _ as usize + }, + 12usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_sys_private) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_3 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, + pub _sigval: sigval_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_3() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_3>(), + 12usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_3)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_3>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_3)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_uid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._sigval as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_sigval) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_4 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, + pub _status: ::std::os::raw::c_int, + pub _utime: __kernel_clock_t, + pub _stime: __kernel_clock_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_4() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_4>(), + 20usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_4)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_4>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_4)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_uid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._status as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_status) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._utime as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_utime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._stime as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_stime) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_5 { + pub _addr: *mut ::std::os::raw::c_void, + pub __bindgen_anon_1: __sifields__bindgen_ty_5__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union __sifields__bindgen_ty_5__bindgen_ty_1 { + pub _addr_lsb: ::std::os::raw::c_short, + pub _addr_bnd: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1, + pub _addr_pkey: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1 { + pub _dummy_bnd: [::std::os::raw::c_char; 4usize], + pub _lower: *mut ::std::os::raw::c_void, + pub _upper: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>(), + 12usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>(), + 4usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>())) + ._dummy_bnd as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_dummy_bnd) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>()))._lower + as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_lower) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>()))._upper + as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_upper) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2 { + pub _dummy_pkey: [::std::os::raw::c_char; 4usize], + pub _pkey: __u32, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>(), + 8usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>(), + 4usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>())) + ._dummy_pkey as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2), + "::", + stringify!(_dummy_pkey) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>()))._pkey + as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2), + "::", + stringify!(_pkey) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1>(), + 12usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1>(), + 4usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_lsb as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_lsb) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_bnd as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_bnd) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_pkey + as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_pkey) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5>(), + 16usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_5)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_5)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_5>()))._addr as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5), + "::", + stringify!(_addr) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_6 { + pub _band: ::std::os::raw::c_long, + pub _fd: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_6() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_6>(), + 8usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_6)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_6>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_6)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_6>()))._band as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_6), + "::", + stringify!(_band) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_6>()))._fd as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_6), + "::", + stringify!(_fd) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_7 { + pub _call_addr: *mut ::std::os::raw::c_void, + pub _syscall: ::std::os::raw::c_int, + pub _arch: ::std::os::raw::c_uint, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_7() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_7>(), + 12usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_7)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_7>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_7)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._call_addr as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_call_addr) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._syscall as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_syscall) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._arch as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_arch) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields() { + assert_eq!( + ::std::mem::size_of::<__sifields>(), + 20usize, + concat!("Size of: ", stringify!(__sifields)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._kill as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_kill) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._timer as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_timer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._rt as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_rt) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigchld as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigchld) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigfault as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigfault) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigpoll as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigpoll) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigsys as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigsys) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct siginfo { + pub __bindgen_anon_1: siginfo__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union siginfo__bindgen_ty_1 { + pub __bindgen_anon_1: siginfo__bindgen_ty_1__bindgen_ty_1, + pub _si_pad: [::std::os::raw::c_int; 32usize], +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct siginfo__bindgen_ty_1__bindgen_ty_1 { + pub si_signo: ::std::os::raw::c_int, + pub si_errno: ::std::os::raw::c_int, + pub si_code: ::std::os::raw::c_int, + pub _sifields: __sifields, +} +#[test] +fn bindgen_test_layout_siginfo__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(siginfo__bindgen_ty_1__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!( + "Alignment of ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_signo as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_signo) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_errno as *const _ + as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_errno) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_code as *const _ + as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_code) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._sifields as *const _ + as usize + }, + 12usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_sifields) + ) + ); +} +#[test] +fn bindgen_test_layout_siginfo__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(siginfo__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(siginfo__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._si_pad as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1), + "::", + stringify!(_si_pad) + ) + ); +} +#[test] +fn bindgen_test_layout_siginfo() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(siginfo)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(siginfo)) + ); +} +pub type siginfo_t = siginfo; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigevent { + pub sigev_value: sigval_t, + pub sigev_signo: ::std::os::raw::c_int, + pub sigev_notify: ::std::os::raw::c_int, + pub _sigev_un: sigevent__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigevent__bindgen_ty_1 { + pub _pad: [::std::os::raw::c_int; 13usize], + pub _tid: ::std::os::raw::c_int, + pub _sigev_thread: sigevent__bindgen_ty_1__bindgen_ty_1, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigevent__bindgen_ty_1__bindgen_ty_1 { + pub _function: ::std::option::Option, + pub _attribute: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_sigevent__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!( + "Size of: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!( + "Alignment of ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._function as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_function) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._attribute as *const _ + as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_attribute) + ) + ); +} +#[test] +fn bindgen_test_layout_sigevent__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 52usize, + concat!("Size of: ", stringify!(sigevent__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigevent__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._pad as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_pad) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._tid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_tid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._sigev_thread as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_sigev_thread) + ) + ); +} +#[test] +fn bindgen_test_layout_sigevent() { + assert_eq!( + ::std::mem::size_of::(), + 64usize, + concat!("Size of: ", stringify!(sigevent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigevent)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_value as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_value) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_signo as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_signo) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_notify as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_notify) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._sigev_un as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(_sigev_un) + ) + ); +} +pub type sigevent_t = sigevent; +pub type sig_atomic_t = ::std::os::raw::c_int; +pub type sig_t = __sighandler_t; +pub type sighandler_t = __sighandler_t; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigset64_t { + pub __bits: [::std::os::raw::c_ulong; 2usize], +} +#[test] +fn bindgen_test_layout_sigset64_t() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(sigset64_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigset64_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__bits as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigset64_t), + "::", + stringify!(__bits) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigaction { + pub __bindgen_anon_1: sigaction__bindgen_ty_1, + pub sa_mask: sigset_t, + pub sa_flags: ::std::os::raw::c_int, + pub sa_restorer: ::std::option::Option, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigaction__bindgen_ty_1 { + pub sa_handler: sighandler_t, + pub sa_sigaction: ::std::option::Option< + unsafe extern "C" fn( + arg1: ::std::os::raw::c_int, + arg2: *mut siginfo, + arg3: *mut ::std::os::raw::c_void, + ), + >, +} +#[test] +fn bindgen_test_layout_sigaction__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(sigaction__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigaction__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_handler as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction__bindgen_ty_1), + "::", + stringify!(sa_handler) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_sigaction as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction__bindgen_ty_1), + "::", + stringify!(sa_sigaction) + ) + ); +} +#[test] +fn bindgen_test_layout_sigaction() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(sigaction)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigaction)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_mask as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_flags as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_restorer as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_restorer) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigaction64 { + pub __bindgen_anon_1: sigaction64__bindgen_ty_1, + pub sa_flags: ::std::os::raw::c_int, + pub sa_restorer: ::std::option::Option, + pub sa_mask: sigset64_t, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigaction64__bindgen_ty_1 { + pub sa_handler: sighandler_t, + pub sa_sigaction: ::std::option::Option< + unsafe extern "C" fn( + arg1: ::std::os::raw::c_int, + arg2: *mut siginfo, + arg3: *mut ::std::os::raw::c_void, + ), + >, +} +#[test] +fn bindgen_test_layout_sigaction64__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(sigaction64__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigaction64__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_handler as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction64__bindgen_ty_1), + "::", + stringify!(sa_handler) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_sigaction as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction64__bindgen_ty_1), + "::", + stringify!(sa_sigaction) + ) + ); +} +#[test] +fn bindgen_test_layout_sigaction64() { + assert_eq!( + ::std::mem::size_of::(), + 20usize, + concat!("Size of: ", stringify!(sigaction64)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigaction64)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_flags as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_restorer as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_restorer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_mask as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_mask) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user_fpregs_struct { + pub cwd: ::std::os::raw::c_long, + pub swd: ::std::os::raw::c_long, + pub twd: ::std::os::raw::c_long, + pub fip: ::std::os::raw::c_long, + pub fcs: ::std::os::raw::c_long, + pub foo: ::std::os::raw::c_long, + pub fos: ::std::os::raw::c_long, + pub st_space: [::std::os::raw::c_long; 20usize], +} +#[test] +fn bindgen_test_layout_user_fpregs_struct() { + assert_eq!( + ::std::mem::size_of::(), + 108usize, + concat!("Size of: ", stringify!(user_fpregs_struct)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(user_fpregs_struct)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cwd as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(cwd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).swd as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(swd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).twd as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(twd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fip as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(fip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fcs as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(fcs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).foo as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(foo) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fos as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(fos) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).st_space as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(st_space) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user_fpxregs_struct { + pub cwd: ::std::os::raw::c_ushort, + pub swd: ::std::os::raw::c_ushort, + pub twd: ::std::os::raw::c_ushort, + pub fop: ::std::os::raw::c_ushort, + pub fip: ::std::os::raw::c_long, + pub fcs: ::std::os::raw::c_long, + pub foo: ::std::os::raw::c_long, + pub fos: ::std::os::raw::c_long, + pub mxcsr: ::std::os::raw::c_long, + pub reserved: ::std::os::raw::c_long, + pub st_space: [::std::os::raw::c_long; 32usize], + pub xmm_space: [::std::os::raw::c_long; 32usize], + pub padding: [::std::os::raw::c_long; 56usize], +} +#[test] +fn bindgen_test_layout_user_fpxregs_struct() { + assert_eq!( + ::std::mem::size_of::(), + 512usize, + concat!("Size of: ", stringify!(user_fpxregs_struct)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(user_fpxregs_struct)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cwd as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(cwd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).swd as *const _ as usize }, + 2usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(swd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).twd as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(twd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fop as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(fop) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fip as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(fip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fcs as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(fcs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).foo as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(foo) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fos as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(fos) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).mxcsr as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(mxcsr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).reserved as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(reserved) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).st_space as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(st_space) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).xmm_space as *const _ as usize }, + 160usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(xmm_space) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).padding as *const _ as usize }, + 288usize, + concat!( + "Offset of field: ", + stringify!(user_fpxregs_struct), + "::", + stringify!(padding) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user_regs_struct { + pub ebx: ::std::os::raw::c_long, + pub ecx: ::std::os::raw::c_long, + pub edx: ::std::os::raw::c_long, + pub esi: ::std::os::raw::c_long, + pub edi: ::std::os::raw::c_long, + pub ebp: ::std::os::raw::c_long, + pub eax: ::std::os::raw::c_long, + pub xds: ::std::os::raw::c_long, + pub xes: ::std::os::raw::c_long, + pub xfs: ::std::os::raw::c_long, + pub xgs: ::std::os::raw::c_long, + pub orig_eax: ::std::os::raw::c_long, + pub eip: ::std::os::raw::c_long, + pub xcs: ::std::os::raw::c_long, + pub eflags: ::std::os::raw::c_long, + pub esp: ::std::os::raw::c_long, + pub xss: ::std::os::raw::c_long, +} +#[test] +fn bindgen_test_layout_user_regs_struct() { + assert_eq!( + ::std::mem::size_of::(), + 68usize, + concat!("Size of: ", stringify!(user_regs_struct)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(user_regs_struct)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ebx as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(ebx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ecx as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(ecx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).edx as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(edx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).esi as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(esi) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).edi as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(edi) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ebp as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(ebp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eax as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(eax) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).xds as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(xds) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).xes as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(xes) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).xfs as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(xfs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).xgs as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(xgs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).orig_eax as *const _ as usize }, + 44usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(orig_eax) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eip as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(eip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).xcs as *const _ as usize }, + 52usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(xcs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eflags as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(eflags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).esp as *const _ as usize }, + 60usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(esp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).xss as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(xss) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user { + pub regs: user_regs_struct, + pub u_fpvalid: ::std::os::raw::c_int, + pub i387: user_fpregs_struct, + pub u_tsize: ::std::os::raw::c_ulong, + pub u_dsize: ::std::os::raw::c_ulong, + pub u_ssize: ::std::os::raw::c_ulong, + pub start_code: ::std::os::raw::c_ulong, + pub start_stack: ::std::os::raw::c_ulong, + pub signal: ::std::os::raw::c_long, + pub reserved: ::std::os::raw::c_int, + pub u_ar0: *mut user_regs_struct, + pub u_fpstate: *mut user_fpregs_struct, + pub magic: ::std::os::raw::c_ulong, + pub u_comm: [::std::os::raw::c_char; 32usize], + pub u_debugreg: [::std::os::raw::c_int; 8usize], +} +#[test] +fn bindgen_test_layout_user() { + assert_eq!( + ::std::mem::size_of::(), + 284usize, + concat!("Size of: ", stringify!(user)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(user)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).regs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(regs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_fpvalid as *const _ as usize }, + 68usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_fpvalid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).i387 as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(i387) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_tsize as *const _ as usize }, + 180usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_tsize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_dsize as *const _ as usize }, + 184usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_dsize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_ssize as *const _ as usize }, + 188usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_ssize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).start_code as *const _ as usize }, + 192usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(start_code) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).start_stack as *const _ as usize }, + 196usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(start_stack) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).signal as *const _ as usize }, + 200usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(signal) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).reserved as *const _ as usize }, + 204usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(reserved) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_ar0 as *const _ as usize }, + 208usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_ar0) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_fpstate as *const _ as usize }, + 212usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_fpstate) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).magic as *const _ as usize }, + 216usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(magic) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_comm as *const _ as usize }, + 220usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_comm) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_debugreg as *const _ as usize }, + 252usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_debugreg) + ) + ); +} +pub const REG_GS: ::std::os::raw::c_uint = 0; +pub const REG_FS: ::std::os::raw::c_uint = 1; +pub const REG_ES: ::std::os::raw::c_uint = 2; +pub const REG_DS: ::std::os::raw::c_uint = 3; +pub const REG_EDI: ::std::os::raw::c_uint = 4; +pub const REG_ESI: ::std::os::raw::c_uint = 5; +pub const REG_EBP: ::std::os::raw::c_uint = 6; +pub const REG_ESP: ::std::os::raw::c_uint = 7; +pub const REG_EBX: ::std::os::raw::c_uint = 8; +pub const REG_EDX: ::std::os::raw::c_uint = 9; +pub const REG_ECX: ::std::os::raw::c_uint = 10; +pub const REG_EAX: ::std::os::raw::c_uint = 11; +pub const REG_TRAPNO: ::std::os::raw::c_uint = 12; +pub const REG_ERR: ::std::os::raw::c_uint = 13; +pub const REG_EIP: ::std::os::raw::c_uint = 14; +pub const REG_CS: ::std::os::raw::c_uint = 15; +pub const REG_EFL: ::std::os::raw::c_uint = 16; +pub const REG_UESP: ::std::os::raw::c_uint = 17; +pub const REG_SS: ::std::os::raw::c_uint = 18; +pub const NGREG: ::std::os::raw::c_uint = 19; +pub type _bindgen_ty_22 = ::std::os::raw::c_uint; +pub type greg_t = ::std::os::raw::c_int; +pub type gregset_t = [greg_t; 19usize]; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _libc_fpreg { + pub significand: [::std::os::raw::c_ushort; 4usize], + pub exponent: ::std::os::raw::c_ushort, +} +#[test] +fn bindgen_test_layout__libc_fpreg() { + assert_eq!( + ::std::mem::size_of::<_libc_fpreg>(), + 10usize, + concat!("Size of: ", stringify!(_libc_fpreg)) + ); + assert_eq!( + ::std::mem::align_of::<_libc_fpreg>(), + 2usize, + concat!("Alignment of ", stringify!(_libc_fpreg)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpreg>())).significand as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpreg), + "::", + stringify!(significand) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpreg>())).exponent as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpreg), + "::", + stringify!(exponent) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _libc_fpstate { + pub cw: ::std::os::raw::c_ulong, + pub sw: ::std::os::raw::c_ulong, + pub tag: ::std::os::raw::c_ulong, + pub ipoff: ::std::os::raw::c_ulong, + pub cssel: ::std::os::raw::c_ulong, + pub dataoff: ::std::os::raw::c_ulong, + pub datasel: ::std::os::raw::c_ulong, + pub _st: [_libc_fpreg; 8usize], + pub status: ::std::os::raw::c_ulong, +} +#[test] +fn bindgen_test_layout__libc_fpstate() { + assert_eq!( + ::std::mem::size_of::<_libc_fpstate>(), + 112usize, + concat!("Size of: ", stringify!(_libc_fpstate)) + ); + assert_eq!( + ::std::mem::align_of::<_libc_fpstate>(), + 4usize, + concat!("Alignment of ", stringify!(_libc_fpstate)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).cw as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(cw) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).sw as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(sw) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).tag as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(tag) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).ipoff as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(ipoff) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).cssel as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(cssel) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).dataoff as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(dataoff) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).datasel as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(datasel) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>()))._st as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(_st) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).status as *const _ as usize }, + 108usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(status) + ) + ); +} +pub type fpregset_t = *mut _libc_fpstate; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct mcontext_t { + pub gregs: gregset_t, + pub fpregs: fpregset_t, + pub oldmask: ::std::os::raw::c_ulong, + pub cr2: ::std::os::raw::c_ulong, +} +#[test] +fn bindgen_test_layout_mcontext_t() { + assert_eq!( + ::std::mem::size_of::(), + 88usize, + concat!("Size of: ", stringify!(mcontext_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(mcontext_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).gregs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(mcontext_t), + "::", + stringify!(gregs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpregs as *const _ as usize }, + 76usize, + concat!( + "Offset of field: ", + stringify!(mcontext_t), + "::", + stringify!(fpregs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).oldmask as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(mcontext_t), + "::", + stringify!(oldmask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cr2 as *const _ as usize }, + 84usize, + concat!( + "Offset of field: ", + stringify!(mcontext_t), + "::", + stringify!(cr2) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct ucontext { + pub uc_flags: ::std::os::raw::c_ulong, + pub uc_link: *mut ucontext, + pub uc_stack: stack_t, + pub uc_mcontext: mcontext_t, + pub __bindgen_anon_1: ucontext__bindgen_ty_1, + pub __fpregs_mem: _libc_fpstate, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union ucontext__bindgen_ty_1 { + pub __bindgen_anon_1: ucontext__bindgen_ty_1__bindgen_ty_1, + pub uc_sigmask64: sigset64_t, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct ucontext__bindgen_ty_1__bindgen_ty_1 { + pub uc_sigmask: sigset_t, + pub __padding_rt_sigset: u32, +} +#[test] +fn bindgen_test_layout_ucontext__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!( + "Size of: ", + stringify!(ucontext__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!( + "Alignment of ", + stringify!(ucontext__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).uc_sigmask as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(uc_sigmask) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).__padding_rt_sigset + as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ucontext__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(__padding_rt_sigset) + ) + ); +} +#[test] +fn bindgen_test_layout_ucontext__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(ucontext__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(ucontext__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).uc_sigmask64 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext__bindgen_ty_1), + "::", + stringify!(uc_sigmask64) + ) + ); +} +#[test] +fn bindgen_test_layout_ucontext() { + assert_eq!( + ::std::mem::size_of::(), + 228usize, + concat!("Size of: ", stringify!(ucontext)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(ucontext)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_link as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_link) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_stack as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_stack) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_mcontext as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_mcontext) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__fpregs_mem as *const _ as usize }, + 116usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(__fpregs_mem) + ) + ); +} +pub type ucontext_t = ucontext; +extern "C" { + pub fn __libc_current_sigrtmin() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn __libc_current_sigrtmax() -> ::std::os::raw::c_int; +} +extern "C" { + pub static sys_siglist: [*const ::std::os::raw::c_char; 65usize]; +} +extern "C" { + pub static sys_signame: [*const ::std::os::raw::c_char; 65usize]; +} +extern "C" { + pub fn sigaction( + __signal: ::std::os::raw::c_int, + __new_action: *const sigaction, + __old_action: *mut sigaction, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaction64( + __signal: ::std::os::raw::c_int, + __new_action: *const sigaction64, + __old_action: *mut sigaction64, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn siginterrupt( + __signal: ::std::os::raw::c_int, + __flag: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn signal(__signal: ::std::os::raw::c_int, __handler: sighandler_t) -> sighandler_t; +} +extern "C" { + pub fn sigaddset( + __set: *mut sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaddset64( + __set: *mut sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigdelset( + __set: *mut sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigdelset64( + __set: *mut sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigemptyset(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigemptyset64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigfillset(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigfillset64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigismember( + __set: *const sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigismember64( + __set: *const sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpending(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpending64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigprocmask( + __how: ::std::os::raw::c_int, + __new_set: *const sigset_t, + __old_set: *mut sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigprocmask64( + __how: ::std::os::raw::c_int, + __new_set: *const sigset64_t, + __old_set: *mut sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigsuspend(__mask: *const sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigsuspend64(__mask: *const sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwait( + __set: *const sigset_t, + __signal: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwait64( + __set: *const sigset64_t, + __signal: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sighold(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigignore(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpause(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigrelse(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigset(__signal: ::std::os::raw::c_int, __handler: sighandler_t) -> sighandler_t; +} +extern "C" { + pub fn raise(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn kill(__pid: pid_t, __signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn killpg( + __pgrp: ::std::os::raw::c_int, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn tgkill( + __tgid: ::std::os::raw::c_int, + __tid: ::std::os::raw::c_int, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaltstack( + __new_signal_stack: *const stack_t, + __old_signal_stack: *mut stack_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn psiginfo(__info: *const siginfo_t, __msg: *const ::std::os::raw::c_char); +} +extern "C" { + pub fn psignal(__signal: ::std::os::raw::c_int, __msg: *const ::std::os::raw::c_char); +} +extern "C" { + pub fn pthread_kill( + __pthread: pthread_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_sigmask( + __how: ::std::os::raw::c_int, + __new_set: *const sigset_t, + __old_set: *mut sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_sigmask64( + __how: ::std::os::raw::c_int, + __new_set: *const sigset64_t, + __old_set: *mut sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigqueue( + __pid: pid_t, + __signal: ::std::os::raw::c_int, + __value: sigval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigtimedwait( + __set: *const sigset_t, + __info: *mut siginfo_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigtimedwait64( + __set: *const sigset64_t, + __info: *mut siginfo_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwaitinfo(__set: *const sigset_t, __info: *mut siginfo_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwaitinfo64(__set: *const sigset64_t, __info: *mut siginfo_t) + -> ::std::os::raw::c_int; +} +pub type fd_mask = ::std::os::raw::c_ulong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct fd_set { + pub fds_bits: [fd_mask; 32usize], +} +#[test] +fn bindgen_test_layout_fd_set() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(fd_set)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(fd_set)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fds_bits as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(fd_set), + "::", + stringify!(fds_bits) + ) + ); +} +extern "C" { + pub fn __FD_CLR_chk(arg1: ::std::os::raw::c_int, arg2: *mut fd_set, arg3: size_t); +} +extern "C" { + pub fn __FD_SET_chk(arg1: ::std::os::raw::c_int, arg2: *mut fd_set, arg3: size_t); +} +extern "C" { + pub fn __FD_ISSET_chk( + arg1: ::std::os::raw::c_int, + arg2: *const fd_set, + arg3: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn select( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *mut timeval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pselect( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *const timespec, + __mask: *const sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pselect64( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *const timespec, + __mask: *const sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn gettimeofday(__tv: *mut timeval, __tz: *mut timezone) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn settimeofday(__tv: *const timeval, __tz: *const timezone) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn getitimer( + __which: ::std::os::raw::c_int, + __current_value: *mut itimerval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn setitimer( + __which: ::std::os::raw::c_int, + __new_value: *const itimerval, + __old_value: *mut itimerval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn utimes( + __path: *const ::std::os::raw::c_char, + __times: *const timeval, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __locale_t { + _unused: [u8; 0], +} +pub type locale_t = *mut __locale_t; +extern "C" { + pub static mut tzname: [*mut ::std::os::raw::c_char; 0usize]; +} +extern "C" { + pub static mut daylight: ::std::os::raw::c_int; +} +extern "C" { + pub static mut timezone: ::std::os::raw::c_long; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct tm { + pub tm_sec: ::std::os::raw::c_int, + pub tm_min: ::std::os::raw::c_int, + pub tm_hour: ::std::os::raw::c_int, + pub tm_mday: ::std::os::raw::c_int, + pub tm_mon: ::std::os::raw::c_int, + pub tm_year: ::std::os::raw::c_int, + pub tm_wday: ::std::os::raw::c_int, + pub tm_yday: ::std::os::raw::c_int, + pub tm_isdst: ::std::os::raw::c_int, + pub tm_gmtoff: ::std::os::raw::c_long, + pub tm_zone: *const ::std::os::raw::c_char, +} +#[test] +fn bindgen_test_layout_tm() { + assert_eq!( + ::std::mem::size_of::(), + 44usize, + concat!("Size of: ", stringify!(tm)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(tm)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_min as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_min) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_hour as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_hour) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_mday as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_mday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_mon as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_mon) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_year as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_year) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_wday as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_wday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_yday as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_yday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_isdst as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_isdst) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_gmtoff as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_gmtoff) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_zone as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_zone) + ) + ); +} +extern "C" { + pub fn time(__t: *mut time_t) -> time_t; +} +extern "C" { + pub fn nanosleep( + __request: *const timespec, + __remainder: *mut timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn asctime(__tm: *const tm) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn asctime_r( + __tm: *const tm, + __buf: *mut ::std::os::raw::c_char, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn difftime(__lhs: time_t, __rhs: time_t) -> f64; +} +extern "C" { + pub fn mktime(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn localtime(__t: *const time_t) -> *mut tm; +} +extern "C" { + pub fn localtime_r(__t: *const time_t, __tm: *mut tm) -> *mut tm; +} +extern "C" { + pub fn gmtime(__t: *const time_t) -> *mut tm; +} +extern "C" { + pub fn gmtime_r(__t: *const time_t, __tm: *mut tm) -> *mut tm; +} +extern "C" { + pub fn strptime( + __s: *const ::std::os::raw::c_char, + __fmt: *const ::std::os::raw::c_char, + __tm: *mut tm, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn strptime_l( + __s: *const ::std::os::raw::c_char, + __fmt: *const ::std::os::raw::c_char, + __tm: *mut tm, + __l: locale_t, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn strftime( + __buf: *mut ::std::os::raw::c_char, + __n: size_t, + __fmt: *const ::std::os::raw::c_char, + __tm: *const tm, + ) -> size_t; +} +extern "C" { + pub fn strftime_l( + __buf: *mut ::std::os::raw::c_char, + __n: size_t, + __fmt: *const ::std::os::raw::c_char, + __tm: *const tm, + __l: locale_t, + ) -> size_t; +} +extern "C" { + pub fn ctime(__t: *const time_t) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn ctime_r( + __t: *const time_t, + __buf: *mut ::std::os::raw::c_char, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn tzset(); +} +extern "C" { + pub fn clock() -> clock_t; +} +extern "C" { + pub fn clock_getcpuclockid(__pid: pid_t, __clock: *mut clockid_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_getres(__clock: clockid_t, __resolution: *mut timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_gettime(__clock: clockid_t, __ts: *mut timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_nanosleep( + __clock: clockid_t, + __flags: ::std::os::raw::c_int, + __request: *const timespec, + __remainder: *mut timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_settime(__clock: clockid_t, __ts: *const timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_create( + __clock: clockid_t, + __event: *mut sigevent, + __timer_ptr: *mut timer_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_delete(__timer: timer_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_settime( + __timer: timer_t, + __flags: ::std::os::raw::c_int, + __new_value: *const itimerspec, + __old_value: *mut itimerspec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_gettime(__timer: timer_t, __ts: *mut itimerspec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_getoverrun(__timer: timer_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timelocal(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn timegm(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn timespec_get( + __ts: *mut timespec, + __base: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +pub type nfds_t = ::std::os::raw::c_uint; +extern "C" { + pub fn poll( + __fds: *mut pollfd, + __count: nfds_t, + __timeout_ms: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn ppoll( + __fds: *mut pollfd, + __count: nfds_t, + __timeout: *const timespec, + __mask: *const sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn ppoll64( + __fds: *mut pollfd, + __count: nfds_t, + __timeout: *const timespec, + __mask: *const sigset64_t, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[repr(align(8))] +#[derive(Debug, Copy, Clone)] +pub struct clone_args { + pub flags: __u64, + pub pidfd: __u64, + pub child_tid: __u64, + pub parent_tid: __u64, + pub exit_signal: __u64, + pub stack: __u64, + pub stack_size: __u64, + pub tls: __u64, +} +#[test] +fn bindgen_test_layout_clone_args() { + assert_eq!( + ::std::mem::size_of::(), + 64usize, + concat!("Size of: ", stringify!(clone_args)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(clone_args)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pidfd as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(pidfd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).child_tid as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(child_tid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).parent_tid as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(parent_tid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).exit_signal as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(exit_signal) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(stack) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_size as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(stack_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tls as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(tls) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sched_param { + pub sched_priority: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout_sched_param() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(sched_param)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sched_param)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_priority as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sched_param), + "::", + stringify!(sched_priority) + ) + ); +} +extern "C" { + pub fn sched_setscheduler( + __pid: pid_t, + __policy: ::std::os::raw::c_int, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_getscheduler(__pid: pid_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_yield() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_get_priority_max(__policy: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_get_priority_min(__policy: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_setparam(__pid: pid_t, __param: *const sched_param) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_getparam(__pid: pid_t, __param: *mut sched_param) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_rr_get_interval(__pid: pid_t, __quantum: *mut timespec) -> ::std::os::raw::c_int; +} +pub const PTHREAD_MUTEX_NORMAL: ::std::os::raw::c_uint = 0; +pub const PTHREAD_MUTEX_RECURSIVE: ::std::os::raw::c_uint = 1; +pub const PTHREAD_MUTEX_ERRORCHECK: ::std::os::raw::c_uint = 2; +pub const PTHREAD_MUTEX_ERRORCHECK_NP: ::std::os::raw::c_uint = 2; +pub const PTHREAD_MUTEX_RECURSIVE_NP: ::std::os::raw::c_uint = 1; +pub const PTHREAD_MUTEX_DEFAULT: ::std::os::raw::c_uint = 0; +pub type _bindgen_ty_23 = ::std::os::raw::c_uint; +pub const PTHREAD_RWLOCK_PREFER_READER_NP: ::std::os::raw::c_uint = 0; +pub const PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_24 = ::std::os::raw::c_uint; +extern "C" { + pub fn pthread_atfork( + __prepare: ::std::option::Option, + __parent: ::std::option::Option, + __child: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_destroy(__attr: *mut pthread_attr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getdetachstate( + __attr: *const pthread_attr_t, + __state: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getguardsize( + __attr: *const pthread_attr_t, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getinheritsched( + __attr: *const pthread_attr_t, + __flag: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getschedparam( + __attr: *const pthread_attr_t, + __param: *mut sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getschedpolicy( + __attr: *const pthread_attr_t, + __policy: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getscope( + __attr: *const pthread_attr_t, + __scope: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getstack( + __attr: *const pthread_attr_t, + __addr: *mut *mut ::std::os::raw::c_void, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getstacksize( + __attr: *const pthread_attr_t, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_init(__attr: *mut pthread_attr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setdetachstate( + __attr: *mut pthread_attr_t, + __state: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setguardsize( + __attr: *mut pthread_attr_t, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setinheritsched( + __attr: *mut pthread_attr_t, + __flag: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setschedparam( + __attr: *mut pthread_attr_t, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setschedpolicy( + __attr: *mut pthread_attr_t, + __policy: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setscope( + __attr: *mut pthread_attr_t, + __scope: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setstack( + __attr: *mut pthread_attr_t, + __addr: *mut ::std::os::raw::c_void, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setstacksize( + __addr: *mut pthread_attr_t, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_destroy(__attr: *mut pthread_condattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_getclock( + __attr: *const pthread_condattr_t, + __clock: *mut clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_getpshared( + __attr: *const pthread_condattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_init(__attr: *mut pthread_condattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_setclock( + __attr: *mut pthread_condattr_t, + __clock: clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_setpshared( + __attr: *mut pthread_condattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_broadcast(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_clockwait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_destroy(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_init( + __cond: *mut pthread_cond_t, + __attr: *const pthread_condattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_signal(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_timedwait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_timedwait_monotonic_np( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_wait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_create( + __pthread_ptr: *mut pthread_t, + __attr: *const pthread_attr_t, + __start_routine: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void) -> *mut ::std::os::raw::c_void, + >, + arg1: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_detach(__pthread: pthread_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_exit(__return_value: *mut ::std::os::raw::c_void); +} +extern "C" { + pub fn pthread_equal(__lhs: pthread_t, __rhs: pthread_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getattr_np( + __pthread: pthread_t, + __attr: *mut pthread_attr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getcpuclockid( + __pthread: pthread_t, + __clock: *mut clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getschedparam( + __pthread: pthread_t, + __policy: *mut ::std::os::raw::c_int, + __param: *mut sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getspecific(__key: pthread_key_t) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn pthread_gettid_np(__pthread: pthread_t) -> pid_t; +} +extern "C" { + pub fn pthread_join( + __pthread: pthread_t, + __return_value_ptr: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_key_create( + __key_ptr: *mut pthread_key_t, + __key_destructor: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void), + >, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_key_delete(__key: pthread_key_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_destroy(__attr: *mut pthread_mutexattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_getpshared( + __attr: *const pthread_mutexattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_gettype( + __attr: *const pthread_mutexattr_t, + __type: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_getprotocol( + __attr: *const pthread_mutexattr_t, + __protocol: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_init(__attr: *mut pthread_mutexattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_setpshared( + __attr: *mut pthread_mutexattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_settype( + __attr: *mut pthread_mutexattr_t, + __type: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_setprotocol( + __attr: *mut pthread_mutexattr_t, + __protocol: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_clocklock( + __mutex: *mut pthread_mutex_t, + __clock: clockid_t, + __abstime: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_destroy(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_init( + __mutex: *mut pthread_mutex_t, + __attr: *const pthread_mutexattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_lock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_timedlock( + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_timedlock_monotonic_np( + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_trylock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_unlock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_once( + __once: *mut pthread_once_t, + __init_routine: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_init(__attr: *mut pthread_rwlockattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_destroy(__attr: *mut pthread_rwlockattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_getpshared( + __attr: *const pthread_rwlockattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_setpshared( + __attr: *mut pthread_rwlockattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_getkind_np( + __attr: *const pthread_rwlockattr_t, + __kind: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_setkind_np( + __attr: *mut pthread_rwlockattr_t, + __kind: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_clockrdlock( + __rwlock: *mut pthread_rwlock_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_clockwrlock( + __rwlock: *mut pthread_rwlock_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_destroy(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_init( + __rwlock: *mut pthread_rwlock_t, + __attr: *const pthread_rwlockattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_rdlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedrdlock( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedrdlock_monotonic_np( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedwrlock( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedwrlock_monotonic_np( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_tryrdlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_trywrlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_unlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_wrlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_init(__attr: *mut pthread_barrierattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_destroy(__attr: *mut pthread_barrierattr_t) + -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_getpshared( + __attr: *const pthread_barrierattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_setpshared( + __attr: *mut pthread_barrierattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_init( + __barrier: *mut pthread_barrier_t, + __attr: *const pthread_barrierattr_t, + __count: ::std::os::raw::c_uint, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_destroy(__barrier: *mut pthread_barrier_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_wait(__barrier: *mut pthread_barrier_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_destroy(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_init( + __spinlock: *mut pthread_spinlock_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_lock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_trylock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_unlock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_self() -> pthread_t; +} +extern "C" { + pub fn pthread_setname_np( + __pthread: pthread_t, + __name: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setschedparam( + __pthread: pthread_t, + __policy: ::std::os::raw::c_int, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setschedprio( + __pthread: pthread_t, + __priority: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setspecific( + __key: pthread_key_t, + __value: *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +pub type __pthread_cleanup_func_t = + ::std::option::Option; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __pthread_cleanup_t { + pub __cleanup_prev: *mut __pthread_cleanup_t, + pub __cleanup_routine: __pthread_cleanup_func_t, + pub __cleanup_arg: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout___pthread_cleanup_t() { + assert_eq!( + ::std::mem::size_of::<__pthread_cleanup_t>(), + 12usize, + concat!("Size of: ", stringify!(__pthread_cleanup_t)) + ); + assert_eq!( + ::std::mem::align_of::<__pthread_cleanup_t>(), + 4usize, + concat!("Alignment of ", stringify!(__pthread_cleanup_t)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_prev as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_prev) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_routine as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_routine) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_arg as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_arg) + ) + ); +} +extern "C" { + pub fn __pthread_cleanup_push( + c: *mut __pthread_cleanup_t, + arg1: __pthread_cleanup_func_t, + arg2: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + pub fn __pthread_cleanup_pop(arg1: *mut __pthread_cleanup_t, arg2: ::std::os::raw::c_int); +} +#[doc = " Data associated with an ALooper fd that will be returned as the \"outData\""] +#[doc = " when that source has data ready."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_poll_source { + #[doc = " The identifier of this source. May be LOOPER_ID_MAIN or"] + #[doc = " LOOPER_ID_INPUT."] + pub id: i32, + #[doc = " The android_app this ident is associated with."] + pub app: *mut android_app, + #[doc = " Function to call to perform the standard processing of data from"] + #[doc = " this source."] + pub process: ::std::option::Option< + unsafe extern "C" fn(app: *mut android_app, source: *mut android_poll_source), + >, +} +#[test] +fn bindgen_test_layout_android_poll_source() { + assert_eq!( + ::std::mem::size_of::(), + 12usize, + concat!("Size of: ", stringify!(android_poll_source)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(android_poll_source)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).id as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(id) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).app as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(app) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).process as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(process) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_input_buffer { + #[doc = " Pointer to a read-only array of pointers to GameActivityMotionEvent."] + #[doc = " Only the first motionEventsCount events are valid."] + pub motionEvents: [GameActivityMotionEvent; 16usize], + #[doc = " The number of valid motion events in `motionEvents`."] + pub motionEventsCount: u64, + #[doc = " Pointer to a read-only array of pointers to GameActivityKeyEvent."] + #[doc = " Only the first keyEventsCount events are valid."] + pub keyEvents: [GameActivityKeyEvent; 4usize], + #[doc = " The number of valid \"Key\" events in `keyEvents`."] + pub keyEventsCount: u64, +} +#[test] +fn bindgen_test_layout_android_input_buffer() { + assert_eq!( + ::std::mem::size_of::(), + 27360usize, + concat!("Size of: ", stringify!(android_input_buffer)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(android_input_buffer)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).motionEvents as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(motionEvents) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).motionEventsCount as *const _ as usize + }, + 27136usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(motionEventsCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyEvents as *const _ as usize }, + 27144usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(keyEvents) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).keyEventsCount as *const _ as usize + }, + 27352usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(keyEventsCount) + ) + ); +} +#[doc = " Function pointer declaration for the filtering of key events."] +#[doc = " A function with this signature should be passed to"] +#[doc = " android_app_set_key_event_filter and return false for any events that should"] +#[doc = " not be handled by android_native_app_glue. These events will be handled by"] +#[doc = " the system instead."] +pub type android_key_event_filter = + ::std::option::Option bool>; +#[doc = " Function pointer definition for the filtering of motion events."] +#[doc = " A function with this signature should be passed to"] +#[doc = " android_app_set_motion_event_filter and return false for any events that"] +#[doc = " should not be handled by android_native_app_glue. These events will be"] +#[doc = " handled by the system instead."] +pub type android_motion_event_filter = + ::std::option::Option bool>; +#[doc = " The GameActivity interface provided by "] +#[doc = " is based on a set of application-provided callbacks that will be called"] +#[doc = " by the Activity's main thread when certain events occur."] +#[doc = ""] +#[doc = " This means that each one of this callbacks _should_ _not_ block, or they"] +#[doc = " risk having the system force-close the application. This programming"] +#[doc = " model is direct, lightweight, but constraining."] +#[doc = ""] +#[doc = " The 'android_native_app_glue' static library is used to provide a different"] +#[doc = " execution model where the application can implement its own main event"] +#[doc = " loop in a different thread instead. Here's how it works:"] +#[doc = ""] +#[doc = " 1/ The application must provide a function named \"android_main()\" that"] +#[doc = " will be called when the activity is created, in a new thread that is"] +#[doc = " distinct from the activity's main thread."] +#[doc = ""] +#[doc = " 2/ android_main() receives a pointer to a valid \"android_app\" structure"] +#[doc = " that contains references to other important objects, e.g. the"] +#[doc = " GameActivity obejct instance the application is running in."] +#[doc = ""] +#[doc = " 3/ the \"android_app\" object holds an ALooper instance that already"] +#[doc = " listens to activity lifecycle events (e.g. \"pause\", \"resume\")."] +#[doc = " See APP_CMD_XXX declarations below."] +#[doc = ""] +#[doc = " This corresponds to an ALooper identifier returned by"] +#[doc = " ALooper_pollOnce with value LOOPER_ID_MAIN."] +#[doc = ""] +#[doc = " Your application can use the same ALooper to listen to additional"] +#[doc = " file-descriptors. They can either be callback based, or with return"] +#[doc = " identifiers starting with LOOPER_ID_USER."] +#[doc = ""] +#[doc = " 4/ Whenever you receive a LOOPER_ID_MAIN event,"] +#[doc = " the returned data will point to an android_poll_source structure. You"] +#[doc = " can call the process() function on it, and fill in android_app->onAppCmd"] +#[doc = " to be called for your own processing of the event."] +#[doc = ""] +#[doc = " Alternatively, you can call the low-level functions to read and process"] +#[doc = " the data directly... look at the process_cmd() and process_input()"] +#[doc = " implementations in the glue to see how to do this."] +#[doc = ""] +#[doc = " See the sample named \"native-activity\" that comes with the NDK with a"] +#[doc = " full usage example. Also look at the documentation of GameActivity."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_app { + #[doc = " An optional pointer to application-defined state."] + pub userData: *mut ::std::os::raw::c_void, + #[doc = " A required callback for processing main app commands (`APP_CMD_*`)."] + #[doc = " This is called each frame if there are app commands that need processing."] + pub onAppCmd: ::std::option::Option, + #[doc = " The GameActivity object instance that this app is running in."] + pub activity: *mut GameActivity, + #[doc = " The current configuration the app is running in."] + pub config: *mut AConfiguration, + #[doc = " The last activity saved state, as provided at creation time."] + #[doc = " It is NULL if there was no state. You can use this as you need; the"] + #[doc = " memory will remain around until you call android_app_exec_cmd() for"] + #[doc = " APP_CMD_RESUME, at which point it will be freed and savedState set to"] + #[doc = " NULL. These variables should only be changed when processing a"] + #[doc = " APP_CMD_SAVE_STATE, at which point they will be initialized to NULL and"] + #[doc = " you can malloc your state and place the information here. In that case"] + #[doc = " the memory will be freed for you later."] + pub savedState: *mut ::std::os::raw::c_void, + #[doc = " The size of the activity saved state. It is 0 if `savedState` is NULL."] + pub savedStateSize: size_t, + #[doc = " The ALooper associated with the app's thread."] + pub looper: *mut ALooper, + #[doc = " When non-NULL, this is the window surface that the app can draw in."] + pub window: *mut ANativeWindow, + #[doc = " Current content rectangle of the window; this is the area where the"] + #[doc = " window's content should be placed to be seen by the user."] + pub contentRect: ARect, + #[doc = " Current state of the app's activity. May be either APP_CMD_START,"] + #[doc = " APP_CMD_RESUME, APP_CMD_PAUSE, or APP_CMD_STOP."] + pub activityState: ::std::os::raw::c_int, + #[doc = " This is non-zero when the application's GameActivity is being"] + #[doc = " destroyed and waiting for the app thread to complete."] + pub destroyRequested: ::std::os::raw::c_int, + #[doc = " This is used for buffering input from GameActivity. Once ready, the"] + #[doc = " application thread switches the buffers and processes what was"] + #[doc = " accumulated."] + pub inputBuffers: [android_input_buffer; 2usize], + pub currentInputBuffer: ::std::os::raw::c_int, + #[doc = " 0 if no text input event is outstanding, 1 if it is."] + #[doc = " Use `GameActivity_getTextInputState` to get information"] + #[doc = " about the text entered by the user."] + pub textInputState: ::std::os::raw::c_int, + #[doc = " @cond INTERNAL"] + pub mutex: pthread_mutex_t, + pub cond: pthread_cond_t, + pub msgread: ::std::os::raw::c_int, + pub msgwrite: ::std::os::raw::c_int, + pub thread: pthread_t, + pub cmdPollSource: android_poll_source, + pub running: ::std::os::raw::c_int, + pub stateSaved: ::std::os::raw::c_int, + pub destroyed: ::std::os::raw::c_int, + pub redrawNeeded: ::std::os::raw::c_int, + pub pendingWindow: *mut ANativeWindow, + pub pendingContentRect: ARect, + pub keyEventFilter: android_key_event_filter, + pub motionEventFilter: android_motion_event_filter, +} +#[test] +fn bindgen_test_layout_android_app() { + assert_eq!( + ::std::mem::size_of::(), + 54860usize, + concat!("Size of: ", stringify!(android_app)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(android_app)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).userData as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(userData) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onAppCmd as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(onAppCmd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).activity as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(activity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).config as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(config) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).savedState as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(savedState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).savedStateSize as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(savedStateSize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).looper as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(looper) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).window as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(window) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).contentRect as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(contentRect) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).activityState as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(activityState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).destroyRequested as *const _ as usize }, + 52usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(destroyRequested) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).inputBuffers as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(inputBuffers) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).currentInputBuffer as *const _ as usize }, + 54776usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(currentInputBuffer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).textInputState as *const _ as usize }, + 54780usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(textInputState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).mutex as *const _ as usize }, + 54784usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(mutex) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cond as *const _ as usize }, + 54788usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(cond) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).msgread as *const _ as usize }, + 54792usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(msgread) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).msgwrite as *const _ as usize }, + 54796usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(msgwrite) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).thread as *const _ as usize }, + 54800usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(thread) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cmdPollSource as *const _ as usize }, + 54804usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(cmdPollSource) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).running as *const _ as usize }, + 54816usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(running) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stateSaved as *const _ as usize }, + 54820usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(stateSaved) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).destroyed as *const _ as usize }, + 54824usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(destroyed) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).redrawNeeded as *const _ as usize }, + 54828usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(redrawNeeded) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pendingWindow as *const _ as usize }, + 54832usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(pendingWindow) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pendingContentRect as *const _ as usize }, + 54836usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(pendingContentRect) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyEventFilter as *const _ as usize }, + 54852usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(keyEventFilter) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).motionEventFilter as *const _ as usize }, + 54856usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(motionEventFilter) + ) + ); +} +#[doc = " Looper data ID of commands coming from the app's main thread, which"] +#[doc = " is returned as an identifier from ALooper_pollOnce(). The data for this"] +#[doc = " identifier is a pointer to an android_poll_source structure."] +#[doc = " These can be retrieved and processed with android_app_read_cmd()"] +#[doc = " and android_app_exec_cmd()."] +pub const NativeAppGlueLooperId_LOOPER_ID_MAIN: NativeAppGlueLooperId = 1; +#[doc = " Unused. Reserved for future use when usage of AInputQueue will be"] +#[doc = " supported."] +pub const NativeAppGlueLooperId_LOOPER_ID_INPUT: NativeAppGlueLooperId = 2; +#[doc = " Start of user-defined ALooper identifiers."] +pub const NativeAppGlueLooperId_LOOPER_ID_USER: NativeAppGlueLooperId = 3; +#[doc = " Looper ID of commands coming from the app's main thread, an AInputQueue or"] +#[doc = " user-defined sources."] +pub type NativeAppGlueLooperId = ::std::os::raw::c_uint; +#[doc = " Unused. Reserved for future use when usage of AInputQueue will be"] +#[doc = " supported."] +pub const NativeAppGlueAppCmd_UNUSED_APP_CMD_INPUT_CHANGED: NativeAppGlueAppCmd = 0; +#[doc = " Command from main thread: a new ANativeWindow is ready for use. Upon"] +#[doc = " receiving this command, android_app->window will contain the new window"] +#[doc = " surface."] +pub const NativeAppGlueAppCmd_APP_CMD_INIT_WINDOW: NativeAppGlueAppCmd = 1; +#[doc = " Command from main thread: the existing ANativeWindow needs to be"] +#[doc = " terminated. Upon receiving this command, android_app->window still"] +#[doc = " contains the existing window; after calling android_app_exec_cmd"] +#[doc = " it will be set to NULL."] +pub const NativeAppGlueAppCmd_APP_CMD_TERM_WINDOW: NativeAppGlueAppCmd = 2; +#[doc = " Command from main thread: the current ANativeWindow has been resized."] +#[doc = " Please redraw with its new size."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_RESIZED: NativeAppGlueAppCmd = 3; +#[doc = " Command from main thread: the system needs that the current ANativeWindow"] +#[doc = " be redrawn. You should redraw the window before handing this to"] +#[doc = " android_app_exec_cmd() in order to avoid transient drawing glitches."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_REDRAW_NEEDED: NativeAppGlueAppCmd = 4; +#[doc = " Command from main thread: the content area of the window has changed,"] +#[doc = " such as from the soft input window being shown or hidden. You can"] +#[doc = " find the new content rect in android_app::contentRect."] +pub const NativeAppGlueAppCmd_APP_CMD_CONTENT_RECT_CHANGED: NativeAppGlueAppCmd = 5; +#[doc = " Command from main thread: the app's activity window has gained"] +#[doc = " input focus."] +pub const NativeAppGlueAppCmd_APP_CMD_GAINED_FOCUS: NativeAppGlueAppCmd = 6; +#[doc = " Command from main thread: the app's activity window has lost"] +#[doc = " input focus."] +pub const NativeAppGlueAppCmd_APP_CMD_LOST_FOCUS: NativeAppGlueAppCmd = 7; +#[doc = " Command from main thread: the current device configuration has changed."] +pub const NativeAppGlueAppCmd_APP_CMD_CONFIG_CHANGED: NativeAppGlueAppCmd = 8; +#[doc = " Command from main thread: the system is running low on memory."] +#[doc = " Try to reduce your memory use."] +pub const NativeAppGlueAppCmd_APP_CMD_LOW_MEMORY: NativeAppGlueAppCmd = 9; +#[doc = " Command from main thread: the app's activity has been started."] +pub const NativeAppGlueAppCmd_APP_CMD_START: NativeAppGlueAppCmd = 10; +#[doc = " Command from main thread: the app's activity has been resumed."] +pub const NativeAppGlueAppCmd_APP_CMD_RESUME: NativeAppGlueAppCmd = 11; +#[doc = " Command from main thread: the app should generate a new saved state"] +#[doc = " for itself, to restore from later if needed. If you have saved state,"] +#[doc = " allocate it with malloc and place it in android_app.savedState with"] +#[doc = " the size in android_app.savedStateSize. The will be freed for you"] +#[doc = " later."] +pub const NativeAppGlueAppCmd_APP_CMD_SAVE_STATE: NativeAppGlueAppCmd = 12; +#[doc = " Command from main thread: the app's activity has been paused."] +pub const NativeAppGlueAppCmd_APP_CMD_PAUSE: NativeAppGlueAppCmd = 13; +#[doc = " Command from main thread: the app's activity has been stopped."] +pub const NativeAppGlueAppCmd_APP_CMD_STOP: NativeAppGlueAppCmd = 14; +#[doc = " Command from main thread: the app's activity is being destroyed,"] +#[doc = " and waiting for the app thread to clean up and exit before proceeding."] +pub const NativeAppGlueAppCmd_APP_CMD_DESTROY: NativeAppGlueAppCmd = 15; +#[doc = " Command from main thread: the app's insets have changed."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_INSETS_CHANGED: NativeAppGlueAppCmd = 16; +#[doc = " Commands passed from the application's main Java thread to the game's thread."] +pub type NativeAppGlueAppCmd = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Call when ALooper_pollAll() returns LOOPER_ID_MAIN, reading the next"] + #[doc = " app command message."] + pub fn android_app_read_cmd(android_app: *mut android_app) -> i8; +} +extern "C" { + #[doc = " Call with the command returned by android_app_read_cmd() to do the"] + #[doc = " initial pre-processing of the given command. You can perform your own"] + #[doc = " actions for the command after calling this function."] + pub fn android_app_pre_exec_cmd(android_app: *mut android_app, cmd: i8); +} +extern "C" { + #[doc = " Call with the command returned by android_app_read_cmd() to do the"] + #[doc = " final post-processing of the given command. You must have done your own"] + #[doc = " actions for the command before calling this function."] + pub fn android_app_post_exec_cmd(android_app: *mut android_app, cmd: i8); +} +extern "C" { + #[doc = " Call this before processing input events to get the events buffer."] + #[doc = " The function returns NULL if there are no events to process."] + pub fn android_app_swap_input_buffers( + android_app: *mut android_app, + ) -> *mut android_input_buffer; +} +extern "C" { + #[doc = " Clear the array of motion events that were waiting to be handled, and release"] + #[doc = " each of them."] + #[doc = ""] + #[doc = " This method should be called after you have processed the motion events in"] + #[doc = " your game loop. You should handle events at each iteration of your game loop."] + pub fn android_app_clear_motion_events(inputBuffer: *mut android_input_buffer); +} +extern "C" { + #[doc = " Clear the array of key events that were waiting to be handled, and release"] + #[doc = " each of them."] + #[doc = ""] + #[doc = " This method should be called after you have processed the key up events in"] + #[doc = " your game loop. You should handle events at each iteration of your game loop."] + pub fn android_app_clear_key_events(inputBuffer: *mut android_input_buffer); +} +extern "C" { + #[doc = " Set the filter to use when processing key events."] + #[doc = " Any events for which the filter returns false will be ignored by"] + #[doc = " android_native_app_glue. If filter is set to NULL, no filtering is done."] + #[doc = ""] + #[doc = " The default key filter will filter out volume and camera button presses."] + pub fn android_app_set_key_event_filter( + app: *mut android_app, + filter: android_key_event_filter, + ); +} +extern "C" { + #[doc = " Set the filter to use when processing touch and motion events."] + #[doc = " Any events for which the filter returns false will be ignored by"] + #[doc = " android_native_app_glue. If filter is set to NULL, no filtering is done."] + #[doc = ""] + #[doc = " Note that the default motion event filter will only allow touchscreen events"] + #[doc = " through, in order to mimic NativeActivity's behaviour, so for controller"] + #[doc = " events to be passed to the app, set the filter to NULL."] + pub fn android_app_set_motion_event_filter( + app: *mut android_app, + filter: android_motion_event_filter, + ); +} +pub type __builtin_va_list = *mut ::std::os::raw::c_char; diff --git a/game-activity/src/ffi_x86_64.rs b/game-activity/src/ffi_x86_64.rs new file mode 100755 index 0000000..db4ba7a --- /dev/null +++ b/game-activity/src/ffi_x86_64.rs @@ -0,0 +1,10829 @@ +/* automatically generated by rust-bindgen 0.59.2 */ + +pub const __BIONIC__: u32 = 1; +pub const __WORDSIZE: u32 = 64; +pub const __bos_level: u32 = 0; +pub const __ANDROID_API_FUTURE__: u32 = 10000; +pub const __ANDROID_API__: u32 = 10000; +pub const __ANDROID_API_G__: u32 = 9; +pub const __ANDROID_API_I__: u32 = 14; +pub const __ANDROID_API_J__: u32 = 16; +pub const __ANDROID_API_J_MR1__: u32 = 17; +pub const __ANDROID_API_J_MR2__: u32 = 18; +pub const __ANDROID_API_K__: u32 = 19; +pub const __ANDROID_API_L__: u32 = 21; +pub const __ANDROID_API_L_MR1__: u32 = 22; +pub const __ANDROID_API_M__: u32 = 23; +pub const __ANDROID_API_N__: u32 = 24; +pub const __ANDROID_API_N_MR1__: u32 = 25; +pub const __ANDROID_API_O__: u32 = 26; +pub const __ANDROID_API_O_MR1__: u32 = 27; +pub const __ANDROID_API_P__: u32 = 28; +pub const __ANDROID_API_Q__: u32 = 29; +pub const __ANDROID_API_R__: u32 = 30; +pub const __NDK_MAJOR__: u32 = 21; +pub const __NDK_MINOR__: u32 = 3; +pub const __NDK_BETA__: u32 = 0; +pub const __NDK_BUILD__: u32 = 6528147; +pub const __NDK_CANARY__: u32 = 0; +pub const INT8_MIN: i32 = -128; +pub const INT8_MAX: u32 = 127; +pub const INT_LEAST8_MIN: i32 = -128; +pub const INT_LEAST8_MAX: u32 = 127; +pub const INT_FAST8_MIN: i32 = -128; +pub const INT_FAST8_MAX: u32 = 127; +pub const UINT8_MAX: u32 = 255; +pub const UINT_LEAST8_MAX: u32 = 255; +pub const UINT_FAST8_MAX: u32 = 255; +pub const INT16_MIN: i32 = -32768; +pub const INT16_MAX: u32 = 32767; +pub const INT_LEAST16_MIN: i32 = -32768; +pub const INT_LEAST16_MAX: u32 = 32767; +pub const UINT16_MAX: u32 = 65535; +pub const UINT_LEAST16_MAX: u32 = 65535; +pub const INT32_MIN: i32 = -2147483648; +pub const INT32_MAX: u32 = 2147483647; +pub const INT_LEAST32_MIN: i32 = -2147483648; +pub const INT_LEAST32_MAX: u32 = 2147483647; +pub const INT_FAST32_MIN: i32 = -2147483648; +pub const INT_FAST32_MAX: u32 = 2147483647; +pub const UINT32_MAX: u32 = 4294967295; +pub const UINT_LEAST32_MAX: u32 = 4294967295; +pub const UINT_FAST32_MAX: u32 = 4294967295; +pub const SIG_ATOMIC_MAX: u32 = 2147483647; +pub const SIG_ATOMIC_MIN: i32 = -2147483648; +pub const WINT_MAX: u32 = 4294967295; +pub const WINT_MIN: u32 = 0; +pub const __BITS_PER_LONG: u32 = 64; +pub const __FD_SETSIZE: u32 = 1024; +pub const AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT: u32 = 8; +pub const __PRI_64_prefix: &[u8; 2usize] = b"l\0"; +pub const __PRI_PTR_prefix: &[u8; 2usize] = b"l\0"; +pub const __PRI_FAST_prefix: &[u8; 2usize] = b"l\0"; +pub const PRId8: &[u8; 2usize] = b"d\0"; +pub const PRId16: &[u8; 2usize] = b"d\0"; +pub const PRId32: &[u8; 2usize] = b"d\0"; +pub const PRId64: &[u8; 3usize] = b"ld\0"; +pub const PRIdLEAST8: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST16: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST32: &[u8; 2usize] = b"d\0"; +pub const PRIdLEAST64: &[u8; 3usize] = b"ld\0"; +pub const PRIdFAST8: &[u8; 2usize] = b"d\0"; +pub const PRIdFAST16: &[u8; 3usize] = b"ld\0"; +pub const PRIdFAST32: &[u8; 3usize] = b"ld\0"; +pub const PRIdFAST64: &[u8; 3usize] = b"ld\0"; +pub const PRIdMAX: &[u8; 3usize] = b"jd\0"; +pub const PRIdPTR: &[u8; 3usize] = b"ld\0"; +pub const PRIi8: &[u8; 2usize] = b"i\0"; +pub const PRIi16: &[u8; 2usize] = b"i\0"; +pub const PRIi32: &[u8; 2usize] = b"i\0"; +pub const PRIi64: &[u8; 3usize] = b"li\0"; +pub const PRIiLEAST8: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST16: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST32: &[u8; 2usize] = b"i\0"; +pub const PRIiLEAST64: &[u8; 3usize] = b"li\0"; +pub const PRIiFAST8: &[u8; 2usize] = b"i\0"; +pub const PRIiFAST16: &[u8; 3usize] = b"li\0"; +pub const PRIiFAST32: &[u8; 3usize] = b"li\0"; +pub const PRIiFAST64: &[u8; 3usize] = b"li\0"; +pub const PRIiMAX: &[u8; 3usize] = b"ji\0"; +pub const PRIiPTR: &[u8; 3usize] = b"li\0"; +pub const PRIo8: &[u8; 2usize] = b"o\0"; +pub const PRIo16: &[u8; 2usize] = b"o\0"; +pub const PRIo32: &[u8; 2usize] = b"o\0"; +pub const PRIo64: &[u8; 3usize] = b"lo\0"; +pub const PRIoLEAST8: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST16: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST32: &[u8; 2usize] = b"o\0"; +pub const PRIoLEAST64: &[u8; 3usize] = b"lo\0"; +pub const PRIoFAST8: &[u8; 2usize] = b"o\0"; +pub const PRIoFAST16: &[u8; 3usize] = b"lo\0"; +pub const PRIoFAST32: &[u8; 3usize] = b"lo\0"; +pub const PRIoFAST64: &[u8; 3usize] = b"lo\0"; +pub const PRIoMAX: &[u8; 3usize] = b"jo\0"; +pub const PRIoPTR: &[u8; 3usize] = b"lo\0"; +pub const PRIu8: &[u8; 2usize] = b"u\0"; +pub const PRIu16: &[u8; 2usize] = b"u\0"; +pub const PRIu32: &[u8; 2usize] = b"u\0"; +pub const PRIu64: &[u8; 3usize] = b"lu\0"; +pub const PRIuLEAST8: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST16: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST32: &[u8; 2usize] = b"u\0"; +pub const PRIuLEAST64: &[u8; 3usize] = b"lu\0"; +pub const PRIuFAST8: &[u8; 2usize] = b"u\0"; +pub const PRIuFAST16: &[u8; 3usize] = b"lu\0"; +pub const PRIuFAST32: &[u8; 3usize] = b"lu\0"; +pub const PRIuFAST64: &[u8; 3usize] = b"lu\0"; +pub const PRIuMAX: &[u8; 3usize] = b"ju\0"; +pub const PRIuPTR: &[u8; 3usize] = b"lu\0"; +pub const PRIx8: &[u8; 2usize] = b"x\0"; +pub const PRIx16: &[u8; 2usize] = b"x\0"; +pub const PRIx32: &[u8; 2usize] = b"x\0"; +pub const PRIx64: &[u8; 3usize] = b"lx\0"; +pub const PRIxLEAST8: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST16: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST32: &[u8; 2usize] = b"x\0"; +pub const PRIxLEAST64: &[u8; 3usize] = b"lx\0"; +pub const PRIxFAST8: &[u8; 2usize] = b"x\0"; +pub const PRIxFAST16: &[u8; 3usize] = b"lx\0"; +pub const PRIxFAST32: &[u8; 3usize] = b"lx\0"; +pub const PRIxFAST64: &[u8; 3usize] = b"lx\0"; +pub const PRIxMAX: &[u8; 3usize] = b"jx\0"; +pub const PRIxPTR: &[u8; 3usize] = b"lx\0"; +pub const PRIX8: &[u8; 2usize] = b"X\0"; +pub const PRIX16: &[u8; 2usize] = b"X\0"; +pub const PRIX32: &[u8; 2usize] = b"X\0"; +pub const PRIX64: &[u8; 3usize] = b"lX\0"; +pub const PRIXLEAST8: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST16: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST32: &[u8; 2usize] = b"X\0"; +pub const PRIXLEAST64: &[u8; 3usize] = b"lX\0"; +pub const PRIXFAST8: &[u8; 2usize] = b"X\0"; +pub const PRIXFAST16: &[u8; 3usize] = b"lX\0"; +pub const PRIXFAST32: &[u8; 3usize] = b"lX\0"; +pub const PRIXFAST64: &[u8; 3usize] = b"lX\0"; +pub const PRIXMAX: &[u8; 3usize] = b"jX\0"; +pub const PRIXPTR: &[u8; 3usize] = b"lX\0"; +pub const SCNd8: &[u8; 4usize] = b"hhd\0"; +pub const SCNd16: &[u8; 3usize] = b"hd\0"; +pub const SCNd32: &[u8; 2usize] = b"d\0"; +pub const SCNd64: &[u8; 3usize] = b"ld\0"; +pub const SCNdLEAST8: &[u8; 4usize] = b"hhd\0"; +pub const SCNdLEAST16: &[u8; 3usize] = b"hd\0"; +pub const SCNdLEAST32: &[u8; 2usize] = b"d\0"; +pub const SCNdLEAST64: &[u8; 3usize] = b"ld\0"; +pub const SCNdFAST8: &[u8; 4usize] = b"hhd\0"; +pub const SCNdFAST16: &[u8; 3usize] = b"ld\0"; +pub const SCNdFAST32: &[u8; 3usize] = b"ld\0"; +pub const SCNdFAST64: &[u8; 3usize] = b"ld\0"; +pub const SCNdMAX: &[u8; 3usize] = b"jd\0"; +pub const SCNdPTR: &[u8; 3usize] = b"ld\0"; +pub const SCNi8: &[u8; 4usize] = b"hhi\0"; +pub const SCNi16: &[u8; 3usize] = b"hi\0"; +pub const SCNi32: &[u8; 2usize] = b"i\0"; +pub const SCNi64: &[u8; 3usize] = b"li\0"; +pub const SCNiLEAST8: &[u8; 4usize] = b"hhi\0"; +pub const SCNiLEAST16: &[u8; 3usize] = b"hi\0"; +pub const SCNiLEAST32: &[u8; 2usize] = b"i\0"; +pub const SCNiLEAST64: &[u8; 3usize] = b"li\0"; +pub const SCNiFAST8: &[u8; 4usize] = b"hhi\0"; +pub const SCNiFAST16: &[u8; 3usize] = b"li\0"; +pub const SCNiFAST32: &[u8; 3usize] = b"li\0"; +pub const SCNiFAST64: &[u8; 3usize] = b"li\0"; +pub const SCNiMAX: &[u8; 3usize] = b"ji\0"; +pub const SCNiPTR: &[u8; 3usize] = b"li\0"; +pub const SCNo8: &[u8; 4usize] = b"hho\0"; +pub const SCNo16: &[u8; 3usize] = b"ho\0"; +pub const SCNo32: &[u8; 2usize] = b"o\0"; +pub const SCNo64: &[u8; 3usize] = b"lo\0"; +pub const SCNoLEAST8: &[u8; 4usize] = b"hho\0"; +pub const SCNoLEAST16: &[u8; 3usize] = b"ho\0"; +pub const SCNoLEAST32: &[u8; 2usize] = b"o\0"; +pub const SCNoLEAST64: &[u8; 3usize] = b"lo\0"; +pub const SCNoFAST8: &[u8; 4usize] = b"hho\0"; +pub const SCNoFAST16: &[u8; 3usize] = b"lo\0"; +pub const SCNoFAST32: &[u8; 3usize] = b"lo\0"; +pub const SCNoFAST64: &[u8; 3usize] = b"lo\0"; +pub const SCNoMAX: &[u8; 3usize] = b"jo\0"; +pub const SCNoPTR: &[u8; 3usize] = b"lo\0"; +pub const SCNu8: &[u8; 4usize] = b"hhu\0"; +pub const SCNu16: &[u8; 3usize] = b"hu\0"; +pub const SCNu32: &[u8; 2usize] = b"u\0"; +pub const SCNu64: &[u8; 3usize] = b"lu\0"; +pub const SCNuLEAST8: &[u8; 4usize] = b"hhu\0"; +pub const SCNuLEAST16: &[u8; 3usize] = b"hu\0"; +pub const SCNuLEAST32: &[u8; 2usize] = b"u\0"; +pub const SCNuLEAST64: &[u8; 3usize] = b"lu\0"; +pub const SCNuFAST8: &[u8; 4usize] = b"hhu\0"; +pub const SCNuFAST16: &[u8; 3usize] = b"lu\0"; +pub const SCNuFAST32: &[u8; 3usize] = b"lu\0"; +pub const SCNuFAST64: &[u8; 3usize] = b"lu\0"; +pub const SCNuMAX: &[u8; 3usize] = b"ju\0"; +pub const SCNuPTR: &[u8; 3usize] = b"lu\0"; +pub const SCNx8: &[u8; 4usize] = b"hhx\0"; +pub const SCNx16: &[u8; 3usize] = b"hx\0"; +pub const SCNx32: &[u8; 2usize] = b"x\0"; +pub const SCNx64: &[u8; 3usize] = b"lx\0"; +pub const SCNxLEAST8: &[u8; 4usize] = b"hhx\0"; +pub const SCNxLEAST16: &[u8; 3usize] = b"hx\0"; +pub const SCNxLEAST32: &[u8; 2usize] = b"x\0"; +pub const SCNxLEAST64: &[u8; 3usize] = b"lx\0"; +pub const SCNxFAST8: &[u8; 4usize] = b"hhx\0"; +pub const SCNxFAST16: &[u8; 3usize] = b"lx\0"; +pub const SCNxFAST32: &[u8; 3usize] = b"lx\0"; +pub const SCNxFAST64: &[u8; 3usize] = b"lx\0"; +pub const SCNxMAX: &[u8; 3usize] = b"jx\0"; +pub const SCNxPTR: &[u8; 3usize] = b"lx\0"; +pub const __GNUC_VA_LIST: u32 = 1; +pub const true_: u32 = 1; +pub const false_: u32 = 0; +pub const __bool_true_false_are_defined: u32 = 1; +pub const GAME_ACTIVITY_POINTER_INFO_AXIS_COUNT: u32 = 48; +pub const GAMEACTIVITY_MAX_NUM_POINTERS_IN_MOTION_EVENT: u32 = 8; +pub const POLLIN: u32 = 1; +pub const POLLPRI: u32 = 2; +pub const POLLOUT: u32 = 4; +pub const POLLERR: u32 = 8; +pub const POLLHUP: u32 = 16; +pub const POLLNVAL: u32 = 32; +pub const POLLRDNORM: u32 = 64; +pub const POLLRDBAND: u32 = 128; +pub const POLLWRNORM: u32 = 256; +pub const POLLWRBAND: u32 = 512; +pub const POLLMSG: u32 = 1024; +pub const POLLREMOVE: u32 = 4096; +pub const POLLRDHUP: u32 = 8192; +pub const FP_XSTATE_MAGIC1: u32 = 1179670611; +pub const FP_XSTATE_MAGIC2: u32 = 1179670597; +pub const X86_FXSR_MAGIC: u32 = 0; +pub const NR_OPEN: u32 = 1024; +pub const NGROUPS_MAX: u32 = 65536; +pub const ARG_MAX: u32 = 131072; +pub const LINK_MAX: u32 = 127; +pub const MAX_CANON: u32 = 255; +pub const MAX_INPUT: u32 = 255; +pub const NAME_MAX: u32 = 255; +pub const PATH_MAX: u32 = 4096; +pub const PIPE_BUF: u32 = 4096; +pub const XATTR_NAME_MAX: u32 = 255; +pub const XATTR_SIZE_MAX: u32 = 65536; +pub const XATTR_LIST_MAX: u32 = 65536; +pub const RTSIG_MAX: u32 = 32; +pub const PASS_MAX: u32 = 128; +pub const NL_ARGMAX: u32 = 9; +pub const NL_LANGMAX: u32 = 14; +pub const NL_MSGMAX: u32 = 32767; +pub const NL_NMAX: u32 = 1; +pub const NL_SETMAX: u32 = 255; +pub const NL_TEXTMAX: u32 = 255; +pub const TMP_MAX: u32 = 308915776; +pub const CHAR_BIT: u32 = 8; +pub const LONG_BIT: u32 = 64; +pub const WORD_BIT: u32 = 32; +pub const SCHAR_MAX: u32 = 127; +pub const SCHAR_MIN: i32 = -128; +pub const UCHAR_MAX: u32 = 255; +pub const CHAR_MAX: u32 = 127; +pub const CHAR_MIN: i32 = -128; +pub const USHRT_MAX: u32 = 65535; +pub const SHRT_MAX: u32 = 32767; +pub const SHRT_MIN: i32 = -32768; +pub const UINT_MAX: u32 = 4294967295; +pub const INT_MAX: u32 = 2147483647; +pub const INT_MIN: i32 = -2147483648; +pub const ULONG_MAX: i32 = -1; +pub const LONG_MAX: u64 = 9223372036854775807; +pub const LONG_MIN: i64 = -9223372036854775808; +pub const ULLONG_MAX: i32 = -1; +pub const LLONG_MAX: u64 = 9223372036854775807; +pub const LLONG_MIN: i64 = -9223372036854775808; +pub const LONG_LONG_MIN: i64 = -9223372036854775808; +pub const LONG_LONG_MAX: u64 = 9223372036854775807; +pub const ULONG_LONG_MAX: i32 = -1; +pub const UID_MAX: u32 = 4294967295; +pub const GID_MAX: u32 = 4294967295; +pub const SIZE_T_MAX: i32 = -1; +pub const SSIZE_MAX: u64 = 9223372036854775807; +pub const MB_LEN_MAX: u32 = 4; +pub const NZERO: u32 = 20; +pub const IOV_MAX: u32 = 1024; +pub const SEM_VALUE_MAX: u32 = 1073741823; +pub const _POSIX_VERSION: u32 = 200809; +pub const _POSIX2_VERSION: u32 = 200809; +pub const _XOPEN_VERSION: u32 = 700; +pub const __BIONIC_POSIX_FEATURE_MISSING: i32 = -1; +pub const _POSIX_ASYNCHRONOUS_IO: i32 = -1; +pub const _POSIX_CHOWN_RESTRICTED: u32 = 1; +pub const _POSIX_CPUTIME: u32 = 200809; +pub const _POSIX_FSYNC: u32 = 200809; +pub const _POSIX_IPV6: u32 = 200809; +pub const _POSIX_MAPPED_FILES: u32 = 200809; +pub const _POSIX_MEMLOCK_RANGE: u32 = 200809; +pub const _POSIX_MEMORY_PROTECTION: u32 = 200809; +pub const _POSIX_MESSAGE_PASSING: i32 = -1; +pub const _POSIX_MONOTONIC_CLOCK: u32 = 200809; +pub const _POSIX_NO_TRUNC: u32 = 1; +pub const _POSIX_PRIORITIZED_IO: i32 = -1; +pub const _POSIX_PRIORITY_SCHEDULING: u32 = 200809; +pub const _POSIX_RAW_SOCKETS: u32 = 200809; +pub const _POSIX_READER_WRITER_LOCKS: u32 = 200809; +pub const _POSIX_REGEXP: u32 = 1; +pub const _POSIX_SAVED_IDS: u32 = 1; +pub const _POSIX_SEMAPHORES: u32 = 200809; +pub const _POSIX_SHARED_MEMORY_OBJECTS: i32 = -1; +pub const _POSIX_SHELL: u32 = 1; +pub const _POSIX_SPORADIC_SERVER: i32 = -1; +pub const _POSIX_SYNCHRONIZED_IO: u32 = 200809; +pub const _POSIX_THREAD_ATTR_STACKADDR: u32 = 200809; +pub const _POSIX_THREAD_ATTR_STACKSIZE: u32 = 200809; +pub const _POSIX_THREAD_CPUTIME: u32 = 200809; +pub const _POSIX_THREAD_PRIO_INHERIT: i32 = -1; +pub const _POSIX_THREAD_PRIO_PROTECT: i32 = -1; +pub const _POSIX_THREAD_PRIORITY_SCHEDULING: u32 = 200809; +pub const _POSIX_THREAD_PROCESS_SHARED: u32 = 200809; +pub const _POSIX_THREAD_ROBUST_PRIO_INHERIT: i32 = -1; +pub const _POSIX_THREAD_ROBUST_PRIO_PROTECT: i32 = -1; +pub const _POSIX_THREAD_SAFE_FUNCTIONS: u32 = 200809; +pub const _POSIX_THREAD_SPORADIC_SERVER: i32 = -1; +pub const _POSIX_THREADS: u32 = 200809; +pub const _POSIX_TIMERS: u32 = 200809; +pub const _POSIX_TRACE: i32 = -1; +pub const _POSIX_TRACE_EVENT_FILTER: i32 = -1; +pub const _POSIX_TRACE_INHERIT: i32 = -1; +pub const _POSIX_TRACE_LOG: i32 = -1; +pub const _POSIX_TYPED_MEMORY_OBJECTS: i32 = -1; +pub const _POSIX_VDISABLE: u8 = 0u8; +pub const _POSIX2_C_BIND: u32 = 200809; +pub const _POSIX2_C_DEV: i32 = -1; +pub const _POSIX2_CHAR_TERM: u32 = 200809; +pub const _POSIX2_FORT_DEV: i32 = -1; +pub const _POSIX2_FORT_RUN: i32 = -1; +pub const _POSIX2_LOCALEDEF: i32 = -1; +pub const _POSIX2_SW_DEV: i32 = -1; +pub const _POSIX2_UPE: i32 = -1; +pub const _POSIX_V7_ILP32_OFF32: i32 = -1; +pub const _POSIX_V7_ILP32_OFFBIG: i32 = -1; +pub const _POSIX_V7_LP64_OFF64: u32 = 1; +pub const _POSIX_V7_LPBIG_OFFBIG: u32 = 1; +pub const _XOPEN_CRYPT: i32 = -1; +pub const _XOPEN_ENH_I18N: u32 = 1; +pub const _XOPEN_LEGACY: i32 = -1; +pub const _XOPEN_REALTIME: u32 = 1; +pub const _XOPEN_REALTIME_THREADS: u32 = 1; +pub const _XOPEN_SHM: u32 = 1; +pub const _XOPEN_STREAMS: i32 = -1; +pub const _XOPEN_UNIX: u32 = 1; +pub const _POSIX_AIO_LISTIO_MAX: u32 = 2; +pub const _POSIX_AIO_MAX: u32 = 1; +pub const _POSIX_ARG_MAX: u32 = 4096; +pub const _POSIX_CHILD_MAX: u32 = 25; +pub const _POSIX_CLOCKRES_MIN: u32 = 20000000; +pub const _POSIX_DELAYTIMER_MAX: u32 = 32; +pub const _POSIX_HOST_NAME_MAX: u32 = 255; +pub const _POSIX_LINK_MAX: u32 = 8; +pub const _POSIX_LOGIN_NAME_MAX: u32 = 9; +pub const _POSIX_MAX_CANON: u32 = 255; +pub const _POSIX_MAX_INPUT: u32 = 255; +pub const _POSIX_MQ_OPEN_MAX: u32 = 8; +pub const _POSIX_MQ_PRIO_MAX: u32 = 32; +pub const _POSIX_NAME_MAX: u32 = 14; +pub const _POSIX_NGROUPS_MAX: u32 = 8; +pub const _POSIX_OPEN_MAX: u32 = 20; +pub const _POSIX_PATH_MAX: u32 = 256; +pub const _POSIX_PIPE_BUF: u32 = 512; +pub const _POSIX_RE_DUP_MAX: u32 = 255; +pub const _POSIX_RTSIG_MAX: u32 = 8; +pub const _POSIX_SEM_NSEMS_MAX: u32 = 256; +pub const _POSIX_SEM_VALUE_MAX: u32 = 32767; +pub const _POSIX_SIGQUEUE_MAX: u32 = 32; +pub const _POSIX_SSIZE_MAX: u32 = 32767; +pub const _POSIX_STREAM_MAX: u32 = 8; +pub const _POSIX_SS_REPL_MAX: u32 = 4; +pub const _POSIX_SYMLINK_MAX: u32 = 255; +pub const _POSIX_SYMLOOP_MAX: u32 = 8; +pub const _POSIX_THREAD_DESTRUCTOR_ITERATIONS: u32 = 4; +pub const _POSIX_THREAD_KEYS_MAX: u32 = 128; +pub const _POSIX_THREAD_THREADS_MAX: u32 = 64; +pub const _POSIX_TIMER_MAX: u32 = 32; +pub const _POSIX_TRACE_EVENT_NAME_MAX: u32 = 30; +pub const _POSIX_TRACE_NAME_MAX: u32 = 8; +pub const _POSIX_TRACE_SYS_MAX: u32 = 8; +pub const _POSIX_TRACE_USER_EVENT_MAX: u32 = 32; +pub const _POSIX_TTY_NAME_MAX: u32 = 9; +pub const _POSIX_TZNAME_MAX: u32 = 6; +pub const _POSIX2_BC_BASE_MAX: u32 = 99; +pub const _POSIX2_BC_DIM_MAX: u32 = 2048; +pub const _POSIX2_BC_SCALE_MAX: u32 = 99; +pub const _POSIX2_BC_STRING_MAX: u32 = 1000; +pub const _POSIX2_CHARCLASS_NAME_MAX: u32 = 14; +pub const _POSIX2_COLL_WEIGHTS_MAX: u32 = 2; +pub const _POSIX2_EXPR_NEST_MAX: u32 = 32; +pub const _POSIX2_LINE_MAX: u32 = 2048; +pub const _POSIX2_RE_DUP_MAX: u32 = 255; +pub const _XOPEN_IOV_MAX: u32 = 16; +pub const _XOPEN_NAME_MAX: u32 = 255; +pub const _XOPEN_PATH_MAX: u32 = 1024; +pub const HOST_NAME_MAX: u32 = 255; +pub const LOGIN_NAME_MAX: u32 = 256; +pub const TTY_NAME_MAX: u32 = 32; +pub const PTHREAD_DESTRUCTOR_ITERATIONS: u32 = 4; +pub const PTHREAD_KEYS_MAX: u32 = 128; +pub const ITIMER_REAL: u32 = 0; +pub const ITIMER_VIRTUAL: u32 = 1; +pub const ITIMER_PROF: u32 = 2; +pub const CLOCK_REALTIME: u32 = 0; +pub const CLOCK_MONOTONIC: u32 = 1; +pub const CLOCK_PROCESS_CPUTIME_ID: u32 = 2; +pub const CLOCK_THREAD_CPUTIME_ID: u32 = 3; +pub const CLOCK_MONOTONIC_RAW: u32 = 4; +pub const CLOCK_REALTIME_COARSE: u32 = 5; +pub const CLOCK_MONOTONIC_COARSE: u32 = 6; +pub const CLOCK_BOOTTIME: u32 = 7; +pub const CLOCK_REALTIME_ALARM: u32 = 8; +pub const CLOCK_BOOTTIME_ALARM: u32 = 9; +pub const CLOCK_SGI_CYCLE: u32 = 10; +pub const CLOCK_TAI: u32 = 11; +pub const MAX_CLOCKS: u32 = 16; +pub const CLOCKS_MASK: u32 = 1; +pub const CLOCKS_MONO: u32 = 1; +pub const TIMER_ABSTIME: u32 = 1; +pub const _KERNEL_NSIG: u32 = 32; +pub const SIGHUP: u32 = 1; +pub const SIGINT: u32 = 2; +pub const SIGQUIT: u32 = 3; +pub const SIGILL: u32 = 4; +pub const SIGTRAP: u32 = 5; +pub const SIGABRT: u32 = 6; +pub const SIGIOT: u32 = 6; +pub const SIGBUS: u32 = 7; +pub const SIGFPE: u32 = 8; +pub const SIGKILL: u32 = 9; +pub const SIGUSR1: u32 = 10; +pub const SIGSEGV: u32 = 11; +pub const SIGUSR2: u32 = 12; +pub const SIGPIPE: u32 = 13; +pub const SIGALRM: u32 = 14; +pub const SIGTERM: u32 = 15; +pub const SIGSTKFLT: u32 = 16; +pub const SIGCHLD: u32 = 17; +pub const SIGCONT: u32 = 18; +pub const SIGSTOP: u32 = 19; +pub const SIGTSTP: u32 = 20; +pub const SIGTTIN: u32 = 21; +pub const SIGTTOU: u32 = 22; +pub const SIGURG: u32 = 23; +pub const SIGXCPU: u32 = 24; +pub const SIGXFSZ: u32 = 25; +pub const SIGVTALRM: u32 = 26; +pub const SIGPROF: u32 = 27; +pub const SIGWINCH: u32 = 28; +pub const SIGIO: u32 = 29; +pub const SIGPOLL: u32 = 29; +pub const SIGPWR: u32 = 30; +pub const SIGSYS: u32 = 31; +pub const SIGUNUSED: u32 = 31; +pub const __SIGRTMIN: u32 = 32; +pub const SA_NOCLDSTOP: u32 = 1; +pub const SA_NOCLDWAIT: u32 = 2; +pub const SA_SIGINFO: u32 = 4; +pub const SA_ONSTACK: u32 = 134217728; +pub const SA_RESTART: u32 = 268435456; +pub const SA_NODEFER: u32 = 1073741824; +pub const SA_RESETHAND: u32 = 2147483648; +pub const SA_NOMASK: u32 = 1073741824; +pub const SA_ONESHOT: u32 = 2147483648; +pub const SA_RESTORER: u32 = 67108864; +pub const MINSIGSTKSZ: u32 = 2048; +pub const SIGSTKSZ: u32 = 8192; +pub const SIG_BLOCK: u32 = 0; +pub const SIG_UNBLOCK: u32 = 1; +pub const SIG_SETMASK: u32 = 2; +pub const SI_MAX_SIZE: u32 = 128; +pub const SI_USER: u32 = 0; +pub const SI_KERNEL: u32 = 128; +pub const SI_QUEUE: i32 = -1; +pub const SI_TIMER: i32 = -2; +pub const SI_MESGQ: i32 = -3; +pub const SI_ASYNCIO: i32 = -4; +pub const SI_SIGIO: i32 = -5; +pub const SI_TKILL: i32 = -6; +pub const SI_DETHREAD: i32 = -7; +pub const SI_ASYNCNL: i32 = -60; +pub const ILL_ILLOPC: u32 = 1; +pub const ILL_ILLOPN: u32 = 2; +pub const ILL_ILLADR: u32 = 3; +pub const ILL_ILLTRP: u32 = 4; +pub const ILL_PRVOPC: u32 = 5; +pub const ILL_PRVREG: u32 = 6; +pub const ILL_COPROC: u32 = 7; +pub const ILL_BADSTK: u32 = 8; +pub const ILL_BADIADDR: u32 = 9; +pub const __ILL_BREAK: u32 = 10; +pub const __ILL_BNDMOD: u32 = 11; +pub const NSIGILL: u32 = 11; +pub const FPE_INTDIV: u32 = 1; +pub const FPE_INTOVF: u32 = 2; +pub const FPE_FLTDIV: u32 = 3; +pub const FPE_FLTOVF: u32 = 4; +pub const FPE_FLTUND: u32 = 5; +pub const FPE_FLTRES: u32 = 6; +pub const FPE_FLTINV: u32 = 7; +pub const FPE_FLTSUB: u32 = 8; +pub const __FPE_DECOVF: u32 = 9; +pub const __FPE_DECDIV: u32 = 10; +pub const __FPE_DECERR: u32 = 11; +pub const __FPE_INVASC: u32 = 12; +pub const __FPE_INVDEC: u32 = 13; +pub const FPE_FLTUNK: u32 = 14; +pub const FPE_CONDTRAP: u32 = 15; +pub const NSIGFPE: u32 = 15; +pub const SEGV_MAPERR: u32 = 1; +pub const SEGV_ACCERR: u32 = 2; +pub const SEGV_BNDERR: u32 = 3; +pub const SEGV_PKUERR: u32 = 4; +pub const SEGV_ACCADI: u32 = 5; +pub const SEGV_ADIDERR: u32 = 6; +pub const SEGV_ADIPERR: u32 = 7; +pub const NSIGSEGV: u32 = 7; +pub const BUS_ADRALN: u32 = 1; +pub const BUS_ADRERR: u32 = 2; +pub const BUS_OBJERR: u32 = 3; +pub const BUS_MCEERR_AR: u32 = 4; +pub const BUS_MCEERR_AO: u32 = 5; +pub const NSIGBUS: u32 = 5; +pub const TRAP_BRKPT: u32 = 1; +pub const TRAP_TRACE: u32 = 2; +pub const TRAP_BRANCH: u32 = 3; +pub const TRAP_HWBKPT: u32 = 4; +pub const TRAP_UNK: u32 = 5; +pub const NSIGTRAP: u32 = 5; +pub const CLD_EXITED: u32 = 1; +pub const CLD_KILLED: u32 = 2; +pub const CLD_DUMPED: u32 = 3; +pub const CLD_TRAPPED: u32 = 4; +pub const CLD_STOPPED: u32 = 5; +pub const CLD_CONTINUED: u32 = 6; +pub const NSIGCHLD: u32 = 6; +pub const POLL_IN: u32 = 1; +pub const POLL_OUT: u32 = 2; +pub const POLL_MSG: u32 = 3; +pub const POLL_ERR: u32 = 4; +pub const POLL_PRI: u32 = 5; +pub const POLL_HUP: u32 = 6; +pub const NSIGPOLL: u32 = 6; +pub const SYS_SECCOMP: u32 = 1; +pub const NSIGSYS: u32 = 1; +pub const EMT_TAGOVF: u32 = 1; +pub const NSIGEMT: u32 = 1; +pub const SIGEV_SIGNAL: u32 = 0; +pub const SIGEV_NONE: u32 = 1; +pub const SIGEV_THREAD: u32 = 2; +pub const SIGEV_THREAD_ID: u32 = 4; +pub const SIGEV_MAX_SIZE: u32 = 64; +pub const SS_ONSTACK: u32 = 1; +pub const SS_DISABLE: u32 = 2; +pub const SS_AUTODISARM: u32 = 2147483648; +pub const SS_FLAG_BITS: u32 = 2147483648; +pub const _KERNEL__NSIG: u32 = 64; +pub const _NSIG: u32 = 65; +pub const NSIG: u32 = 65; +pub const PAGE_SIZE: u32 = 4096; +pub const PAGE_MASK: i32 = -4096; +pub const FD_SETSIZE: u32 = 1024; +pub const CLOCKS_PER_SEC: u32 = 1000000; +pub const TIME_UTC: u32 = 1; +pub const CSIGNAL: u32 = 255; +pub const CLONE_VM: u32 = 256; +pub const CLONE_FS: u32 = 512; +pub const CLONE_FILES: u32 = 1024; +pub const CLONE_SIGHAND: u32 = 2048; +pub const CLONE_PIDFD: u32 = 4096; +pub const CLONE_PTRACE: u32 = 8192; +pub const CLONE_VFORK: u32 = 16384; +pub const CLONE_PARENT: u32 = 32768; +pub const CLONE_THREAD: u32 = 65536; +pub const CLONE_NEWNS: u32 = 131072; +pub const CLONE_SYSVSEM: u32 = 262144; +pub const CLONE_SETTLS: u32 = 524288; +pub const CLONE_PARENT_SETTID: u32 = 1048576; +pub const CLONE_CHILD_CLEARTID: u32 = 2097152; +pub const CLONE_DETACHED: u32 = 4194304; +pub const CLONE_UNTRACED: u32 = 8388608; +pub const CLONE_CHILD_SETTID: u32 = 16777216; +pub const CLONE_NEWCGROUP: u32 = 33554432; +pub const CLONE_NEWUTS: u32 = 67108864; +pub const CLONE_NEWIPC: u32 = 134217728; +pub const CLONE_NEWUSER: u32 = 268435456; +pub const CLONE_NEWPID: u32 = 536870912; +pub const CLONE_NEWNET: u32 = 1073741824; +pub const CLONE_IO: u32 = 2147483648; +pub const SCHED_NORMAL: u32 = 0; +pub const SCHED_FIFO: u32 = 1; +pub const SCHED_RR: u32 = 2; +pub const SCHED_BATCH: u32 = 3; +pub const SCHED_IDLE: u32 = 5; +pub const SCHED_DEADLINE: u32 = 6; +pub const SCHED_RESET_ON_FORK: u32 = 1073741824; +pub const SCHED_FLAG_RESET_ON_FORK: u32 = 1; +pub const SCHED_FLAG_RECLAIM: u32 = 2; +pub const SCHED_FLAG_DL_OVERRUN: u32 = 4; +pub const SCHED_FLAG_KEEP_POLICY: u32 = 8; +pub const SCHED_FLAG_KEEP_PARAMS: u32 = 16; +pub const SCHED_FLAG_UTIL_CLAMP_MIN: u32 = 32; +pub const SCHED_FLAG_UTIL_CLAMP_MAX: u32 = 64; +pub const SCHED_FLAG_KEEP_ALL: u32 = 24; +pub const SCHED_FLAG_UTIL_CLAMP: u32 = 96; +pub const SCHED_FLAG_ALL: u32 = 127; +pub const SCHED_OTHER: u32 = 0; +pub const PTHREAD_ONCE_INIT: u32 = 0; +pub const PTHREAD_BARRIER_SERIAL_THREAD: i32 = -1; +pub const PTHREAD_STACK_MIN: u32 = 16384; +pub const PTHREAD_CREATE_DETACHED: u32 = 1; +pub const PTHREAD_CREATE_JOINABLE: u32 = 0; +pub const PTHREAD_EXPLICIT_SCHED: u32 = 0; +pub const PTHREAD_INHERIT_SCHED: u32 = 1; +pub const PTHREAD_PRIO_NONE: u32 = 0; +pub const PTHREAD_PRIO_INHERIT: u32 = 1; +pub const PTHREAD_PROCESS_PRIVATE: u32 = 0; +pub const PTHREAD_PROCESS_SHARED: u32 = 1; +pub const PTHREAD_SCOPE_SYSTEM: u32 = 0; +pub const PTHREAD_SCOPE_PROCESS: u32 = 1; +pub const NATIVE_APP_GLUE_MAX_NUM_MOTION_EVENTS: u32 = 16; +pub const NATIVE_APP_GLUE_MAX_NUM_KEY_EVENTS: u32 = 4; +pub const NATIVE_APP_GLUE_MAX_INPUT_BUFFERS: u32 = 2; +extern "C" { + pub fn android_get_application_target_sdk_version() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn android_get_device_api_level() -> ::std::os::raw::c_int; +} +pub type size_t = ::std::os::raw::c_ulong; +pub type wchar_t = ::std::os::raw::c_int; +#[repr(C)] +#[repr(align(16))] +#[derive(Debug, Copy, Clone)] +pub struct max_align_t { + pub __clang_max_align_nonce1: ::std::os::raw::c_longlong, + pub __bindgen_padding_0: u64, + pub __clang_max_align_nonce2: u128, +} +#[test] +fn bindgen_test_layout_max_align_t() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(max_align_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 16usize, + concat!("Alignment of ", stringify!(max_align_t)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).__clang_max_align_nonce1 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(max_align_t), + "::", + stringify!(__clang_max_align_nonce1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).__clang_max_align_nonce2 as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(max_align_t), + "::", + stringify!(__clang_max_align_nonce2) + ) + ); +} +pub type __int8_t = ::std::os::raw::c_schar; +pub type __uint8_t = ::std::os::raw::c_uchar; +pub type __int16_t = ::std::os::raw::c_short; +pub type __uint16_t = ::std::os::raw::c_ushort; +pub type __int32_t = ::std::os::raw::c_int; +pub type __uint32_t = ::std::os::raw::c_uint; +pub type __int64_t = ::std::os::raw::c_long; +pub type __uint64_t = ::std::os::raw::c_ulong; +pub type __intptr_t = ::std::os::raw::c_long; +pub type __uintptr_t = ::std::os::raw::c_ulong; +pub type int_least8_t = i8; +pub type uint_least8_t = u8; +pub type int_least16_t = i16; +pub type uint_least16_t = u16; +pub type int_least32_t = i32; +pub type uint_least32_t = u32; +pub type int_least64_t = i64; +pub type uint_least64_t = u64; +pub type int_fast8_t = i8; +pub type uint_fast8_t = u8; +pub type int_fast64_t = i64; +pub type uint_fast64_t = u64; +pub type int_fast16_t = i64; +pub type uint_fast16_t = u64; +pub type int_fast32_t = i64; +pub type uint_fast32_t = u64; +pub type uintmax_t = u64; +pub type intmax_t = i64; +pub type __s8 = ::std::os::raw::c_schar; +pub type __u8 = ::std::os::raw::c_uchar; +pub type __s16 = ::std::os::raw::c_short; +pub type __u16 = ::std::os::raw::c_ushort; +pub type __s32 = ::std::os::raw::c_int; +pub type __u32 = ::std::os::raw::c_uint; +pub type __s64 = ::std::os::raw::c_longlong; +pub type __u64 = ::std::os::raw::c_ulonglong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_fd_set { + pub fds_bits: [::std::os::raw::c_ulong; 16usize], +} +#[test] +fn bindgen_test_layout___kernel_fd_set() { + assert_eq!( + ::std::mem::size_of::<__kernel_fd_set>(), + 128usize, + concat!("Size of: ", stringify!(__kernel_fd_set)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_fd_set>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_fd_set)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_fd_set>())).fds_bits as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_fd_set), + "::", + stringify!(fds_bits) + ) + ); +} +pub type __kernel_sighandler_t = + ::std::option::Option; +pub type __kernel_key_t = ::std::os::raw::c_int; +pub type __kernel_mqd_t = ::std::os::raw::c_int; +pub type __kernel_old_uid_t = ::std::os::raw::c_ushort; +pub type __kernel_old_gid_t = ::std::os::raw::c_ushort; +pub type __kernel_old_dev_t = ::std::os::raw::c_ulong; +pub type __kernel_long_t = ::std::os::raw::c_long; +pub type __kernel_ulong_t = ::std::os::raw::c_ulong; +pub type __kernel_ino_t = __kernel_ulong_t; +pub type __kernel_mode_t = ::std::os::raw::c_uint; +pub type __kernel_pid_t = ::std::os::raw::c_int; +pub type __kernel_ipc_pid_t = ::std::os::raw::c_int; +pub type __kernel_uid_t = ::std::os::raw::c_uint; +pub type __kernel_gid_t = ::std::os::raw::c_uint; +pub type __kernel_suseconds_t = __kernel_long_t; +pub type __kernel_daddr_t = ::std::os::raw::c_int; +pub type __kernel_uid32_t = ::std::os::raw::c_uint; +pub type __kernel_gid32_t = ::std::os::raw::c_uint; +pub type __kernel_size_t = __kernel_ulong_t; +pub type __kernel_ssize_t = __kernel_long_t; +pub type __kernel_ptrdiff_t = __kernel_long_t; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_fsid_t { + pub val: [::std::os::raw::c_int; 2usize], +} +#[test] +fn bindgen_test_layout___kernel_fsid_t() { + assert_eq!( + ::std::mem::size_of::<__kernel_fsid_t>(), + 8usize, + concat!("Size of: ", stringify!(__kernel_fsid_t)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_fsid_t>(), + 4usize, + concat!("Alignment of ", stringify!(__kernel_fsid_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_fsid_t>())).val as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_fsid_t), + "::", + stringify!(val) + ) + ); +} +pub type __kernel_off_t = __kernel_long_t; +pub type __kernel_loff_t = ::std::os::raw::c_longlong; +pub type __kernel_time_t = __kernel_long_t; +pub type __kernel_time64_t = ::std::os::raw::c_longlong; +pub type __kernel_clock_t = __kernel_long_t; +pub type __kernel_timer_t = ::std::os::raw::c_int; +pub type __kernel_clockid_t = ::std::os::raw::c_int; +pub type __kernel_caddr_t = *mut ::std::os::raw::c_char; +pub type __kernel_uid16_t = ::std::os::raw::c_ushort; +pub type __kernel_gid16_t = ::std::os::raw::c_ushort; +pub type __le16 = __u16; +pub type __be16 = __u16; +pub type __le32 = __u32; +pub type __be32 = __u32; +pub type __le64 = __u64; +pub type __be64 = __u64; +pub type __sum16 = __u16; +pub type __wsum = __u32; +pub type __poll_t = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_attr_t { + pub flags: u32, + pub stack_base: *mut ::std::os::raw::c_void, + pub stack_size: size_t, + pub guard_size: size_t, + pub sched_policy: i32, + pub sched_priority: i32, + pub __reserved: [::std::os::raw::c_char; 16usize], +} +#[test] +fn bindgen_test_layout_pthread_attr_t() { + assert_eq!( + ::std::mem::size_of::(), + 56usize, + concat!("Size of: ", stringify!(pthread_attr_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(pthread_attr_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_base as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(stack_base) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_size as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(stack_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).guard_size as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(guard_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_policy as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(sched_policy) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_priority as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(sched_priority) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__reserved as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(pthread_attr_t), + "::", + stringify!(__reserved) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_barrier_t { + pub __private: [i64; 4usize], +} +#[test] +fn bindgen_test_layout_pthread_barrier_t() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(pthread_barrier_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(pthread_barrier_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_barrier_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_barrierattr_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_cond_t { + pub __private: [i32; 12usize], +} +#[test] +fn bindgen_test_layout_pthread_cond_t() { + assert_eq!( + ::std::mem::size_of::(), + 48usize, + concat!("Size of: ", stringify!(pthread_cond_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_cond_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_cond_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_condattr_t = ::std::os::raw::c_long; +pub type pthread_key_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_mutex_t { + pub __private: [i32; 10usize], +} +#[test] +fn bindgen_test_layout_pthread_mutex_t() { + assert_eq!( + ::std::mem::size_of::(), + 40usize, + concat!("Size of: ", stringify!(pthread_mutex_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_mutex_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_mutex_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_mutexattr_t = ::std::os::raw::c_long; +pub type pthread_once_t = ::std::os::raw::c_int; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_rwlock_t { + pub __private: [i32; 14usize], +} +#[test] +fn bindgen_test_layout_pthread_rwlock_t() { + assert_eq!( + ::std::mem::size_of::(), + 56usize, + concat!("Size of: ", stringify!(pthread_rwlock_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pthread_rwlock_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_rwlock_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_rwlockattr_t = ::std::os::raw::c_long; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pthread_spinlock_t { + pub __private: i64, +} +#[test] +fn bindgen_test_layout_pthread_spinlock_t() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(pthread_spinlock_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(pthread_spinlock_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__private as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pthread_spinlock_t), + "::", + stringify!(__private) + ) + ); +} +pub type pthread_t = ::std::os::raw::c_long; +pub type __gid_t = __kernel_gid32_t; +pub type gid_t = __gid_t; +pub type __uid_t = __kernel_uid32_t; +pub type uid_t = __uid_t; +pub type __pid_t = __kernel_pid_t; +pub type pid_t = __pid_t; +pub type __id_t = u32; +pub type id_t = __id_t; +pub type blkcnt_t = ::std::os::raw::c_ulong; +pub type blksize_t = ::std::os::raw::c_ulong; +pub type caddr_t = __kernel_caddr_t; +pub type clock_t = __kernel_clock_t; +pub type __clockid_t = __kernel_clockid_t; +pub type clockid_t = __clockid_t; +pub type daddr_t = __kernel_daddr_t; +pub type fsblkcnt_t = ::std::os::raw::c_ulong; +pub type fsfilcnt_t = ::std::os::raw::c_ulong; +pub type __mode_t = __kernel_mode_t; +pub type mode_t = __mode_t; +pub type __key_t = __kernel_key_t; +pub type key_t = __key_t; +pub type __ino_t = __kernel_ino_t; +pub type ino_t = __ino_t; +pub type ino64_t = u64; +pub type __nlink_t = u32; +pub type nlink_t = __nlink_t; +pub type __timer_t = *mut ::std::os::raw::c_void; +pub type timer_t = __timer_t; +pub type __suseconds_t = __kernel_suseconds_t; +pub type suseconds_t = __suseconds_t; +pub type __useconds_t = u32; +pub type useconds_t = __useconds_t; +pub type dev_t = u64; +pub type __time_t = __kernel_time_t; +pub type time_t = __time_t; +pub type off_t = i64; +pub type loff_t = off_t; +pub type off64_t = loff_t; +pub type __socklen_t = u32; +pub type socklen_t = __socklen_t; +pub type __va_list = __builtin_va_list; +pub type ssize_t = __kernel_ssize_t; +pub type uint_t = ::std::os::raw::c_uint; +pub type uint = ::std::os::raw::c_uint; +pub type u_char = ::std::os::raw::c_uchar; +pub type u_short = ::std::os::raw::c_ushort; +pub type u_int = ::std::os::raw::c_uint; +pub type u_long = ::std::os::raw::c_ulong; +pub type u_int32_t = u32; +pub type u_int16_t = u16; +pub type u_int8_t = u8; +pub type u_int64_t = u64; +pub const AASSET_MODE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AASSET_MODE_RANDOM: ::std::os::raw::c_uint = 1; +pub const AASSET_MODE_STREAMING: ::std::os::raw::c_uint = 2; +pub const AASSET_MODE_BUFFER: ::std::os::raw::c_uint = 3; +pub type _bindgen_ty_1 = ::std::os::raw::c_uint; +pub const AKEYCODE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AKEYCODE_SOFT_LEFT: ::std::os::raw::c_uint = 1; +pub const AKEYCODE_SOFT_RIGHT: ::std::os::raw::c_uint = 2; +pub const AKEYCODE_HOME: ::std::os::raw::c_uint = 3; +pub const AKEYCODE_BACK: ::std::os::raw::c_uint = 4; +pub const AKEYCODE_CALL: ::std::os::raw::c_uint = 5; +pub const AKEYCODE_ENDCALL: ::std::os::raw::c_uint = 6; +pub const AKEYCODE_0: ::std::os::raw::c_uint = 7; +pub const AKEYCODE_1: ::std::os::raw::c_uint = 8; +pub const AKEYCODE_2: ::std::os::raw::c_uint = 9; +pub const AKEYCODE_3: ::std::os::raw::c_uint = 10; +pub const AKEYCODE_4: ::std::os::raw::c_uint = 11; +pub const AKEYCODE_5: ::std::os::raw::c_uint = 12; +pub const AKEYCODE_6: ::std::os::raw::c_uint = 13; +pub const AKEYCODE_7: ::std::os::raw::c_uint = 14; +pub const AKEYCODE_8: ::std::os::raw::c_uint = 15; +pub const AKEYCODE_9: ::std::os::raw::c_uint = 16; +pub const AKEYCODE_STAR: ::std::os::raw::c_uint = 17; +pub const AKEYCODE_POUND: ::std::os::raw::c_uint = 18; +pub const AKEYCODE_DPAD_UP: ::std::os::raw::c_uint = 19; +pub const AKEYCODE_DPAD_DOWN: ::std::os::raw::c_uint = 20; +pub const AKEYCODE_DPAD_LEFT: ::std::os::raw::c_uint = 21; +pub const AKEYCODE_DPAD_RIGHT: ::std::os::raw::c_uint = 22; +pub const AKEYCODE_DPAD_CENTER: ::std::os::raw::c_uint = 23; +pub const AKEYCODE_VOLUME_UP: ::std::os::raw::c_uint = 24; +pub const AKEYCODE_VOLUME_DOWN: ::std::os::raw::c_uint = 25; +pub const AKEYCODE_POWER: ::std::os::raw::c_uint = 26; +pub const AKEYCODE_CAMERA: ::std::os::raw::c_uint = 27; +pub const AKEYCODE_CLEAR: ::std::os::raw::c_uint = 28; +pub const AKEYCODE_A: ::std::os::raw::c_uint = 29; +pub const AKEYCODE_B: ::std::os::raw::c_uint = 30; +pub const AKEYCODE_C: ::std::os::raw::c_uint = 31; +pub const AKEYCODE_D: ::std::os::raw::c_uint = 32; +pub const AKEYCODE_E: ::std::os::raw::c_uint = 33; +pub const AKEYCODE_F: ::std::os::raw::c_uint = 34; +pub const AKEYCODE_G: ::std::os::raw::c_uint = 35; +pub const AKEYCODE_H: ::std::os::raw::c_uint = 36; +pub const AKEYCODE_I: ::std::os::raw::c_uint = 37; +pub const AKEYCODE_J: ::std::os::raw::c_uint = 38; +pub const AKEYCODE_K: ::std::os::raw::c_uint = 39; +pub const AKEYCODE_L: ::std::os::raw::c_uint = 40; +pub const AKEYCODE_M: ::std::os::raw::c_uint = 41; +pub const AKEYCODE_N: ::std::os::raw::c_uint = 42; +pub const AKEYCODE_O: ::std::os::raw::c_uint = 43; +pub const AKEYCODE_P: ::std::os::raw::c_uint = 44; +pub const AKEYCODE_Q: ::std::os::raw::c_uint = 45; +pub const AKEYCODE_R: ::std::os::raw::c_uint = 46; +pub const AKEYCODE_S: ::std::os::raw::c_uint = 47; +pub const AKEYCODE_T: ::std::os::raw::c_uint = 48; +pub const AKEYCODE_U: ::std::os::raw::c_uint = 49; +pub const AKEYCODE_V: ::std::os::raw::c_uint = 50; +pub const AKEYCODE_W: ::std::os::raw::c_uint = 51; +pub const AKEYCODE_X: ::std::os::raw::c_uint = 52; +pub const AKEYCODE_Y: ::std::os::raw::c_uint = 53; +pub const AKEYCODE_Z: ::std::os::raw::c_uint = 54; +pub const AKEYCODE_COMMA: ::std::os::raw::c_uint = 55; +pub const AKEYCODE_PERIOD: ::std::os::raw::c_uint = 56; +pub const AKEYCODE_ALT_LEFT: ::std::os::raw::c_uint = 57; +pub const AKEYCODE_ALT_RIGHT: ::std::os::raw::c_uint = 58; +pub const AKEYCODE_SHIFT_LEFT: ::std::os::raw::c_uint = 59; +pub const AKEYCODE_SHIFT_RIGHT: ::std::os::raw::c_uint = 60; +pub const AKEYCODE_TAB: ::std::os::raw::c_uint = 61; +pub const AKEYCODE_SPACE: ::std::os::raw::c_uint = 62; +pub const AKEYCODE_SYM: ::std::os::raw::c_uint = 63; +pub const AKEYCODE_EXPLORER: ::std::os::raw::c_uint = 64; +pub const AKEYCODE_ENVELOPE: ::std::os::raw::c_uint = 65; +pub const AKEYCODE_ENTER: ::std::os::raw::c_uint = 66; +pub const AKEYCODE_DEL: ::std::os::raw::c_uint = 67; +pub const AKEYCODE_GRAVE: ::std::os::raw::c_uint = 68; +pub const AKEYCODE_MINUS: ::std::os::raw::c_uint = 69; +pub const AKEYCODE_EQUALS: ::std::os::raw::c_uint = 70; +pub const AKEYCODE_LEFT_BRACKET: ::std::os::raw::c_uint = 71; +pub const AKEYCODE_RIGHT_BRACKET: ::std::os::raw::c_uint = 72; +pub const AKEYCODE_BACKSLASH: ::std::os::raw::c_uint = 73; +pub const AKEYCODE_SEMICOLON: ::std::os::raw::c_uint = 74; +pub const AKEYCODE_APOSTROPHE: ::std::os::raw::c_uint = 75; +pub const AKEYCODE_SLASH: ::std::os::raw::c_uint = 76; +pub const AKEYCODE_AT: ::std::os::raw::c_uint = 77; +pub const AKEYCODE_NUM: ::std::os::raw::c_uint = 78; +pub const AKEYCODE_HEADSETHOOK: ::std::os::raw::c_uint = 79; +pub const AKEYCODE_FOCUS: ::std::os::raw::c_uint = 80; +pub const AKEYCODE_PLUS: ::std::os::raw::c_uint = 81; +pub const AKEYCODE_MENU: ::std::os::raw::c_uint = 82; +pub const AKEYCODE_NOTIFICATION: ::std::os::raw::c_uint = 83; +pub const AKEYCODE_SEARCH: ::std::os::raw::c_uint = 84; +pub const AKEYCODE_MEDIA_PLAY_PAUSE: ::std::os::raw::c_uint = 85; +pub const AKEYCODE_MEDIA_STOP: ::std::os::raw::c_uint = 86; +pub const AKEYCODE_MEDIA_NEXT: ::std::os::raw::c_uint = 87; +pub const AKEYCODE_MEDIA_PREVIOUS: ::std::os::raw::c_uint = 88; +pub const AKEYCODE_MEDIA_REWIND: ::std::os::raw::c_uint = 89; +pub const AKEYCODE_MEDIA_FAST_FORWARD: ::std::os::raw::c_uint = 90; +pub const AKEYCODE_MUTE: ::std::os::raw::c_uint = 91; +pub const AKEYCODE_PAGE_UP: ::std::os::raw::c_uint = 92; +pub const AKEYCODE_PAGE_DOWN: ::std::os::raw::c_uint = 93; +pub const AKEYCODE_PICTSYMBOLS: ::std::os::raw::c_uint = 94; +pub const AKEYCODE_SWITCH_CHARSET: ::std::os::raw::c_uint = 95; +pub const AKEYCODE_BUTTON_A: ::std::os::raw::c_uint = 96; +pub const AKEYCODE_BUTTON_B: ::std::os::raw::c_uint = 97; +pub const AKEYCODE_BUTTON_C: ::std::os::raw::c_uint = 98; +pub const AKEYCODE_BUTTON_X: ::std::os::raw::c_uint = 99; +pub const AKEYCODE_BUTTON_Y: ::std::os::raw::c_uint = 100; +pub const AKEYCODE_BUTTON_Z: ::std::os::raw::c_uint = 101; +pub const AKEYCODE_BUTTON_L1: ::std::os::raw::c_uint = 102; +pub const AKEYCODE_BUTTON_R1: ::std::os::raw::c_uint = 103; +pub const AKEYCODE_BUTTON_L2: ::std::os::raw::c_uint = 104; +pub const AKEYCODE_BUTTON_R2: ::std::os::raw::c_uint = 105; +pub const AKEYCODE_BUTTON_THUMBL: ::std::os::raw::c_uint = 106; +pub const AKEYCODE_BUTTON_THUMBR: ::std::os::raw::c_uint = 107; +pub const AKEYCODE_BUTTON_START: ::std::os::raw::c_uint = 108; +pub const AKEYCODE_BUTTON_SELECT: ::std::os::raw::c_uint = 109; +pub const AKEYCODE_BUTTON_MODE: ::std::os::raw::c_uint = 110; +pub const AKEYCODE_ESCAPE: ::std::os::raw::c_uint = 111; +pub const AKEYCODE_FORWARD_DEL: ::std::os::raw::c_uint = 112; +pub const AKEYCODE_CTRL_LEFT: ::std::os::raw::c_uint = 113; +pub const AKEYCODE_CTRL_RIGHT: ::std::os::raw::c_uint = 114; +pub const AKEYCODE_CAPS_LOCK: ::std::os::raw::c_uint = 115; +pub const AKEYCODE_SCROLL_LOCK: ::std::os::raw::c_uint = 116; +pub const AKEYCODE_META_LEFT: ::std::os::raw::c_uint = 117; +pub const AKEYCODE_META_RIGHT: ::std::os::raw::c_uint = 118; +pub const AKEYCODE_FUNCTION: ::std::os::raw::c_uint = 119; +pub const AKEYCODE_SYSRQ: ::std::os::raw::c_uint = 120; +pub const AKEYCODE_BREAK: ::std::os::raw::c_uint = 121; +pub const AKEYCODE_MOVE_HOME: ::std::os::raw::c_uint = 122; +pub const AKEYCODE_MOVE_END: ::std::os::raw::c_uint = 123; +pub const AKEYCODE_INSERT: ::std::os::raw::c_uint = 124; +pub const AKEYCODE_FORWARD: ::std::os::raw::c_uint = 125; +pub const AKEYCODE_MEDIA_PLAY: ::std::os::raw::c_uint = 126; +pub const AKEYCODE_MEDIA_PAUSE: ::std::os::raw::c_uint = 127; +pub const AKEYCODE_MEDIA_CLOSE: ::std::os::raw::c_uint = 128; +pub const AKEYCODE_MEDIA_EJECT: ::std::os::raw::c_uint = 129; +pub const AKEYCODE_MEDIA_RECORD: ::std::os::raw::c_uint = 130; +pub const AKEYCODE_F1: ::std::os::raw::c_uint = 131; +pub const AKEYCODE_F2: ::std::os::raw::c_uint = 132; +pub const AKEYCODE_F3: ::std::os::raw::c_uint = 133; +pub const AKEYCODE_F4: ::std::os::raw::c_uint = 134; +pub const AKEYCODE_F5: ::std::os::raw::c_uint = 135; +pub const AKEYCODE_F6: ::std::os::raw::c_uint = 136; +pub const AKEYCODE_F7: ::std::os::raw::c_uint = 137; +pub const AKEYCODE_F8: ::std::os::raw::c_uint = 138; +pub const AKEYCODE_F9: ::std::os::raw::c_uint = 139; +pub const AKEYCODE_F10: ::std::os::raw::c_uint = 140; +pub const AKEYCODE_F11: ::std::os::raw::c_uint = 141; +pub const AKEYCODE_F12: ::std::os::raw::c_uint = 142; +pub const AKEYCODE_NUM_LOCK: ::std::os::raw::c_uint = 143; +pub const AKEYCODE_NUMPAD_0: ::std::os::raw::c_uint = 144; +pub const AKEYCODE_NUMPAD_1: ::std::os::raw::c_uint = 145; +pub const AKEYCODE_NUMPAD_2: ::std::os::raw::c_uint = 146; +pub const AKEYCODE_NUMPAD_3: ::std::os::raw::c_uint = 147; +pub const AKEYCODE_NUMPAD_4: ::std::os::raw::c_uint = 148; +pub const AKEYCODE_NUMPAD_5: ::std::os::raw::c_uint = 149; +pub const AKEYCODE_NUMPAD_6: ::std::os::raw::c_uint = 150; +pub const AKEYCODE_NUMPAD_7: ::std::os::raw::c_uint = 151; +pub const AKEYCODE_NUMPAD_8: ::std::os::raw::c_uint = 152; +pub const AKEYCODE_NUMPAD_9: ::std::os::raw::c_uint = 153; +pub const AKEYCODE_NUMPAD_DIVIDE: ::std::os::raw::c_uint = 154; +pub const AKEYCODE_NUMPAD_MULTIPLY: ::std::os::raw::c_uint = 155; +pub const AKEYCODE_NUMPAD_SUBTRACT: ::std::os::raw::c_uint = 156; +pub const AKEYCODE_NUMPAD_ADD: ::std::os::raw::c_uint = 157; +pub const AKEYCODE_NUMPAD_DOT: ::std::os::raw::c_uint = 158; +pub const AKEYCODE_NUMPAD_COMMA: ::std::os::raw::c_uint = 159; +pub const AKEYCODE_NUMPAD_ENTER: ::std::os::raw::c_uint = 160; +pub const AKEYCODE_NUMPAD_EQUALS: ::std::os::raw::c_uint = 161; +pub const AKEYCODE_NUMPAD_LEFT_PAREN: ::std::os::raw::c_uint = 162; +pub const AKEYCODE_NUMPAD_RIGHT_PAREN: ::std::os::raw::c_uint = 163; +pub const AKEYCODE_VOLUME_MUTE: ::std::os::raw::c_uint = 164; +pub const AKEYCODE_INFO: ::std::os::raw::c_uint = 165; +pub const AKEYCODE_CHANNEL_UP: ::std::os::raw::c_uint = 166; +pub const AKEYCODE_CHANNEL_DOWN: ::std::os::raw::c_uint = 167; +pub const AKEYCODE_ZOOM_IN: ::std::os::raw::c_uint = 168; +pub const AKEYCODE_ZOOM_OUT: ::std::os::raw::c_uint = 169; +pub const AKEYCODE_TV: ::std::os::raw::c_uint = 170; +pub const AKEYCODE_WINDOW: ::std::os::raw::c_uint = 171; +pub const AKEYCODE_GUIDE: ::std::os::raw::c_uint = 172; +pub const AKEYCODE_DVR: ::std::os::raw::c_uint = 173; +pub const AKEYCODE_BOOKMARK: ::std::os::raw::c_uint = 174; +pub const AKEYCODE_CAPTIONS: ::std::os::raw::c_uint = 175; +pub const AKEYCODE_SETTINGS: ::std::os::raw::c_uint = 176; +pub const AKEYCODE_TV_POWER: ::std::os::raw::c_uint = 177; +pub const AKEYCODE_TV_INPUT: ::std::os::raw::c_uint = 178; +pub const AKEYCODE_STB_POWER: ::std::os::raw::c_uint = 179; +pub const AKEYCODE_STB_INPUT: ::std::os::raw::c_uint = 180; +pub const AKEYCODE_AVR_POWER: ::std::os::raw::c_uint = 181; +pub const AKEYCODE_AVR_INPUT: ::std::os::raw::c_uint = 182; +pub const AKEYCODE_PROG_RED: ::std::os::raw::c_uint = 183; +pub const AKEYCODE_PROG_GREEN: ::std::os::raw::c_uint = 184; +pub const AKEYCODE_PROG_YELLOW: ::std::os::raw::c_uint = 185; +pub const AKEYCODE_PROG_BLUE: ::std::os::raw::c_uint = 186; +pub const AKEYCODE_APP_SWITCH: ::std::os::raw::c_uint = 187; +pub const AKEYCODE_BUTTON_1: ::std::os::raw::c_uint = 188; +pub const AKEYCODE_BUTTON_2: ::std::os::raw::c_uint = 189; +pub const AKEYCODE_BUTTON_3: ::std::os::raw::c_uint = 190; +pub const AKEYCODE_BUTTON_4: ::std::os::raw::c_uint = 191; +pub const AKEYCODE_BUTTON_5: ::std::os::raw::c_uint = 192; +pub const AKEYCODE_BUTTON_6: ::std::os::raw::c_uint = 193; +pub const AKEYCODE_BUTTON_7: ::std::os::raw::c_uint = 194; +pub const AKEYCODE_BUTTON_8: ::std::os::raw::c_uint = 195; +pub const AKEYCODE_BUTTON_9: ::std::os::raw::c_uint = 196; +pub const AKEYCODE_BUTTON_10: ::std::os::raw::c_uint = 197; +pub const AKEYCODE_BUTTON_11: ::std::os::raw::c_uint = 198; +pub const AKEYCODE_BUTTON_12: ::std::os::raw::c_uint = 199; +pub const AKEYCODE_BUTTON_13: ::std::os::raw::c_uint = 200; +pub const AKEYCODE_BUTTON_14: ::std::os::raw::c_uint = 201; +pub const AKEYCODE_BUTTON_15: ::std::os::raw::c_uint = 202; +pub const AKEYCODE_BUTTON_16: ::std::os::raw::c_uint = 203; +pub const AKEYCODE_LANGUAGE_SWITCH: ::std::os::raw::c_uint = 204; +pub const AKEYCODE_MANNER_MODE: ::std::os::raw::c_uint = 205; +pub const AKEYCODE_3D_MODE: ::std::os::raw::c_uint = 206; +pub const AKEYCODE_CONTACTS: ::std::os::raw::c_uint = 207; +pub const AKEYCODE_CALENDAR: ::std::os::raw::c_uint = 208; +pub const AKEYCODE_MUSIC: ::std::os::raw::c_uint = 209; +pub const AKEYCODE_CALCULATOR: ::std::os::raw::c_uint = 210; +pub const AKEYCODE_ZENKAKU_HANKAKU: ::std::os::raw::c_uint = 211; +pub const AKEYCODE_EISU: ::std::os::raw::c_uint = 212; +pub const AKEYCODE_MUHENKAN: ::std::os::raw::c_uint = 213; +pub const AKEYCODE_HENKAN: ::std::os::raw::c_uint = 214; +pub const AKEYCODE_KATAKANA_HIRAGANA: ::std::os::raw::c_uint = 215; +pub const AKEYCODE_YEN: ::std::os::raw::c_uint = 216; +pub const AKEYCODE_RO: ::std::os::raw::c_uint = 217; +pub const AKEYCODE_KANA: ::std::os::raw::c_uint = 218; +pub const AKEYCODE_ASSIST: ::std::os::raw::c_uint = 219; +pub const AKEYCODE_BRIGHTNESS_DOWN: ::std::os::raw::c_uint = 220; +pub const AKEYCODE_BRIGHTNESS_UP: ::std::os::raw::c_uint = 221; +pub const AKEYCODE_MEDIA_AUDIO_TRACK: ::std::os::raw::c_uint = 222; +pub const AKEYCODE_SLEEP: ::std::os::raw::c_uint = 223; +pub const AKEYCODE_WAKEUP: ::std::os::raw::c_uint = 224; +pub const AKEYCODE_PAIRING: ::std::os::raw::c_uint = 225; +pub const AKEYCODE_MEDIA_TOP_MENU: ::std::os::raw::c_uint = 226; +pub const AKEYCODE_11: ::std::os::raw::c_uint = 227; +pub const AKEYCODE_12: ::std::os::raw::c_uint = 228; +pub const AKEYCODE_LAST_CHANNEL: ::std::os::raw::c_uint = 229; +pub const AKEYCODE_TV_DATA_SERVICE: ::std::os::raw::c_uint = 230; +pub const AKEYCODE_VOICE_ASSIST: ::std::os::raw::c_uint = 231; +pub const AKEYCODE_TV_RADIO_SERVICE: ::std::os::raw::c_uint = 232; +pub const AKEYCODE_TV_TELETEXT: ::std::os::raw::c_uint = 233; +pub const AKEYCODE_TV_NUMBER_ENTRY: ::std::os::raw::c_uint = 234; +pub const AKEYCODE_TV_TERRESTRIAL_ANALOG: ::std::os::raw::c_uint = 235; +pub const AKEYCODE_TV_TERRESTRIAL_DIGITAL: ::std::os::raw::c_uint = 236; +pub const AKEYCODE_TV_SATELLITE: ::std::os::raw::c_uint = 237; +pub const AKEYCODE_TV_SATELLITE_BS: ::std::os::raw::c_uint = 238; +pub const AKEYCODE_TV_SATELLITE_CS: ::std::os::raw::c_uint = 239; +pub const AKEYCODE_TV_SATELLITE_SERVICE: ::std::os::raw::c_uint = 240; +pub const AKEYCODE_TV_NETWORK: ::std::os::raw::c_uint = 241; +pub const AKEYCODE_TV_ANTENNA_CABLE: ::std::os::raw::c_uint = 242; +pub const AKEYCODE_TV_INPUT_HDMI_1: ::std::os::raw::c_uint = 243; +pub const AKEYCODE_TV_INPUT_HDMI_2: ::std::os::raw::c_uint = 244; +pub const AKEYCODE_TV_INPUT_HDMI_3: ::std::os::raw::c_uint = 245; +pub const AKEYCODE_TV_INPUT_HDMI_4: ::std::os::raw::c_uint = 246; +pub const AKEYCODE_TV_INPUT_COMPOSITE_1: ::std::os::raw::c_uint = 247; +pub const AKEYCODE_TV_INPUT_COMPOSITE_2: ::std::os::raw::c_uint = 248; +pub const AKEYCODE_TV_INPUT_COMPONENT_1: ::std::os::raw::c_uint = 249; +pub const AKEYCODE_TV_INPUT_COMPONENT_2: ::std::os::raw::c_uint = 250; +pub const AKEYCODE_TV_INPUT_VGA_1: ::std::os::raw::c_uint = 251; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION: ::std::os::raw::c_uint = 252; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP: ::std::os::raw::c_uint = 253; +pub const AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN: ::std::os::raw::c_uint = 254; +pub const AKEYCODE_TV_ZOOM_MODE: ::std::os::raw::c_uint = 255; +pub const AKEYCODE_TV_CONTENTS_MENU: ::std::os::raw::c_uint = 256; +pub const AKEYCODE_TV_MEDIA_CONTEXT_MENU: ::std::os::raw::c_uint = 257; +pub const AKEYCODE_TV_TIMER_PROGRAMMING: ::std::os::raw::c_uint = 258; +pub const AKEYCODE_HELP: ::std::os::raw::c_uint = 259; +pub const AKEYCODE_NAVIGATE_PREVIOUS: ::std::os::raw::c_uint = 260; +pub const AKEYCODE_NAVIGATE_NEXT: ::std::os::raw::c_uint = 261; +pub const AKEYCODE_NAVIGATE_IN: ::std::os::raw::c_uint = 262; +pub const AKEYCODE_NAVIGATE_OUT: ::std::os::raw::c_uint = 263; +pub const AKEYCODE_STEM_PRIMARY: ::std::os::raw::c_uint = 264; +pub const AKEYCODE_STEM_1: ::std::os::raw::c_uint = 265; +pub const AKEYCODE_STEM_2: ::std::os::raw::c_uint = 266; +pub const AKEYCODE_STEM_3: ::std::os::raw::c_uint = 267; +pub const AKEYCODE_DPAD_UP_LEFT: ::std::os::raw::c_uint = 268; +pub const AKEYCODE_DPAD_DOWN_LEFT: ::std::os::raw::c_uint = 269; +pub const AKEYCODE_DPAD_UP_RIGHT: ::std::os::raw::c_uint = 270; +pub const AKEYCODE_DPAD_DOWN_RIGHT: ::std::os::raw::c_uint = 271; +pub const AKEYCODE_MEDIA_SKIP_FORWARD: ::std::os::raw::c_uint = 272; +pub const AKEYCODE_MEDIA_SKIP_BACKWARD: ::std::os::raw::c_uint = 273; +pub const AKEYCODE_MEDIA_STEP_FORWARD: ::std::os::raw::c_uint = 274; +pub const AKEYCODE_MEDIA_STEP_BACKWARD: ::std::os::raw::c_uint = 275; +pub const AKEYCODE_SOFT_SLEEP: ::std::os::raw::c_uint = 276; +pub const AKEYCODE_CUT: ::std::os::raw::c_uint = 277; +pub const AKEYCODE_COPY: ::std::os::raw::c_uint = 278; +pub const AKEYCODE_PASTE: ::std::os::raw::c_uint = 279; +pub const AKEYCODE_SYSTEM_NAVIGATION_UP: ::std::os::raw::c_uint = 280; +pub const AKEYCODE_SYSTEM_NAVIGATION_DOWN: ::std::os::raw::c_uint = 281; +pub const AKEYCODE_SYSTEM_NAVIGATION_LEFT: ::std::os::raw::c_uint = 282; +pub const AKEYCODE_SYSTEM_NAVIGATION_RIGHT: ::std::os::raw::c_uint = 283; +pub const AKEYCODE_ALL_APPS: ::std::os::raw::c_uint = 284; +pub const AKEYCODE_REFRESH: ::std::os::raw::c_uint = 285; +pub const AKEYCODE_THUMBS_UP: ::std::os::raw::c_uint = 286; +pub const AKEYCODE_THUMBS_DOWN: ::std::os::raw::c_uint = 287; +pub const AKEYCODE_PROFILE_SWITCH: ::std::os::raw::c_uint = 288; +pub type _bindgen_ty_2 = ::std::os::raw::c_uint; +pub const ALOOPER_PREPARE_ALLOW_NON_CALLBACKS: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_3 = ::std::os::raw::c_uint; +pub const ALOOPER_POLL_WAKE: ::std::os::raw::c_int = -1; +pub const ALOOPER_POLL_CALLBACK: ::std::os::raw::c_int = -2; +pub const ALOOPER_POLL_TIMEOUT: ::std::os::raw::c_int = -3; +pub const ALOOPER_POLL_ERROR: ::std::os::raw::c_int = -4; +pub type _bindgen_ty_4 = ::std::os::raw::c_int; +pub const ALOOPER_EVENT_INPUT: ::std::os::raw::c_uint = 1; +pub const ALOOPER_EVENT_OUTPUT: ::std::os::raw::c_uint = 2; +pub const ALOOPER_EVENT_ERROR: ::std::os::raw::c_uint = 4; +pub const ALOOPER_EVENT_HANGUP: ::std::os::raw::c_uint = 8; +pub const ALOOPER_EVENT_INVALID: ::std::os::raw::c_uint = 16; +pub type _bindgen_ty_5 = ::std::os::raw::c_uint; +pub const AKEY_STATE_UNKNOWN: ::std::os::raw::c_int = -1; +pub const AKEY_STATE_UP: ::std::os::raw::c_int = 0; +pub const AKEY_STATE_DOWN: ::std::os::raw::c_int = 1; +pub const AKEY_STATE_VIRTUAL: ::std::os::raw::c_int = 2; +pub type _bindgen_ty_6 = ::std::os::raw::c_int; +pub const AMETA_NONE: ::std::os::raw::c_uint = 0; +pub const AMETA_ALT_ON: ::std::os::raw::c_uint = 2; +pub const AMETA_ALT_LEFT_ON: ::std::os::raw::c_uint = 16; +pub const AMETA_ALT_RIGHT_ON: ::std::os::raw::c_uint = 32; +pub const AMETA_SHIFT_ON: ::std::os::raw::c_uint = 1; +pub const AMETA_SHIFT_LEFT_ON: ::std::os::raw::c_uint = 64; +pub const AMETA_SHIFT_RIGHT_ON: ::std::os::raw::c_uint = 128; +pub const AMETA_SYM_ON: ::std::os::raw::c_uint = 4; +pub const AMETA_FUNCTION_ON: ::std::os::raw::c_uint = 8; +pub const AMETA_CTRL_ON: ::std::os::raw::c_uint = 4096; +pub const AMETA_CTRL_LEFT_ON: ::std::os::raw::c_uint = 8192; +pub const AMETA_CTRL_RIGHT_ON: ::std::os::raw::c_uint = 16384; +pub const AMETA_META_ON: ::std::os::raw::c_uint = 65536; +pub const AMETA_META_LEFT_ON: ::std::os::raw::c_uint = 131072; +pub const AMETA_META_RIGHT_ON: ::std::os::raw::c_uint = 262144; +pub const AMETA_CAPS_LOCK_ON: ::std::os::raw::c_uint = 1048576; +pub const AMETA_NUM_LOCK_ON: ::std::os::raw::c_uint = 2097152; +pub const AMETA_SCROLL_LOCK_ON: ::std::os::raw::c_uint = 4194304; +pub type _bindgen_ty_7 = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AInputEvent { + _unused: [u8; 0], +} +pub const AINPUT_EVENT_TYPE_KEY: ::std::os::raw::c_uint = 1; +pub const AINPUT_EVENT_TYPE_MOTION: ::std::os::raw::c_uint = 2; +pub const AINPUT_EVENT_TYPE_FOCUS: ::std::os::raw::c_uint = 3; +pub type _bindgen_ty_8 = ::std::os::raw::c_uint; +pub const AKEY_EVENT_ACTION_DOWN: ::std::os::raw::c_uint = 0; +pub const AKEY_EVENT_ACTION_UP: ::std::os::raw::c_uint = 1; +pub const AKEY_EVENT_ACTION_MULTIPLE: ::std::os::raw::c_uint = 2; +pub type _bindgen_ty_9 = ::std::os::raw::c_uint; +pub const AKEY_EVENT_FLAG_WOKE_HERE: ::std::os::raw::c_uint = 1; +pub const AKEY_EVENT_FLAG_SOFT_KEYBOARD: ::std::os::raw::c_uint = 2; +pub const AKEY_EVENT_FLAG_KEEP_TOUCH_MODE: ::std::os::raw::c_uint = 4; +pub const AKEY_EVENT_FLAG_FROM_SYSTEM: ::std::os::raw::c_uint = 8; +pub const AKEY_EVENT_FLAG_EDITOR_ACTION: ::std::os::raw::c_uint = 16; +pub const AKEY_EVENT_FLAG_CANCELED: ::std::os::raw::c_uint = 32; +pub const AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY: ::std::os::raw::c_uint = 64; +pub const AKEY_EVENT_FLAG_LONG_PRESS: ::std::os::raw::c_uint = 128; +pub const AKEY_EVENT_FLAG_CANCELED_LONG_PRESS: ::std::os::raw::c_uint = 256; +pub const AKEY_EVENT_FLAG_TRACKING: ::std::os::raw::c_uint = 512; +pub const AKEY_EVENT_FLAG_FALLBACK: ::std::os::raw::c_uint = 1024; +pub type _bindgen_ty_10 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_ACTION_MASK: ::std::os::raw::c_uint = 255; +pub const AMOTION_EVENT_ACTION_POINTER_INDEX_MASK: ::std::os::raw::c_uint = 65280; +pub const AMOTION_EVENT_ACTION_DOWN: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_ACTION_UP: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_ACTION_MOVE: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_ACTION_CANCEL: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_ACTION_OUTSIDE: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_ACTION_POINTER_DOWN: ::std::os::raw::c_uint = 5; +pub const AMOTION_EVENT_ACTION_POINTER_UP: ::std::os::raw::c_uint = 6; +pub const AMOTION_EVENT_ACTION_HOVER_MOVE: ::std::os::raw::c_uint = 7; +pub const AMOTION_EVENT_ACTION_SCROLL: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_ACTION_HOVER_ENTER: ::std::os::raw::c_uint = 9; +pub const AMOTION_EVENT_ACTION_HOVER_EXIT: ::std::os::raw::c_uint = 10; +pub const AMOTION_EVENT_ACTION_BUTTON_PRESS: ::std::os::raw::c_uint = 11; +pub const AMOTION_EVENT_ACTION_BUTTON_RELEASE: ::std::os::raw::c_uint = 12; +pub type _bindgen_ty_11 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_12 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_EDGE_FLAG_NONE: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_EDGE_FLAG_TOP: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_EDGE_FLAG_BOTTOM: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_EDGE_FLAG_LEFT: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_EDGE_FLAG_RIGHT: ::std::os::raw::c_uint = 8; +pub type _bindgen_ty_13 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_AXIS_X: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_AXIS_Y: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_AXIS_PRESSURE: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_AXIS_SIZE: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_AXIS_TOUCH_MAJOR: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_AXIS_TOUCH_MINOR: ::std::os::raw::c_uint = 5; +pub const AMOTION_EVENT_AXIS_TOOL_MAJOR: ::std::os::raw::c_uint = 6; +pub const AMOTION_EVENT_AXIS_TOOL_MINOR: ::std::os::raw::c_uint = 7; +pub const AMOTION_EVENT_AXIS_ORIENTATION: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_AXIS_VSCROLL: ::std::os::raw::c_uint = 9; +pub const AMOTION_EVENT_AXIS_HSCROLL: ::std::os::raw::c_uint = 10; +pub const AMOTION_EVENT_AXIS_Z: ::std::os::raw::c_uint = 11; +pub const AMOTION_EVENT_AXIS_RX: ::std::os::raw::c_uint = 12; +pub const AMOTION_EVENT_AXIS_RY: ::std::os::raw::c_uint = 13; +pub const AMOTION_EVENT_AXIS_RZ: ::std::os::raw::c_uint = 14; +pub const AMOTION_EVENT_AXIS_HAT_X: ::std::os::raw::c_uint = 15; +pub const AMOTION_EVENT_AXIS_HAT_Y: ::std::os::raw::c_uint = 16; +pub const AMOTION_EVENT_AXIS_LTRIGGER: ::std::os::raw::c_uint = 17; +pub const AMOTION_EVENT_AXIS_RTRIGGER: ::std::os::raw::c_uint = 18; +pub const AMOTION_EVENT_AXIS_THROTTLE: ::std::os::raw::c_uint = 19; +pub const AMOTION_EVENT_AXIS_RUDDER: ::std::os::raw::c_uint = 20; +pub const AMOTION_EVENT_AXIS_WHEEL: ::std::os::raw::c_uint = 21; +pub const AMOTION_EVENT_AXIS_GAS: ::std::os::raw::c_uint = 22; +pub const AMOTION_EVENT_AXIS_BRAKE: ::std::os::raw::c_uint = 23; +pub const AMOTION_EVENT_AXIS_DISTANCE: ::std::os::raw::c_uint = 24; +pub const AMOTION_EVENT_AXIS_TILT: ::std::os::raw::c_uint = 25; +pub const AMOTION_EVENT_AXIS_SCROLL: ::std::os::raw::c_uint = 26; +pub const AMOTION_EVENT_AXIS_RELATIVE_X: ::std::os::raw::c_uint = 27; +pub const AMOTION_EVENT_AXIS_RELATIVE_Y: ::std::os::raw::c_uint = 28; +pub const AMOTION_EVENT_AXIS_GENERIC_1: ::std::os::raw::c_uint = 32; +pub const AMOTION_EVENT_AXIS_GENERIC_2: ::std::os::raw::c_uint = 33; +pub const AMOTION_EVENT_AXIS_GENERIC_3: ::std::os::raw::c_uint = 34; +pub const AMOTION_EVENT_AXIS_GENERIC_4: ::std::os::raw::c_uint = 35; +pub const AMOTION_EVENT_AXIS_GENERIC_5: ::std::os::raw::c_uint = 36; +pub const AMOTION_EVENT_AXIS_GENERIC_6: ::std::os::raw::c_uint = 37; +pub const AMOTION_EVENT_AXIS_GENERIC_7: ::std::os::raw::c_uint = 38; +pub const AMOTION_EVENT_AXIS_GENERIC_8: ::std::os::raw::c_uint = 39; +pub const AMOTION_EVENT_AXIS_GENERIC_9: ::std::os::raw::c_uint = 40; +pub const AMOTION_EVENT_AXIS_GENERIC_10: ::std::os::raw::c_uint = 41; +pub const AMOTION_EVENT_AXIS_GENERIC_11: ::std::os::raw::c_uint = 42; +pub const AMOTION_EVENT_AXIS_GENERIC_12: ::std::os::raw::c_uint = 43; +pub const AMOTION_EVENT_AXIS_GENERIC_13: ::std::os::raw::c_uint = 44; +pub const AMOTION_EVENT_AXIS_GENERIC_14: ::std::os::raw::c_uint = 45; +pub const AMOTION_EVENT_AXIS_GENERIC_15: ::std::os::raw::c_uint = 46; +pub const AMOTION_EVENT_AXIS_GENERIC_16: ::std::os::raw::c_uint = 47; +pub type _bindgen_ty_14 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_BUTTON_PRIMARY: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_BUTTON_SECONDARY: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_BUTTON_TERTIARY: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_BUTTON_BACK: ::std::os::raw::c_uint = 8; +pub const AMOTION_EVENT_BUTTON_FORWARD: ::std::os::raw::c_uint = 16; +pub const AMOTION_EVENT_BUTTON_STYLUS_PRIMARY: ::std::os::raw::c_uint = 32; +pub const AMOTION_EVENT_BUTTON_STYLUS_SECONDARY: ::std::os::raw::c_uint = 64; +pub type _bindgen_ty_15 = ::std::os::raw::c_uint; +pub const AMOTION_EVENT_TOOL_TYPE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AMOTION_EVENT_TOOL_TYPE_FINGER: ::std::os::raw::c_uint = 1; +pub const AMOTION_EVENT_TOOL_TYPE_STYLUS: ::std::os::raw::c_uint = 2; +pub const AMOTION_EVENT_TOOL_TYPE_MOUSE: ::std::os::raw::c_uint = 3; +pub const AMOTION_EVENT_TOOL_TYPE_ERASER: ::std::os::raw::c_uint = 4; +pub const AMOTION_EVENT_TOOL_TYPE_PALM: ::std::os::raw::c_uint = 5; +pub type _bindgen_ty_16 = ::std::os::raw::c_uint; +pub const AINPUT_SOURCE_CLASS_MASK: ::std::os::raw::c_uint = 255; +pub const AINPUT_SOURCE_CLASS_NONE: ::std::os::raw::c_uint = 0; +pub const AINPUT_SOURCE_CLASS_BUTTON: ::std::os::raw::c_uint = 1; +pub const AINPUT_SOURCE_CLASS_POINTER: ::std::os::raw::c_uint = 2; +pub const AINPUT_SOURCE_CLASS_NAVIGATION: ::std::os::raw::c_uint = 4; +pub const AINPUT_SOURCE_CLASS_POSITION: ::std::os::raw::c_uint = 8; +pub const AINPUT_SOURCE_CLASS_JOYSTICK: ::std::os::raw::c_uint = 16; +pub type _bindgen_ty_17 = ::std::os::raw::c_uint; +pub const AINPUT_SOURCE_UNKNOWN: ::std::os::raw::c_uint = 0; +pub const AINPUT_SOURCE_KEYBOARD: ::std::os::raw::c_uint = 257; +pub const AINPUT_SOURCE_DPAD: ::std::os::raw::c_uint = 513; +pub const AINPUT_SOURCE_GAMEPAD: ::std::os::raw::c_uint = 1025; +pub const AINPUT_SOURCE_TOUCHSCREEN: ::std::os::raw::c_uint = 4098; +pub const AINPUT_SOURCE_MOUSE: ::std::os::raw::c_uint = 8194; +pub const AINPUT_SOURCE_STYLUS: ::std::os::raw::c_uint = 16386; +pub const AINPUT_SOURCE_BLUETOOTH_STYLUS: ::std::os::raw::c_uint = 49154; +pub const AINPUT_SOURCE_TRACKBALL: ::std::os::raw::c_uint = 65540; +pub const AINPUT_SOURCE_MOUSE_RELATIVE: ::std::os::raw::c_uint = 131076; +pub const AINPUT_SOURCE_TOUCHPAD: ::std::os::raw::c_uint = 1048584; +pub const AINPUT_SOURCE_TOUCH_NAVIGATION: ::std::os::raw::c_uint = 2097152; +pub const AINPUT_SOURCE_JOYSTICK: ::std::os::raw::c_uint = 16777232; +pub const AINPUT_SOURCE_ROTARY_ENCODER: ::std::os::raw::c_uint = 4194304; +pub const AINPUT_SOURCE_ANY: ::std::os::raw::c_uint = 4294967040; +pub type _bindgen_ty_18 = ::std::os::raw::c_uint; +pub const AINPUT_KEYBOARD_TYPE_NONE: ::std::os::raw::c_uint = 0; +pub const AINPUT_KEYBOARD_TYPE_NON_ALPHABETIC: ::std::os::raw::c_uint = 1; +pub const AINPUT_KEYBOARD_TYPE_ALPHABETIC: ::std::os::raw::c_uint = 2; +pub type _bindgen_ty_19 = ::std::os::raw::c_uint; +pub const AINPUT_MOTION_RANGE_X: ::std::os::raw::c_uint = 0; +pub const AINPUT_MOTION_RANGE_Y: ::std::os::raw::c_uint = 1; +pub const AINPUT_MOTION_RANGE_PRESSURE: ::std::os::raw::c_uint = 2; +pub const AINPUT_MOTION_RANGE_SIZE: ::std::os::raw::c_uint = 3; +pub const AINPUT_MOTION_RANGE_TOUCH_MAJOR: ::std::os::raw::c_uint = 4; +pub const AINPUT_MOTION_RANGE_TOUCH_MINOR: ::std::os::raw::c_uint = 5; +pub const AINPUT_MOTION_RANGE_TOOL_MAJOR: ::std::os::raw::c_uint = 6; +pub const AINPUT_MOTION_RANGE_TOOL_MINOR: ::std::os::raw::c_uint = 7; +pub const AINPUT_MOTION_RANGE_ORIENTATION: ::std::os::raw::c_uint = 8; +pub type _bindgen_ty_20 = ::std::os::raw::c_uint; +extern "C" { + pub fn AInputEvent_getType(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AInputEvent_getDeviceId(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AInputEvent_getSource(event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getAction(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getFlags(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getKeyCode(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getScanCode(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getMetaState(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getRepeatCount(key_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AKeyEvent_getDownTime(key_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AKeyEvent_getEventTime(key_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getAction(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getFlags(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getMetaState(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getButtonState(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getEdgeFlags(motion_event: *const AInputEvent) -> i32; +} +extern "C" { + pub fn AMotionEvent_getDownTime(motion_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getEventTime(motion_event: *const AInputEvent) -> i64; +} +extern "C" { + pub fn AMotionEvent_getXOffset(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getYOffset(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getXPrecision(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getYPrecision(motion_event: *const AInputEvent) -> f32; +} +extern "C" { + pub fn AMotionEvent_getPointerCount(motion_event: *const AInputEvent) -> size_t; +} +extern "C" { + pub fn AMotionEvent_getPointerId( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> i32; +} +extern "C" { + pub fn AMotionEvent_getToolType(motion_event: *const AInputEvent, pointer_index: size_t) + -> i32; +} +extern "C" { + pub fn AMotionEvent_getRawX(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getRawY(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getX(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getY(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getPressure(motion_event: *const AInputEvent, pointer_index: size_t) + -> f32; +} +extern "C" { + pub fn AMotionEvent_getSize(motion_event: *const AInputEvent, pointer_index: size_t) -> f32; +} +extern "C" { + pub fn AMotionEvent_getTouchMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getTouchMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getToolMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getToolMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getOrientation( + motion_event: *const AInputEvent, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getAxisValue( + motion_event: *const AInputEvent, + axis: i32, + pointer_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistorySize(motion_event: *const AInputEvent) -> size_t; +} +extern "C" { + pub fn AMotionEvent_getHistoricalEventTime( + motion_event: *const AInputEvent, + history_index: size_t, + ) -> i64; +} +extern "C" { + pub fn AMotionEvent_getHistoricalRawX( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalRawY( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalX( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalY( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalPressure( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalSize( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalTouchMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalTouchMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalToolMajor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalToolMinor( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalOrientation( + motion_event: *const AInputEvent, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +extern "C" { + pub fn AMotionEvent_getHistoricalAxisValue( + motion_event: *const AInputEvent, + axis: i32, + pointer_index: size_t, + history_index: size_t, + ) -> f32; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AInputQueue { + _unused: [u8; 0], +} +extern "C" { + pub fn AInputQueue_attachLooper( + queue: *mut AInputQueue, + looper: *mut ALooper, + ident: ::std::os::raw::c_int, + callback: ALooper_callbackFunc, + data: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + pub fn AInputQueue_detachLooper(queue: *mut AInputQueue); +} +extern "C" { + pub fn AInputQueue_hasEvents(queue: *mut AInputQueue) -> i32; +} +extern "C" { + pub fn AInputQueue_getEvent(queue: *mut AInputQueue, outEvent: *mut *mut AInputEvent) -> i32; +} +extern "C" { + pub fn AInputQueue_preDispatchEvent(queue: *mut AInputQueue, event: *mut AInputEvent) -> i32; +} +extern "C" { + pub fn AInputQueue_finishEvent( + queue: *mut AInputQueue, + event: *mut AInputEvent, + handled: ::std::os::raw::c_int, + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct imaxdiv_t { + pub quot: intmax_t, + pub rem: intmax_t, +} +#[test] +fn bindgen_test_layout_imaxdiv_t() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(imaxdiv_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(imaxdiv_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).quot as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(imaxdiv_t), + "::", + stringify!(quot) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rem as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(imaxdiv_t), + "::", + stringify!(rem) + ) + ); +} +extern "C" { + pub fn imaxabs(__i: intmax_t) -> intmax_t; +} +extern "C" { + pub fn imaxdiv(__numerator: intmax_t, __denominator: intmax_t) -> imaxdiv_t; +} +extern "C" { + pub fn strtoimax( + __s: *const ::std::os::raw::c_char, + __end_ptr: *mut *mut ::std::os::raw::c_char, + __base: ::std::os::raw::c_int, + ) -> intmax_t; +} +extern "C" { + pub fn strtoumax( + __s: *const ::std::os::raw::c_char, + __end_ptr: *mut *mut ::std::os::raw::c_char, + __base: ::std::os::raw::c_int, + ) -> uintmax_t; +} +extern "C" { + pub fn wcstoimax( + __s: *const wchar_t, + __end_ptr: *mut *mut wchar_t, + __base: ::std::os::raw::c_int, + ) -> intmax_t; +} +extern "C" { + pub fn wcstoumax( + __s: *const wchar_t, + __end_ptr: *mut *mut wchar_t, + __base: ::std::os::raw::c_int, + ) -> uintmax_t; +} +pub const ADataSpace_ADATASPACE_UNKNOWN: ADataSpace = 0; +pub const ADataSpace_ADATASPACE_SCRGB_LINEAR: ADataSpace = 406913024; +pub const ADataSpace_ADATASPACE_SRGB: ADataSpace = 142671872; +pub const ADataSpace_ADATASPACE_SCRGB: ADataSpace = 411107328; +pub const ADataSpace_ADATASPACE_DISPLAY_P3: ADataSpace = 143261696; +pub const ADataSpace_ADATASPACE_BT2020_PQ: ADataSpace = 163971072; +pub const ADataSpace_ADATASPACE_ADOBE_RGB: ADataSpace = 151715840; +pub const ADataSpace_ADATASPACE_BT2020: ADataSpace = 147193856; +pub const ADataSpace_ADATASPACE_BT709: ADataSpace = 281083904; +pub const ADataSpace_ADATASPACE_DCI_P3: ADataSpace = 155844608; +pub const ADataSpace_ADATASPACE_SRGB_LINEAR: ADataSpace = 138477568; +pub type ADataSpace = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct ARect { + pub left: i32, + pub top: i32, + pub right: i32, + pub bottom: i32, +} +#[test] +fn bindgen_test_layout_ARect() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ARect)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(ARect)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).left as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(left) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).top as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(top) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).right as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(right) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bottom as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(ARect), + "::", + stringify!(bottom) + ) + ); +} +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8A8_UNORM: AHardwareBuffer_Format = 1; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8X8_UNORM: AHardwareBuffer_Format = 2; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R8G8B8_UNORM: AHardwareBuffer_Format = 3; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R5G6B5_UNORM: AHardwareBuffer_Format = 4; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R16G16B16A16_FLOAT: AHardwareBuffer_Format = + 22; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_R10G10B10A2_UNORM: AHardwareBuffer_Format = + 43; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_BLOB: AHardwareBuffer_Format = 33; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D16_UNORM: AHardwareBuffer_Format = 48; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D24_UNORM: AHardwareBuffer_Format = 49; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D24_UNORM_S8_UINT: AHardwareBuffer_Format = + 50; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D32_FLOAT: AHardwareBuffer_Format = 51; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_D32_FLOAT_S8_UINT: AHardwareBuffer_Format = + 52; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_S8_UINT: AHardwareBuffer_Format = 53; +pub const AHardwareBuffer_Format_AHARDWAREBUFFER_FORMAT_Y8Cb8Cr8_420: AHardwareBuffer_Format = 35; +pub type AHardwareBuffer_Format = ::std::os::raw::c_uint; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_NEVER: + AHardwareBuffer_UsageFlags = 0; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_RARELY: + AHardwareBuffer_UsageFlags = 2; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_OFTEN: + AHardwareBuffer_UsageFlags = 3; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_READ_MASK: + AHardwareBuffer_UsageFlags = 15; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_NEVER: + AHardwareBuffer_UsageFlags = 0; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_RARELY: + AHardwareBuffer_UsageFlags = 32; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_OFTEN: + AHardwareBuffer_UsageFlags = 48; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_CPU_WRITE_MASK: + AHardwareBuffer_UsageFlags = 240; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_SAMPLED_IMAGE: + AHardwareBuffer_UsageFlags = 256; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_FRAMEBUFFER: + AHardwareBuffer_UsageFlags = 512; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_COLOR_OUTPUT: + AHardwareBuffer_UsageFlags = 512; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_COMPOSER_OVERLAY: + AHardwareBuffer_UsageFlags = 2048; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_PROTECTED_CONTENT: + AHardwareBuffer_UsageFlags = 16384; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VIDEO_ENCODE: + AHardwareBuffer_UsageFlags = 65536; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_SENSOR_DIRECT_DATA: + AHardwareBuffer_UsageFlags = 8388608; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_DATA_BUFFER: + AHardwareBuffer_UsageFlags = 16777216; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_CUBE_MAP: + AHardwareBuffer_UsageFlags = 33554432; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_GPU_MIPMAP_COMPLETE: + AHardwareBuffer_UsageFlags = 67108864; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_0: AHardwareBuffer_UsageFlags = + 268435456; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_1: AHardwareBuffer_UsageFlags = + 536870912; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_2: AHardwareBuffer_UsageFlags = + 1073741824; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_3: AHardwareBuffer_UsageFlags = + 2147483648; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_4: AHardwareBuffer_UsageFlags = + 281474976710656; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_5: AHardwareBuffer_UsageFlags = + 562949953421312; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_6: AHardwareBuffer_UsageFlags = + 1125899906842624; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_7: AHardwareBuffer_UsageFlags = + 2251799813685248; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_8: AHardwareBuffer_UsageFlags = + 4503599627370496; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_9: AHardwareBuffer_UsageFlags = + 9007199254740992; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_10: AHardwareBuffer_UsageFlags = + 18014398509481984; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_11: AHardwareBuffer_UsageFlags = + 36028797018963968; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_12: AHardwareBuffer_UsageFlags = + 72057594037927936; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_13: AHardwareBuffer_UsageFlags = + 144115188075855872; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_14: AHardwareBuffer_UsageFlags = + 288230376151711744; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_15: AHardwareBuffer_UsageFlags = + 576460752303423488; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_16: AHardwareBuffer_UsageFlags = + 1152921504606846976; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_17: AHardwareBuffer_UsageFlags = + 2305843009213693952; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_18: AHardwareBuffer_UsageFlags = + 4611686018427387904; +pub const AHardwareBuffer_UsageFlags_AHARDWAREBUFFER_USAGE_VENDOR_19: AHardwareBuffer_UsageFlags = + 9223372036854775808; +pub type AHardwareBuffer_UsageFlags = ::std::os::raw::c_ulong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Desc { + pub width: u32, + pub height: u32, + pub layers: u32, + pub format: u32, + pub usage: u64, + pub stride: u32, + pub rfu0: u32, + pub rfu1: u64, +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Desc() { + assert_eq!( + ::std::mem::size_of::(), + 40usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Desc)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Desc)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).width as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(width) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).height as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(height) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).layers as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(layers) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).format as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(format) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).usage as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(usage) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stride as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(stride) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rfu0 as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(rfu0) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rfu1 as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Desc), + "::", + stringify!(rfu1) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Plane { + pub data: *mut ::std::os::raw::c_void, + pub pixelStride: u32, + pub rowStride: u32, +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Plane() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Plane)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Plane)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).data as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(data) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pixelStride as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(pixelStride) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rowStride as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Plane), + "::", + stringify!(rowStride) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer_Planes { + pub planeCount: u32, + pub planes: [AHardwareBuffer_Plane; 4usize], +} +#[test] +fn bindgen_test_layout_AHardwareBuffer_Planes() { + assert_eq!( + ::std::mem::size_of::(), + 72usize, + concat!("Size of: ", stringify!(AHardwareBuffer_Planes)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(AHardwareBuffer_Planes)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).planeCount as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Planes), + "::", + stringify!(planeCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).planes as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(AHardwareBuffer_Planes), + "::", + stringify!(planes) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct AHardwareBuffer { + _unused: [u8; 0], +} +extern "C" { + pub fn AHardwareBuffer_allocate( + desc: *const AHardwareBuffer_Desc, + outBuffer: *mut *mut AHardwareBuffer, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_acquire(buffer: *mut AHardwareBuffer); +} +extern "C" { + pub fn AHardwareBuffer_release(buffer: *mut AHardwareBuffer); +} +extern "C" { + pub fn AHardwareBuffer_describe( + buffer: *const AHardwareBuffer, + outDesc: *mut AHardwareBuffer_Desc, + ); +} +extern "C" { + pub fn AHardwareBuffer_lock( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outVirtualAddress: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_lockPlanes( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outPlanes: *mut AHardwareBuffer_Planes, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_unlock( + buffer: *mut AHardwareBuffer, + fence: *mut i32, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_sendHandleToUnixSocket( + buffer: *const AHardwareBuffer, + socketFd: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_recvHandleFromUnixSocket( + socketFd: ::std::os::raw::c_int, + outBuffer: *mut *mut AHardwareBuffer, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_isSupported(desc: *const AHardwareBuffer_Desc) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn AHardwareBuffer_lockAndGetInfo( + buffer: *mut AHardwareBuffer, + usage: u64, + fence: i32, + rect: *const ARect, + outVirtualAddress: *mut *mut ::std::os::raw::c_void, + outBytesPerPixel: *mut i32, + outBytesPerStride: *mut i32, + ) -> ::std::os::raw::c_int; +} +pub type va_list = __builtin_va_list; +pub type __gnuc_va_list = __builtin_va_list; +#[repr(C)] +pub struct JavaVMAttachArgs { + pub version: jint, + pub name: *const ::std::os::raw::c_char, + pub group: jobject, +} +#[test] +fn bindgen_test_layout_JavaVMAttachArgs() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(JavaVMAttachArgs)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(JavaVMAttachArgs)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).version as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(version) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).name as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(name) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).group as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(JavaVMAttachArgs), + "::", + stringify!(group) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct JavaVMOption { + pub optionString: *const ::std::os::raw::c_char, + pub extraInfo: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_JavaVMOption() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(JavaVMOption)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(JavaVMOption)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).optionString as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMOption), + "::", + stringify!(optionString) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).extraInfo as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(JavaVMOption), + "::", + stringify!(extraInfo) + ) + ); +} +#[repr(C)] +pub struct JavaVMInitArgs { + pub version: jint, + pub nOptions: jint, + pub options: *mut JavaVMOption, + pub ignoreUnrecognized: jboolean, +} +#[test] +fn bindgen_test_layout_JavaVMInitArgs() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(JavaVMInitArgs)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(JavaVMInitArgs)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).version as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(version) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).nOptions as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(nOptions) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).options as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(options) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).ignoreUnrecognized as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(JavaVMInitArgs), + "::", + stringify!(ignoreUnrecognized) + ) + ); +} +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_CAPTION_BAR: GameCommonInsetsType = 0; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_DISPLAY_CUTOUT: GameCommonInsetsType = 1; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_IME: GameCommonInsetsType = 2; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_MANDATORY_SYSTEM_GESTURES: + GameCommonInsetsType = 3; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_NAVIGATION_BARS: GameCommonInsetsType = 4; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_STATUS_BARS: GameCommonInsetsType = 5; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_SYSTEM_BARS: GameCommonInsetsType = 6; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_SYSTEM_GESTURES: GameCommonInsetsType = 7; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_TAPABLE_ELEMENT: GameCommonInsetsType = 8; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_WATERFALL: GameCommonInsetsType = 9; +pub const GameCommonInsetsType_GAMECOMMON_INSETS_TYPE_COUNT: GameCommonInsetsType = 10; +#[doc = " The type of a component for which to retrieve insets. See"] +#[doc = " https://developer.android.com/reference/androidx/core/view/WindowInsetsCompat.Type"] +pub type GameCommonInsetsType = ::std::os::raw::c_uint; +#[doc = " This struct holds a span within a region of text from start (inclusive) to"] +#[doc = " end (exclusive). An empty span or cursor position is specified with"] +#[doc = " start==end. An undefined span is specified with start = end = SPAN_UNDEFINED."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInputSpan { + #[doc = " The start of the region (inclusive)."] + pub start: i32, + #[doc = " The end of the region (exclusive)."] + pub end: i32, +} +#[test] +fn bindgen_test_layout_GameTextInputSpan() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(GameTextInputSpan)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameTextInputSpan)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).start as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputSpan), + "::", + stringify!(start) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).end as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputSpan), + "::", + stringify!(end) + ) + ); +} +pub const GameTextInputSpanFlag_SPAN_UNDEFINED: GameTextInputSpanFlag = -1; +#[doc = " Values with special meaning in a GameTextInputSpan."] +pub type GameTextInputSpanFlag = ::std::os::raw::c_int; +#[doc = " This struct holds the state of an editable section of text."] +#[doc = " The text can have a selection and a composing region defined on it."] +#[doc = " A composing region is used by IMEs that allow input using multiple steps to"] +#[doc = " compose a glyph or word. Use functions GameTextInput_getState and"] +#[doc = " GameTextInput_setState to read and modify the state that an IME is editing."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInputState { + #[doc = " Text owned by the state, as a modified UTF-8 string. Null-terminated."] + #[doc = " https://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8"] + pub text_UTF8: *const ::std::os::raw::c_char, + #[doc = " Length in bytes of text_UTF8, *not* including the null at end."] + pub text_length: i32, + #[doc = " A selection defined on the text."] + pub selection: GameTextInputSpan, + #[doc = " A composing region defined on the text."] + pub composingRegion: GameTextInputSpan, +} +#[test] +fn bindgen_test_layout_GameTextInputState() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(GameTextInputState)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameTextInputState)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).text_UTF8 as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(text_UTF8) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).text_length as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(text_length) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).selection as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(selection) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).composingRegion as *const _ as usize + }, + 20usize, + concat!( + "Offset of field: ", + stringify!(GameTextInputState), + "::", + stringify!(composingRegion) + ) + ); +} +#[doc = " A callback called by GameTextInput_getState."] +#[doc = " @param context User-defined context."] +#[doc = " @param state State, owned by the library, that will be valid for the duration"] +#[doc = " of the callback."] +pub type GameTextInputGetStateCallback = ::std::option::Option< + unsafe extern "C" fn(context: *mut ::std::os::raw::c_void, state: *const GameTextInputState), +>; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameTextInput { + _unused: [u8; 0], +} +extern "C" { + #[doc = " Initialize the GameTextInput library."] + #[doc = " If called twice without GameTextInput_destroy being called, the same pointer"] + #[doc = " will be returned and a warning will be issued."] + #[doc = " @param env A JNI env valid on the calling thread."] + #[doc = " @param max_string_size The maximum length of a string that can be edited. If"] + #[doc = " zero, the maximum defaults to 65536 bytes. A buffer of this size is allocated"] + #[doc = " at initialization."] + #[doc = " @return A handle to the library."] + pub fn GameTextInput_init(env: *mut JNIEnv, max_string_size: u32) -> *mut GameTextInput; +} +extern "C" { + #[doc = " When using GameTextInput, you need to create a gametextinput.InputConnection"] + #[doc = " on the Java side and pass it using this function to the library, unless using"] + #[doc = " GameActivity in which case this will be done for you. See the GameActivity"] + #[doc = " source code or GameTextInput samples for examples of usage."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param inputConnection A gametextinput.InputConnection object."] + pub fn GameTextInput_setInputConnection(input: *mut GameTextInput, inputConnection: jobject); +} +extern "C" { + #[doc = " Unless using GameActivity, it is required to call this function from your"] + #[doc = " Java gametextinput.Listener.stateChanged method to convert eventState and"] + #[doc = " trigger any event callbacks. When using GameActivity, this does not need to"] + #[doc = " be called as event processing is handled by the Activity."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param eventState A Java gametextinput.State object."] + pub fn GameTextInput_processEvent(input: *mut GameTextInput, eventState: jobject); +} +extern "C" { + #[doc = " Free any resources owned by the GameTextInput library."] + #[doc = " Any subsequent calls to the library will fail until GameTextInput_init is"] + #[doc = " called again."] + #[doc = " @param input A valid GameTextInput library handle."] + pub fn GameTextInput_destroy(input: *mut GameTextInput); +} +pub const ShowImeFlags_SHOW_IME_UNDEFINED: ShowImeFlags = 0; +pub const ShowImeFlags_SHOW_IMPLICIT: ShowImeFlags = 1; +pub const ShowImeFlags_SHOW_FORCED: ShowImeFlags = 2; +#[doc = " Flags to be passed to GameTextInput_showIme."] +pub type ShowImeFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME. Calls InputMethodManager.showSoftInput()."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param flags Defined in ShowImeFlags above. For more information see:"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/InputMethodManager"] + pub fn GameTextInput_showIme(input: *mut GameTextInput, flags: u32); +} +pub const HideImeFlags_HIDE_IME_UNDEFINED: HideImeFlags = 0; +pub const HideImeFlags_HIDE_IMPLICIT_ONLY: HideImeFlags = 1; +pub const HideImeFlags_HIDE_NOT_ALWAYS: HideImeFlags = 2; +#[doc = " Flags to be passed to GameTextInput_hideIme."] +pub type HideImeFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME. Calls InputMethodManager.hideSoftInputFromWindow()."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param flags Defined in HideImeFlags above. For more information see:"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/InputMethodManager"] + pub fn GameTextInput_hideIme(input: *mut GameTextInput, flags: u32); +} +extern "C" { + #[doc = " Call a callback with the current GameTextInput state, which may have been"] + #[doc = " modified by changes in the IME and calls to GameTextInput_setState. We use a"] + #[doc = " callback rather than returning the state in order to simplify ownership of"] + #[doc = " text_UTF8 strings. These strings are only valid during the calling of the"] + #[doc = " callback."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback A function that will be called with valid state."] + #[doc = " @param context Context used by the callback."] + pub fn GameTextInput_getState( + input: *mut GameTextInput, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Set the current GameTextInput state. This state is reflected to any active"] + #[doc = " IME."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state The state to set. Ownership is maintained by the caller and must"] + #[doc = " remain valid for the duration of the call."] + pub fn GameTextInput_setState(input: *mut GameTextInput, state: *const GameTextInputState); +} +#[doc = " Type of the callback needed by GameTextInput_setEventCallback that will be"] +#[doc = " called every time the IME state changes."] +#[doc = " @param context User-defined context set in GameTextInput_setEventCallback."] +#[doc = " @param current_state Current IME state, owned by the library and valid during"] +#[doc = " the callback."] +pub type GameTextInputEventCallback = ::std::option::Option< + unsafe extern "C" fn( + context: *mut ::std::os::raw::c_void, + current_state: *const GameTextInputState, + ), +>; +extern "C" { + #[doc = " Optionally set a callback to be called whenever the IME state changes."] + #[doc = " Not necessary if you are using GameActivity, which handles these callbacks"] + #[doc = " for you."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback Called by the library when the IME state changes."] + #[doc = " @param context Context passed as first argument to the callback."] + pub fn GameTextInput_setEventCallback( + input: *mut GameTextInput, + callback: GameTextInputEventCallback, + context: *mut ::std::os::raw::c_void, + ); +} +#[doc = " Type of the callback needed by GameTextInput_setImeInsetsCallback that will"] +#[doc = " be called every time the IME window insets change."] +#[doc = " @param context User-defined context set in"] +#[doc = " GameTextInput_setImeWIndowInsetsCallback."] +#[doc = " @param current_insets Current IME insets, owned by the library and valid"] +#[doc = " during the callback."] +pub type GameTextInputImeInsetsCallback = ::std::option::Option< + unsafe extern "C" fn(context: *mut ::std::os::raw::c_void, current_insets: *const ARect), +>; +extern "C" { + #[doc = " Optionally set a callback to be called whenever the IME insets change."] + #[doc = " Not necessary if you are using GameActivity, which handles these callbacks"] + #[doc = " for you."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param callback Called by the library when the IME insets change."] + #[doc = " @param context Context passed as first argument to the callback."] + pub fn GameTextInput_setImeInsetsCallback( + input: *mut GameTextInput, + callback: GameTextInputImeInsetsCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Get the current window insets for the IME."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param insets Filled with the current insets by this function."] + pub fn GameTextInput_getImeInsets(input: *const GameTextInput, insets: *mut ARect); +} +extern "C" { + #[doc = " Unless using GameActivity, it is required to call this function from your"] + #[doc = " Java gametextinput.Listener.onImeInsetsChanged method to"] + #[doc = " trigger any event callbacks. When using GameActivity, this does not need to"] + #[doc = " be called as insets processing is handled by the Activity."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param eventState A Java gametextinput.State object."] + pub fn GameTextInput_processImeInsets(input: *mut GameTextInput, insets: *const ARect); +} +extern "C" { + #[doc = " Convert a GameTextInputState struct to a Java gametextinput.State object."] + #[doc = " Don't forget to delete the returned Java local ref when you're done."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state Input state to convert."] + #[doc = " @return A Java object of class gametextinput.State. The caller is required to"] + #[doc = " delete this local reference."] + pub fn GameTextInputState_toJava( + input: *const GameTextInput, + state: *const GameTextInputState, + ) -> jobject; +} +extern "C" { + #[doc = " Convert from a Java gametextinput.State object into a C GameTextInputState"] + #[doc = " struct."] + #[doc = " @param input A valid GameTextInput library handle."] + #[doc = " @param state A Java gametextinput.State object."] + #[doc = " @param callback A function called with the C struct, valid for the duration"] + #[doc = " of the call."] + #[doc = " @param context Context passed to the callback."] + pub fn GameTextInputState_fromJava( + input: *const GameTextInput, + state: jobject, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +#[doc = " This structure defines the native side of an android.app.GameActivity."] +#[doc = " It is created by the framework, and handed to the application's native"] +#[doc = " code as it is being launched."] +#[repr(C)] +pub struct GameActivity { + #[doc = " Pointer to the callback function table of the native application."] + #[doc = " You can set the functions here to your own callbacks. The callbacks"] + #[doc = " pointer itself here should not be changed; it is allocated and managed"] + #[doc = " for you by the framework."] + pub callbacks: *mut GameActivityCallbacks, + #[doc = " The global handle on the process's Java VM."] + pub vm: *mut JavaVM, + #[doc = " JNI context for the main thread of the app. Note that this field"] + #[doc = " can ONLY be used from the main thread of the process; that is, the"] + #[doc = " thread that calls into the GameActivityCallbacks."] + pub env: *mut JNIEnv, + #[doc = " The GameActivity object handle."] + pub javaGameActivity: jobject, + #[doc = " Path to this application's internal data directory."] + pub internalDataPath: *const ::std::os::raw::c_char, + #[doc = " Path to this application's external (removable/mountable) data directory."] + pub externalDataPath: *const ::std::os::raw::c_char, + #[doc = " The platform's SDK version code."] + pub sdkVersion: i32, + #[doc = " This is the native instance of the application. It is not used by"] + #[doc = " the framework, but can be set by the application to its own instance"] + #[doc = " state."] + pub instance: *mut ::std::os::raw::c_void, + #[doc = " Pointer to the Asset Manager instance for the application. The"] + #[doc = " application uses this to access binary assets bundled inside its own .apk"] + #[doc = " file."] + pub assetManager: *mut AAssetManager, + #[doc = " Available starting with Honeycomb: path to the directory containing"] + #[doc = " the application's OBB files (if any). If the app doesn't have any"] + #[doc = " OBB files, this directory may not exist."] + pub obbPath: *const ::std::os::raw::c_char, +} +#[test] +fn bindgen_test_layout_GameActivity() { + assert_eq!( + ::std::mem::size_of::(), + 80usize, + concat!("Size of: ", stringify!(GameActivity)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameActivity)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).callbacks as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(callbacks) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).vm as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(vm) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).env as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(env) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).javaGameActivity as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(javaGameActivity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).internalDataPath as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(internalDataPath) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).externalDataPath as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(externalDataPath) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sdkVersion as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(sdkVersion) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).instance as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(instance) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).assetManager as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(assetManager) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).obbPath as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(GameActivity), + "::", + stringify!(obbPath) + ) + ); +} +#[doc = " \\brief Describe information about a pointer, found in a"] +#[doc = " GameActivityMotionEvent."] +#[doc = ""] +#[doc = " You can read values directly from this structure, or use helper functions"] +#[doc = " (`GameActivityPointerAxes_getX`, `GameActivityPointerAxes_getY` and"] +#[doc = " `GameActivityPointerAxes_getAxisValue`)."] +#[doc = ""] +#[doc = " The X axis and Y axis are enabled by default but any other axis that you want"] +#[doc = " to read **must** be enabled first, using"] +#[doc = " `GameActivityPointerAxes_enableAxis`."] +#[doc = ""] +#[doc = " \\see GameActivityMotionEvent"] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityPointerAxes { + pub id: i32, + pub axisValues: [f32; 48usize], + pub rawX: f32, + pub rawY: f32, +} +#[test] +fn bindgen_test_layout_GameActivityPointerAxes() { + assert_eq!( + ::std::mem::size_of::(), + 204usize, + concat!("Size of: ", stringify!(GameActivityPointerAxes)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(GameActivityPointerAxes)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).id as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(id) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).axisValues as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(axisValues) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rawX as *const _ as usize }, + 196usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(rawX) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rawY as *const _ as usize }, + 200usize, + concat!( + "Offset of field: ", + stringify!(GameActivityPointerAxes), + "::", + stringify!(rawY) + ) + ); +} +extern "C" { + #[doc = " \\brief Enable the specified axis, so that its value is reported in the"] + #[doc = " GameActivityPointerAxes structures stored in a motion event."] + #[doc = ""] + #[doc = " You must enable any axis that you want to read, apart from"] + #[doc = " `AMOTION_EVENT_AXIS_X` and `AMOTION_EVENT_AXIS_Y` that are enabled by"] + #[doc = " default."] + #[doc = ""] + #[doc = " If the axis index is out of range, nothing is done."] + pub fn GameActivityPointerAxes_enableAxis(axis: i32); +} +extern "C" { + #[doc = " \\brief Disable the specified axis. Its value won't be reported in the"] + #[doc = " GameActivityPointerAxes structures stored in a motion event anymore."] + #[doc = ""] + #[doc = " Apart from X and Y, any axis that you want to read **must** be enabled first,"] + #[doc = " using `GameActivityPointerAxes_enableAxis`."] + #[doc = ""] + #[doc = " If the axis index is out of range, nothing is done."] + pub fn GameActivityPointerAxes_disableAxis(axis: i32); +} +#[doc = " \\brief Describe a motion event that happened on the GameActivity SurfaceView."] +#[doc = ""] +#[doc = " This is 1:1 mapping to the information contained in a Java `MotionEvent`"] +#[doc = " (see https://developer.android.com/reference/android/view/MotionEvent)."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityMotionEvent { + pub deviceId: i32, + pub source: i32, + pub action: i32, + pub eventTime: i64, + pub downTime: i64, + pub flags: i32, + pub metaState: i32, + pub actionButton: i32, + pub buttonState: i32, + pub classification: i32, + pub edgeFlags: i32, + pub pointerCount: u32, + pub pointers: [GameActivityPointerAxes; 8usize], + pub precisionX: f32, + pub precisionY: f32, +} +#[test] +fn bindgen_test_layout_GameActivityMotionEvent() { + assert_eq!( + ::std::mem::size_of::(), + 1704usize, + concat!("Size of: ", stringify!(GameActivityMotionEvent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameActivityMotionEvent)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).deviceId as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(deviceId) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).source as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(source) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).action as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(action) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).eventTime as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(eventTime) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).downTime as *const _ as usize + }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(downTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).metaState as *const _ as usize + }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(metaState) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).actionButton as *const _ as usize + }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(actionButton) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).buttonState as *const _ as usize + }, + 44usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(buttonState) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).classification as *const _ as usize + }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(classification) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).edgeFlags as *const _ as usize + }, + 52usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(edgeFlags) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pointerCount as *const _ as usize + }, + 56usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(pointerCount) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).pointers as *const _ as usize + }, + 60usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(pointers) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).precisionX as *const _ as usize + }, + 1692usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(precisionX) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).precisionY as *const _ as usize + }, + 1696usize, + concat!( + "Offset of field: ", + stringify!(GameActivityMotionEvent), + "::", + stringify!(precisionY) + ) + ); +} +#[doc = " \\brief Describe a key event that happened on the GameActivity SurfaceView."] +#[doc = ""] +#[doc = " This is 1:1 mapping to the information contained in a Java `KeyEvent`"] +#[doc = " (see https://developer.android.com/reference/android/view/KeyEvent)."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityKeyEvent { + pub deviceId: i32, + pub source: i32, + pub action: i32, + pub eventTime: i64, + pub downTime: i64, + pub flags: i32, + pub metaState: i32, + pub modifiers: i32, + pub repeatCount: i32, + pub keyCode: i32, + pub scanCode: i32, +} +#[test] +fn bindgen_test_layout_GameActivityKeyEvent() { + assert_eq!( + ::std::mem::size_of::(), + 56usize, + concat!("Size of: ", stringify!(GameActivityKeyEvent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameActivityKeyEvent)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).deviceId as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(deviceId) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).source as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(source) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).action as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(action) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eventTime as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(eventTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).downTime as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(downTime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).metaState as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(metaState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).modifiers as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(modifiers) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).repeatCount as *const _ as usize + }, + 44usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(repeatCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyCode as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(keyCode) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).scanCode as *const _ as usize }, + 52usize, + concat!( + "Offset of field: ", + stringify!(GameActivityKeyEvent), + "::", + stringify!(scanCode) + ) + ); +} +#[doc = " A function the user should call from their callback with the data, its length"] +#[doc = " and the library- supplied context."] +pub type SaveInstanceStateRecallback = ::std::option::Option< + unsafe extern "C" fn( + bytes: *const ::std::os::raw::c_char, + len: ::std::os::raw::c_int, + context: *mut ::std::os::raw::c_void, + ), +>; +#[doc = " {@link GameActivityCallbacks}"] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct GameActivityCallbacks { + #[doc = " GameActivity has started. See Java documentation for Activity.onStart()"] + #[doc = " for more information."] + pub onStart: ::std::option::Option, + #[doc = " GameActivity has resumed. See Java documentation for Activity.onResume()"] + #[doc = " for more information."] + pub onResume: ::std::option::Option, + #[doc = " The framework is asking GameActivity to save its current instance state."] + #[doc = " See the Java documentation for Activity.onSaveInstanceState() for more"] + #[doc = " information. The user should call the recallback with their data, its"] + #[doc = " length and the provided context; they retain ownership of the data. Note"] + #[doc = " that the saved state will be persisted, so it can not contain any active"] + #[doc = " entities (pointers to memory, file descriptors, etc)."] + pub onSaveInstanceState: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + recallback: SaveInstanceStateRecallback, + context: *mut ::std::os::raw::c_void, + ), + >, + #[doc = " GameActivity has paused. See Java documentation for Activity.onPause()"] + #[doc = " for more information."] + pub onPause: ::std::option::Option, + #[doc = " GameActivity has stopped. See Java documentation for Activity.onStop()"] + #[doc = " for more information."] + pub onStop: ::std::option::Option, + #[doc = " GameActivity is being destroyed. See Java documentation for"] + #[doc = " Activity.onDestroy() for more information."] + pub onDestroy: ::std::option::Option, + #[doc = " Focus has changed in this GameActivity's window. This is often used,"] + #[doc = " for example, to pause a game when it loses input focus."] + pub onWindowFocusChanged: + ::std::option::Option, + #[doc = " The drawing window for this native activity has been created. You"] + #[doc = " can use the given native window object to start drawing."] + pub onNativeWindowCreated: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The drawing window for this native activity has been resized. You should"] + #[doc = " retrieve the new size from the window and ensure that your rendering in"] + #[doc = " it now matches."] + pub onNativeWindowResized: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + window: *mut ANativeWindow, + newWidth: i32, + newHeight: i32, + ), + >, + #[doc = " The drawing window for this native activity needs to be redrawn. To"] + #[doc = " avoid transient artifacts during screen changes (such resizing after"] + #[doc = " rotation), applications should not return from this function until they"] + #[doc = " have finished drawing their window in its current state."] + pub onNativeWindowRedrawNeeded: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The drawing window for this native activity is going to be destroyed."] + #[doc = " You MUST ensure that you do not touch the window object after returning"] + #[doc = " from this function: in the common case of drawing to the window from"] + #[doc = " another thread, that means the implementation of this callback must"] + #[doc = " properly synchronize with the other thread to stop its drawing before"] + #[doc = " returning from here."] + pub onNativeWindowDestroyed: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, window: *mut ANativeWindow), + >, + #[doc = " The current device AConfiguration has changed. The new configuration can"] + #[doc = " be retrieved from assetManager."] + pub onConfigurationChanged: + ::std::option::Option, + #[doc = " The system is running low on memory. Use this callback to release"] + #[doc = " resources you do not need, to help the system avoid killing more"] + #[doc = " important processes."] + pub onTrimMemory: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, level: ::std::os::raw::c_int), + >, + #[doc = " Callback called for every MotionEvent done on the GameActivity"] + #[doc = " SurfaceView. Ownership of `event` is maintained by the library and it is"] + #[doc = " only valid during the callback."] + pub onTouchEvent: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityMotionEvent, + ) -> bool, + >, + #[doc = " Callback called for every key down event on the GameActivity SurfaceView."] + #[doc = " Ownership of `event` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onKeyDown: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityKeyEvent, + ) -> bool, + >, + #[doc = " Callback called for every key up event on the GameActivity SurfaceView."] + #[doc = " Ownership of `event` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onKeyUp: ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + event: *const GameActivityKeyEvent, + ) -> bool, + >, + #[doc = " Callback called for every soft-keyboard text input event."] + #[doc = " Ownership of `state` is maintained by the library and it is only valid"] + #[doc = " during the callback."] + pub onTextInputEvent: ::std::option::Option< + unsafe extern "C" fn(activity: *mut GameActivity, state: *const GameTextInputState), + >, + #[doc = " Callback called when WindowInsets of the main app window have changed."] + #[doc = " Call GameActivity_getWindowInsets to retrieve the insets themselves."] + pub onWindowInsetsChanged: + ::std::option::Option, +} +#[test] +fn bindgen_test_layout_GameActivityCallbacks() { + assert_eq!( + ::std::mem::size_of::(), + 144usize, + concat!("Size of: ", stringify!(GameActivityCallbacks)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(GameActivityCallbacks)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onStart as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onStart) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onResume as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onResume) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onSaveInstanceState as *const _ + as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onSaveInstanceState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onPause as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onPause) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onStop as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onStop) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onDestroy as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onDestroy) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onWindowFocusChanged as *const _ + as usize + }, + 48usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onWindowFocusChanged) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowCreated as *const _ + as usize + }, + 56usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowCreated) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowResized as *const _ + as usize + }, + 64usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowResized) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowRedrawNeeded as *const _ + as usize + }, + 72usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowRedrawNeeded) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onNativeWindowDestroyed as *const _ + as usize + }, + 80usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onNativeWindowDestroyed) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onConfigurationChanged as *const _ + as usize + }, + 88usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onConfigurationChanged) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTrimMemory as *const _ as usize + }, + 96usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTrimMemory) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTouchEvent as *const _ as usize + }, + 104usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTouchEvent) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onKeyDown as *const _ as usize }, + 112usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onKeyDown) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onKeyUp as *const _ as usize }, + 120usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onKeyUp) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onTextInputEvent as *const _ as usize + }, + 128usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onTextInputEvent) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).onWindowInsetsChanged as *const _ + as usize + }, + 136usize, + concat!( + "Offset of field: ", + stringify!(GameActivityCallbacks), + "::", + stringify!(onWindowInsetsChanged) + ) + ); +} +extern "C" { + #[doc = " \\brief Convert a Java `MotionEvent` to a `GameActivityMotionEvent`."] + #[doc = ""] + #[doc = " This is done automatically by the GameActivity: see `onTouchEvent` to set"] + #[doc = " a callback to consume the received events."] + #[doc = " This function can be used if you re-implement events handling in your own"] + #[doc = " activity."] + #[doc = " Ownership of out_event is maintained by the caller."] + pub fn GameActivityMotionEvent_fromJava( + env: *mut JNIEnv, + motionEvent: jobject, + out_event: *mut GameActivityMotionEvent, + ); +} +extern "C" { + #[doc = " \\brief Convert a Java `KeyEvent` to a `GameActivityKeyEvent`."] + #[doc = ""] + #[doc = " This is done automatically by the GameActivity: see `onKeyUp` and `onKeyDown`"] + #[doc = " to set a callback to consume the received events."] + #[doc = " This function can be used if you re-implement events handling in your own"] + #[doc = " activity."] + #[doc = " Ownership of out_event is maintained by the caller."] + pub fn GameActivityKeyEvent_fromJava( + env: *mut JNIEnv, + motionEvent: jobject, + out_event: *mut GameActivityKeyEvent, + ); +} +#[doc = " This is the function that must be in the native code to instantiate the"] +#[doc = " application's native activity. It is called with the activity instance (see"] +#[doc = " above); if the code is being instantiated from a previously saved instance,"] +#[doc = " the savedState will be non-NULL and point to the saved data. You must make"] +#[doc = " any copy of this data you need -- it will be released after you return from"] +#[doc = " this function."] +pub type GameActivity_createFunc = ::std::option::Option< + unsafe extern "C" fn( + activity: *mut GameActivity, + savedState: *mut ::std::os::raw::c_void, + savedStateSize: size_t, + ), +>; +extern "C" { + #[doc = " Finish the given activity. Its finish() method will be called, causing it"] + #[doc = " to be stopped and destroyed. Note that this method can be called from"] + #[doc = " *any* thread; it will send a message to the main thread of the process"] + #[doc = " where the Java finish call will take place."] + pub fn GameActivity_finish(activity: *mut GameActivity); +} +#[doc = " As long as this window is visible to the user, allow the lock"] +#[doc = " screen to activate while the screen is on. This can be used"] +#[doc = " independently, or in combination with {@link"] +#[doc = " GAMEACTIVITY_FLAG_KEEP_SCREEN_ON} and/or {@link"] +#[doc = " GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED}"] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_ALLOW_LOCK_WHILE_SCREEN_ON: + GameActivitySetWindowFlags = 1; +#[doc = " Everything behind this window will be dimmed."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DIM_BEHIND: GameActivitySetWindowFlags = 2; +#[doc = " Blur everything behind this window."] +#[doc = " @deprecated Blurring is no longer supported."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_BLUR_BEHIND: GameActivitySetWindowFlags = 4; +#[doc = " This window won't ever get key input focus, so the"] +#[doc = " user can not send key or other button events to it. Those will"] +#[doc = " instead go to whatever focusable window is behind it. This flag"] +#[doc = " will also enable {@link GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL} whether or not"] +#[doc = " that is explicitly set."] +#[doc = ""] +#[doc = " Setting this flag also implies that the window will not need to"] +#[doc = " interact with"] +#[doc = " a soft input method, so it will be Z-ordered and positioned"] +#[doc = " independently of any active input method (typically this means it"] +#[doc = " gets Z-ordered on top of the input method, so it can use the full"] +#[doc = " screen for its content and cover the input method if needed. You"] +#[doc = " can use {@link GAMEACTIVITY_FLAG_ALT_FOCUSABLE_IM} to modify this"] +#[doc = " behavior."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_FOCUSABLE: GameActivitySetWindowFlags = + 8; +#[doc = " This window can never receive touch events."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_TOUCHABLE: GameActivitySetWindowFlags = + 16; +#[doc = " Even when this window is focusable (its"] +#[doc = " {@link GAMEACTIVITY_FLAG_NOT_FOCUSABLE} is not set), allow any pointer"] +#[doc = " events outside of the window to be sent to the windows behind it."] +#[doc = " Otherwise it will consume all pointer events itself, regardless of"] +#[doc = " whether they are inside of the window."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL: GameActivitySetWindowFlags = + 32; +#[doc = " When set, if the device is asleep when the touch"] +#[doc = " screen is pressed, you will receive this first touch event. Usually"] +#[doc = " the first touch event is consumed by the system since the user can"] +#[doc = " not see what they are pressing on."] +#[doc = ""] +#[doc = " @deprecated This flag has no effect."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_TOUCHABLE_WHEN_WAKING: + GameActivitySetWindowFlags = 64; +#[doc = " As long as this window is visible to the user, keep"] +#[doc = " the device's screen turned on and bright."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_KEEP_SCREEN_ON: GameActivitySetWindowFlags = + 128; +#[doc = " Place the window within the entire screen, ignoring"] +#[doc = " decorations around the border (such as the status bar). The"] +#[doc = " window must correctly position its contents to take the screen"] +#[doc = " decoration into account."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_IN_SCREEN: + GameActivitySetWindowFlags = 256; +#[doc = " Allows the window to extend outside of the screen."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_NO_LIMITS: + GameActivitySetWindowFlags = 512; +#[doc = " Hide all screen decorations (such as the status"] +#[doc = " bar) while this window is displayed. This allows the window to"] +#[doc = " use the entire display space for itself -- the status bar will"] +#[doc = " be hidden when an app window with this flag set is on the top"] +#[doc = " layer. A fullscreen window will ignore a value of {@link"] +#[doc = " GAMEACTIVITY_SOFT_INPUT_ADJUST_RESIZE}; the window will stay"] +#[doc = " fullscreen and will not resize."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_FULLSCREEN: GameActivitySetWindowFlags = + 1024; +#[doc = " Override {@link GAMEACTIVITY_FLAG_FULLSCREEN} and force the"] +#[doc = " screen decorations (such as the status bar) to be shown."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_FORCE_NOT_FULLSCREEN: + GameActivitySetWindowFlags = 2048; +#[doc = " Turn on dithering when compositing this window to"] +#[doc = " the screen."] +#[doc = " @deprecated This flag is no longer used."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DITHER: GameActivitySetWindowFlags = 4096; +#[doc = " Treat the content of the window as secure, preventing"] +#[doc = " it from appearing in screenshots or from being viewed on non-secure"] +#[doc = " displays."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SECURE: GameActivitySetWindowFlags = 8192; +#[doc = " A special mode where the layout parameters are used"] +#[doc = " to perform scaling of the surface when it is composited to the"] +#[doc = " screen."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SCALED: GameActivitySetWindowFlags = 16384; +#[doc = " Intended for windows that will often be used when the user is"] +#[doc = " holding the screen against their face, it will aggressively"] +#[doc = " filter the event stream to prevent unintended presses in this"] +#[doc = " situation that may not be desired for a particular window, when"] +#[doc = " such an event stream is detected, the application will receive"] +#[doc = " a {@link AMOTION_EVENT_ACTION_CANCEL} to indicate this so"] +#[doc = " applications can handle this accordingly by taking no action on"] +#[doc = " the event until the finger is released."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_IGNORE_CHEEK_PRESSES: + GameActivitySetWindowFlags = 32768; +#[doc = " A special option only for use in combination with"] +#[doc = " {@link GAMEACTIVITY_FLAG_LAYOUT_IN_SCREEN}. When requesting layout in"] +#[doc = " the screen your window may appear on top of or behind screen decorations"] +#[doc = " such as the status bar. By also including this flag, the window"] +#[doc = " manager will report the inset rectangle needed to ensure your"] +#[doc = " content is not covered by screen decorations."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_LAYOUT_INSET_DECOR: + GameActivitySetWindowFlags = 65536; +#[doc = " Invert the state of {@link GAMEACTIVITY_FLAG_NOT_FOCUSABLE} with"] +#[doc = " respect to how this window interacts with the current method."] +#[doc = " That is, if FLAG_NOT_FOCUSABLE is set and this flag is set,"] +#[doc = " then the window will behave as if it needs to interact with the"] +#[doc = " input method and thus be placed behind/away from it; if {@link"] +#[doc = " GAMEACTIVITY_FLAG_NOT_FOCUSABLE} is not set and this flag is set,"] +#[doc = " then the window will behave as if it doesn't need to interact"] +#[doc = " with the input method and can be placed to use more space and"] +#[doc = " cover the input method."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_ALT_FOCUSABLE_IM: + GameActivitySetWindowFlags = 131072; +#[doc = " If you have set {@link GAMEACTIVITY_FLAG_NOT_TOUCH_MODAL}, you"] +#[doc = " can set this flag to receive a single special MotionEvent with"] +#[doc = " the action"] +#[doc = " {@link AMOTION_EVENT_ACTION_OUTSIDE} for"] +#[doc = " touches that occur outside of your window. Note that you will not"] +#[doc = " receive the full down/move/up gesture, only the location of the"] +#[doc = " first down as an {@link AMOTION_EVENT_ACTION_OUTSIDE}."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_WATCH_OUTSIDE_TOUCH: + GameActivitySetWindowFlags = 262144; +#[doc = " Special flag to let windows be shown when the screen"] +#[doc = " is locked. This will let application windows take precedence over"] +#[doc = " key guard or any other lock screens. Can be used with"] +#[doc = " {@link GAMEACTIVITY_FLAG_KEEP_SCREEN_ON} to turn screen on and display"] +#[doc = " windows directly before showing the key guard window. Can be used with"] +#[doc = " {@link GAMEACTIVITY_FLAG_DISMISS_KEYGUARD} to automatically fully"] +#[doc = " dismisss non-secure keyguards. This flag only applies to the top-most"] +#[doc = " full-screen window."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED: + GameActivitySetWindowFlags = 524288; +#[doc = " Ask that the system wallpaper be shown behind"] +#[doc = " your window. The window surface must be translucent to be able"] +#[doc = " to actually see the wallpaper behind it; this flag just ensures"] +#[doc = " that the wallpaper surface will be there if this window actually"] +#[doc = " has translucent regions."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_SHOW_WALLPAPER: GameActivitySetWindowFlags = + 1048576; +#[doc = " When set as a window is being added or made"] +#[doc = " visible, once the window has been shown then the system will"] +#[doc = " poke the power manager's user activity (as if the user had woken"] +#[doc = " up the device) to turn the screen on."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_TURN_SCREEN_ON: GameActivitySetWindowFlags = + 2097152; +#[doc = " When set the window will cause the keyguard to"] +#[doc = " be dismissed, only if it is not a secure lock keyguard. Because such"] +#[doc = " a keyguard is not needed for security, it will never re-appear if"] +#[doc = " the user navigates to another window (in contrast to"] +#[doc = " {@link GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED}, which will only temporarily"] +#[doc = " hide both secure and non-secure keyguards but ensure they reappear"] +#[doc = " when the user moves to another UI that doesn't hide them)."] +#[doc = " If the keyguard is currently active and is secure (requires an"] +#[doc = " unlock pattern) than the user will still need to confirm it before"] +#[doc = " seeing this window, unless {@link GAMEACTIVITY_FLAG_SHOW_WHEN_LOCKED} has"] +#[doc = " also been set."] +pub const GameActivitySetWindowFlags_GAMEACTIVITY_FLAG_DISMISS_KEYGUARD: + GameActivitySetWindowFlags = 4194304; +#[doc = " Flags for GameActivity_setWindowFlags,"] +#[doc = " as per the Java API at android.view.WindowManager.LayoutParams."] +pub type GameActivitySetWindowFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Change the window flags of the given activity. Calls getWindow().setFlags()"] + #[doc = " of the given activity."] + #[doc = " Note that some flags must be set before the window decoration is created,"] + #[doc = " see"] + #[doc = " https://developer.android.com/reference/android/view/Window#setFlags(int,%20int)."] + #[doc = " Note also that this method can be called from"] + #[doc = " *any* thread; it will send a message to the main thread of the process"] + #[doc = " where the Java finish call will take place."] + pub fn GameActivity_setWindowFlags( + activity: *mut GameActivity, + addFlags: u32, + removeFlags: u32, + ); +} +#[doc = " Implicit request to show the input window, not as the result"] +#[doc = " of a direct request by the user."] +pub const GameActivityShowSoftInputFlags_GAMEACTIVITY_SHOW_SOFT_INPUT_IMPLICIT: + GameActivityShowSoftInputFlags = 1; +#[doc = " The user has forced the input method open (such as by"] +#[doc = " long-pressing menu) so it should not be closed until they"] +#[doc = " explicitly do so."] +pub const GameActivityShowSoftInputFlags_GAMEACTIVITY_SHOW_SOFT_INPUT_FORCED: + GameActivityShowSoftInputFlags = 2; +#[doc = " Flags for GameActivity_showSoftInput; see the Java InputMethodManager"] +#[doc = " API for documentation."] +pub type GameActivityShowSoftInputFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Show the IME while in the given activity. Calls"] + #[doc = " InputMethodManager.showSoftInput() for the given activity. Note that this"] + #[doc = " method can be called from *any* thread; it will send a message to the main"] + #[doc = " thread of the process where the Java call will take place."] + pub fn GameActivity_showSoftInput(activity: *mut GameActivity, flags: u32); +} +extern "C" { + #[doc = " Set the text entry state (see documentation of the GameTextInputState struct"] + #[doc = " in the Game Text Input library reference)."] + #[doc = ""] + #[doc = " Ownership of the state is maintained by the caller."] + pub fn GameActivity_setTextInputState( + activity: *mut GameActivity, + state: *const GameTextInputState, + ); +} +extern "C" { + #[doc = " Get the last-received text entry state (see documentation of the"] + #[doc = " GameTextInputState struct in the Game Text Input library reference)."] + #[doc = ""] + pub fn GameActivity_getTextInputState( + activity: *mut GameActivity, + callback: GameTextInputGetStateCallback, + context: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + #[doc = " Get a pointer to the GameTextInput library instance."] + pub fn GameActivity_getTextInput(activity: *const GameActivity) -> *mut GameTextInput; +} +#[doc = " The soft input window should only be hidden if it was not"] +#[doc = " explicitly shown by the user."] +pub const GameActivityHideSoftInputFlags_GAMEACTIVITY_HIDE_SOFT_INPUT_IMPLICIT_ONLY: + GameActivityHideSoftInputFlags = 1; +#[doc = " The soft input window should normally be hidden, unless it was"] +#[doc = " originally shown with {@link GAMEACTIVITY_SHOW_SOFT_INPUT_FORCED}."] +pub const GameActivityHideSoftInputFlags_GAMEACTIVITY_HIDE_SOFT_INPUT_NOT_ALWAYS: + GameActivityHideSoftInputFlags = 2; +#[doc = " Flags for GameActivity_hideSoftInput; see the Java InputMethodManager"] +#[doc = " API for documentation."] +pub type GameActivityHideSoftInputFlags = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Hide the IME while in the given activity. Calls"] + #[doc = " InputMethodManager.hideSoftInput() for the given activity. Note that this"] + #[doc = " method can be called from *any* thread; it will send a message to the main"] + #[doc = " thread of the process where the Java finish call will take place."] + pub fn GameActivity_hideSoftInput(activity: *mut GameActivity, flags: u32); +} +extern "C" { + #[doc = " Get the current window insets of the particular component. See"] + #[doc = " https://developer.android.com/reference/androidx/core/view/WindowInsetsCompat.Type"] + #[doc = " for more details."] + #[doc = " You can use these insets to influence what you show on the screen."] + pub fn GameActivity_getWindowInsets( + activity: *mut GameActivity, + type_: GameCommonInsetsType, + insets: *mut ARect, + ); +} +extern "C" { + #[doc = " Set options on how the IME behaves when it is requested for text input."] + #[doc = " See"] + #[doc = " https://developer.android.com/reference/android/view/inputmethod/EditorInfo"] + #[doc = " for the meaning of inputType, actionId and imeOptions."] + #[doc = ""] + #[doc = " Note that this function will attach the current thread to the JVM if it is"] + #[doc = " not already attached, so the caller must detach the thread from the JVM"] + #[doc = " before the thread is destroyed using DetachCurrentThread."] + pub fn GameActivity_setImeEditorInfo( + activity: *mut GameActivity, + inputType: ::std::os::raw::c_int, + actionId: ::std::os::raw::c_int, + imeOptions: ::std::os::raw::c_int, + ); +} +pub const ACONFIGURATION_ORIENTATION_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_ORIENTATION_PORT: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_ORIENTATION_LAND: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_ORIENTATION_SQUARE: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_TOUCHSCREEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_TOUCHSCREEN_NOTOUCH: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_TOUCHSCREEN_STYLUS: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_TOUCHSCREEN_FINGER: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_DENSITY_DEFAULT: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_DENSITY_LOW: ::std::os::raw::c_uint = 120; +pub const ACONFIGURATION_DENSITY_MEDIUM: ::std::os::raw::c_uint = 160; +pub const ACONFIGURATION_DENSITY_TV: ::std::os::raw::c_uint = 213; +pub const ACONFIGURATION_DENSITY_HIGH: ::std::os::raw::c_uint = 240; +pub const ACONFIGURATION_DENSITY_XHIGH: ::std::os::raw::c_uint = 320; +pub const ACONFIGURATION_DENSITY_XXHIGH: ::std::os::raw::c_uint = 480; +pub const ACONFIGURATION_DENSITY_XXXHIGH: ::std::os::raw::c_uint = 640; +pub const ACONFIGURATION_DENSITY_ANY: ::std::os::raw::c_uint = 65534; +pub const ACONFIGURATION_DENSITY_NONE: ::std::os::raw::c_uint = 65535; +pub const ACONFIGURATION_KEYBOARD_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_KEYBOARD_NOKEYS: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_KEYBOARD_QWERTY: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_KEYBOARD_12KEY: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVIGATION_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_NAVIGATION_NONAV: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_NAVIGATION_DPAD: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_NAVIGATION_TRACKBALL: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVIGATION_WHEEL: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_KEYSHIDDEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_KEYSHIDDEN_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_KEYSHIDDEN_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_KEYSHIDDEN_SOFT: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_NAVHIDDEN_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_NAVHIDDEN_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_NAVHIDDEN_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENSIZE_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENSIZE_SMALL: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENSIZE_NORMAL: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENSIZE_LARGE: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_SCREENSIZE_XLARGE: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_SCREENLONG_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENLONG_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENLONG_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREENROUND_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREENROUND_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_SCREENROUND_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_WIDE_COLOR_GAMUT_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_HDR_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_HDR_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_HDR_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_UI_MODE_TYPE_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_UI_MODE_TYPE_NORMAL: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_UI_MODE_TYPE_DESK: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_UI_MODE_TYPE_CAR: ::std::os::raw::c_uint = 3; +pub const ACONFIGURATION_UI_MODE_TYPE_TELEVISION: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_UI_MODE_TYPE_APPLIANCE: ::std::os::raw::c_uint = 5; +pub const ACONFIGURATION_UI_MODE_TYPE_WATCH: ::std::os::raw::c_uint = 6; +pub const ACONFIGURATION_UI_MODE_TYPE_VR_HEADSET: ::std::os::raw::c_uint = 7; +pub const ACONFIGURATION_UI_MODE_NIGHT_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_UI_MODE_NIGHT_NO: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_UI_MODE_NIGHT_YES: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_SCREEN_WIDTH_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SCREEN_HEIGHT_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_SMALLEST_SCREEN_WIDTH_DP_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_LAYOUTDIR_ANY: ::std::os::raw::c_uint = 0; +pub const ACONFIGURATION_LAYOUTDIR_LTR: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_LAYOUTDIR_RTL: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_MCC: ::std::os::raw::c_uint = 1; +pub const ACONFIGURATION_MNC: ::std::os::raw::c_uint = 2; +pub const ACONFIGURATION_LOCALE: ::std::os::raw::c_uint = 4; +pub const ACONFIGURATION_TOUCHSCREEN: ::std::os::raw::c_uint = 8; +pub const ACONFIGURATION_KEYBOARD: ::std::os::raw::c_uint = 16; +pub const ACONFIGURATION_KEYBOARD_HIDDEN: ::std::os::raw::c_uint = 32; +pub const ACONFIGURATION_NAVIGATION: ::std::os::raw::c_uint = 64; +pub const ACONFIGURATION_ORIENTATION: ::std::os::raw::c_uint = 128; +pub const ACONFIGURATION_DENSITY: ::std::os::raw::c_uint = 256; +pub const ACONFIGURATION_SCREEN_SIZE: ::std::os::raw::c_uint = 512; +pub const ACONFIGURATION_VERSION: ::std::os::raw::c_uint = 1024; +pub const ACONFIGURATION_SCREEN_LAYOUT: ::std::os::raw::c_uint = 2048; +pub const ACONFIGURATION_UI_MODE: ::std::os::raw::c_uint = 4096; +pub const ACONFIGURATION_SMALLEST_SCREEN_SIZE: ::std::os::raw::c_uint = 8192; +pub const ACONFIGURATION_LAYOUTDIR: ::std::os::raw::c_uint = 16384; +pub const ACONFIGURATION_SCREEN_ROUND: ::std::os::raw::c_uint = 32768; +pub const ACONFIGURATION_COLOR_MODE: ::std::os::raw::c_uint = 65536; +pub const ACONFIGURATION_MNC_ZERO: ::std::os::raw::c_uint = 65535; +pub type _bindgen_ty_21 = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct pollfd { + pub fd: ::std::os::raw::c_int, + pub events: ::std::os::raw::c_short, + pub revents: ::std::os::raw::c_short, +} +#[test] +fn bindgen_test_layout_pollfd() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(pollfd)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(pollfd)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fd as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(fd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).events as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(events) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).revents as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(pollfd), + "::", + stringify!(revents) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _fpx_sw_bytes { + pub magic1: __u32, + pub extended_size: __u32, + pub xfeatures: __u64, + pub xstate_size: __u32, + pub padding: [__u32; 7usize], +} +#[test] +fn bindgen_test_layout__fpx_sw_bytes() { + assert_eq!( + ::std::mem::size_of::<_fpx_sw_bytes>(), + 48usize, + concat!("Size of: ", stringify!(_fpx_sw_bytes)) + ); + assert_eq!( + ::std::mem::align_of::<_fpx_sw_bytes>(), + 8usize, + concat!("Alignment of ", stringify!(_fpx_sw_bytes)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpx_sw_bytes>())).magic1 as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpx_sw_bytes), + "::", + stringify!(magic1) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpx_sw_bytes>())).extended_size as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(_fpx_sw_bytes), + "::", + stringify!(extended_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpx_sw_bytes>())).xfeatures as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_fpx_sw_bytes), + "::", + stringify!(xfeatures) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpx_sw_bytes>())).xstate_size as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(_fpx_sw_bytes), + "::", + stringify!(xstate_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpx_sw_bytes>())).padding as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(_fpx_sw_bytes), + "::", + stringify!(padding) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _fpreg { + pub significand: [__u16; 4usize], + pub exponent: __u16, +} +#[test] +fn bindgen_test_layout__fpreg() { + assert_eq!( + ::std::mem::size_of::<_fpreg>(), + 10usize, + concat!("Size of: ", stringify!(_fpreg)) + ); + assert_eq!( + ::std::mem::align_of::<_fpreg>(), + 2usize, + concat!("Alignment of ", stringify!(_fpreg)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpreg>())).significand as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpreg), + "::", + stringify!(significand) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpreg>())).exponent as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_fpreg), + "::", + stringify!(exponent) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _fpxreg { + pub significand: [__u16; 4usize], + pub exponent: __u16, + pub padding: [__u16; 3usize], +} +#[test] +fn bindgen_test_layout__fpxreg() { + assert_eq!( + ::std::mem::size_of::<_fpxreg>(), + 16usize, + concat!("Size of: ", stringify!(_fpxreg)) + ); + assert_eq!( + ::std::mem::align_of::<_fpxreg>(), + 2usize, + concat!("Alignment of ", stringify!(_fpxreg)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpxreg>())).significand as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpxreg), + "::", + stringify!(significand) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpxreg>())).exponent as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_fpxreg), + "::", + stringify!(exponent) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpxreg>())).padding as *const _ as usize }, + 10usize, + concat!( + "Offset of field: ", + stringify!(_fpxreg), + "::", + stringify!(padding) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _xmmreg { + pub element: [__u32; 4usize], +} +#[test] +fn bindgen_test_layout__xmmreg() { + assert_eq!( + ::std::mem::size_of::<_xmmreg>(), + 16usize, + concat!("Size of: ", stringify!(_xmmreg)) + ); + assert_eq!( + ::std::mem::align_of::<_xmmreg>(), + 4usize, + concat!("Alignment of ", stringify!(_xmmreg)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_xmmreg>())).element as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_xmmreg), + "::", + stringify!(element) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct _fpstate_32 { + pub cw: __u32, + pub sw: __u32, + pub tag: __u32, + pub ipoff: __u32, + pub cssel: __u32, + pub dataoff: __u32, + pub datasel: __u32, + pub _st: [_fpreg; 8usize], + pub status: __u16, + pub magic: __u16, + pub _fxsr_env: [__u32; 6usize], + pub mxcsr: __u32, + pub reserved: __u32, + pub _fxsr_st: [_fpxreg; 8usize], + pub _xmm: [_xmmreg; 8usize], + pub __bindgen_anon_1: _fpstate_32__bindgen_ty_1, + pub __bindgen_anon_2: _fpstate_32__bindgen_ty_2, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union _fpstate_32__bindgen_ty_1 { + pub padding1: [__u32; 44usize], + pub padding: [__u32; 44usize], +} +#[test] +fn bindgen_test_layout__fpstate_32__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<_fpstate_32__bindgen_ty_1>(), + 176usize, + concat!("Size of: ", stringify!(_fpstate_32__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::<_fpstate_32__bindgen_ty_1>(), + 4usize, + concat!("Alignment of ", stringify!(_fpstate_32__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_32__bindgen_ty_1>())).padding1 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32__bindgen_ty_1), + "::", + stringify!(padding1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_32__bindgen_ty_1>())).padding as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32__bindgen_ty_1), + "::", + stringify!(padding) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union _fpstate_32__bindgen_ty_2 { + pub padding2: [__u32; 12usize], + pub sw_reserved: _fpx_sw_bytes, +} +#[test] +fn bindgen_test_layout__fpstate_32__bindgen_ty_2() { + assert_eq!( + ::std::mem::size_of::<_fpstate_32__bindgen_ty_2>(), + 48usize, + concat!("Size of: ", stringify!(_fpstate_32__bindgen_ty_2)) + ); + assert_eq!( + ::std::mem::align_of::<_fpstate_32__bindgen_ty_2>(), + 8usize, + concat!("Alignment of ", stringify!(_fpstate_32__bindgen_ty_2)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_32__bindgen_ty_2>())).padding2 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32__bindgen_ty_2), + "::", + stringify!(padding2) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_32__bindgen_ty_2>())).sw_reserved as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32__bindgen_ty_2), + "::", + stringify!(sw_reserved) + ) + ); +} +#[test] +fn bindgen_test_layout__fpstate_32() { + assert_eq!( + ::std::mem::size_of::<_fpstate_32>(), + 624usize, + concat!("Size of: ", stringify!(_fpstate_32)) + ); + assert_eq!( + ::std::mem::align_of::<_fpstate_32>(), + 8usize, + concat!("Alignment of ", stringify!(_fpstate_32)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).cw as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(cw) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).sw as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(sw) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).tag as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(tag) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).ipoff as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(ipoff) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).cssel as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(cssel) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).dataoff as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(dataoff) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).datasel as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(datasel) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>()))._st as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(_st) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).status as *const _ as usize }, + 108usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(status) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).magic as *const _ as usize }, + 110usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(magic) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>()))._fxsr_env as *const _ as usize }, + 112usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(_fxsr_env) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).mxcsr as *const _ as usize }, + 136usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(mxcsr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>())).reserved as *const _ as usize }, + 140usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(reserved) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>()))._fxsr_st as *const _ as usize }, + 144usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(_fxsr_st) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_32>()))._xmm as *const _ as usize }, + 272usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_32), + "::", + stringify!(_xmm) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct _fpstate_64 { + pub cwd: __u16, + pub swd: __u16, + pub twd: __u16, + pub fop: __u16, + pub rip: __u64, + pub rdp: __u64, + pub mxcsr: __u32, + pub mxcsr_mask: __u32, + pub st_space: [__u32; 32usize], + pub xmm_space: [__u32; 64usize], + pub reserved2: [__u32; 12usize], + pub __bindgen_anon_1: _fpstate_64__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union _fpstate_64__bindgen_ty_1 { + pub reserved3: [__u32; 12usize], + pub sw_reserved: _fpx_sw_bytes, +} +#[test] +fn bindgen_test_layout__fpstate_64__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<_fpstate_64__bindgen_ty_1>(), + 48usize, + concat!("Size of: ", stringify!(_fpstate_64__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::<_fpstate_64__bindgen_ty_1>(), + 8usize, + concat!("Alignment of ", stringify!(_fpstate_64__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_64__bindgen_ty_1>())).reserved3 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64__bindgen_ty_1), + "::", + stringify!(reserved3) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<_fpstate_64__bindgen_ty_1>())).sw_reserved as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64__bindgen_ty_1), + "::", + stringify!(sw_reserved) + ) + ); +} +#[test] +fn bindgen_test_layout__fpstate_64() { + assert_eq!( + ::std::mem::size_of::<_fpstate_64>(), + 512usize, + concat!("Size of: ", stringify!(_fpstate_64)) + ); + assert_eq!( + ::std::mem::align_of::<_fpstate_64>(), + 8usize, + concat!("Alignment of ", stringify!(_fpstate_64)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).cwd as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(cwd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).swd as *const _ as usize }, + 2usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(swd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).twd as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(twd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).fop as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(fop) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).rip as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(rip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).rdp as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(rdp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).mxcsr as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(mxcsr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).mxcsr_mask as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(mxcsr_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).st_space as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(st_space) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).xmm_space as *const _ as usize }, + 160usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(xmm_space) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_fpstate_64>())).reserved2 as *const _ as usize }, + 416usize, + concat!( + "Offset of field: ", + stringify!(_fpstate_64), + "::", + stringify!(reserved2) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _header { + pub xfeatures: __u64, + pub reserved1: [__u64; 2usize], + pub reserved2: [__u64; 5usize], +} +#[test] +fn bindgen_test_layout__header() { + assert_eq!( + ::std::mem::size_of::<_header>(), + 64usize, + concat!("Size of: ", stringify!(_header)) + ); + assert_eq!( + ::std::mem::align_of::<_header>(), + 8usize, + concat!("Alignment of ", stringify!(_header)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_header>())).xfeatures as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_header), + "::", + stringify!(xfeatures) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_header>())).reserved1 as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_header), + "::", + stringify!(reserved1) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_header>())).reserved2 as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(_header), + "::", + stringify!(reserved2) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _ymmh_state { + pub ymmh_space: [__u32; 64usize], +} +#[test] +fn bindgen_test_layout__ymmh_state() { + assert_eq!( + ::std::mem::size_of::<_ymmh_state>(), + 256usize, + concat!("Size of: ", stringify!(_ymmh_state)) + ); + assert_eq!( + ::std::mem::align_of::<_ymmh_state>(), + 4usize, + concat!("Alignment of ", stringify!(_ymmh_state)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_ymmh_state>())).ymmh_space as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_ymmh_state), + "::", + stringify!(ymmh_space) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct _xstate { + pub fpstate: _fpstate_64, + pub xstate_hdr: _header, + pub ymmh: _ymmh_state, +} +#[test] +fn bindgen_test_layout__xstate() { + assert_eq!( + ::std::mem::size_of::<_xstate>(), + 832usize, + concat!("Size of: ", stringify!(_xstate)) + ); + assert_eq!( + ::std::mem::align_of::<_xstate>(), + 8usize, + concat!("Alignment of ", stringify!(_xstate)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_xstate>())).fpstate as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_xstate), + "::", + stringify!(fpstate) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_xstate>())).xstate_hdr as *const _ as usize }, + 512usize, + concat!( + "Offset of field: ", + stringify!(_xstate), + "::", + stringify!(xstate_hdr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_xstate>())).ymmh as *const _ as usize }, + 576usize, + concat!( + "Offset of field: ", + stringify!(_xstate), + "::", + stringify!(ymmh) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigcontext_32 { + pub gs: __u16, + pub __gsh: __u16, + pub fs: __u16, + pub __fsh: __u16, + pub es: __u16, + pub __esh: __u16, + pub ds: __u16, + pub __dsh: __u16, + pub di: __u32, + pub si: __u32, + pub bp: __u32, + pub sp: __u32, + pub bx: __u32, + pub dx: __u32, + pub cx: __u32, + pub ax: __u32, + pub trapno: __u32, + pub err: __u32, + pub ip: __u32, + pub cs: __u16, + pub __csh: __u16, + pub flags: __u32, + pub sp_at_signal: __u32, + pub ss: __u16, + pub __ssh: __u16, + pub fpstate: __u32, + pub oldmask: __u32, + pub cr2: __u32, +} +#[test] +fn bindgen_test_layout_sigcontext_32() { + assert_eq!( + ::std::mem::size_of::(), + 88usize, + concat!("Size of: ", stringify!(sigcontext_32)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sigcontext_32)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).gs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(gs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__gsh as *const _ as usize }, + 2usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__gsh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fs as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(fs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__fsh as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__fsh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).es as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(es) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__esh as *const _ as usize }, + 10usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__esh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ds as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(ds) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__dsh as *const _ as usize }, + 14usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__dsh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).di as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(di) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).si as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(si) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bp as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(bp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sp as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(sp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bx as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(bx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).dx as *const _ as usize }, + 36usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(dx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cx as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(cx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ax as *const _ as usize }, + 44usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(ax) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).trapno as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(trapno) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).err as *const _ as usize }, + 52usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(err) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ip as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(ip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cs as *const _ as usize }, + 60usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(cs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__csh as *const _ as usize }, + 62usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__csh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sp_at_signal as *const _ as usize }, + 68usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(sp_at_signal) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(ss) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__ssh as *const _ as usize }, + 74usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(__ssh) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpstate as *const _ as usize }, + 76usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(fpstate) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).oldmask as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(oldmask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cr2 as *const _ as usize }, + 84usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_32), + "::", + stringify!(cr2) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigcontext_64 { + pub r8: __u64, + pub r9: __u64, + pub r10: __u64, + pub r11: __u64, + pub r12: __u64, + pub r13: __u64, + pub r14: __u64, + pub r15: __u64, + pub di: __u64, + pub si: __u64, + pub bp: __u64, + pub bx: __u64, + pub dx: __u64, + pub ax: __u64, + pub cx: __u64, + pub sp: __u64, + pub ip: __u64, + pub flags: __u64, + pub cs: __u16, + pub gs: __u16, + pub fs: __u16, + pub ss: __u16, + pub err: __u64, + pub trapno: __u64, + pub oldmask: __u64, + pub cr2: __u64, + pub fpstate: __u64, + pub reserved1: [__u64; 8usize], +} +#[test] +fn bindgen_test_layout_sigcontext_64() { + assert_eq!( + ::std::mem::size_of::(), + 256usize, + concat!("Size of: ", stringify!(sigcontext_64)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigcontext_64)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r8 as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r8) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r9 as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r9) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r10 as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r10) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r11 as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r11) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r12 as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r12) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r13 as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r13) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r14 as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r14) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r15 as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(r15) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).di as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(di) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).si as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(si) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bp as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(bp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).bx as *const _ as usize }, + 88usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(bx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).dx as *const _ as usize }, + 96usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(dx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ax as *const _ as usize }, + 104usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(ax) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cx as *const _ as usize }, + 112usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(cx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sp as *const _ as usize }, + 120usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(sp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ip as *const _ as usize }, + 128usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(ip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 136usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cs as *const _ as usize }, + 144usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(cs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).gs as *const _ as usize }, + 146usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(gs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fs as *const _ as usize }, + 148usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(fs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss as *const _ as usize }, + 150usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(ss) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).err as *const _ as usize }, + 152usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(err) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).trapno as *const _ as usize }, + 160usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(trapno) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).oldmask as *const _ as usize }, + 168usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(oldmask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cr2 as *const _ as usize }, + 176usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(cr2) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpstate as *const _ as usize }, + 184usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(fpstate) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).reserved1 as *const _ as usize }, + 192usize, + concat!( + "Offset of field: ", + stringify!(sigcontext_64), + "::", + stringify!(reserved1) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigcontext { + pub r8: __u64, + pub r9: __u64, + pub r10: __u64, + pub r11: __u64, + pub r12: __u64, + pub r13: __u64, + pub r14: __u64, + pub r15: __u64, + pub rdi: __u64, + pub rsi: __u64, + pub rbp: __u64, + pub rbx: __u64, + pub rdx: __u64, + pub rax: __u64, + pub rcx: __u64, + pub rsp: __u64, + pub rip: __u64, + pub eflags: __u64, + pub cs: __u16, + pub gs: __u16, + pub fs: __u16, + pub __bindgen_anon_1: sigcontext__bindgen_ty_1, + pub err: __u64, + pub trapno: __u64, + pub oldmask: __u64, + pub cr2: __u64, + pub fpstate: *mut _fpstate_64, + pub reserved1: [__u64; 8usize], +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigcontext__bindgen_ty_1 { + pub ss: __u16, + pub __pad0: __u16, +} +#[test] +fn bindgen_test_layout_sigcontext__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 2usize, + concat!("Size of: ", stringify!(sigcontext__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 2usize, + concat!("Alignment of ", stringify!(sigcontext__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigcontext__bindgen_ty_1), + "::", + stringify!(ss) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__pad0 as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigcontext__bindgen_ty_1), + "::", + stringify!(__pad0) + ) + ); +} +#[test] +fn bindgen_test_layout_sigcontext() { + assert_eq!( + ::std::mem::size_of::(), + 256usize, + concat!("Size of: ", stringify!(sigcontext)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigcontext)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r8 as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(r8) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r9 as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(r9) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r10 as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(r10) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r11 as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(r11) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r12 as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(r12) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r13 as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(r13) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r14 as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(r14) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r15 as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(r15) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rdi as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(rdi) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rsi as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(rsi) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rbp as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(rbp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rbx as *const _ as usize }, + 88usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(rbx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rdx as *const _ as usize }, + 96usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(rdx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rax as *const _ as usize }, + 104usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(rax) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rcx as *const _ as usize }, + 112usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(rcx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rsp as *const _ as usize }, + 120usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(rsp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rip as *const _ as usize }, + 128usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(rip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eflags as *const _ as usize }, + 136usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(eflags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cs as *const _ as usize }, + 144usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(cs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).gs as *const _ as usize }, + 146usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(gs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fs as *const _ as usize }, + 148usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(fs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).err as *const _ as usize }, + 152usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(err) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).trapno as *const _ as usize }, + 160usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(trapno) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).oldmask as *const _ as usize }, + 168usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(oldmask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cr2 as *const _ as usize }, + 176usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(cr2) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpstate as *const _ as usize }, + 184usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(fpstate) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).reserved1 as *const _ as usize }, + 192usize, + concat!( + "Offset of field: ", + stringify!(sigcontext), + "::", + stringify!(reserved1) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_timespec { + pub tv_sec: __kernel_time64_t, + pub tv_nsec: ::std::os::raw::c_longlong, +} +#[test] +fn bindgen_test_layout___kernel_timespec() { + assert_eq!( + ::std::mem::size_of::<__kernel_timespec>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_timespec)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_timespec>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_timespec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_timespec>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_timespec), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_timespec>())).tv_nsec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_timespec), + "::", + stringify!(tv_nsec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_itimerspec { + pub it_interval: __kernel_timespec, + pub it_value: __kernel_timespec, +} +#[test] +fn bindgen_test_layout___kernel_itimerspec() { + assert_eq!( + ::std::mem::size_of::<__kernel_itimerspec>(), + 32usize, + concat!("Size of: ", stringify!(__kernel_itimerspec)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_itimerspec>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_itimerspec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_itimerspec>())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_itimerspec), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_itimerspec>())).it_value as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__kernel_itimerspec), + "::", + stringify!(it_value) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_old_timeval { + pub tv_sec: __kernel_long_t, + pub tv_usec: __kernel_long_t, +} +#[test] +fn bindgen_test_layout___kernel_old_timeval() { + assert_eq!( + ::std::mem::size_of::<__kernel_old_timeval>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_old_timeval)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_old_timeval>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_old_timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_old_timeval>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_old_timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_old_timeval>())).tv_usec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_old_timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_sock_timeval { + pub tv_sec: __s64, + pub tv_usec: __s64, +} +#[test] +fn bindgen_test_layout___kernel_sock_timeval() { + assert_eq!( + ::std::mem::size_of::<__kernel_sock_timeval>(), + 16usize, + concat!("Size of: ", stringify!(__kernel_sock_timeval)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_sock_timeval>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_sock_timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sock_timeval>())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sock_timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sock_timeval>())).tv_usec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sock_timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timespec { + pub tv_sec: __kernel_time_t, + pub tv_nsec: ::std::os::raw::c_long, +} +#[test] +fn bindgen_test_layout_timespec() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(timespec)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(timespec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timespec), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_nsec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(timespec), + "::", + stringify!(tv_nsec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timeval { + pub tv_sec: __kernel_time_t, + pub tv_usec: __kernel_suseconds_t, +} +#[test] +fn bindgen_test_layout_timeval() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(timeval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(timeval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timeval), + "::", + stringify!(tv_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tv_usec as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(timeval), + "::", + stringify!(tv_usec) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct timezone { + pub tz_minuteswest: ::std::os::raw::c_int, + pub tz_dsttime: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout_timezone() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(timezone)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(timezone)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tz_minuteswest as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(timezone), + "::", + stringify!(tz_minuteswest) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tz_dsttime as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(timezone), + "::", + stringify!(tz_dsttime) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct itimerspec { + pub it_interval: timespec, + pub it_value: timespec, +} +#[test] +fn bindgen_test_layout_itimerspec() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(itimerspec)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(itimerspec)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(itimerspec), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_value as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(itimerspec), + "::", + stringify!(it_value) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct itimerval { + pub it_interval: timeval, + pub it_value: timeval, +} +#[test] +fn bindgen_test_layout_itimerval() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(itimerval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(itimerval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_interval as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(itimerval), + "::", + stringify!(it_interval) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).it_value as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(itimerval), + "::", + stringify!(it_value) + ) + ); +} +pub type sigset_t = ::std::os::raw::c_ulong; +pub type __signalfn_t = ::std::option::Option; +pub type __sighandler_t = __signalfn_t; +pub type __restorefn_t = ::std::option::Option; +pub type __sigrestore_t = __restorefn_t; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __kernel_sigaction { + pub sa_handler: __sighandler_t, + pub sa_flags: ::std::os::raw::c_ulong, + pub sa_restorer: __sigrestore_t, + pub sa_mask: sigset_t, +} +#[test] +fn bindgen_test_layout___kernel_sigaction() { + assert_eq!( + ::std::mem::size_of::<__kernel_sigaction>(), + 32usize, + concat!("Size of: ", stringify!(__kernel_sigaction)) + ); + assert_eq!( + ::std::mem::align_of::<__kernel_sigaction>(), + 8usize, + concat!("Alignment of ", stringify!(__kernel_sigaction)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_handler as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_handler) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_flags as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_restorer as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_restorer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__kernel_sigaction>())).sa_mask as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(__kernel_sigaction), + "::", + stringify!(sa_mask) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigaltstack { + pub ss_sp: *mut ::std::os::raw::c_void, + pub ss_flags: ::std::os::raw::c_int, + pub ss_size: size_t, +} +#[test] +fn bindgen_test_layout_sigaltstack() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(sigaltstack)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigaltstack)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_sp as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_sp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_flags as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss_size as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigaltstack), + "::", + stringify!(ss_size) + ) + ); +} +pub type stack_t = sigaltstack; +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigval { + pub sival_int: ::std::os::raw::c_int, + pub sival_ptr: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_sigval() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(sigval)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigval)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sival_int as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigval), + "::", + stringify!(sival_int) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sival_ptr as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigval), + "::", + stringify!(sival_ptr) + ) + ); +} +pub type sigval_t = sigval; +#[repr(C)] +#[derive(Copy, Clone)] +pub union __sifields { + pub _kill: __sifields__bindgen_ty_1, + pub _timer: __sifields__bindgen_ty_2, + pub _rt: __sifields__bindgen_ty_3, + pub _sigchld: __sifields__bindgen_ty_4, + pub _sigfault: __sifields__bindgen_ty_5, + pub _sigpoll: __sifields__bindgen_ty_6, + pub _sigsys: __sifields__bindgen_ty_7, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_1 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_1>(), + 8usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_1>(), + 4usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_1>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_1), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_1>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_1), + "::", + stringify!(_uid) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_2 { + pub _tid: __kernel_timer_t, + pub _overrun: ::std::os::raw::c_int, + pub _sigval: sigval_t, + pub _sys_private: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_2() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_2>(), + 24usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_2)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_2>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_2)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._tid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_tid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._overrun as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_overrun) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._sigval as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_sigval) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_2>()))._sys_private as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_2), + "::", + stringify!(_sys_private) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_3 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, + pub _sigval: sigval_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_3() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_3>(), + 16usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_3)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_3>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_3)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_uid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_3>()))._sigval as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_3), + "::", + stringify!(_sigval) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_4 { + pub _pid: __kernel_pid_t, + pub _uid: __kernel_uid32_t, + pub _status: ::std::os::raw::c_int, + pub _utime: __kernel_clock_t, + pub _stime: __kernel_clock_t, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_4() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_4>(), + 32usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_4)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_4>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_4)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._pid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_pid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._uid as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_uid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._status as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_status) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._utime as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_utime) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_4>()))._stime as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_4), + "::", + stringify!(_stime) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct __sifields__bindgen_ty_5 { + pub _addr: *mut ::std::os::raw::c_void, + pub __bindgen_anon_1: __sifields__bindgen_ty_5__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union __sifields__bindgen_ty_5__bindgen_ty_1 { + pub _addr_lsb: ::std::os::raw::c_short, + pub _addr_bnd: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1, + pub _addr_pkey: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1 { + pub _dummy_bnd: [::std::os::raw::c_char; 8usize], + pub _lower: *mut ::std::os::raw::c_void, + pub _upper: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>(), + 24usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>(), + 8usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>())) + ._dummy_bnd as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_dummy_bnd) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>()))._lower + as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_lower) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1>()))._upper + as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_upper) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2 { + pub _dummy_pkey: [::std::os::raw::c_char; 8usize], + pub _pkey: __u32, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>(), + 12usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>(), + 4usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>())) + ._dummy_pkey as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2), + "::", + stringify!(_dummy_pkey) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2>()))._pkey + as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2), + "::", + stringify!(_pkey) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5__bindgen_ty_1>(), + 24usize, + concat!( + "Size of: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5__bindgen_ty_1>(), + 8usize, + concat!( + "Alignment of ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_lsb as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_lsb) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_bnd as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_bnd) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_5__bindgen_ty_1>()))._addr_pkey + as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5__bindgen_ty_1), + "::", + stringify!(_addr_pkey) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_5() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_5>(), + 32usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_5)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_5>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_5)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_5>()))._addr as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_5), + "::", + stringify!(_addr) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_6 { + pub _band: ::std::os::raw::c_long, + pub _fd: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_6() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_6>(), + 16usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_6)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_6>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_6)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_6>()))._band as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_6), + "::", + stringify!(_band) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_6>()))._fd as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_6), + "::", + stringify!(_fd) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __sifields__bindgen_ty_7 { + pub _call_addr: *mut ::std::os::raw::c_void, + pub _syscall: ::std::os::raw::c_int, + pub _arch: ::std::os::raw::c_uint, +} +#[test] +fn bindgen_test_layout___sifields__bindgen_ty_7() { + assert_eq!( + ::std::mem::size_of::<__sifields__bindgen_ty_7>(), + 16usize, + concat!("Size of: ", stringify!(__sifields__bindgen_ty_7)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields__bindgen_ty_7>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields__bindgen_ty_7)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._call_addr as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_call_addr) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._syscall as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_syscall) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields__bindgen_ty_7>()))._arch as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(__sifields__bindgen_ty_7), + "::", + stringify!(_arch) + ) + ); +} +#[test] +fn bindgen_test_layout___sifields() { + assert_eq!( + ::std::mem::size_of::<__sifields>(), + 32usize, + concat!("Size of: ", stringify!(__sifields)) + ); + assert_eq!( + ::std::mem::align_of::<__sifields>(), + 8usize, + concat!("Alignment of ", stringify!(__sifields)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._kill as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_kill) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._timer as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_timer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._rt as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_rt) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigchld as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigchld) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigfault as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigfault) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigpoll as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigpoll) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__sifields>()))._sigsys as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__sifields), + "::", + stringify!(_sigsys) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct siginfo { + pub __bindgen_anon_1: siginfo__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union siginfo__bindgen_ty_1 { + pub __bindgen_anon_1: siginfo__bindgen_ty_1__bindgen_ty_1, + pub _si_pad: [::std::os::raw::c_int; 32usize], +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct siginfo__bindgen_ty_1__bindgen_ty_1 { + pub si_signo: ::std::os::raw::c_int, + pub si_errno: ::std::os::raw::c_int, + pub si_code: ::std::os::raw::c_int, + pub _sifields: __sifields, +} +#[test] +fn bindgen_test_layout_siginfo__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 48usize, + concat!("Size of: ", stringify!(siginfo__bindgen_ty_1__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!( + "Alignment of ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_signo as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_signo) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_errno as *const _ + as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_errno) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).si_code as *const _ + as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(si_code) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._sifields as *const _ + as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_sifields) + ) + ); +} +#[test] +fn bindgen_test_layout_siginfo__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(siginfo__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(siginfo__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._si_pad as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(siginfo__bindgen_ty_1), + "::", + stringify!(_si_pad) + ) + ); +} +#[test] +fn bindgen_test_layout_siginfo() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(siginfo)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(siginfo)) + ); +} +pub type siginfo_t = siginfo; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigevent { + pub sigev_value: sigval_t, + pub sigev_signo: ::std::os::raw::c_int, + pub sigev_notify: ::std::os::raw::c_int, + pub _sigev_un: sigevent__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigevent__bindgen_ty_1 { + pub _pad: [::std::os::raw::c_int; 12usize], + pub _tid: ::std::os::raw::c_int, + pub _sigev_thread: sigevent__bindgen_ty_1__bindgen_ty_1, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sigevent__bindgen_ty_1__bindgen_ty_1 { + pub _function: ::std::option::Option, + pub _attribute: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout_sigevent__bindgen_ty_1__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!( + "Size of: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!( + "Alignment of ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._function as *const _ + as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_function) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._attribute as *const _ + as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1__bindgen_ty_1), + "::", + stringify!(_attribute) + ) + ); +} +#[test] +fn bindgen_test_layout_sigevent__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 48usize, + concat!("Size of: ", stringify!(sigevent__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigevent__bindgen_ty_1)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._pad as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_pad) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._tid as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_tid) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::()))._sigev_thread as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent__bindgen_ty_1), + "::", + stringify!(_sigev_thread) + ) + ); +} +#[test] +fn bindgen_test_layout_sigevent() { + assert_eq!( + ::std::mem::size_of::(), + 64usize, + concat!("Size of: ", stringify!(sigevent)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigevent)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_value as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_value) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_signo as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_signo) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sigev_notify as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(sigev_notify) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::()))._sigev_un as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigevent), + "::", + stringify!(_sigev_un) + ) + ); +} +pub type sigevent_t = sigevent; +pub type sig_atomic_t = ::std::os::raw::c_int; +pub type sig_t = __sighandler_t; +pub type sighandler_t = __sighandler_t; +pub type sigset64_t = sigset_t; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigaction { + pub sa_flags: ::std::os::raw::c_int, + pub __bindgen_anon_1: sigaction__bindgen_ty_1, + pub sa_mask: sigset_t, + pub sa_restorer: ::std::option::Option, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigaction__bindgen_ty_1 { + pub sa_handler: sighandler_t, + pub sa_sigaction: ::std::option::Option< + unsafe extern "C" fn( + arg1: ::std::os::raw::c_int, + arg2: *mut siginfo, + arg3: *mut ::std::os::raw::c_void, + ), + >, +} +#[test] +fn bindgen_test_layout_sigaction__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(sigaction__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigaction__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_handler as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction__bindgen_ty_1), + "::", + stringify!(sa_handler) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_sigaction as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction__bindgen_ty_1), + "::", + stringify!(sa_sigaction) + ) + ); +} +#[test] +fn bindgen_test_layout_sigaction() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(sigaction)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigaction)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_mask as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_restorer as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(sigaction), + "::", + stringify!(sa_restorer) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct sigaction64 { + pub sa_flags: ::std::os::raw::c_int, + pub __bindgen_anon_1: sigaction64__bindgen_ty_1, + pub sa_mask: sigset_t, + pub sa_restorer: ::std::option::Option, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union sigaction64__bindgen_ty_1 { + pub sa_handler: sighandler_t, + pub sa_sigaction: ::std::option::Option< + unsafe extern "C" fn( + arg1: ::std::os::raw::c_int, + arg2: *mut siginfo, + arg3: *mut ::std::os::raw::c_void, + ), + >, +} +#[test] +fn bindgen_test_layout_sigaction64__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(sigaction64__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigaction64__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_handler as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction64__bindgen_ty_1), + "::", + stringify!(sa_handler) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).sa_sigaction as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction64__bindgen_ty_1), + "::", + stringify!(sa_sigaction) + ) + ); +} +#[test] +fn bindgen_test_layout_sigaction64() { + assert_eq!( + ::std::mem::size_of::(), + 32usize, + concat!("Size of: ", stringify!(sigaction64)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(sigaction64)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_mask as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sa_restorer as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(sigaction64), + "::", + stringify!(sa_restorer) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user_fpregs_struct { + pub cwd: ::std::os::raw::c_ushort, + pub swd: ::std::os::raw::c_ushort, + pub ftw: ::std::os::raw::c_ushort, + pub fop: ::std::os::raw::c_ushort, + pub rip: ::std::os::raw::c_ulong, + pub rdp: ::std::os::raw::c_ulong, + pub mxcsr: ::std::os::raw::c_uint, + pub mxcr_mask: ::std::os::raw::c_uint, + pub st_space: [::std::os::raw::c_uint; 32usize], + pub xmm_space: [::std::os::raw::c_uint; 64usize], + pub padding: [::std::os::raw::c_uint; 24usize], +} +#[test] +fn bindgen_test_layout_user_fpregs_struct() { + assert_eq!( + ::std::mem::size_of::(), + 512usize, + concat!("Size of: ", stringify!(user_fpregs_struct)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(user_fpregs_struct)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cwd as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(cwd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).swd as *const _ as usize }, + 2usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(swd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ftw as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(ftw) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fop as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(fop) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rip as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(rip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rdp as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(rdp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).mxcsr as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(mxcsr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).mxcr_mask as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(mxcr_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).st_space as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(st_space) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).xmm_space as *const _ as usize }, + 160usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(xmm_space) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).padding as *const _ as usize }, + 416usize, + concat!( + "Offset of field: ", + stringify!(user_fpregs_struct), + "::", + stringify!(padding) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user_regs_struct { + pub r15: ::std::os::raw::c_ulong, + pub r14: ::std::os::raw::c_ulong, + pub r13: ::std::os::raw::c_ulong, + pub r12: ::std::os::raw::c_ulong, + pub rbp: ::std::os::raw::c_ulong, + pub rbx: ::std::os::raw::c_ulong, + pub r11: ::std::os::raw::c_ulong, + pub r10: ::std::os::raw::c_ulong, + pub r9: ::std::os::raw::c_ulong, + pub r8: ::std::os::raw::c_ulong, + pub rax: ::std::os::raw::c_ulong, + pub rcx: ::std::os::raw::c_ulong, + pub rdx: ::std::os::raw::c_ulong, + pub rsi: ::std::os::raw::c_ulong, + pub rdi: ::std::os::raw::c_ulong, + pub orig_rax: ::std::os::raw::c_ulong, + pub rip: ::std::os::raw::c_ulong, + pub cs: ::std::os::raw::c_ulong, + pub eflags: ::std::os::raw::c_ulong, + pub rsp: ::std::os::raw::c_ulong, + pub ss: ::std::os::raw::c_ulong, + pub fs_base: ::std::os::raw::c_ulong, + pub gs_base: ::std::os::raw::c_ulong, + pub ds: ::std::os::raw::c_ulong, + pub es: ::std::os::raw::c_ulong, + pub fs: ::std::os::raw::c_ulong, + pub gs: ::std::os::raw::c_ulong, +} +#[test] +fn bindgen_test_layout_user_regs_struct() { + assert_eq!( + ::std::mem::size_of::(), + 216usize, + concat!("Size of: ", stringify!(user_regs_struct)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(user_regs_struct)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r15 as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(r15) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r14 as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(r14) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r13 as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(r13) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r12 as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(r12) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rbp as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(rbp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rbx as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(rbx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r11 as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(r11) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r10 as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(r10) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r9 as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(r9) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).r8 as *const _ as usize }, + 72usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(r8) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rax as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(rax) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rcx as *const _ as usize }, + 88usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(rcx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rdx as *const _ as usize }, + 96usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(rdx) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rsi as *const _ as usize }, + 104usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(rsi) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rdi as *const _ as usize }, + 112usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(rdi) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).orig_rax as *const _ as usize }, + 120usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(orig_rax) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rip as *const _ as usize }, + 128usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(rip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cs as *const _ as usize }, + 136usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(cs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).eflags as *const _ as usize }, + 144usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(eflags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).rsp as *const _ as usize }, + 152usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(rsp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ss as *const _ as usize }, + 160usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(ss) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fs_base as *const _ as usize }, + 168usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(fs_base) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).gs_base as *const _ as usize }, + 176usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(gs_base) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).ds as *const _ as usize }, + 184usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(ds) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).es as *const _ as usize }, + 192usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(es) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fs as *const _ as usize }, + 200usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(fs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).gs as *const _ as usize }, + 208usize, + concat!( + "Offset of field: ", + stringify!(user_regs_struct), + "::", + stringify!(gs) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct user { + pub regs: user_regs_struct, + pub u_fpvalid: ::std::os::raw::c_int, + pub pad0: ::std::os::raw::c_int, + pub i387: user_fpregs_struct, + pub u_tsize: ::std::os::raw::c_ulong, + pub u_dsize: ::std::os::raw::c_ulong, + pub u_ssize: ::std::os::raw::c_ulong, + pub start_code: ::std::os::raw::c_ulong, + pub start_stack: ::std::os::raw::c_ulong, + pub signal: ::std::os::raw::c_long, + pub reserved: ::std::os::raw::c_int, + pub pad1: ::std::os::raw::c_int, + pub u_ar0: *mut user_regs_struct, + pub u_fpstate: *mut user_fpregs_struct, + pub magic: ::std::os::raw::c_ulong, + pub u_comm: [::std::os::raw::c_char; 32usize], + pub u_debugreg: [::std::os::raw::c_ulong; 8usize], + pub error_code: ::std::os::raw::c_ulong, + pub fault_address: ::std::os::raw::c_ulong, +} +#[test] +fn bindgen_test_layout_user() { + assert_eq!( + ::std::mem::size_of::(), + 928usize, + concat!("Size of: ", stringify!(user)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(user)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).regs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(regs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_fpvalid as *const _ as usize }, + 216usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_fpvalid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pad0 as *const _ as usize }, + 220usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(pad0) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).i387 as *const _ as usize }, + 224usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(i387) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_tsize as *const _ as usize }, + 736usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_tsize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_dsize as *const _ as usize }, + 744usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_dsize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_ssize as *const _ as usize }, + 752usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_ssize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).start_code as *const _ as usize }, + 760usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(start_code) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).start_stack as *const _ as usize }, + 768usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(start_stack) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).signal as *const _ as usize }, + 776usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(signal) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).reserved as *const _ as usize }, + 784usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(reserved) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pad1 as *const _ as usize }, + 788usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(pad1) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_ar0 as *const _ as usize }, + 792usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_ar0) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_fpstate as *const _ as usize }, + 800usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_fpstate) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).magic as *const _ as usize }, + 808usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(magic) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_comm as *const _ as usize }, + 816usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_comm) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).u_debugreg as *const _ as usize }, + 848usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(u_debugreg) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).error_code as *const _ as usize }, + 912usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(error_code) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fault_address as *const _ as usize }, + 920usize, + concat!( + "Offset of field: ", + stringify!(user), + "::", + stringify!(fault_address) + ) + ); +} +pub const REG_R8: ::std::os::raw::c_uint = 0; +pub const REG_R9: ::std::os::raw::c_uint = 1; +pub const REG_R10: ::std::os::raw::c_uint = 2; +pub const REG_R11: ::std::os::raw::c_uint = 3; +pub const REG_R12: ::std::os::raw::c_uint = 4; +pub const REG_R13: ::std::os::raw::c_uint = 5; +pub const REG_R14: ::std::os::raw::c_uint = 6; +pub const REG_R15: ::std::os::raw::c_uint = 7; +pub const REG_RDI: ::std::os::raw::c_uint = 8; +pub const REG_RSI: ::std::os::raw::c_uint = 9; +pub const REG_RBP: ::std::os::raw::c_uint = 10; +pub const REG_RBX: ::std::os::raw::c_uint = 11; +pub const REG_RDX: ::std::os::raw::c_uint = 12; +pub const REG_RAX: ::std::os::raw::c_uint = 13; +pub const REG_RCX: ::std::os::raw::c_uint = 14; +pub const REG_RSP: ::std::os::raw::c_uint = 15; +pub const REG_RIP: ::std::os::raw::c_uint = 16; +pub const REG_EFL: ::std::os::raw::c_uint = 17; +pub const REG_CSGSFS: ::std::os::raw::c_uint = 18; +pub const REG_ERR: ::std::os::raw::c_uint = 19; +pub const REG_TRAPNO: ::std::os::raw::c_uint = 20; +pub const REG_OLDMASK: ::std::os::raw::c_uint = 21; +pub const REG_CR2: ::std::os::raw::c_uint = 22; +pub const NGREG: ::std::os::raw::c_uint = 23; +pub type _bindgen_ty_22 = ::std::os::raw::c_uint; +pub type greg_t = ::std::os::raw::c_long; +pub type gregset_t = [greg_t; 23usize]; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _libc_fpxreg { + pub significand: [::std::os::raw::c_ushort; 4usize], + pub exponent: ::std::os::raw::c_ushort, + pub padding: [::std::os::raw::c_ushort; 3usize], +} +#[test] +fn bindgen_test_layout__libc_fpxreg() { + assert_eq!( + ::std::mem::size_of::<_libc_fpxreg>(), + 16usize, + concat!("Size of: ", stringify!(_libc_fpxreg)) + ); + assert_eq!( + ::std::mem::align_of::<_libc_fpxreg>(), + 2usize, + concat!("Alignment of ", stringify!(_libc_fpxreg)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpxreg>())).significand as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpxreg), + "::", + stringify!(significand) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpxreg>())).exponent as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpxreg), + "::", + stringify!(exponent) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpxreg>())).padding as *const _ as usize }, + 10usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpxreg), + "::", + stringify!(padding) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _libc_xmmreg { + pub element: [u32; 4usize], +} +#[test] +fn bindgen_test_layout__libc_xmmreg() { + assert_eq!( + ::std::mem::size_of::<_libc_xmmreg>(), + 16usize, + concat!("Size of: ", stringify!(_libc_xmmreg)) + ); + assert_eq!( + ::std::mem::align_of::<_libc_xmmreg>(), + 4usize, + concat!("Alignment of ", stringify!(_libc_xmmreg)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_xmmreg>())).element as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_libc_xmmreg), + "::", + stringify!(element) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct _libc_fpstate { + pub cwd: u16, + pub swd: u16, + pub ftw: u16, + pub fop: u16, + pub rip: u64, + pub rdp: u64, + pub mxcsr: u32, + pub mxcr_mask: u32, + pub _st: [_libc_fpxreg; 8usize], + pub _xmm: [_libc_xmmreg; 16usize], + pub padding: [u32; 24usize], +} +#[test] +fn bindgen_test_layout__libc_fpstate() { + assert_eq!( + ::std::mem::size_of::<_libc_fpstate>(), + 512usize, + concat!("Size of: ", stringify!(_libc_fpstate)) + ); + assert_eq!( + ::std::mem::align_of::<_libc_fpstate>(), + 8usize, + concat!("Alignment of ", stringify!(_libc_fpstate)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).cwd as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(cwd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).swd as *const _ as usize }, + 2usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(swd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).ftw as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(ftw) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).fop as *const _ as usize }, + 6usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(fop) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).rip as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(rip) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).rdp as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(rdp) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).mxcsr as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(mxcsr) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).mxcr_mask as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(mxcr_mask) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>()))._st as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(_st) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>()))._xmm as *const _ as usize }, + 160usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(_xmm) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<_libc_fpstate>())).padding as *const _ as usize }, + 416usize, + concat!( + "Offset of field: ", + stringify!(_libc_fpstate), + "::", + stringify!(padding) + ) + ); +} +pub type fpregset_t = *mut _libc_fpstate; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct mcontext_t { + pub gregs: gregset_t, + pub fpregs: fpregset_t, + pub __reserved1: [::std::os::raw::c_ulong; 8usize], +} +#[test] +fn bindgen_test_layout_mcontext_t() { + assert_eq!( + ::std::mem::size_of::(), + 256usize, + concat!("Size of: ", stringify!(mcontext_t)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(mcontext_t)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).gregs as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(mcontext_t), + "::", + stringify!(gregs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fpregs as *const _ as usize }, + 184usize, + concat!( + "Offset of field: ", + stringify!(mcontext_t), + "::", + stringify!(fpregs) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__reserved1 as *const _ as usize }, + 192usize, + concat!( + "Offset of field: ", + stringify!(mcontext_t), + "::", + stringify!(__reserved1) + ) + ); +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct ucontext { + pub uc_flags: ::std::os::raw::c_ulong, + pub uc_link: *mut ucontext, + pub uc_stack: stack_t, + pub uc_mcontext: mcontext_t, + pub __bindgen_anon_1: ucontext__bindgen_ty_1, + pub __fpregs_mem: _libc_fpstate, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union ucontext__bindgen_ty_1 { + pub uc_sigmask: sigset_t, + pub uc_sigmask64: sigset64_t, +} +#[test] +fn bindgen_test_layout_ucontext__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(ucontext__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ucontext__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).uc_sigmask as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext__bindgen_ty_1), + "::", + stringify!(uc_sigmask) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).uc_sigmask64 as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext__bindgen_ty_1), + "::", + stringify!(uc_sigmask64) + ) + ); +} +#[test] +fn bindgen_test_layout_ucontext() { + assert_eq!( + ::std::mem::size_of::(), + 816usize, + concat!("Size of: ", stringify!(ucontext)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ucontext)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_link as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_link) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_stack as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_stack) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).uc_mcontext as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(uc_mcontext) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).__fpregs_mem as *const _ as usize }, + 304usize, + concat!( + "Offset of field: ", + stringify!(ucontext), + "::", + stringify!(__fpregs_mem) + ) + ); +} +pub type ucontext_t = ucontext; +extern "C" { + pub fn __libc_current_sigrtmin() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn __libc_current_sigrtmax() -> ::std::os::raw::c_int; +} +extern "C" { + pub static sys_siglist: [*const ::std::os::raw::c_char; 65usize]; +} +extern "C" { + pub static sys_signame: [*const ::std::os::raw::c_char; 65usize]; +} +extern "C" { + pub fn sigaction( + __signal: ::std::os::raw::c_int, + __new_action: *const sigaction, + __old_action: *mut sigaction, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaction64( + __signal: ::std::os::raw::c_int, + __new_action: *const sigaction64, + __old_action: *mut sigaction64, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn siginterrupt( + __signal: ::std::os::raw::c_int, + __flag: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn signal(__signal: ::std::os::raw::c_int, __handler: sighandler_t) -> sighandler_t; +} +extern "C" { + pub fn sigaddset( + __set: *mut sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaddset64( + __set: *mut sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigdelset( + __set: *mut sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigdelset64( + __set: *mut sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigemptyset(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigemptyset64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigfillset(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigfillset64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigismember( + __set: *const sigset_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigismember64( + __set: *const sigset64_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpending(__set: *mut sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpending64(__set: *mut sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigprocmask( + __how: ::std::os::raw::c_int, + __new_set: *const sigset_t, + __old_set: *mut sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigprocmask64( + __how: ::std::os::raw::c_int, + __new_set: *const sigset64_t, + __old_set: *mut sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigsuspend(__mask: *const sigset_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigsuspend64(__mask: *const sigset64_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwait( + __set: *const sigset_t, + __signal: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwait64( + __set: *const sigset64_t, + __signal: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sighold(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigignore(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigpause(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigrelse(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigset(__signal: ::std::os::raw::c_int, __handler: sighandler_t) -> sighandler_t; +} +extern "C" { + pub fn raise(__signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn kill(__pid: pid_t, __signal: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn killpg( + __pgrp: ::std::os::raw::c_int, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn tgkill( + __tgid: ::std::os::raw::c_int, + __tid: ::std::os::raw::c_int, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigaltstack( + __new_signal_stack: *const stack_t, + __old_signal_stack: *mut stack_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn psiginfo(__info: *const siginfo_t, __msg: *const ::std::os::raw::c_char); +} +extern "C" { + pub fn psignal(__signal: ::std::os::raw::c_int, __msg: *const ::std::os::raw::c_char); +} +extern "C" { + pub fn pthread_kill( + __pthread: pthread_t, + __signal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_sigmask( + __how: ::std::os::raw::c_int, + __new_set: *const sigset_t, + __old_set: *mut sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_sigmask64( + __how: ::std::os::raw::c_int, + __new_set: *const sigset64_t, + __old_set: *mut sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigqueue( + __pid: pid_t, + __signal: ::std::os::raw::c_int, + __value: sigval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigtimedwait( + __set: *const sigset_t, + __info: *mut siginfo_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigtimedwait64( + __set: *const sigset64_t, + __info: *mut siginfo_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwaitinfo(__set: *const sigset_t, __info: *mut siginfo_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sigwaitinfo64(__set: *const sigset64_t, __info: *mut siginfo_t) + -> ::std::os::raw::c_int; +} +pub type fd_mask = ::std::os::raw::c_ulong; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct fd_set { + pub fds_bits: [fd_mask; 16usize], +} +#[test] +fn bindgen_test_layout_fd_set() { + assert_eq!( + ::std::mem::size_of::(), + 128usize, + concat!("Size of: ", stringify!(fd_set)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(fd_set)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).fds_bits as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(fd_set), + "::", + stringify!(fds_bits) + ) + ); +} +extern "C" { + pub fn __FD_CLR_chk(arg1: ::std::os::raw::c_int, arg2: *mut fd_set, arg3: size_t); +} +extern "C" { + pub fn __FD_SET_chk(arg1: ::std::os::raw::c_int, arg2: *mut fd_set, arg3: size_t); +} +extern "C" { + pub fn __FD_ISSET_chk( + arg1: ::std::os::raw::c_int, + arg2: *const fd_set, + arg3: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn select( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *mut timeval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pselect( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *const timespec, + __mask: *const sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pselect64( + __fd_count: ::std::os::raw::c_int, + __read_fds: *mut fd_set, + __write_fds: *mut fd_set, + __exception_fds: *mut fd_set, + __timeout: *const timespec, + __mask: *const sigset64_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn gettimeofday(__tv: *mut timeval, __tz: *mut timezone) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn settimeofday(__tv: *const timeval, __tz: *const timezone) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn getitimer( + __which: ::std::os::raw::c_int, + __current_value: *mut itimerval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn setitimer( + __which: ::std::os::raw::c_int, + __new_value: *const itimerval, + __old_value: *mut itimerval, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn utimes( + __path: *const ::std::os::raw::c_char, + __times: *const timeval, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __locale_t { + _unused: [u8; 0], +} +pub type locale_t = *mut __locale_t; +extern "C" { + pub static mut tzname: [*mut ::std::os::raw::c_char; 0usize]; +} +extern "C" { + pub static mut daylight: ::std::os::raw::c_int; +} +extern "C" { + pub static mut timezone: ::std::os::raw::c_long; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct tm { + pub tm_sec: ::std::os::raw::c_int, + pub tm_min: ::std::os::raw::c_int, + pub tm_hour: ::std::os::raw::c_int, + pub tm_mday: ::std::os::raw::c_int, + pub tm_mon: ::std::os::raw::c_int, + pub tm_year: ::std::os::raw::c_int, + pub tm_wday: ::std::os::raw::c_int, + pub tm_yday: ::std::os::raw::c_int, + pub tm_isdst: ::std::os::raw::c_int, + pub tm_gmtoff: ::std::os::raw::c_long, + pub tm_zone: *const ::std::os::raw::c_char, +} +#[test] +fn bindgen_test_layout_tm() { + assert_eq!( + ::std::mem::size_of::(), + 56usize, + concat!("Size of: ", stringify!(tm)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(tm)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_sec as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_sec) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_min as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_min) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_hour as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_hour) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_mday as *const _ as usize }, + 12usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_mday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_mon as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_mon) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_year as *const _ as usize }, + 20usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_year) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_wday as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_wday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_yday as *const _ as usize }, + 28usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_yday) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_isdst as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_isdst) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_gmtoff as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_gmtoff) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tm_zone as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(tm), + "::", + stringify!(tm_zone) + ) + ); +} +extern "C" { + pub fn time(__t: *mut time_t) -> time_t; +} +extern "C" { + pub fn nanosleep( + __request: *const timespec, + __remainder: *mut timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn asctime(__tm: *const tm) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn asctime_r( + __tm: *const tm, + __buf: *mut ::std::os::raw::c_char, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn difftime(__lhs: time_t, __rhs: time_t) -> f64; +} +extern "C" { + pub fn mktime(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn localtime(__t: *const time_t) -> *mut tm; +} +extern "C" { + pub fn localtime_r(__t: *const time_t, __tm: *mut tm) -> *mut tm; +} +extern "C" { + pub fn gmtime(__t: *const time_t) -> *mut tm; +} +extern "C" { + pub fn gmtime_r(__t: *const time_t, __tm: *mut tm) -> *mut tm; +} +extern "C" { + pub fn strptime( + __s: *const ::std::os::raw::c_char, + __fmt: *const ::std::os::raw::c_char, + __tm: *mut tm, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn strptime_l( + __s: *const ::std::os::raw::c_char, + __fmt: *const ::std::os::raw::c_char, + __tm: *mut tm, + __l: locale_t, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn strftime( + __buf: *mut ::std::os::raw::c_char, + __n: size_t, + __fmt: *const ::std::os::raw::c_char, + __tm: *const tm, + ) -> size_t; +} +extern "C" { + pub fn strftime_l( + __buf: *mut ::std::os::raw::c_char, + __n: size_t, + __fmt: *const ::std::os::raw::c_char, + __tm: *const tm, + __l: locale_t, + ) -> size_t; +} +extern "C" { + pub fn ctime(__t: *const time_t) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn ctime_r( + __t: *const time_t, + __buf: *mut ::std::os::raw::c_char, + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn tzset(); +} +extern "C" { + pub fn clock() -> clock_t; +} +extern "C" { + pub fn clock_getcpuclockid(__pid: pid_t, __clock: *mut clockid_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_getres(__clock: clockid_t, __resolution: *mut timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_gettime(__clock: clockid_t, __ts: *mut timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_nanosleep( + __clock: clockid_t, + __flags: ::std::os::raw::c_int, + __request: *const timespec, + __remainder: *mut timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn clock_settime(__clock: clockid_t, __ts: *const timespec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_create( + __clock: clockid_t, + __event: *mut sigevent, + __timer_ptr: *mut timer_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_delete(__timer: timer_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_settime( + __timer: timer_t, + __flags: ::std::os::raw::c_int, + __new_value: *const itimerspec, + __old_value: *mut itimerspec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_gettime(__timer: timer_t, __ts: *mut itimerspec) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timer_getoverrun(__timer: timer_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn timelocal(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn timegm(__tm: *mut tm) -> time_t; +} +extern "C" { + pub fn timespec_get( + __ts: *mut timespec, + __base: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +pub type nfds_t = ::std::os::raw::c_uint; +extern "C" { + pub fn poll( + __fds: *mut pollfd, + __count: nfds_t, + __timeout_ms: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn ppoll( + __fds: *mut pollfd, + __count: nfds_t, + __timeout: *const timespec, + __mask: *const sigset_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn ppoll64( + __fds: *mut pollfd, + __count: nfds_t, + __timeout: *const timespec, + __mask: *const sigset64_t, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct clone_args { + pub flags: __u64, + pub pidfd: __u64, + pub child_tid: __u64, + pub parent_tid: __u64, + pub exit_signal: __u64, + pub stack: __u64, + pub stack_size: __u64, + pub tls: __u64, +} +#[test] +fn bindgen_test_layout_clone_args() { + assert_eq!( + ::std::mem::size_of::(), + 64usize, + concat!("Size of: ", stringify!(clone_args)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(clone_args)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).flags as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(flags) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pidfd as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(pidfd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).child_tid as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(child_tid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).parent_tid as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(parent_tid) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).exit_signal as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(exit_signal) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(stack) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stack_size as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(stack_size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).tls as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(clone_args), + "::", + stringify!(tls) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sched_param { + pub sched_priority: ::std::os::raw::c_int, +} +#[test] +fn bindgen_test_layout_sched_param() { + assert_eq!( + ::std::mem::size_of::(), + 4usize, + concat!("Size of: ", stringify!(sched_param)) + ); + assert_eq!( + ::std::mem::align_of::(), + 4usize, + concat!("Alignment of ", stringify!(sched_param)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).sched_priority as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(sched_param), + "::", + stringify!(sched_priority) + ) + ); +} +extern "C" { + pub fn sched_setscheduler( + __pid: pid_t, + __policy: ::std::os::raw::c_int, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_getscheduler(__pid: pid_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_yield() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_get_priority_max(__policy: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_get_priority_min(__policy: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_setparam(__pid: pid_t, __param: *const sched_param) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_getparam(__pid: pid_t, __param: *mut sched_param) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sched_rr_get_interval(__pid: pid_t, __quantum: *mut timespec) -> ::std::os::raw::c_int; +} +pub const PTHREAD_MUTEX_NORMAL: ::std::os::raw::c_uint = 0; +pub const PTHREAD_MUTEX_RECURSIVE: ::std::os::raw::c_uint = 1; +pub const PTHREAD_MUTEX_ERRORCHECK: ::std::os::raw::c_uint = 2; +pub const PTHREAD_MUTEX_ERRORCHECK_NP: ::std::os::raw::c_uint = 2; +pub const PTHREAD_MUTEX_RECURSIVE_NP: ::std::os::raw::c_uint = 1; +pub const PTHREAD_MUTEX_DEFAULT: ::std::os::raw::c_uint = 0; +pub type _bindgen_ty_23 = ::std::os::raw::c_uint; +pub const PTHREAD_RWLOCK_PREFER_READER_NP: ::std::os::raw::c_uint = 0; +pub const PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP: ::std::os::raw::c_uint = 1; +pub type _bindgen_ty_24 = ::std::os::raw::c_uint; +extern "C" { + pub fn pthread_atfork( + __prepare: ::std::option::Option, + __parent: ::std::option::Option, + __child: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_destroy(__attr: *mut pthread_attr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getdetachstate( + __attr: *const pthread_attr_t, + __state: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getguardsize( + __attr: *const pthread_attr_t, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getinheritsched( + __attr: *const pthread_attr_t, + __flag: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getschedparam( + __attr: *const pthread_attr_t, + __param: *mut sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getschedpolicy( + __attr: *const pthread_attr_t, + __policy: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getscope( + __attr: *const pthread_attr_t, + __scope: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getstack( + __attr: *const pthread_attr_t, + __addr: *mut *mut ::std::os::raw::c_void, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_getstacksize( + __attr: *const pthread_attr_t, + __size: *mut size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_init(__attr: *mut pthread_attr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setdetachstate( + __attr: *mut pthread_attr_t, + __state: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setguardsize( + __attr: *mut pthread_attr_t, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setinheritsched( + __attr: *mut pthread_attr_t, + __flag: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setschedparam( + __attr: *mut pthread_attr_t, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setschedpolicy( + __attr: *mut pthread_attr_t, + __policy: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setscope( + __attr: *mut pthread_attr_t, + __scope: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setstack( + __attr: *mut pthread_attr_t, + __addr: *mut ::std::os::raw::c_void, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_attr_setstacksize( + __addr: *mut pthread_attr_t, + __size: size_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_destroy(__attr: *mut pthread_condattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_getclock( + __attr: *const pthread_condattr_t, + __clock: *mut clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_getpshared( + __attr: *const pthread_condattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_init(__attr: *mut pthread_condattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_setclock( + __attr: *mut pthread_condattr_t, + __clock: clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_condattr_setpshared( + __attr: *mut pthread_condattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_broadcast(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_clockwait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_destroy(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_init( + __cond: *mut pthread_cond_t, + __attr: *const pthread_condattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_signal(__cond: *mut pthread_cond_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_timedwait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_timedwait_monotonic_np( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_cond_wait( + __cond: *mut pthread_cond_t, + __mutex: *mut pthread_mutex_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_create( + __pthread_ptr: *mut pthread_t, + __attr: *const pthread_attr_t, + __start_routine: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void) -> *mut ::std::os::raw::c_void, + >, + arg1: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_detach(__pthread: pthread_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_exit(__return_value: *mut ::std::os::raw::c_void); +} +extern "C" { + pub fn pthread_equal(__lhs: pthread_t, __rhs: pthread_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getattr_np( + __pthread: pthread_t, + __attr: *mut pthread_attr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getcpuclockid( + __pthread: pthread_t, + __clock: *mut clockid_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getschedparam( + __pthread: pthread_t, + __policy: *mut ::std::os::raw::c_int, + __param: *mut sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_getspecific(__key: pthread_key_t) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn pthread_gettid_np(__pthread: pthread_t) -> pid_t; +} +extern "C" { + pub fn pthread_join( + __pthread: pthread_t, + __return_value_ptr: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_key_create( + __key_ptr: *mut pthread_key_t, + __key_destructor: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void), + >, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_key_delete(__key: pthread_key_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_destroy(__attr: *mut pthread_mutexattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_getpshared( + __attr: *const pthread_mutexattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_gettype( + __attr: *const pthread_mutexattr_t, + __type: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_getprotocol( + __attr: *const pthread_mutexattr_t, + __protocol: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_init(__attr: *mut pthread_mutexattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_setpshared( + __attr: *mut pthread_mutexattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_settype( + __attr: *mut pthread_mutexattr_t, + __type: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutexattr_setprotocol( + __attr: *mut pthread_mutexattr_t, + __protocol: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_clocklock( + __mutex: *mut pthread_mutex_t, + __clock: clockid_t, + __abstime: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_destroy(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_init( + __mutex: *mut pthread_mutex_t, + __attr: *const pthread_mutexattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_lock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_timedlock( + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_timedlock_monotonic_np( + __mutex: *mut pthread_mutex_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_trylock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_mutex_unlock(__mutex: *mut pthread_mutex_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_once( + __once: *mut pthread_once_t, + __init_routine: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_init(__attr: *mut pthread_rwlockattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_destroy(__attr: *mut pthread_rwlockattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_getpshared( + __attr: *const pthread_rwlockattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_setpshared( + __attr: *mut pthread_rwlockattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_getkind_np( + __attr: *const pthread_rwlockattr_t, + __kind: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlockattr_setkind_np( + __attr: *mut pthread_rwlockattr_t, + __kind: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_clockrdlock( + __rwlock: *mut pthread_rwlock_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_clockwrlock( + __rwlock: *mut pthread_rwlock_t, + __clock: clockid_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_destroy(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_init( + __rwlock: *mut pthread_rwlock_t, + __attr: *const pthread_rwlockattr_t, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_rdlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedrdlock( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedrdlock_monotonic_np( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedwrlock( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_timedwrlock_monotonic_np( + __rwlock: *mut pthread_rwlock_t, + __timeout: *const timespec, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_tryrdlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_trywrlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_unlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_rwlock_wrlock(__rwlock: *mut pthread_rwlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_init(__attr: *mut pthread_barrierattr_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_destroy(__attr: *mut pthread_barrierattr_t) + -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_getpshared( + __attr: *const pthread_barrierattr_t, + __shared: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrierattr_setpshared( + __attr: *mut pthread_barrierattr_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_init( + __barrier: *mut pthread_barrier_t, + __attr: *const pthread_barrierattr_t, + __count: ::std::os::raw::c_uint, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_destroy(__barrier: *mut pthread_barrier_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_barrier_wait(__barrier: *mut pthread_barrier_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_destroy(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_init( + __spinlock: *mut pthread_spinlock_t, + __shared: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_lock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_trylock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_spin_unlock(__spinlock: *mut pthread_spinlock_t) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_self() -> pthread_t; +} +extern "C" { + pub fn pthread_setname_np( + __pthread: pthread_t, + __name: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setschedparam( + __pthread: pthread_t, + __policy: ::std::os::raw::c_int, + __param: *const sched_param, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setschedprio( + __pthread: pthread_t, + __priority: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn pthread_setspecific( + __key: pthread_key_t, + __value: *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +pub type __pthread_cleanup_func_t = + ::std::option::Option; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __pthread_cleanup_t { + pub __cleanup_prev: *mut __pthread_cleanup_t, + pub __cleanup_routine: __pthread_cleanup_func_t, + pub __cleanup_arg: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout___pthread_cleanup_t() { + assert_eq!( + ::std::mem::size_of::<__pthread_cleanup_t>(), + 24usize, + concat!("Size of: ", stringify!(__pthread_cleanup_t)) + ); + assert_eq!( + ::std::mem::align_of::<__pthread_cleanup_t>(), + 8usize, + concat!("Alignment of ", stringify!(__pthread_cleanup_t)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_prev as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_prev) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_routine as *const _ as usize + }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_routine) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::<__pthread_cleanup_t>())).__cleanup_arg as *const _ as usize + }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__pthread_cleanup_t), + "::", + stringify!(__cleanup_arg) + ) + ); +} +extern "C" { + pub fn __pthread_cleanup_push( + c: *mut __pthread_cleanup_t, + arg1: __pthread_cleanup_func_t, + arg2: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + pub fn __pthread_cleanup_pop(arg1: *mut __pthread_cleanup_t, arg2: ::std::os::raw::c_int); +} +#[doc = " Data associated with an ALooper fd that will be returned as the \"outData\""] +#[doc = " when that source has data ready."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_poll_source { + #[doc = " The identifier of this source. May be LOOPER_ID_MAIN or"] + #[doc = " LOOPER_ID_INPUT."] + pub id: i32, + #[doc = " The android_app this ident is associated with."] + pub app: *mut android_app, + #[doc = " Function to call to perform the standard processing of data from"] + #[doc = " this source."] + pub process: ::std::option::Option< + unsafe extern "C" fn(app: *mut android_app, source: *mut android_poll_source), + >, +} +#[test] +fn bindgen_test_layout_android_poll_source() { + assert_eq!( + ::std::mem::size_of::(), + 24usize, + concat!("Size of: ", stringify!(android_poll_source)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(android_poll_source)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).id as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(id) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).app as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(app) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).process as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(android_poll_source), + "::", + stringify!(process) + ) + ); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_input_buffer { + #[doc = " Pointer to a read-only array of pointers to GameActivityMotionEvent."] + #[doc = " Only the first motionEventsCount events are valid."] + pub motionEvents: [GameActivityMotionEvent; 16usize], + #[doc = " The number of valid motion events in `motionEvents`."] + pub motionEventsCount: u64, + #[doc = " Pointer to a read-only array of pointers to GameActivityKeyEvent."] + #[doc = " Only the first keyEventsCount events are valid."] + pub keyEvents: [GameActivityKeyEvent; 4usize], + #[doc = " The number of valid \"Key\" events in `keyEvents`."] + pub keyEventsCount: u64, +} +#[test] +fn bindgen_test_layout_android_input_buffer() { + assert_eq!( + ::std::mem::size_of::(), + 27504usize, + concat!("Size of: ", stringify!(android_input_buffer)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(android_input_buffer)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).motionEvents as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(motionEvents) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).motionEventsCount as *const _ as usize + }, + 27264usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(motionEventsCount) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyEvents as *const _ as usize }, + 27272usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(keyEvents) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).keyEventsCount as *const _ as usize + }, + 27496usize, + concat!( + "Offset of field: ", + stringify!(android_input_buffer), + "::", + stringify!(keyEventsCount) + ) + ); +} +#[doc = " Function pointer declaration for the filtering of key events."] +#[doc = " A function with this signature should be passed to"] +#[doc = " android_app_set_key_event_filter and return false for any events that should"] +#[doc = " not be handled by android_native_app_glue. These events will be handled by"] +#[doc = " the system instead."] +pub type android_key_event_filter = + ::std::option::Option bool>; +#[doc = " Function pointer definition for the filtering of motion events."] +#[doc = " A function with this signature should be passed to"] +#[doc = " android_app_set_motion_event_filter and return false for any events that"] +#[doc = " should not be handled by android_native_app_glue. These events will be"] +#[doc = " handled by the system instead."] +pub type android_motion_event_filter = + ::std::option::Option bool>; +#[doc = " The GameActivity interface provided by "] +#[doc = " is based on a set of application-provided callbacks that will be called"] +#[doc = " by the Activity's main thread when certain events occur."] +#[doc = ""] +#[doc = " This means that each one of this callbacks _should_ _not_ block, or they"] +#[doc = " risk having the system force-close the application. This programming"] +#[doc = " model is direct, lightweight, but constraining."] +#[doc = ""] +#[doc = " The 'android_native_app_glue' static library is used to provide a different"] +#[doc = " execution model where the application can implement its own main event"] +#[doc = " loop in a different thread instead. Here's how it works:"] +#[doc = ""] +#[doc = " 1/ The application must provide a function named \"android_main()\" that"] +#[doc = " will be called when the activity is created, in a new thread that is"] +#[doc = " distinct from the activity's main thread."] +#[doc = ""] +#[doc = " 2/ android_main() receives a pointer to a valid \"android_app\" structure"] +#[doc = " that contains references to other important objects, e.g. the"] +#[doc = " GameActivity obejct instance the application is running in."] +#[doc = ""] +#[doc = " 3/ the \"android_app\" object holds an ALooper instance that already"] +#[doc = " listens to activity lifecycle events (e.g. \"pause\", \"resume\")."] +#[doc = " See APP_CMD_XXX declarations below."] +#[doc = ""] +#[doc = " This corresponds to an ALooper identifier returned by"] +#[doc = " ALooper_pollOnce with value LOOPER_ID_MAIN."] +#[doc = ""] +#[doc = " Your application can use the same ALooper to listen to additional"] +#[doc = " file-descriptors. They can either be callback based, or with return"] +#[doc = " identifiers starting with LOOPER_ID_USER."] +#[doc = ""] +#[doc = " 4/ Whenever you receive a LOOPER_ID_MAIN event,"] +#[doc = " the returned data will point to an android_poll_source structure. You"] +#[doc = " can call the process() function on it, and fill in android_app->onAppCmd"] +#[doc = " to be called for your own processing of the event."] +#[doc = ""] +#[doc = " Alternatively, you can call the low-level functions to read and process"] +#[doc = " the data directly... look at the process_cmd() and process_input()"] +#[doc = " implementations in the glue to see how to do this."] +#[doc = ""] +#[doc = " See the sample named \"native-activity\" that comes with the NDK with a"] +#[doc = " full usage example. Also look at the documentation of GameActivity."] +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct android_app { + #[doc = " An optional pointer to application-defined state."] + pub userData: *mut ::std::os::raw::c_void, + #[doc = " A required callback for processing main app commands (`APP_CMD_*`)."] + #[doc = " This is called each frame if there are app commands that need processing."] + pub onAppCmd: ::std::option::Option, + #[doc = " The GameActivity object instance that this app is running in."] + pub activity: *mut GameActivity, + #[doc = " The current configuration the app is running in."] + pub config: *mut AConfiguration, + #[doc = " The last activity saved state, as provided at creation time."] + #[doc = " It is NULL if there was no state. You can use this as you need; the"] + #[doc = " memory will remain around until you call android_app_exec_cmd() for"] + #[doc = " APP_CMD_RESUME, at which point it will be freed and savedState set to"] + #[doc = " NULL. These variables should only be changed when processing a"] + #[doc = " APP_CMD_SAVE_STATE, at which point they will be initialized to NULL and"] + #[doc = " you can malloc your state and place the information here. In that case"] + #[doc = " the memory will be freed for you later."] + pub savedState: *mut ::std::os::raw::c_void, + #[doc = " The size of the activity saved state. It is 0 if `savedState` is NULL."] + pub savedStateSize: size_t, + #[doc = " The ALooper associated with the app's thread."] + pub looper: *mut ALooper, + #[doc = " When non-NULL, this is the window surface that the app can draw in."] + pub window: *mut ANativeWindow, + #[doc = " Current content rectangle of the window; this is the area where the"] + #[doc = " window's content should be placed to be seen by the user."] + pub contentRect: ARect, + #[doc = " Current state of the app's activity. May be either APP_CMD_START,"] + #[doc = " APP_CMD_RESUME, APP_CMD_PAUSE, or APP_CMD_STOP."] + pub activityState: ::std::os::raw::c_int, + #[doc = " This is non-zero when the application's GameActivity is being"] + #[doc = " destroyed and waiting for the app thread to complete."] + pub destroyRequested: ::std::os::raw::c_int, + #[doc = " This is used for buffering input from GameActivity. Once ready, the"] + #[doc = " application thread switches the buffers and processes what was"] + #[doc = " accumulated."] + pub inputBuffers: [android_input_buffer; 2usize], + pub currentInputBuffer: ::std::os::raw::c_int, + #[doc = " 0 if no text input event is outstanding, 1 if it is."] + #[doc = " Use `GameActivity_getTextInputState` to get information"] + #[doc = " about the text entered by the user."] + pub textInputState: ::std::os::raw::c_int, + #[doc = " @cond INTERNAL"] + pub mutex: pthread_mutex_t, + pub cond: pthread_cond_t, + pub msgread: ::std::os::raw::c_int, + pub msgwrite: ::std::os::raw::c_int, + pub thread: pthread_t, + pub cmdPollSource: android_poll_source, + pub running: ::std::os::raw::c_int, + pub stateSaved: ::std::os::raw::c_int, + pub destroyed: ::std::os::raw::c_int, + pub redrawNeeded: ::std::os::raw::c_int, + pub pendingWindow: *mut ANativeWindow, + pub pendingContentRect: ARect, + pub keyEventFilter: android_key_event_filter, + pub motionEventFilter: android_motion_event_filter, +} +#[test] +fn bindgen_test_layout_android_app() { + assert_eq!( + ::std::mem::size_of::(), + 55288usize, + concat!("Size of: ", stringify!(android_app)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(android_app)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).userData as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(userData) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).onAppCmd as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(onAppCmd) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).activity as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(activity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).config as *const _ as usize }, + 24usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(config) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).savedState as *const _ as usize }, + 32usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(savedState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).savedStateSize as *const _ as usize }, + 40usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(savedStateSize) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).looper as *const _ as usize }, + 48usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(looper) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).window as *const _ as usize }, + 56usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(window) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).contentRect as *const _ as usize }, + 64usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(contentRect) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).activityState as *const _ as usize }, + 80usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(activityState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).destroyRequested as *const _ as usize }, + 84usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(destroyRequested) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).inputBuffers as *const _ as usize }, + 88usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(inputBuffers) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).currentInputBuffer as *const _ as usize }, + 55096usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(currentInputBuffer) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).textInputState as *const _ as usize }, + 55100usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(textInputState) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).mutex as *const _ as usize }, + 55104usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(mutex) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cond as *const _ as usize }, + 55144usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(cond) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).msgread as *const _ as usize }, + 55192usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(msgread) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).msgwrite as *const _ as usize }, + 55196usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(msgwrite) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).thread as *const _ as usize }, + 55200usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(thread) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).cmdPollSource as *const _ as usize }, + 55208usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(cmdPollSource) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).running as *const _ as usize }, + 55232usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(running) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).stateSaved as *const _ as usize }, + 55236usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(stateSaved) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).destroyed as *const _ as usize }, + 55240usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(destroyed) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).redrawNeeded as *const _ as usize }, + 55244usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(redrawNeeded) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pendingWindow as *const _ as usize }, + 55248usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(pendingWindow) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).pendingContentRect as *const _ as usize }, + 55256usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(pendingContentRect) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).keyEventFilter as *const _ as usize }, + 55272usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(keyEventFilter) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).motionEventFilter as *const _ as usize }, + 55280usize, + concat!( + "Offset of field: ", + stringify!(android_app), + "::", + stringify!(motionEventFilter) + ) + ); +} +#[doc = " Looper data ID of commands coming from the app's main thread, which"] +#[doc = " is returned as an identifier from ALooper_pollOnce(). The data for this"] +#[doc = " identifier is a pointer to an android_poll_source structure."] +#[doc = " These can be retrieved and processed with android_app_read_cmd()"] +#[doc = " and android_app_exec_cmd()."] +pub const NativeAppGlueLooperId_LOOPER_ID_MAIN: NativeAppGlueLooperId = 1; +#[doc = " Unused. Reserved for future use when usage of AInputQueue will be"] +#[doc = " supported."] +pub const NativeAppGlueLooperId_LOOPER_ID_INPUT: NativeAppGlueLooperId = 2; +#[doc = " Start of user-defined ALooper identifiers."] +pub const NativeAppGlueLooperId_LOOPER_ID_USER: NativeAppGlueLooperId = 3; +#[doc = " Looper ID of commands coming from the app's main thread, an AInputQueue or"] +#[doc = " user-defined sources."] +pub type NativeAppGlueLooperId = ::std::os::raw::c_uint; +#[doc = " Unused. Reserved for future use when usage of AInputQueue will be"] +#[doc = " supported."] +pub const NativeAppGlueAppCmd_UNUSED_APP_CMD_INPUT_CHANGED: NativeAppGlueAppCmd = 0; +#[doc = " Command from main thread: a new ANativeWindow is ready for use. Upon"] +#[doc = " receiving this command, android_app->window will contain the new window"] +#[doc = " surface."] +pub const NativeAppGlueAppCmd_APP_CMD_INIT_WINDOW: NativeAppGlueAppCmd = 1; +#[doc = " Command from main thread: the existing ANativeWindow needs to be"] +#[doc = " terminated. Upon receiving this command, android_app->window still"] +#[doc = " contains the existing window; after calling android_app_exec_cmd"] +#[doc = " it will be set to NULL."] +pub const NativeAppGlueAppCmd_APP_CMD_TERM_WINDOW: NativeAppGlueAppCmd = 2; +#[doc = " Command from main thread: the current ANativeWindow has been resized."] +#[doc = " Please redraw with its new size."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_RESIZED: NativeAppGlueAppCmd = 3; +#[doc = " Command from main thread: the system needs that the current ANativeWindow"] +#[doc = " be redrawn. You should redraw the window before handing this to"] +#[doc = " android_app_exec_cmd() in order to avoid transient drawing glitches."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_REDRAW_NEEDED: NativeAppGlueAppCmd = 4; +#[doc = " Command from main thread: the content area of the window has changed,"] +#[doc = " such as from the soft input window being shown or hidden. You can"] +#[doc = " find the new content rect in android_app::contentRect."] +pub const NativeAppGlueAppCmd_APP_CMD_CONTENT_RECT_CHANGED: NativeAppGlueAppCmd = 5; +#[doc = " Command from main thread: the app's activity window has gained"] +#[doc = " input focus."] +pub const NativeAppGlueAppCmd_APP_CMD_GAINED_FOCUS: NativeAppGlueAppCmd = 6; +#[doc = " Command from main thread: the app's activity window has lost"] +#[doc = " input focus."] +pub const NativeAppGlueAppCmd_APP_CMD_LOST_FOCUS: NativeAppGlueAppCmd = 7; +#[doc = " Command from main thread: the current device configuration has changed."] +pub const NativeAppGlueAppCmd_APP_CMD_CONFIG_CHANGED: NativeAppGlueAppCmd = 8; +#[doc = " Command from main thread: the system is running low on memory."] +#[doc = " Try to reduce your memory use."] +pub const NativeAppGlueAppCmd_APP_CMD_LOW_MEMORY: NativeAppGlueAppCmd = 9; +#[doc = " Command from main thread: the app's activity has been started."] +pub const NativeAppGlueAppCmd_APP_CMD_START: NativeAppGlueAppCmd = 10; +#[doc = " Command from main thread: the app's activity has been resumed."] +pub const NativeAppGlueAppCmd_APP_CMD_RESUME: NativeAppGlueAppCmd = 11; +#[doc = " Command from main thread: the app should generate a new saved state"] +#[doc = " for itself, to restore from later if needed. If you have saved state,"] +#[doc = " allocate it with malloc and place it in android_app.savedState with"] +#[doc = " the size in android_app.savedStateSize. The will be freed for you"] +#[doc = " later."] +pub const NativeAppGlueAppCmd_APP_CMD_SAVE_STATE: NativeAppGlueAppCmd = 12; +#[doc = " Command from main thread: the app's activity has been paused."] +pub const NativeAppGlueAppCmd_APP_CMD_PAUSE: NativeAppGlueAppCmd = 13; +#[doc = " Command from main thread: the app's activity has been stopped."] +pub const NativeAppGlueAppCmd_APP_CMD_STOP: NativeAppGlueAppCmd = 14; +#[doc = " Command from main thread: the app's activity is being destroyed,"] +#[doc = " and waiting for the app thread to clean up and exit before proceeding."] +pub const NativeAppGlueAppCmd_APP_CMD_DESTROY: NativeAppGlueAppCmd = 15; +#[doc = " Command from main thread: the app's insets have changed."] +pub const NativeAppGlueAppCmd_APP_CMD_WINDOW_INSETS_CHANGED: NativeAppGlueAppCmd = 16; +#[doc = " Commands passed from the application's main Java thread to the game's thread."] +pub type NativeAppGlueAppCmd = ::std::os::raw::c_uint; +extern "C" { + #[doc = " Call when ALooper_pollAll() returns LOOPER_ID_MAIN, reading the next"] + #[doc = " app command message."] + pub fn android_app_read_cmd(android_app: *mut android_app) -> i8; +} +extern "C" { + #[doc = " Call with the command returned by android_app_read_cmd() to do the"] + #[doc = " initial pre-processing of the given command. You can perform your own"] + #[doc = " actions for the command after calling this function."] + pub fn android_app_pre_exec_cmd(android_app: *mut android_app, cmd: i8); +} +extern "C" { + #[doc = " Call with the command returned by android_app_read_cmd() to do the"] + #[doc = " final post-processing of the given command. You must have done your own"] + #[doc = " actions for the command before calling this function."] + pub fn android_app_post_exec_cmd(android_app: *mut android_app, cmd: i8); +} +extern "C" { + #[doc = " Call this before processing input events to get the events buffer."] + #[doc = " The function returns NULL if there are no events to process."] + pub fn android_app_swap_input_buffers( + android_app: *mut android_app, + ) -> *mut android_input_buffer; +} +extern "C" { + #[doc = " Clear the array of motion events that were waiting to be handled, and release"] + #[doc = " each of them."] + #[doc = ""] + #[doc = " This method should be called after you have processed the motion events in"] + #[doc = " your game loop. You should handle events at each iteration of your game loop."] + pub fn android_app_clear_motion_events(inputBuffer: *mut android_input_buffer); +} +extern "C" { + #[doc = " Clear the array of key events that were waiting to be handled, and release"] + #[doc = " each of them."] + #[doc = ""] + #[doc = " This method should be called after you have processed the key up events in"] + #[doc = " your game loop. You should handle events at each iteration of your game loop."] + pub fn android_app_clear_key_events(inputBuffer: *mut android_input_buffer); +} +extern "C" { + #[doc = " Set the filter to use when processing key events."] + #[doc = " Any events for which the filter returns false will be ignored by"] + #[doc = " android_native_app_glue. If filter is set to NULL, no filtering is done."] + #[doc = ""] + #[doc = " The default key filter will filter out volume and camera button presses."] + pub fn android_app_set_key_event_filter( + app: *mut android_app, + filter: android_key_event_filter, + ); +} +extern "C" { + #[doc = " Set the filter to use when processing touch and motion events."] + #[doc = " Any events for which the filter returns false will be ignored by"] + #[doc = " android_native_app_glue. If filter is set to NULL, no filtering is done."] + #[doc = ""] + #[doc = " Note that the default motion event filter will only allow touchscreen events"] + #[doc = " through, in order to mimic NativeActivity's behaviour, so for controller"] + #[doc = " events to be passed to the app, set the filter to NULL."] + pub fn android_app_set_motion_event_filter( + app: *mut android_app, + filter: android_motion_event_filter, + ); +} +pub type __builtin_va_list = [__va_list_tag; 1usize]; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct __va_list_tag { + pub gp_offset: ::std::os::raw::c_uint, + pub fp_offset: ::std::os::raw::c_uint, + pub overflow_arg_area: *mut ::std::os::raw::c_void, + pub reg_save_area: *mut ::std::os::raw::c_void, +} +#[test] +fn bindgen_test_layout___va_list_tag() { + assert_eq!( + ::std::mem::size_of::<__va_list_tag>(), + 24usize, + concat!("Size of: ", stringify!(__va_list_tag)) + ); + assert_eq!( + ::std::mem::align_of::<__va_list_tag>(), + 8usize, + concat!("Alignment of ", stringify!(__va_list_tag)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__va_list_tag>())).gp_offset as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(__va_list_tag), + "::", + stringify!(gp_offset) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__va_list_tag>())).fp_offset as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(__va_list_tag), + "::", + stringify!(fp_offset) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__va_list_tag>())).overflow_arg_area as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(__va_list_tag), + "::", + stringify!(overflow_arg_area) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::<__va_list_tag>())).reg_save_area as *const _ as usize }, + 16usize, + concat!( + "Offset of field: ", + stringify!(__va_list_tag), + "::", + stringify!(reg_save_area) + ) + ); +} diff --git a/game-activity/src/input.rs b/game-activity/src/input.rs new file mode 100755 index 0000000..3596c70 --- /dev/null +++ b/game-activity/src/input.rs @@ -0,0 +1,1459 @@ +// GameActivity handles input events by double buffering MotionEvent and KeyEvent structs which +// essentially just mirror state from the corresponding Java objects. +// +// See also the javadocs for +// [`android.view.InputEvent`](https://developer.android.com/reference/android/view/InputEvent.html), +// [`android.view.MotionEvent`](https://developer.android.com/reference/android/view/MotionEvent.html), +// and [`android.view.KeyEvent`](https://developer.android.com/reference/android/view/KeyEvent). +// +// This code is mostly based on https://github.com/rust-windowing/android-ndk-rs/blob/master/ndk/src/event.rs +// +// The `Source` enum was defined based on the Java docs since there are a couple of source types that +// aren't exposed via the AInputQueue API +// The `Class` was also bound differently to `android-ndk-rs` considering how the class is defined +// by masking bits from the `Source`. + +use num_enum::{IntoPrimitive, TryFromPrimitive}; +use std::{convert::TryInto, ops::Deref}; +use crate::ffi::{GameActivityMotionEvent, GameActivityKeyEvent}; + +use bitflags::bitflags; + +// Note: try to keep this wrapper API similar to the AInputEvent API if possible + + +/// An enum representing the source of an [`MotionEvent`] or [`KeyEvent`] +/// +/// See [the InputDevice docs](https://developer.android.com/reference/android/view/InputDevice#SOURCE_ANY) +#[derive(Debug, Clone, Copy, PartialEq, Eq, TryFromPrimitive, IntoPrimitive)] +#[repr(i32)] +pub enum Source { + BluetoothStylus = 0x0000c002, + Dpad = 0x00000201, + /// Either a gamepad or a joystick + Gamepad = 0x00000401, + Hdmi = 0x02000001, + /// Either a gamepad or a joystick + Joystick = 0x01000010, + /// Pretty much any device with buttons. Query the keyboard type to determine + /// if it has alphabetic keys and can be used for text entry. + Keyboard = 0x00000101, + /// A pointing device, such as a mouse or trackpad + Mouse = 0x00002002, + /// A pointing device, such as a mouse or trackpad whose relative motions should be treated as navigation events + MouseRelative = 0x00020004, + /// An input device akin to a scroll wheel + RotaryEncoder = 0x00400000, + Sensor = 0x04000000, + Stylus = 0x00004002, + Touchpad = 0x00100008, + Touchscreen = 0x00001002, + TouchNavigation = 0x00200000, + Trackball = 0x00010004, + + Unknown = 0, +} + +bitflags! { + struct SourceFlags: u32 { + const CLASS_MASK = 0x000000ff; + + const BUTTON = 0x00000001; + const POINTER = 0x00000002; + const TRACKBALL = 0x00000004; + const POSITION = 0x00000008; + const JOYSTICK = 0x00000010; + const NONE = 0; + } +} + +/// An enum representing the class of a [`MotionEvent`] or [`KeyEvent`] source +/// +/// See [the InputDevice docs](https://developer.android.com/reference/android/view/InputDevice#SOURCE_CLASS_MASK) +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +pub enum Class { + None, + Button, + Pointer, + Trackball, + Position, + Joystick +} + +impl From for Class { + fn from(source: i32) -> Self { + let class = SourceFlags::from_bits_truncate(source as u32); + match class { + SourceFlags::BUTTON => Class::Button, + SourceFlags::POINTER => Class::Pointer, + SourceFlags::TRACKBALL => Class::Trackball, + SourceFlags::POSITION => Class::Position, + SourceFlags::JOYSTICK => Class::Joystick, + _ => Class::None + } + } +} + +/// A bitfield representing the state of modifier keys during an event. +/// +/// See [the NDK docs](https://developer.android.com/ndk/reference/group/input#anonymous-enum-25) +#[derive(Copy, Clone, Debug, PartialEq, Eq)] +pub struct MetaState(pub u32); + +impl MetaState { + #[inline] + pub fn alt_on(self) -> bool { + self.0 & ndk_sys::AMETA_ALT_ON != 0 + } + #[inline] + pub fn alt_left_on(self) -> bool { + self.0 & ndk_sys::AMETA_ALT_LEFT_ON != 0 + } + #[inline] + pub fn alt_right_on(self) -> bool { + self.0 & ndk_sys::AMETA_ALT_RIGHT_ON != 0 + } + #[inline] + pub fn shift_on(self) -> bool { + self.0 & ndk_sys::AMETA_SHIFT_ON != 0 + } + #[inline] + pub fn shift_left_on(self) -> bool { + self.0 & ndk_sys::AMETA_SHIFT_LEFT_ON != 0 + } + #[inline] + pub fn shift_right_on(self) -> bool { + self.0 & ndk_sys::AMETA_SHIFT_RIGHT_ON != 0 + } + #[inline] + pub fn sym_on(self) -> bool { + self.0 & ndk_sys::AMETA_SYM_ON != 0 + } + #[inline] + pub fn function_on(self) -> bool { + self.0 & ndk_sys::AMETA_FUNCTION_ON != 0 + } + #[inline] + pub fn ctrl_on(self) -> bool { + self.0 & ndk_sys::AMETA_CTRL_ON != 0 + } + #[inline] + pub fn ctrl_left_on(self) -> bool { + self.0 & ndk_sys::AMETA_CTRL_LEFT_ON != 0 + } + #[inline] + pub fn ctrl_right_on(self) -> bool { + self.0 & ndk_sys::AMETA_CTRL_RIGHT_ON != 0 + } + #[inline] + pub fn meta_on(self) -> bool { + self.0 & ndk_sys::AMETA_META_ON != 0 + } + #[inline] + pub fn meta_left_on(self) -> bool { + self.0 & ndk_sys::AMETA_META_LEFT_ON != 0 + } + #[inline] + pub fn meta_right_on(self) -> bool { + self.0 & ndk_sys::AMETA_META_RIGHT_ON != 0 + } + #[inline] + pub fn caps_lock_on(self) -> bool { + self.0 & ndk_sys::AMETA_CAPS_LOCK_ON != 0 + } + #[inline] + pub fn num_lock_on(self) -> bool { + self.0 & ndk_sys::AMETA_NUM_LOCK_ON != 0 + } + #[inline] + pub fn scroll_lock_on(self) -> bool { + self.0 & ndk_sys::AMETA_SCROLL_LOCK_ON != 0 + } +} + +/// A motion event. +/// +/// For general discussion of motion events in Android, see [the relevant +/// javadoc](https://developer.android.com/reference/android/view/MotionEvent). +#[derive(Clone, Debug)] +pub struct MotionEvent { + ga_event: GameActivityMotionEvent +} + +impl Deref for MotionEvent { + type Target = GameActivityMotionEvent; + + fn deref(&self) -> &Self::Target { + &self.ga_event + } +} + +/// A motion action. +/// +/// See [the NDK +/// docs](https://developer.android.com/ndk/reference/group/input#anonymous-enum-29) +#[derive(Copy, Clone, Debug, PartialEq, Eq, TryFromPrimitive, IntoPrimitive)] +#[repr(u32)] +pub enum MotionAction { + Down = ndk_sys::AMOTION_EVENT_ACTION_DOWN, + Up = ndk_sys::AMOTION_EVENT_ACTION_UP, + Move = ndk_sys::AMOTION_EVENT_ACTION_MOVE, + Cancel = ndk_sys::AMOTION_EVENT_ACTION_CANCEL, + Outside = ndk_sys::AMOTION_EVENT_ACTION_OUTSIDE, + PointerDown = ndk_sys::AMOTION_EVENT_ACTION_POINTER_DOWN, + PointerUp = ndk_sys::AMOTION_EVENT_ACTION_POINTER_UP, + HoverMove = ndk_sys::AMOTION_EVENT_ACTION_HOVER_MOVE, + Scroll = ndk_sys::AMOTION_EVENT_ACTION_SCROLL, + HoverEnter = ndk_sys::AMOTION_EVENT_ACTION_HOVER_ENTER, + HoverExit = ndk_sys::AMOTION_EVENT_ACTION_HOVER_EXIT, + ButtonPress = ndk_sys::AMOTION_EVENT_ACTION_BUTTON_PRESS, + ButtonRelease = ndk_sys::AMOTION_EVENT_ACTION_BUTTON_RELEASE, +} + +/// An axis of a motion event. +/// +/// See [the NDK docs](https://developer.android.com/ndk/reference/group/input#anonymous-enum-32) +#[derive(Copy, Clone, Debug, PartialEq, Eq, TryFromPrimitive, IntoPrimitive)] +#[repr(u32)] +pub enum Axis { + X = ndk_sys::AMOTION_EVENT_AXIS_X, + Y = ndk_sys::AMOTION_EVENT_AXIS_Y, + Pressure = ndk_sys::AMOTION_EVENT_AXIS_PRESSURE, + Size = ndk_sys::AMOTION_EVENT_AXIS_SIZE, + TouchMajor = ndk_sys::AMOTION_EVENT_AXIS_TOUCH_MAJOR, + TouchMinor = ndk_sys::AMOTION_EVENT_AXIS_TOUCH_MINOR, + ToolMajor = ndk_sys::AMOTION_EVENT_AXIS_TOOL_MAJOR, + ToolMinor = ndk_sys::AMOTION_EVENT_AXIS_TOOL_MINOR, + Orientation = ndk_sys::AMOTION_EVENT_AXIS_ORIENTATION, + Vscroll = ndk_sys::AMOTION_EVENT_AXIS_VSCROLL, + Hscroll = ndk_sys::AMOTION_EVENT_AXIS_HSCROLL, + Z = ndk_sys::AMOTION_EVENT_AXIS_Z, + Rx = ndk_sys::AMOTION_EVENT_AXIS_RX, + Ry = ndk_sys::AMOTION_EVENT_AXIS_RY, + Rz = ndk_sys::AMOTION_EVENT_AXIS_RZ, + HatX = ndk_sys::AMOTION_EVENT_AXIS_HAT_X, + HatY = ndk_sys::AMOTION_EVENT_AXIS_HAT_Y, + Ltrigger = ndk_sys::AMOTION_EVENT_AXIS_LTRIGGER, + Rtrigger = ndk_sys::AMOTION_EVENT_AXIS_RTRIGGER, + Throttle = ndk_sys::AMOTION_EVENT_AXIS_THROTTLE, + Rudder = ndk_sys::AMOTION_EVENT_AXIS_RUDDER, + Wheel = ndk_sys::AMOTION_EVENT_AXIS_WHEEL, + Gas = ndk_sys::AMOTION_EVENT_AXIS_GAS, + Brake = ndk_sys::AMOTION_EVENT_AXIS_BRAKE, + Distance = ndk_sys::AMOTION_EVENT_AXIS_DISTANCE, + Tilt = ndk_sys::AMOTION_EVENT_AXIS_TILT, + Scroll = ndk_sys::AMOTION_EVENT_AXIS_SCROLL, + RelativeX = ndk_sys::AMOTION_EVENT_AXIS_RELATIVE_X, + RelativeY = ndk_sys::AMOTION_EVENT_AXIS_RELATIVE_Y, + Generic1 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_1, + Generic2 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_2, + Generic3 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_3, + Generic4 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_4, + Generic5 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_5, + Generic6 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_6, + Generic7 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_7, + Generic8 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_8, + Generic9 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_9, + Generic10 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_10, + Generic11 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_11, + Generic12 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_12, + Generic13 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_13, + Generic14 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_14, + Generic15 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_15, + Generic16 = ndk_sys::AMOTION_EVENT_AXIS_GENERIC_16, +} + +/// A bitfield representing the state of buttons during a motion event. +/// +/// See [the NDK docs](https://developer.android.com/ndk/reference/group/input#anonymous-enum-33) +#[derive(Copy, Clone, Debug, PartialEq, Eq)] +pub struct ButtonState(pub u32); + +impl ButtonState { + #[inline] + pub fn primary(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_BUTTON_PRIMARY != 0 + } + #[inline] + pub fn secondary(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_BUTTON_SECONDARY != 0 + } + #[inline] + pub fn teriary(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_BUTTON_TERTIARY != 0 + } + #[inline] + pub fn back(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_BUTTON_BACK != 0 + } + #[inline] + pub fn forward(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_BUTTON_FORWARD != 0 + } + #[inline] + pub fn stylus_primary(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_BUTTON_STYLUS_PRIMARY != 0 + } + #[inline] + pub fn stylus_secondary(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_BUTTON_STYLUS_SECONDARY != 0 + } +} + +/// A bitfield representing which edges were touched by a motion event. +/// +/// See [the NDK docs](https://developer.android.com/ndk/reference/group/input#anonymous-enum-31) +#[derive(Copy, Clone, Debug, PartialEq, Eq)] +pub struct EdgeFlags(pub u32); + +impl EdgeFlags { + #[inline] + pub fn top(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_EDGE_FLAG_TOP != 0 + } + #[inline] + pub fn bottom(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_EDGE_FLAG_BOTTOM != 0 + } + #[inline] + pub fn left(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_EDGE_FLAG_LEFT != 0 + } + #[inline] + pub fn right(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_EDGE_FLAG_RIGHT != 0 + } +} + +/// Flags associated with this [`MotionEvent`]. +/// +/// See [the NDK docs](https://developer.android.com/ndk/reference/group/input#anonymous-enum-30) +#[derive(Copy, Clone, Debug, PartialEq, Eq)] +pub struct MotionEventFlags(pub u32); + +impl MotionEventFlags { + #[inline] + pub fn window_is_obscured(self) -> bool { + self.0 & ndk_sys::AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED != 0 + } +} + +impl MotionEvent { + pub(crate) fn new(ga_event: GameActivityMotionEvent) -> Self { + Self { ga_event } + } + + /// Get the source of the event. + /// + #[inline] + pub fn source(&self) -> Source { + self.source.try_into().unwrap_or(Source::Unknown) + } + + /// Get the class of the event source. + /// + #[inline] + pub fn class(&self) -> Class { + Class::from(self.source) + } + + /// Get the device id associated with the event. + /// + #[inline] + pub fn device_id(&self) -> i32 { + self.deviceId + } + + /// Returns the motion action associated with the event. + /// + /// See [the MotionEvent docs](https://developer.android.com/reference/android/view/MotionEvent#getActionMasked()) + #[inline] + pub fn action(&self) -> MotionAction { + let action = self.action as u32 & ndk_sys::AMOTION_EVENT_ACTION_MASK; + action.try_into().unwrap() + } + + /// Returns the pointer index of an `Up` or `Down` event. + /// + /// Pointer indices can change per motion event. For an identifier that stays the same, see + /// [`Pointer::pointer_id()`]. + /// + /// This only has a meaning when the [action](Self::action) is one of [`Up`](MotionAction::Up), + /// [`Down`](MotionAction::Down), [`PointerUp`](MotionAction::PointerUp), + /// or [`PointerDown`](MotionAction::PointerDown). + #[inline] + pub fn pointer_index(&self) -> usize { + let action = self.action as u32 & ndk_sys::AMOTION_EVENT_ACTION_MASK; + let index = (action & ndk_sys::AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) + >> ndk_sys::AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT; + index as usize + } + + /* + /// Returns the pointer id associated with the given pointer index. + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_getpointerid) + // TODO: look at output with out-of-range pointer index + // Probably -1 though + pub fn pointer_id_for(&self, pointer_index: usize) -> i32 { + unsafe { ndk_sys::AMotionEvent_getPointerId(self.ptr.as_ptr(), pointer_index) } + } + */ + + /// Returns the number of pointers in this event + /// + /// See [the MotionEvent docs](https://developer.android.com/reference/android/view/MotionEvent#getPointerCount()) + #[inline] + pub fn pointer_count(&self) -> usize { + self.pointerCount as usize + } + + /// An iterator over the pointers in this motion event + #[inline] + pub fn pointers(&self) -> PointersIter<'_> { + PointersIter { + event: self, + next_index: 0, + count: self.pointer_count(), + } + } + + /// The pointer at a given pointer index. Panics if the pointer index is out of bounds. + /// + /// If you need to loop over all the pointers, prefer the [`pointers()`](Self::pointers) method. + #[inline] + pub fn pointer_at_index(&self, index: usize) -> Pointer<'_> { + if index >= self.pointer_count() { + panic!("Pointer index {} is out of bounds", index); + } + Pointer { + event: self, + index, + } + } + + /* + /// Returns the size of the history contained in this event. + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_gethistorysize) + #[inline] + pub fn history_size(&self) -> usize { + unsafe { ndk_sys::AMotionEvent_getHistorySize(self.ptr.as_ptr()) as usize } + } + + /// An iterator over the historical events contained in this event. + #[inline] + pub fn history(&self) -> HistoricalMotionEventsIter<'_> { + HistoricalMotionEventsIter { + event: self.ptr, + next_history_index: 0, + history_size: self.history_size(), + _marker: std::marker::PhantomData, + } + } + */ + + /// Returns the state of any modifier keys that were pressed during the event. + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_getmetastate) + #[inline] + pub fn meta_state(&self) -> MetaState { + MetaState(self.metaState as u32) + } + + /// Returns the button state during this event, as a bitfield. + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_getbuttonstate) + #[inline] + pub fn button_state(&self) -> ButtonState { + ButtonState(self.buttonState as u32) + } + + /// Returns the time of the start of this gesture, in the `java.lang.System.nanoTime()` time + /// base + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_getdowntime) + #[inline] + pub fn down_time(&self) -> i64 { + self.downTime + } + + /// Returns a bitfield indicating which edges were touched by this event. + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_getedgeflags) + #[inline] + pub fn edge_flags(&self) -> EdgeFlags { + EdgeFlags(self.edgeFlags as u32) + } + + /// Returns the time of this event, in the `java.lang.System.nanoTime()` time base + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_geteventtime) + #[inline] + pub fn event_time(&self) -> i64 { + self.eventTime + } + + /// The flags associated with a motion event. + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_getflags) + #[inline] + pub fn flags(&self) -> MotionEventFlags { + MotionEventFlags(self.flags as u32) + } + + /* Missing from GameActivity currently... + /// Returns the offset in the x direction between the coordinates and the raw coordinates + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_getxoffset) + #[inline] + pub fn x_offset(&self) -> f32 { + self.x_offset + } + + /// Returns the offset in the y direction between the coordinates and the raw coordinates + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_getyoffset) + #[inline] + pub fn y_offset(&self) -> f32 { + self.y_offset + } + */ + + /// Returns the precision of the x value of the coordinates + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_getxprecision) + #[inline] + pub fn x_precision(&self) -> f32 { + self.precisionX + } + + /// Returns the precision of the y value of the coordinates + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_getyprecision) + #[inline] + pub fn y_precision(&self) -> f32 { + self.precisionY + } +} + +/// A view into the data of a specific pointer in a motion event. +#[derive(Debug)] +pub struct Pointer<'a> { + event: &'a MotionEvent, + index: usize, +} + +impl<'a> Pointer<'a> { + #[inline] + pub fn pointer_index(&self) -> usize { + self.index + } + + #[inline] + pub fn pointer_id(&self) -> i32 { + let pointer = &self.event.pointers[self.index]; + pointer.id + } + + #[inline] + pub fn axis_value(&self, axis: Axis) -> f32 { + let pointer = &self.event.pointers[self.index]; + pointer.axisValues[axis as u32 as usize] + } + + #[inline] + pub fn orientation(&self) -> f32 { + self.axis_value(Axis::Orientation) + } + + #[inline] + pub fn pressure(&self) -> f32 { + self.axis_value(Axis::Pressure) + } + + #[inline] + pub fn raw_x(&self) -> f32 { + let pointer = &self.event.pointers[self.index]; + pointer.rawX + } + + #[inline] + pub fn raw_y(&self) -> f32 { + let pointer = &self.event.pointers[self.index]; + pointer.rawY + } + + #[inline] + pub fn x(&self) -> f32 { + self.axis_value(Axis::X) + } + + #[inline] + pub fn y(&self) -> f32 { + self.axis_value(Axis::Y) + } + + #[inline] + pub fn size(&self) -> f32 { + self.axis_value(Axis::Size) + } + + #[inline] + pub fn tool_major(&self) -> f32 { + self.axis_value(Axis::ToolMajor) + } + + #[inline] + pub fn tool_minor(&self) -> f32 { + self.axis_value(Axis::ToolMinor) + } + + #[inline] + pub fn touch_major(&self) -> f32 { + self.axis_value(Axis::TouchMajor) + } + + #[inline] + pub fn touch_minor(&self) -> f32 { + self.axis_value(Axis::TouchMinor) + } +} + +/// An iterator over the pointers in a [`MotionEvent`]. +#[derive(Debug)] +pub struct PointersIter<'a> { + event: &'a MotionEvent, + next_index: usize, + count: usize, +} + +impl<'a> Iterator for PointersIter<'a> { + type Item = Pointer<'a>; + fn next(&mut self) -> Option> { + if self.next_index < self.count { + let ptr = Pointer { + event: self.event, + index: self.next_index, + }; + self.next_index += 1; + Some(ptr) + } else { + None + } + } + + fn size_hint(&self) -> (usize, Option) { + let size = self.count - self.next_index; + (size, Some(size)) + } +} + +impl<'a> ExactSizeIterator for PointersIter<'a> { + fn len(&self) -> usize { + self.count - self.next_index + } +} + +/* +/// Represents a view into a past moment of a motion event +#[derive(Debug)] +pub struct HistoricalMotionEvent<'a> { + event: NonNull, + history_index: usize, + _marker: std::marker::PhantomData<&'a MotionEvent>, +} + +// TODO: thread safety? + +impl<'a> HistoricalMotionEvent<'a> { + /// Returns the "history index" associated with this historical event. Older events have smaller indices. + #[inline] + pub fn history_index(&self) -> usize { + self.history_index + } + + /// Returns the time of the historical event, in the `java.lang.System.nanoTime()` time base + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#amotionevent_gethistoricaleventtime) + #[inline] + pub fn event_time(&self) -> i64 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalEventTime( + self.event.as_ptr(), + self.history_index as ndk_sys::size_t, + ) + } + } + + /// An iterator over the pointers of this historical motion event + #[inline] + pub fn pointers(&self) -> HistoricalPointersIter<'a> { + HistoricalPointersIter { + event: self.event, + history_index: self.history_index, + next_pointer_index: 0, + pointer_count: unsafe { + ndk_sys::AMotionEvent_getPointerCount(self.event.as_ptr()) as usize + }, + _marker: std::marker::PhantomData, + } + } +} + +/// An iterator over all the historical moments in a [`MotionEvent`]. +/// +/// It iterates from oldest to newest. +#[derive(Debug)] +pub struct HistoricalMotionEventsIter<'a> { + event: NonNull, + next_history_index: usize, + history_size: usize, + _marker: std::marker::PhantomData<&'a MotionEvent>, +} + +// TODO: thread safety? + +impl<'a> Iterator for HistoricalMotionEventsIter<'a> { + type Item = HistoricalMotionEvent<'a>; + + fn next(&mut self) -> Option> { + if self.next_history_index < self.history_size { + let res = HistoricalMotionEvent { + event: self.event, + history_index: self.next_history_index, + _marker: std::marker::PhantomData, + }; + self.next_history_index += 1; + Some(res) + } else { + None + } + } + + fn size_hint(&self) -> (usize, Option) { + let size = self.history_size - self.next_history_index; + (size, Some(size)) + } +} +impl ExactSizeIterator for HistoricalMotionEventsIter<'_> { + fn len(&self) -> usize { + self.history_size - self.next_history_index + } +} +impl<'a> DoubleEndedIterator for HistoricalMotionEventsIter<'a> { + fn next_back(&mut self) -> Option> { + if self.next_history_index < self.history_size { + self.history_size -= 1; + Some(HistoricalMotionEvent { + event: self.event, + history_index: self.history_size, + _marker: std::marker::PhantomData, + }) + } else { + None + } + } +} + +/// A view into a pointer at a historical moment +#[derive(Debug)] +pub struct HistoricalPointer<'a> { + event: NonNull, + pointer_index: usize, + history_index: usize, + _marker: std::marker::PhantomData<&'a MotionEvent>, +} + +// TODO: thread safety? + +impl<'a> HistoricalPointer<'a> { + #[inline] + pub fn pointer_index(&self) -> usize { + self.pointer_index + } + + #[inline] + pub fn pointer_id(&self) -> i32 { + unsafe { + ndk_sys::AMotionEvent_getPointerId(self.event.as_ptr(), self.pointer_index as ndk_sys::size_t) + } + } + + #[inline] + pub fn history_index(&self) -> usize { + self.history_index + } + + #[inline] + pub fn axis_value(&self, axis: Axis) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalAxisValue( + self.event.as_ptr(), + axis as i32, + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } + + #[inline] + pub fn orientation(&self) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalOrientation( + self.event.as_ptr(), + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } + + #[inline] + pub fn pressure(&self) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalPressure( + self.event.as_ptr(), + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } + + #[inline] + pub fn raw_x(&self) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalRawX( + self.event.as_ptr(), + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } + + #[inline] + pub fn raw_y(&self) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalRawY( + self.event.as_ptr(), + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } + + #[inline] + pub fn x(&self) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalX( + self.event.as_ptr(), + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } + + #[inline] + pub fn y(&self) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalY( + self.event.as_ptr(), + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } + + #[inline] + pub fn size(&self) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalSize( + self.event.as_ptr(), + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } + + #[inline] + pub fn tool_major(&self) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalToolMajor( + self.event.as_ptr(), + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } + + #[inline] + pub fn tool_minor(&self) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalToolMinor( + self.event.as_ptr(), + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } + + #[inline] + pub fn touch_major(&self) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalTouchMajor( + self.event.as_ptr(), + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } + + #[inline] + pub fn touch_minor(&self) -> f32 { + unsafe { + ndk_sys::AMotionEvent_getHistoricalTouchMinor( + self.event.as_ptr(), + self.pointer_index as ndk_sys::size_t, + self.history_index as ndk_sys::size_t, + ) + } + } +} + +/// An iterator over the pointers in a historical motion event +#[derive(Debug)] +pub struct HistoricalPointersIter<'a> { + event: NonNull, + history_index: usize, + next_pointer_index: usize, + pointer_count: usize, + _marker: std::marker::PhantomData<&'a MotionEvent>, +} + +// TODO: thread safety? + +impl<'a> Iterator for HistoricalPointersIter<'a> { + type Item = HistoricalPointer<'a>; + + fn next(&mut self) -> Option> { + if self.next_pointer_index < self.pointer_count { + let ptr = HistoricalPointer { + event: self.event, + history_index: self.history_index, + pointer_index: self.next_pointer_index, + _marker: std::marker::PhantomData, + }; + self.next_pointer_index += 1; + Some(ptr) + } else { + None + } + } + + fn size_hint(&self) -> (usize, Option) { + let size = self.pointer_count - self.next_pointer_index; + (size, Some(size)) + } +} +impl ExactSizeIterator for HistoricalPointersIter<'_> { + fn len(&self) -> usize { + self.pointer_count - self.next_pointer_index + } +} + +*/ + +/// A key event. +/// +/// For general discussion of key events in Android, see [the relevant +/// javadoc](https://developer.android.com/reference/android/view/KeyEvent). +#[derive(Debug)] +pub struct KeyEvent { + ga_event: GameActivityKeyEvent +} + +impl Deref for KeyEvent { + type Target = GameActivityKeyEvent; + + fn deref(&self) -> &Self::Target { + &self.ga_event + } +} + +/// Key actions. +/// +/// See [the NDK docs](https://developer.android.com/ndk/reference/group/input#anonymous-enum-27) +#[derive(Copy, Clone, Debug, PartialEq, Eq, TryFromPrimitive, IntoPrimitive)] +#[repr(u32)] +pub enum KeyAction { + Down = ndk_sys::AKEY_EVENT_ACTION_DOWN, + Up = ndk_sys::AKEY_EVENT_ACTION_UP, + Multiple = ndk_sys::AKEY_EVENT_ACTION_MULTIPLE, +} + +/// Key codes. +/// +/// See [the NDK docs](https://developer.android.com/ndk/reference/group/input#anonymous-enum-39) +#[derive(Copy, Clone, Debug, PartialEq, Eq, TryFromPrimitive, IntoPrimitive)] +#[repr(u32)] +pub enum Keycode { + Unknown = ndk_sys::AKEYCODE_UNKNOWN, + SoftLeft = ndk_sys::AKEYCODE_SOFT_LEFT, + SoftRight = ndk_sys::AKEYCODE_SOFT_RIGHT, + Home = ndk_sys::AKEYCODE_HOME, + Back = ndk_sys::AKEYCODE_BACK, + Call = ndk_sys::AKEYCODE_CALL, + Endcall = ndk_sys::AKEYCODE_ENDCALL, + Keycode0 = ndk_sys::AKEYCODE_0, + Keycode1 = ndk_sys::AKEYCODE_1, + Keycode2 = ndk_sys::AKEYCODE_2, + Keycode3 = ndk_sys::AKEYCODE_3, + Keycode4 = ndk_sys::AKEYCODE_4, + Keycode5 = ndk_sys::AKEYCODE_5, + Keycode6 = ndk_sys::AKEYCODE_6, + Keycode7 = ndk_sys::AKEYCODE_7, + Keycode8 = ndk_sys::AKEYCODE_8, + Keycode9 = ndk_sys::AKEYCODE_9, + Star = ndk_sys::AKEYCODE_STAR, + Pound = ndk_sys::AKEYCODE_POUND, + DpadUp = ndk_sys::AKEYCODE_DPAD_UP, + DpadDown = ndk_sys::AKEYCODE_DPAD_DOWN, + DpadLeft = ndk_sys::AKEYCODE_DPAD_LEFT, + DpadRight = ndk_sys::AKEYCODE_DPAD_RIGHT, + DpadCenter = ndk_sys::AKEYCODE_DPAD_CENTER, + VolumeUp = ndk_sys::AKEYCODE_VOLUME_UP, + VolumeDown = ndk_sys::AKEYCODE_VOLUME_DOWN, + Power = ndk_sys::AKEYCODE_POWER, + Camera = ndk_sys::AKEYCODE_CAMERA, + Clear = ndk_sys::AKEYCODE_CLEAR, + A = ndk_sys::AKEYCODE_A, + B = ndk_sys::AKEYCODE_B, + C = ndk_sys::AKEYCODE_C, + D = ndk_sys::AKEYCODE_D, + E = ndk_sys::AKEYCODE_E, + F = ndk_sys::AKEYCODE_F, + G = ndk_sys::AKEYCODE_G, + H = ndk_sys::AKEYCODE_H, + I = ndk_sys::AKEYCODE_I, + J = ndk_sys::AKEYCODE_J, + K = ndk_sys::AKEYCODE_K, + L = ndk_sys::AKEYCODE_L, + M = ndk_sys::AKEYCODE_M, + N = ndk_sys::AKEYCODE_N, + O = ndk_sys::AKEYCODE_O, + P = ndk_sys::AKEYCODE_P, + Q = ndk_sys::AKEYCODE_Q, + R = ndk_sys::AKEYCODE_R, + S = ndk_sys::AKEYCODE_S, + T = ndk_sys::AKEYCODE_T, + U = ndk_sys::AKEYCODE_U, + V = ndk_sys::AKEYCODE_V, + W = ndk_sys::AKEYCODE_W, + X = ndk_sys::AKEYCODE_X, + Y = ndk_sys::AKEYCODE_Y, + Z = ndk_sys::AKEYCODE_Z, + Comma = ndk_sys::AKEYCODE_COMMA, + Period = ndk_sys::AKEYCODE_PERIOD, + AltLeft = ndk_sys::AKEYCODE_ALT_LEFT, + AltRight = ndk_sys::AKEYCODE_ALT_RIGHT, + ShiftLeft = ndk_sys::AKEYCODE_SHIFT_LEFT, + ShiftRight = ndk_sys::AKEYCODE_SHIFT_RIGHT, + Tab = ndk_sys::AKEYCODE_TAB, + Space = ndk_sys::AKEYCODE_SPACE, + Sym = ndk_sys::AKEYCODE_SYM, + Explorer = ndk_sys::AKEYCODE_EXPLORER, + Envelope = ndk_sys::AKEYCODE_ENVELOPE, + Enter = ndk_sys::AKEYCODE_ENTER, + Del = ndk_sys::AKEYCODE_DEL, + Grave = ndk_sys::AKEYCODE_GRAVE, + Minus = ndk_sys::AKEYCODE_MINUS, + Equals = ndk_sys::AKEYCODE_EQUALS, + LeftBracket = ndk_sys::AKEYCODE_LEFT_BRACKET, + RightBracket = ndk_sys::AKEYCODE_RIGHT_BRACKET, + Backslash = ndk_sys::AKEYCODE_BACKSLASH, + Semicolon = ndk_sys::AKEYCODE_SEMICOLON, + Apostrophe = ndk_sys::AKEYCODE_APOSTROPHE, + Slash = ndk_sys::AKEYCODE_SLASH, + At = ndk_sys::AKEYCODE_AT, + Num = ndk_sys::AKEYCODE_NUM, + Headsethook = ndk_sys::AKEYCODE_HEADSETHOOK, + Focus = ndk_sys::AKEYCODE_FOCUS, + Plus = ndk_sys::AKEYCODE_PLUS, + Menu = ndk_sys::AKEYCODE_MENU, + Notification = ndk_sys::AKEYCODE_NOTIFICATION, + Search = ndk_sys::AKEYCODE_SEARCH, + MediaPlayPause = ndk_sys::AKEYCODE_MEDIA_PLAY_PAUSE, + MediaStop = ndk_sys::AKEYCODE_MEDIA_STOP, + MediaNext = ndk_sys::AKEYCODE_MEDIA_NEXT, + MediaPrevious = ndk_sys::AKEYCODE_MEDIA_PREVIOUS, + MediaRewind = ndk_sys::AKEYCODE_MEDIA_REWIND, + MediaFastForward = ndk_sys::AKEYCODE_MEDIA_FAST_FORWARD, + Mute = ndk_sys::AKEYCODE_MUTE, + PageUp = ndk_sys::AKEYCODE_PAGE_UP, + PageDown = ndk_sys::AKEYCODE_PAGE_DOWN, + Pictsymbols = ndk_sys::AKEYCODE_PICTSYMBOLS, + SwitchCharset = ndk_sys::AKEYCODE_SWITCH_CHARSET, + ButtonA = ndk_sys::AKEYCODE_BUTTON_A, + ButtonB = ndk_sys::AKEYCODE_BUTTON_B, + ButtonC = ndk_sys::AKEYCODE_BUTTON_C, + ButtonX = ndk_sys::AKEYCODE_BUTTON_X, + ButtonY = ndk_sys::AKEYCODE_BUTTON_Y, + ButtonZ = ndk_sys::AKEYCODE_BUTTON_Z, + ButtonL1 = ndk_sys::AKEYCODE_BUTTON_L1, + ButtonR1 = ndk_sys::AKEYCODE_BUTTON_R1, + ButtonL2 = ndk_sys::AKEYCODE_BUTTON_L2, + ButtonR2 = ndk_sys::AKEYCODE_BUTTON_R2, + ButtonThumbl = ndk_sys::AKEYCODE_BUTTON_THUMBL, + ButtonThumbr = ndk_sys::AKEYCODE_BUTTON_THUMBR, + ButtonStart = ndk_sys::AKEYCODE_BUTTON_START, + ButtonSelect = ndk_sys::AKEYCODE_BUTTON_SELECT, + ButtonMode = ndk_sys::AKEYCODE_BUTTON_MODE, + Escape = ndk_sys::AKEYCODE_ESCAPE, + ForwardDel = ndk_sys::AKEYCODE_FORWARD_DEL, + CtrlLeft = ndk_sys::AKEYCODE_CTRL_LEFT, + CtrlRight = ndk_sys::AKEYCODE_CTRL_RIGHT, + CapsLock = ndk_sys::AKEYCODE_CAPS_LOCK, + ScrollLock = ndk_sys::AKEYCODE_SCROLL_LOCK, + MetaLeft = ndk_sys::AKEYCODE_META_LEFT, + MetaRight = ndk_sys::AKEYCODE_META_RIGHT, + Function = ndk_sys::AKEYCODE_FUNCTION, + Sysrq = ndk_sys::AKEYCODE_SYSRQ, + Break = ndk_sys::AKEYCODE_BREAK, + MoveHome = ndk_sys::AKEYCODE_MOVE_HOME, + MoveEnd = ndk_sys::AKEYCODE_MOVE_END, + Insert = ndk_sys::AKEYCODE_INSERT, + Forward = ndk_sys::AKEYCODE_FORWARD, + MediaPlay = ndk_sys::AKEYCODE_MEDIA_PLAY, + MediaPause = ndk_sys::AKEYCODE_MEDIA_PAUSE, + MediaClose = ndk_sys::AKEYCODE_MEDIA_CLOSE, + MediaEject = ndk_sys::AKEYCODE_MEDIA_EJECT, + MediaRecord = ndk_sys::AKEYCODE_MEDIA_RECORD, + F1 = ndk_sys::AKEYCODE_F1, + F2 = ndk_sys::AKEYCODE_F2, + F3 = ndk_sys::AKEYCODE_F3, + F4 = ndk_sys::AKEYCODE_F4, + F5 = ndk_sys::AKEYCODE_F5, + F6 = ndk_sys::AKEYCODE_F6, + F7 = ndk_sys::AKEYCODE_F7, + F8 = ndk_sys::AKEYCODE_F8, + F9 = ndk_sys::AKEYCODE_F9, + F10 = ndk_sys::AKEYCODE_F10, + F11 = ndk_sys::AKEYCODE_F11, + F12 = ndk_sys::AKEYCODE_F12, + NumLock = ndk_sys::AKEYCODE_NUM_LOCK, + Numpad0 = ndk_sys::AKEYCODE_NUMPAD_0, + Numpad1 = ndk_sys::AKEYCODE_NUMPAD_1, + Numpad2 = ndk_sys::AKEYCODE_NUMPAD_2, + Numpad3 = ndk_sys::AKEYCODE_NUMPAD_3, + Numpad4 = ndk_sys::AKEYCODE_NUMPAD_4, + Numpad5 = ndk_sys::AKEYCODE_NUMPAD_5, + Numpad6 = ndk_sys::AKEYCODE_NUMPAD_6, + Numpad7 = ndk_sys::AKEYCODE_NUMPAD_7, + Numpad8 = ndk_sys::AKEYCODE_NUMPAD_8, + Numpad9 = ndk_sys::AKEYCODE_NUMPAD_9, + NumpadDivide = ndk_sys::AKEYCODE_NUMPAD_DIVIDE, + NumpadMultiply = ndk_sys::AKEYCODE_NUMPAD_MULTIPLY, + NumpadSubtract = ndk_sys::AKEYCODE_NUMPAD_SUBTRACT, + NumpadAdd = ndk_sys::AKEYCODE_NUMPAD_ADD, + NumpadDot = ndk_sys::AKEYCODE_NUMPAD_DOT, + NumpadComma = ndk_sys::AKEYCODE_NUMPAD_COMMA, + NumpadEnter = ndk_sys::AKEYCODE_NUMPAD_ENTER, + NumpadEquals = ndk_sys::AKEYCODE_NUMPAD_EQUALS, + NumpadLeftParen = ndk_sys::AKEYCODE_NUMPAD_LEFT_PAREN, + NumpadRightParen = ndk_sys::AKEYCODE_NUMPAD_RIGHT_PAREN, + VolumeMute = ndk_sys::AKEYCODE_VOLUME_MUTE, + Info = ndk_sys::AKEYCODE_INFO, + ChannelUp = ndk_sys::AKEYCODE_CHANNEL_UP, + ChannelDown = ndk_sys::AKEYCODE_CHANNEL_DOWN, + ZoomIn = ndk_sys::AKEYCODE_ZOOM_IN, + ZoomOut = ndk_sys::AKEYCODE_ZOOM_OUT, + Tv = ndk_sys::AKEYCODE_TV, + Window = ndk_sys::AKEYCODE_WINDOW, + Guide = ndk_sys::AKEYCODE_GUIDE, + Dvr = ndk_sys::AKEYCODE_DVR, + Bookmark = ndk_sys::AKEYCODE_BOOKMARK, + Captions = ndk_sys::AKEYCODE_CAPTIONS, + Settings = ndk_sys::AKEYCODE_SETTINGS, + TvPower = ndk_sys::AKEYCODE_TV_POWER, + TvInput = ndk_sys::AKEYCODE_TV_INPUT, + StbPower = ndk_sys::AKEYCODE_STB_POWER, + StbInput = ndk_sys::AKEYCODE_STB_INPUT, + AvrPower = ndk_sys::AKEYCODE_AVR_POWER, + AvrInput = ndk_sys::AKEYCODE_AVR_INPUT, + ProgRed = ndk_sys::AKEYCODE_PROG_RED, + ProgGreen = ndk_sys::AKEYCODE_PROG_GREEN, + ProgYellow = ndk_sys::AKEYCODE_PROG_YELLOW, + ProgBlue = ndk_sys::AKEYCODE_PROG_BLUE, + AppSwitch = ndk_sys::AKEYCODE_APP_SWITCH, + Button1 = ndk_sys::AKEYCODE_BUTTON_1, + Button2 = ndk_sys::AKEYCODE_BUTTON_2, + Button3 = ndk_sys::AKEYCODE_BUTTON_3, + Button4 = ndk_sys::AKEYCODE_BUTTON_4, + Button5 = ndk_sys::AKEYCODE_BUTTON_5, + Button6 = ndk_sys::AKEYCODE_BUTTON_6, + Button7 = ndk_sys::AKEYCODE_BUTTON_7, + Button8 = ndk_sys::AKEYCODE_BUTTON_8, + Button9 = ndk_sys::AKEYCODE_BUTTON_9, + Button10 = ndk_sys::AKEYCODE_BUTTON_10, + Button11 = ndk_sys::AKEYCODE_BUTTON_11, + Button12 = ndk_sys::AKEYCODE_BUTTON_12, + Button13 = ndk_sys::AKEYCODE_BUTTON_13, + Button14 = ndk_sys::AKEYCODE_BUTTON_14, + Button15 = ndk_sys::AKEYCODE_BUTTON_15, + Button16 = ndk_sys::AKEYCODE_BUTTON_16, + LanguageSwitch = ndk_sys::AKEYCODE_LANGUAGE_SWITCH, + MannerMode = ndk_sys::AKEYCODE_MANNER_MODE, + Keycode3dMode = ndk_sys::AKEYCODE_3D_MODE, + Contacts = ndk_sys::AKEYCODE_CONTACTS, + Calendar = ndk_sys::AKEYCODE_CALENDAR, + Music = ndk_sys::AKEYCODE_MUSIC, + Calculator = ndk_sys::AKEYCODE_CALCULATOR, + ZenkakuHankaku = ndk_sys::AKEYCODE_ZENKAKU_HANKAKU, + Eisu = ndk_sys::AKEYCODE_EISU, + Muhenkan = ndk_sys::AKEYCODE_MUHENKAN, + Henkan = ndk_sys::AKEYCODE_HENKAN, + KatakanaHiragana = ndk_sys::AKEYCODE_KATAKANA_HIRAGANA, + Yen = ndk_sys::AKEYCODE_YEN, + Ro = ndk_sys::AKEYCODE_RO, + Kana = ndk_sys::AKEYCODE_KANA, + Assist = ndk_sys::AKEYCODE_ASSIST, + BrightnessDown = ndk_sys::AKEYCODE_BRIGHTNESS_DOWN, + BrightnessUp = ndk_sys::AKEYCODE_BRIGHTNESS_UP, + MediaAudioTrack = ndk_sys::AKEYCODE_MEDIA_AUDIO_TRACK, + Sleep = ndk_sys::AKEYCODE_SLEEP, + Wakeup = ndk_sys::AKEYCODE_WAKEUP, + Pairing = ndk_sys::AKEYCODE_PAIRING, + MediaTopMenu = ndk_sys::AKEYCODE_MEDIA_TOP_MENU, + Keycode11 = ndk_sys::AKEYCODE_11, + Keycode12 = ndk_sys::AKEYCODE_12, + LastChannel = ndk_sys::AKEYCODE_LAST_CHANNEL, + TvDataService = ndk_sys::AKEYCODE_TV_DATA_SERVICE, + VoiceAssist = ndk_sys::AKEYCODE_VOICE_ASSIST, + TvRadioService = ndk_sys::AKEYCODE_TV_RADIO_SERVICE, + TvTeletext = ndk_sys::AKEYCODE_TV_TELETEXT, + TvNumberEntry = ndk_sys::AKEYCODE_TV_NUMBER_ENTRY, + TvTerrestrialAnalog = ndk_sys::AKEYCODE_TV_TERRESTRIAL_ANALOG, + TvTerrestrialDigital = ndk_sys::AKEYCODE_TV_TERRESTRIAL_DIGITAL, + TvSatellite = ndk_sys::AKEYCODE_TV_SATELLITE, + TvSatelliteBs = ndk_sys::AKEYCODE_TV_SATELLITE_BS, + TvSatelliteCs = ndk_sys::AKEYCODE_TV_SATELLITE_CS, + TvSatelliteService = ndk_sys::AKEYCODE_TV_SATELLITE_SERVICE, + TvNetwork = ndk_sys::AKEYCODE_TV_NETWORK, + TvAntennaCable = ndk_sys::AKEYCODE_TV_ANTENNA_CABLE, + TvInputHdmi1 = ndk_sys::AKEYCODE_TV_INPUT_HDMI_1, + TvInputHdmi2 = ndk_sys::AKEYCODE_TV_INPUT_HDMI_2, + TvInputHdmi3 = ndk_sys::AKEYCODE_TV_INPUT_HDMI_3, + TvInputHdmi4 = ndk_sys::AKEYCODE_TV_INPUT_HDMI_4, + TvInputComposite1 = ndk_sys::AKEYCODE_TV_INPUT_COMPOSITE_1, + TvInputComposite2 = ndk_sys::AKEYCODE_TV_INPUT_COMPOSITE_2, + TvInputComponent1 = ndk_sys::AKEYCODE_TV_INPUT_COMPONENT_1, + TvInputComponent2 = ndk_sys::AKEYCODE_TV_INPUT_COMPONENT_2, + TvInputVga1 = ndk_sys::AKEYCODE_TV_INPUT_VGA_1, + TvAudioDescription = ndk_sys::AKEYCODE_TV_AUDIO_DESCRIPTION, + TvAudioDescriptionMixUp = ndk_sys::AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP, + TvAudioDescriptionMixDown = ndk_sys::AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN, + TvZoomMode = ndk_sys::AKEYCODE_TV_ZOOM_MODE, + TvContentsMenu = ndk_sys::AKEYCODE_TV_CONTENTS_MENU, + TvMediaContextMenu = ndk_sys::AKEYCODE_TV_MEDIA_CONTEXT_MENU, + TvTimerProgramming = ndk_sys::AKEYCODE_TV_TIMER_PROGRAMMING, + Help = ndk_sys::AKEYCODE_HELP, + NavigatePrevious = ndk_sys::AKEYCODE_NAVIGATE_PREVIOUS, + NavigateNext = ndk_sys::AKEYCODE_NAVIGATE_NEXT, + NavigateIn = ndk_sys::AKEYCODE_NAVIGATE_IN, + NavigateOut = ndk_sys::AKEYCODE_NAVIGATE_OUT, + StemPrimary = ndk_sys::AKEYCODE_STEM_PRIMARY, + Stem1 = ndk_sys::AKEYCODE_STEM_1, + Stem2 = ndk_sys::AKEYCODE_STEM_2, + Stem3 = ndk_sys::AKEYCODE_STEM_3, + DpadUpLeft = ndk_sys::AKEYCODE_DPAD_UP_LEFT, + DpadDownLeft = ndk_sys::AKEYCODE_DPAD_DOWN_LEFT, + DpadUpRight = ndk_sys::AKEYCODE_DPAD_UP_RIGHT, + DpadDownRight = ndk_sys::AKEYCODE_DPAD_DOWN_RIGHT, + MediaSkipForward = ndk_sys::AKEYCODE_MEDIA_SKIP_FORWARD, + MediaSkipBackward = ndk_sys::AKEYCODE_MEDIA_SKIP_BACKWARD, + MediaStepForward = ndk_sys::AKEYCODE_MEDIA_STEP_FORWARD, + MediaStepBackward = ndk_sys::AKEYCODE_MEDIA_STEP_BACKWARD, + SoftSleep = ndk_sys::AKEYCODE_SOFT_SLEEP, + Cut = ndk_sys::AKEYCODE_CUT, + Copy = ndk_sys::AKEYCODE_COPY, + Paste = ndk_sys::AKEYCODE_PASTE, + SystemNavigationUp = ndk_sys::AKEYCODE_SYSTEM_NAVIGATION_UP, + SystemNavigationDown = ndk_sys::AKEYCODE_SYSTEM_NAVIGATION_DOWN, + SystemNavigationLeft = ndk_sys::AKEYCODE_SYSTEM_NAVIGATION_LEFT, + SystemNavigationRight = ndk_sys::AKEYCODE_SYSTEM_NAVIGATION_RIGHT, + AllApps = ndk_sys::AKEYCODE_ALL_APPS, + Refresh = ndk_sys::AKEYCODE_REFRESH, + ThumbsUp = ndk_sys::AKEYCODE_THUMBS_UP, + ThumbsDown = ndk_sys::AKEYCODE_THUMBS_DOWN, + ProfileSwitch = ndk_sys::AKEYCODE_PROFILE_SWITCH, +} + +impl KeyEvent { + + pub(crate) fn new(ga_event: GameActivityKeyEvent) -> Self { + Self { ga_event } + } + + /// Get the source of the event. + /// + #[inline] + pub fn source(&self) -> Source { + self.source.try_into().unwrap_or(Source::Unknown) + } + + /// Get the class of the event source. + /// + #[inline] + pub fn class(&self) -> Class { + Class::from(self.source) + } + + /// Get the device id associated with the event. + /// + #[inline] + pub fn device_id(&self) -> i32 { + self.deviceId + } + + /// Returns the key action associated with the event. + /// + /// See [the KeyEvent docs](https://developer.android.com/reference/android/view/KeyEvent#getAction()) + #[inline] + pub fn action(&self) -> KeyAction { + let action = self.action as u32; + action.try_into().unwrap() + } + + /// Returns the last time the key was pressed. This is on the scale of + /// `java.lang.System.nanoTime()`, which has nanosecond precision, but no defined start time. + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#akeyevent_getdowntime) + #[inline] + pub fn down_time(&self) -> i64 { + self.downTime + } + + /// Returns the time this event occured. This is on the scale of + /// `java.lang.System.nanoTime()`, which has nanosecond precision, but no defined start time. + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#akeyevent_geteventtime) + #[inline] + pub fn event_time(&self) -> i64 { + self.eventTime + } + + /// Returns the keycode associated with this key event + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#akeyevent_getkeycode) + #[inline] + pub fn key_code(&self) -> Keycode { + let keycode = self.keyCode as u32; + keycode.try_into().unwrap_or(Keycode::Unknown) + } + + /// Returns the number of repeats of a key. + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#akeyevent_getrepeatcount) + #[inline] + pub fn repeat_count(&self) -> i32 { + self.repeatCount + } + + /// Returns the hardware keycode of a key. This varies from device to device. + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#akeyevent_getscancode) + #[inline] + pub fn scan_code(&self) -> i32 { + self.scanCode + } +} + +/// Flags associated with [`KeyEvent`]. +/// +/// See [the NDK docs](https://developer.android.com/ndk/reference/group/input#anonymous-enum-28) +#[derive(Copy, Clone, Debug, PartialEq, Eq)] +pub struct KeyEventFlags(pub u32); + +impl KeyEventFlags { + #[inline] + pub fn cancelled(&self) -> bool { + self.0 & ndk_sys::AKEY_EVENT_FLAG_CANCELED != 0 + } + #[inline] + pub fn cancelled_long_press(&self) -> bool { + self.0 & ndk_sys::AKEY_EVENT_FLAG_CANCELED_LONG_PRESS != 0 + } + #[inline] + pub fn editor_action(&self) -> bool { + self.0 & ndk_sys::AKEY_EVENT_FLAG_EDITOR_ACTION != 0 + } + #[inline] + pub fn fallback(&self) -> bool { + self.0 & ndk_sys::AKEY_EVENT_FLAG_FALLBACK != 0 + } + #[inline] + pub fn from_system(&self) -> bool { + self.0 & ndk_sys::AKEY_EVENT_FLAG_FROM_SYSTEM != 0 + } + #[inline] + pub fn keep_touch_mode(&self) -> bool { + self.0 & ndk_sys::AKEY_EVENT_FLAG_KEEP_TOUCH_MODE != 0 + } + #[inline] + pub fn long_press(&self) -> bool { + self.0 & ndk_sys::AKEY_EVENT_FLAG_LONG_PRESS != 0 + } + #[inline] + pub fn soft_keyboard(&self) -> bool { + self.0 & ndk_sys::AKEY_EVENT_FLAG_SOFT_KEYBOARD != 0 + } + #[inline] + pub fn tracking(&self) -> bool { + self.0 & ndk_sys::AKEY_EVENT_FLAG_TRACKING != 0 + } + #[inline] + pub fn virtual_hard_key(&self) -> bool { + self.0 & ndk_sys::AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY != 0 + } + #[inline] + pub fn woke_here(&self) -> bool { + self.0 & ndk_sys::AKEY_EVENT_FLAG_WOKE_HERE != 0 + } +} + +impl KeyEvent { + + /// Flags associated with this [`KeyEvent`]. + /// + /// See [the NDK docs](https://developer.android.com/ndk/reference/group/input#akeyevent_getflags) + #[inline] + pub fn flags(&self) -> KeyEventFlags { + KeyEventFlags(self.flags as u32) + } + + /// Returns the state of the modifiers during this key event, represented by a bitmask. + /// + /// See [the NDK + /// docs](https://developer.android.com/ndk/reference/group/input#akeyevent_getmetastate) + #[inline] + pub fn meta_state(&self) -> MetaState { + MetaState(self.metaState as u32) + } +} \ No newline at end of file diff --git a/game-activity/src/lib.rs b/game-activity/src/lib.rs new file mode 100755 index 0000000..39db3b6 --- /dev/null +++ b/game-activity/src/lib.rs @@ -0,0 +1,740 @@ +use input::Axis; +use jni_sys::*; +use log::{Level, error, trace}; +use ndk::asset::AssetManager; +use ndk::configuration::Configuration; +use ndk::looper::{FdEvent}; +use ndk::native_window::NativeWindow; +use ndk_sys::ALooper_wake; +use ndk_sys::{ALooper, ALooper_pollAll}; +use std::ffi::{CStr, CString}; +use std::fs::File; +use std::io::{BufRead, BufReader}; +use std::marker::PhantomData; +use std::ops::Deref; +use std::os::raw; +use std::ptr::NonNull; +use std::sync::Arc; +use std::sync::RwLock; +use std::sync::RwLockReadGuard; +use std::time::Duration; +use std::{thread, ptr}; +use std::os::unix::prelude::*; +use lazy_static::lazy_static; + +use crate::input::{MotionEvent, KeyEvent}; + +#[cfg(not(any(target_os = "android", feature = "test")))] +compile_error!("android-ndk-sys only supports compiling for Android"); + +mod ffi; + +pub mod input; + +// We provide a side-band way to access the global AndroidApp +// via `android_app()` since there's no FFI safe way of calling +// an `extern "C" android_main()` with the AndroidApp while it's +// based on an `Arc>` (without extra steps to pass an +// ffi safe handle/pointer). +// +// Technically is should actually be safe to pass the app as an +// argument, regardless of the unspecified layout for FFI, since +// we can assume that android_main is compiled at the same time +// by the same compiler as part of the same cdylib, so we could +// consider removing this static global if there's a good way to +// squash the compiler warnings. +// +// Note: for winit if we removed the `android_app()` getter then +// apps would have to explicitly pass the AndroidApp via an +// android specific event loop builder api / +// PlatformSpecificEventLoopAttributes - so having this global +// getter also helps keep simple winit usage portable. +static mut ANDROID_APP: Option = None; + +// This is mainly just for convenience for implementing a winit backend +// although ideally it shouldn't be necessary to have a static global. +// +// Removing this would just require moving the `native_window()` getter +// to be an AndroidApp method and require winit to pass around the +// app wherever it needs to query the window. +lazy_static! { + static ref NATIVE_WINDOW: RwLock> = Default::default(); +} + +// Note: unlike in ndk-glue this has signed components (consistent +// with Android's ARect) which generally allows for representing +// rectangles with a negative/off-screen origin. Even though this +// is currently just used to represent the content rect (that probably +// wouldn't have any negative components) we keep the generality +// since this is a primitive type that could potentially be used +// for more things in the future. +#[derive(Clone, Debug, Default, Eq, PartialEq)] +pub struct Rect { + pub left: i32, + pub top: i32, + pub right: i32, + pub bottom: i32, +} + +// The only time it's safe to update the android_app->savedState pointer is +// while handling a SaveState event, so this API is only exposed for those +// events... +#[derive(Debug)] +pub struct StateSaver<'a> { + app: &'a AndroidApp, +} + +impl<'a> StateSaver<'a> { + pub fn store(&self, state: &'a [u8]) { + + // android_native_app_glue specifically expects savedState to have been allocated + // via libc::malloc since it will automatically handle freeing the data once it + // has been handed over to the Java Activity / main thread. + unsafe { + let app_ptr = self.app.ptr.as_ptr(); + + // In case the application calls store() multiple times for some reason we + // make sure to free any pre-existing state... + if (*app_ptr).savedState != ptr::null_mut() { + libc::free((*app_ptr).savedState); + (*app_ptr).savedState = ptr::null_mut(); + (*app_ptr).savedStateSize = 0; + } + + let buf = libc::malloc(state.len()); + if buf == ptr::null_mut() { + panic!("Failed to allocate save_state buffer"); + } + + // Since it's a byte array there's no special alignment requirement here. + // + // Since we re-define `buf` we ensure it's not possible to access the buffer + // via its original pointer for the lifetime of the slice. + { + let buf: &mut [u8] = std::slice::from_raw_parts_mut(buf.cast(), state.len()); + buf.copy_from_slice(state); + } + + (*app_ptr).savedState = buf; + (*app_ptr).savedStateSize = state.len() as u64; + } + } +} + +#[derive(Debug)] +pub struct StateLoader<'a> { + app: &'a AndroidApp, +} +impl<'a> StateLoader<'a> { + pub fn load(&self) -> Option> { + unsafe { + let app_ptr = self.app.ptr.as_ptr(); + if (*app_ptr).savedState != ptr::null_mut() && (*app_ptr).savedStateSize > 0 { + let buf: &mut [u8] = std::slice::from_raw_parts_mut((*app_ptr).savedState.cast(), (*app_ptr).savedStateSize as usize); + let state = buf.to_vec(); + Some(state) + } else { + None + } + } + } +} + +// TODO: make more of these into non_exhaustive structs so it's possible to +// extend what data is passed to each event without breaking the API.. +#[non_exhaustive] +#[derive(Debug)] +pub enum MainEvent<'a> { + /** + * Unused. Reserved for future use when usage of AInputQueue will be + * supported. + */ + //InputChanged, + + /// Command from main thread: a new [`NativeWindow`] is ready for use. Upon + /// receiving this command, [`native_window()`] will return the new window + #[non_exhaustive] + InitWindow { }, + + /// Command from main thread: the existing [`NativeWindow`] needs to be + /// terminated. Upon receiving this command, [`native_window()`] still + /// returns the existing window; after returning from the [`AndroidApp::poll_events()`] + /// callback then [`native_window()`] will return `None`. + #[non_exhaustive] + TerminateWindow {}, + + // TODO: include the prev and new size in the event + /// Command from main thread: the current [`NativeWindow`] has been resized. + /// Please redraw with its new size. + #[non_exhaustive] + WindowResized {}, + + /// Command from main thread: the current [`NativeWindow`] needs to be redrawn. + /// You should redraw the window before the [`AndroidApp::poll_events()`] + /// callback returns in order to avoid transient drawing glitches. + #[non_exhaustive] + RedrawNeeded {}, + + /// Command from main thread: the content area of the window has changed, + /// such as from the soft input window being shown or hidden. You can + /// get the new content rect by calling [`AndroidApp::content_rect()`] + ContentRectChanged, + + /// Command from main thread: the app's activity window has gained + /// input focus. + GainedFocus, + + /// Command from main thread: the app's activity window has lost + /// input focus. + LostFocus, + + /// Command from main thread: the current device configuration has changed. + /// You can get a copy of the latest [Configuration] by calling + /// [`AndroidApp::config()`] + ConfigChanged, + + /// Command from main thread: the system is running low on memory. + /// Try to reduce your memory use. + LowMemory, + + /// Command from main thread: the app's activity has been started. + Start, + + /// Command from main thread: the app's activity has been resumed. + #[non_exhaustive] + Resume { loader: StateLoader<'a> }, + + /// Command from main thread: the app should generate a new saved state + /// for itself, to restore from later if needed. If you have saved state, + /// allocate it with malloc and place it in android_app.savedState with + /// the size in android_app.savedStateSize. The will be freed for you + /// later. + #[non_exhaustive] + SaveState { saver: StateSaver<'a> }, + + /// Command from main thread: the app's activity has been paused. + Pause, + + /// Command from main thread: the app's activity has been stopped. + Stop, + + /// Command from main thread: the app's activity is being destroyed, + /// and waiting for the app thread to clean up and exit before proceeding. + Destroy, + + /// Command from main thread: the app's insets have changed. + #[non_exhaustive] + InsetsChanged {}, +} + +#[derive(Debug)] +#[non_exhaustive] +pub enum PollEvent<'a> { + Wake, + Timeout, + Main(MainEvent<'a>), + + #[non_exhaustive] + FdEvent { ident: i32, fd: RawFd, events: FdEvent, data: *mut std::ffi::c_void }, + + Error +} + +#[derive(Clone)] +pub struct AndroidAppWaker { + // The looper pointer is owned by the android_app and effectively + // has a 'static lifetime, and the ALooper_wake C API is thread + // safe, so this can be cloned safely and is send + sync safe + looper: NonNull +} +unsafe impl Send for AndroidAppWaker {} +unsafe impl Sync for AndroidAppWaker {} + +impl AndroidAppWaker { + pub fn wake(&self) { + unsafe { ALooper_wake(self.looper.as_ptr()); } + } +} +#[derive(Debug, Clone)] +pub struct AndroidApp { + inner: Arc +} + +impl Deref for AndroidApp { + type Target = Arc; + + fn deref(&self) -> &Self::Target { + &self.inner + } +} + +#[derive(Debug)] +pub struct AndroidAppInner { + ptr: NonNull, + config: RwLock, +} + +impl AndroidApp { + + pub(crate) unsafe fn from_ptr(ptr: NonNull) -> Self { + + // Note: we don't use from_ptr since we don't own the android_app.config + // and need to keep in mind that the Drop handler is going to call + // AConfiguration_delete() + // + // Whenever we get a ConfigChanged notification we synchronize this + // config state with a deep copy. + let config = Configuration::clone_from_ptr(NonNull::new_unchecked((*ptr.as_ptr()).config)); + + Self { + inner: Arc::new(AndroidAppInner { + ptr, + config: RwLock::new(config), + }) + } + } + + /// Calls [`ALooper_pollAll`] on the looper associated with this AndroidApp as well + /// as processing any events (such as lifecycle events) via the given `callback`. + /// + /// It's important to use this API for polling, and not call [`ALooper_pollAll`] directly since + /// some events require pre- and post-processing either side of the callback. For correct + /// behavior events should be handled immediately, before returning from the callback and + /// not simply queued for batch processing later. For example the existing [`NativeWindow`] + /// is accessible during a [`MainEvent::TerminateWindow`] callback and will be + /// set to `None` once the callback returns, and this is also synchronized with the Java + /// main thread. The [`MainEvent::SaveState`] event is also synchronized with the + /// Java main thread. + /// + /// # Safety + /// This API must only be called from the applications main thread + pub fn poll_events(&self, timeout: Option, mut callback: F) + where F: FnMut(PollEvent) + { + trace!("poll_events"); + + unsafe { + let app_ptr = self.ptr; + + let mut fd: i32 = 0; + let mut events: i32 = 0; + let mut source: *mut core::ffi::c_void = ptr::null_mut(); + + let timeout_milliseconds = if let Some(timeout) = timeout { timeout.as_millis() as i32 } else { -1 }; + trace!("Calling ALooper_pollAll, timeout = {timeout_milliseconds}"); + let id = ALooper_pollAll(timeout_milliseconds, &mut fd, &mut events, &mut source as *mut *mut core::ffi::c_void); + match id { + ffi::ALOOPER_POLL_WAKE => { + trace!("ALooper_pollAll returned POLL_WAKE"); + callback(PollEvent::Wake); + } + ffi::ALOOPER_POLL_CALLBACK => { + // ALooper_pollAll is documented to handle all callback sources internally so it should + // never return a _CALLBACK source id... + error!("Spurious ALOOPER_POLL_CALLBACK from ALopper_pollAll() (ignored)"); + } + ffi::ALOOPER_POLL_TIMEOUT => { + trace!("ALooper_pollAll returned POLL_TIMEOUT"); + callback(PollEvent::Timeout); + } + ffi::ALOOPER_POLL_ERROR => { + trace!("ALooper_pollAll returned POLL_ERROR"); + callback(PollEvent::Error); + + // Considering that this API is quite likely to be used in `android_main` + // it's rather unergonomic to require the call to unwrap a Result for each + // call to poll_events(). Alternatively we could maybe even just panic!() + // here, while it's hard to imagine practically being able to recover + //return Err(LooperError); + } + id if id >= 0 => { + match id as u32 { + ffi::NativeAppGlueLooperId_LOOPER_ID_MAIN => { + trace!("ALooper_pollAll returned ID_MAIN"); + let source: *mut ffi::android_poll_source = source.cast(); + if source != ptr::null_mut() { + let cmd_i = ffi::android_app_read_cmd(app_ptr.as_ptr()); + + let cmd = match cmd_i as u32 { + //NativeAppGlueAppCmd_UNUSED_APP_CMD_INPUT_CHANGED => AndroidAppMainEvent::InputChanged, + ffi::NativeAppGlueAppCmd_APP_CMD_INIT_WINDOW => MainEvent::InitWindow {}, + ffi::NativeAppGlueAppCmd_APP_CMD_TERM_WINDOW => MainEvent::TerminateWindow {}, + ffi::NativeAppGlueAppCmd_APP_CMD_WINDOW_RESIZED => MainEvent::WindowResized {}, + ffi::NativeAppGlueAppCmd_APP_CMD_WINDOW_REDRAW_NEEDED => MainEvent::RedrawNeeded {}, + ffi::NativeAppGlueAppCmd_APP_CMD_CONTENT_RECT_CHANGED => MainEvent::ContentRectChanged, + ffi::NativeAppGlueAppCmd_APP_CMD_GAINED_FOCUS => MainEvent::GainedFocus, + ffi::NativeAppGlueAppCmd_APP_CMD_LOST_FOCUS => MainEvent::LostFocus, + ffi::NativeAppGlueAppCmd_APP_CMD_CONFIG_CHANGED => MainEvent::ConfigChanged, + ffi::NativeAppGlueAppCmd_APP_CMD_LOW_MEMORY => MainEvent::LowMemory, + ffi::NativeAppGlueAppCmd_APP_CMD_START => MainEvent::Start, + ffi::NativeAppGlueAppCmd_APP_CMD_RESUME => MainEvent::Resume { loader: StateLoader { app: &self } }, + ffi::NativeAppGlueAppCmd_APP_CMD_SAVE_STATE => MainEvent::SaveState { saver: StateSaver { app: &self } }, + ffi::NativeAppGlueAppCmd_APP_CMD_PAUSE => MainEvent::Pause, + ffi::NativeAppGlueAppCmd_APP_CMD_STOP => MainEvent::Stop, + ffi::NativeAppGlueAppCmd_APP_CMD_DESTROY => MainEvent::Destroy, + ffi::NativeAppGlueAppCmd_APP_CMD_WINDOW_INSETS_CHANGED => MainEvent::InsetsChanged {}, + _ => unreachable!() + }; + + trace!("Read ID_MAIN command {cmd_i} = {cmd:?}"); + + trace!("Calling android_app_pre_exec_cmd({cmd_i})"); + ffi::android_app_pre_exec_cmd(app_ptr.as_ptr(), cmd_i); + match cmd { + MainEvent::ConfigChanged => { + *self.config.write().unwrap() = + Configuration::clone_from_ptr(NonNull::new_unchecked((*app_ptr.as_ptr()).config)); + } + MainEvent::InitWindow { .. } => { + let win_ptr = (*app_ptr.as_ptr()).window; + *NATIVE_WINDOW.write().unwrap() = + Some(NativeWindow::from_ptr(NonNull::new(win_ptr).unwrap())); + } + MainEvent::TerminateWindow { .. } => { + *NATIVE_WINDOW.write().unwrap() = None; + } + _ => {} + } + + trace!("Invoking callback for ID_MAIN command = {:?}", cmd); + callback(PollEvent::Main(cmd)); + + trace!("Calling android_app_post_exec_cmd({cmd_i})"); + ffi::android_app_post_exec_cmd(app_ptr.as_ptr(), cmd_i); + } else { + panic!("ALooper_pollAll returned ID_MAIN event with NULL android_poll_source!"); + } + } + _ => { + let events = FdEvent::from_bits(events as u32) + .expect(&format!("Spurious ALooper_pollAll event flags {:#04x}", events as u32)); + trace!("Custom ALooper event source: id = {id}, fd = {fd}, events = {events:?}, data = {source:?}"); + callback(PollEvent::FdEvent{ ident: id, fd: fd as RawFd, events, data: source }); + } + } + } + _ => { + error!("Spurious ALooper_pollAll return value {id} (ignored)"); + } + } + } + } + + /// Enables the capture of the given `axis` for pointer input events + /// + /// By default only the X and Y axis are captured for pointer events and any other + /// axis must be explicitly enabled / disabled + pub fn enable_motion_axis(&self, axis: Axis) { + unsafe { + ffi::GameActivityPointerAxes_enableAxis(axis as i32) + } + } + + /// Disables the capture of the given `axis` for pointer input events + /// + /// By default only the X and Y axis are captured for pointer events and any other + /// axis must be explicitly enabled / disabled + pub fn disable_motion_axis(&self, axis: Axis) { + unsafe { + ffi::GameActivityPointerAxes_disableAxis(axis as i32) + } + } + + /// Creates a means to wake up the main loop while it is blocked waiting for + /// events within [`poll_events()`]. + /// + /// Internally this uses [`ALooper_wake`] on the looper associated with this + /// [AndroidApp]. + /// + /// # Safety + /// This API can be used from any thread + pub fn create_waker(&self) -> AndroidAppWaker { + unsafe { + // From the application's pov we assume the app_ptr and looper pointer + // have static lifetimes and we can safely assume they are never NULL. + let app_ptr = self.ptr.as_ptr(); + AndroidAppWaker { looper: NonNull::new_unchecked((*app_ptr).looper) } + } + } + + /// Returns a deep copy of this application's [`Configuration`] + pub fn config(&self) -> Configuration { + self.config.read().unwrap().clone() + } + + /// Queries the current content rectangle of the window; this is the area where the + /// window's content should be placed to be seen by the user. + /// + /// # Safety + /// This API must only be called from the applications main thread + pub fn content_rect(&self) -> Rect { + unsafe { + let app_ptr = self.ptr.as_ptr(); + Rect { + left: (*app_ptr).contentRect.left, + right: (*app_ptr).contentRect.right, + top: (*app_ptr).contentRect.top, + bottom: (*app_ptr).contentRect.bottom, + } + } + } + + /// Queries the Asset Manager instance for the application. + /// + /// Use this to access binary assets bundled inside your application's .apk file. + /// + /// # Safety + /// This API must only be called from the applications main thread + pub fn asset_manager(&self) -> AssetManager { + unsafe { + let app_ptr = self.ptr.as_ptr(); + let am_ptr = NonNull::new_unchecked((*(*app_ptr).activity).assetManager); + AssetManager::from_ptr(am_ptr) + } + } + + /// Swap the internal buffers used for reading/writing input events and get + /// back a temporary handle to the latest buffer of input events for + /// reading / processing. + /// + /// Internally input events are captured asynchronously (within the Java + /// main thread) and double buffered so that the application can safely read + /// and process one buffer while further input events may continue to be + /// accumulated in the other buffer. + /// + /// Input capture is notably not currently integrated with the application + /// Looper (so input won't unblock [`poll_events()`]) since it's assumed that + /// input will be batch processed in sync with rendering. + /// + /// To optimize the capture of pointer data then by default only the X + /// and Y pointer [Axis] are recorded. Additional axis can be enabled and + /// disabled via [`enable_motion_axis()`] and [`disable_motion_axis()`] + /// + /// # Safety + /// This API must only be called from the applications main thread + pub fn swap_input_buffers<'a>(&self) -> Option> { + unsafe { + let app_ptr = self.ptr.as_ptr(); + let input_buffer = ffi::android_app_swap_input_buffers(app_ptr); + if input_buffer == ptr::null_mut() { + return None; + } else { + Some(InputBuffer::from_ptr(NonNull::new_unchecked(input_buffer))) + } + } + } +} + +pub struct MotionEventsIterator<'a> { + pos: usize, + count: usize, + buffer: &'a InputBuffer<'a> +} + +impl<'a> Iterator for MotionEventsIterator<'a> { + type Item = MotionEvent; + + fn next(&mut self) -> Option { + if self.pos < self.count { + unsafe { + let ga_event = (*self.buffer.ptr.as_ptr()).motionEvents[self.pos]; + let event = MotionEvent::new(ga_event); + self.pos += 1; + Some(event) + } + } else { + None + } + } +} + +pub struct KeyEventsIterator<'a> { + pos: usize, + count: usize, + buffer: &'a InputBuffer<'a> +} + +impl<'a> Iterator for KeyEventsIterator<'a> { + type Item = KeyEvent; + + fn next(&mut self) -> Option { + if self.pos < self.count { + unsafe { + let ga_event = (*self.buffer.ptr.as_ptr()).keyEvents[self.pos]; + let event = KeyEvent::new(ga_event); + self.pos += 1; + Some(event) + } + } else { + None + } + } +} + +pub struct InputBuffer<'a> { + ptr: NonNull, + _lifetime: PhantomData<&'a ffi::android_input_buffer> +} + +impl<'a> InputBuffer<'a> { + pub(crate) fn from_ptr(ptr: NonNull) -> InputBuffer<'a> { + Self { + ptr, + _lifetime: PhantomData::default() + } + } + + // XXX: It's really not ideal here that Rust iterators can't yield values + // that borrow from the iterator, so we implicitly have to copy the + // events as we iterate... + pub fn motion_events_iter<'b>(&'b self) -> MotionEventsIterator<'b> { + unsafe { + let count = (*self.ptr.as_ptr()).motionEventsCount as usize; + MotionEventsIterator { pos: 0, count, buffer: self } + } + } + + pub fn key_events_iter<'b>(&'b self) -> KeyEventsIterator<'b> { + unsafe { + let count = (*self.ptr.as_ptr()).keyEventsCount as usize; + KeyEventsIterator { pos: 0, count, buffer: self } + } + } +} + +impl<'a> Drop for InputBuffer<'a> { + fn drop(&mut self) { + unsafe { + ffi::android_app_clear_motion_events(self.ptr.as_ptr()); + ffi::android_app_clear_key_events(self.ptr.as_ptr()); + } + } +} + +/// Gets the global [`AndroidApp`] for this process +pub fn android_app() -> AndroidApp { + if let Some(app) = unsafe { &ANDROID_APP } { + return app.clone() + } else { + unreachable!() + } +} + +/// Queries the current [`NativeWindow`] for the application. +/// +/// This will only return `Some(window)` between +/// [`AndroidAppMainEvent::InitWindow`] and [`AndroidAppMainEvent::TerminateWindow`] +/// events. +pub fn native_window() -> RwLockReadGuard<'static, Option> { + NATIVE_WINDOW.read().unwrap() +} + +// Rust doesn't give us a clean way to directly export symbols from C/C++ +// so we rename the C/C++ symbols and re-export these JNI entrypoints from +// Rust... +// +// https://github.com/rust-lang/rfcs/issues/2771 +extern "C" { + pub fn Java_com_google_androidgamesdk_GameActivity_loadNativeCode_C( + env: *mut JNIEnv, + javaGameActivity: jobject, + path: jstring, + funcName: jstring, + internalDataDir: jstring, + obbDir: jstring, + externalDataDir: jstring, + jAssetMgr: jobject, + savedState: jbyteArray, + ) -> jlong; + + pub fn GameActivity_onCreate_C( + activity: *mut ffi::GameActivity, + savedState: *mut ::std::os::raw::c_void, + savedStateSize: ffi::size_t, + ); + + pub fn android_main(); +} + +#[no_mangle] +pub unsafe extern "C" fn Java_com_google_androidgamesdk_GameActivity_loadNativeCode( + env: *mut JNIEnv, + java_game_activity: jobject, + path: jstring, + func_name: jstring, + internal_data_dir: jstring, + obb_dir: jstring, + external_data_dir: jstring, + jasset_mgr: jobject, + saved_state: jbyteArray, + ) -> jni_sys::jlong +{ + Java_com_google_androidgamesdk_GameActivity_loadNativeCode_C(env, java_game_activity, path, func_name, + internal_data_dir, obb_dir, external_data_dir, jasset_mgr, saved_state) +} + +#[no_mangle] +pub unsafe extern "C" fn GameActivity_onCreate( + activity: *mut ffi::GameActivity, + saved_state: *mut ::std::os::raw::c_void, + saved_state_size: ffi::size_t, + ) +{ + GameActivity_onCreate_C(activity, saved_state, saved_state_size); +} + +fn android_log(level: Level, tag: &CStr, msg: &CStr) { + let prio = match level { + Level::Error => ndk_sys::android_LogPriority_ANDROID_LOG_ERROR, + Level::Warn => ndk_sys::android_LogPriority_ANDROID_LOG_WARN, + Level::Info => ndk_sys::android_LogPriority_ANDROID_LOG_INFO, + Level::Debug => ndk_sys::android_LogPriority_ANDROID_LOG_DEBUG, + Level::Trace => ndk_sys::android_LogPriority_ANDROID_LOG_VERBOSE, + }; + unsafe { + ndk_sys::__android_log_write(prio as raw::c_int, tag.as_ptr(), msg.as_ptr()); + } +} + +// This is a spring board between android_native_app_glue and the user's +// `app_main` function. This is run on a dedicated thread spawned +// by android_native_app_glue. +#[no_mangle] +pub unsafe extern "C" fn _rust_glue_entry(app: *mut ffi::android_app) { + + // Maybe make this stdout/stderr redirection an optional / opt-in feature?... + let mut logpipe: [RawFd; 2] = Default::default(); + libc::pipe(logpipe.as_mut_ptr()); + libc::dup2(logpipe[1], libc::STDOUT_FILENO); + libc::dup2(logpipe[1], libc::STDERR_FILENO); + thread::spawn(move || { + let tag = CStr::from_bytes_with_nul(b"RustStdoutStderr\0").unwrap(); + let file = File::from_raw_fd(logpipe[0]); + let mut reader = BufReader::new(file); + let mut buffer = String::new(); + loop { + buffer.clear(); + if let Ok(len) = reader.read_line(&mut buffer) { + if len == 0 { + break; + } else if let Ok(msg) = CString::new(buffer.clone()) { + android_log(Level::Info, tag, &msg); + } + } + } + }); + + let jvm: *mut JavaVM = (*(*app).activity).vm; + let activity: jobject = (*(*app).activity).javaGameActivity; + ndk_context::initialize_android_context(jvm.cast(), activity.cast()); + + let app = AndroidApp::from_ptr(NonNull::new(app).unwrap()); + + ANDROID_APP = Some(app.clone()); + + android_main(); + + ANDROID_APP = None; + + ndk_context::release_android_context(); +} \ No newline at end of file diff --git a/game-activity/wrapper.h b/game-activity/wrapper.h new file mode 100755 index 0000000..2f1ddae --- /dev/null +++ b/game-activity/wrapper.h @@ -0,0 +1,3 @@ +#include +#include +#include \ No newline at end of file