HomeSort by relevance Sort by last modified time
    Searched full:android_app (Results 1 - 25 of 31) sorted by null

1 2

  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.c 39 static void free_saved_state(struct android_app* android_app) {
40 pthread_mutex_lock(&android_app->mutex);
41 if (android_app->savedState != NULL) {
42 free(android_app->savedState);
43 android_app->savedState = NULL;
44 android_app->savedStateSize = 0;
46 pthread_mutex_unlock(&android_app->mutex);
49 int8_t android_app_read_cmd(struct android_app* android_app) {
209 struct android_app* android_app = (struct android_app*)param; local
245 struct android_app* android_app = (struct android_app*)malloc(sizeof(struct android_app)); local
352 struct android_app* android_app = (struct android_app*)activity->instance; local
386 struct android_app* android_app = (struct android_app*)activity->instance; local
392 struct android_app* android_app = (struct android_app*)activity->instance; local
    [all...]
android_native_app_glue.h 50 * 2/ android_main() receives a pointer to a valid "android_app" structure
54 * 3/ the "android_app" object holds an ALooper instance that already
72 * can call the process() function on it, and fill in android_app->onAppCmd
73 * and android_app->onInputEvent to be called for your own processing
84 struct android_app;
95 // The android_app this ident is associated with.
96 struct android_app* app;
100 void (*process)(struct android_app* app, struct android_poll_source* source);
111 struct android_app { struct
117 void (*onAppCmd)(struct android_app* app, int32_t cmd)
    [all...]
  /external/skia/platform_tools/android/third_party/native_app_glue/
android_native_app_glue.c 38 static void free_saved_state(struct android_app* android_app) {
39 pthread_mutex_lock(&android_app->mutex);
40 if (android_app->savedState != NULL) {
41 free(android_app->savedState);
42 android_app->savedState = NULL;
43 android_app->savedStateSize = 0;
45 pthread_mutex_unlock(&android_app->mutex);
48 int8_t android_app_read_cmd(struct android_app* android_app) {
208 struct android_app* android_app = (struct android_app*)param; local
244 struct android_app* android_app = (struct android_app*)malloc(sizeof(struct android_app)); local
351 struct android_app* android_app = (struct android_app*)activity->instance; local
385 struct android_app* android_app = (struct android_app*)activity->instance; local
391 struct android_app* android_app = (struct android_app*)activity->instance; local
    [all...]
android_native_app_glue.h 50 * 2/ android_main() receives a pointer to a valid "android_app" structure
54 * 3/ the "android_app" object holds an ALooper instance that already
72 * can call the process() function on it, and fill in android_app->onAppCmd
73 * and android_app->onInputEvent to be called for your own processing
84 struct android_app;
95 // The android_app this ident is associated with.
96 struct android_app* app;
100 void (*process)(struct android_app* app, struct android_poll_source* source);
111 struct android_app { struct
117 void (*onAppCmd)(struct android_app* app, int32_t cmd)
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
ShellAndroid.h 31 ShellAndroid(android_app &app, Game &game);
48 static inline void on_app_cmd(android_app *app, int32_t cmd);
49 static inline int32_t on_input_event(android_app *app, AInputEvent *event);
51 android_app &app_;
56 void ShellAndroid::on_app_cmd(android_app *app, int32_t cmd)
62 int32_t ShellAndroid::on_input_event(android_app *app, AInputEvent *event)
Main.cpp 59 void android_main(android_app *app)
ShellAndroid.cpp 74 ShellAndroid::ShellAndroid(android_app &app, Game &game) : Shell(game), app_(app)
  /external/chromium-trace/catapult/telemetry/telemetry/core/
android_platform.py 7 from telemetry.internal.app import android_app
51 A reference to the android_app launched.
57 return android_app.AndroidApp(app_backend, self._platform_backend)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/app/
android_app.py 13 with possible_android_app.Create(options) as android_app:
14 ... do all your operations on android_app here
android_app_unittest.py 10 from telemetry.internal.app import android_app
28 return android_app.AndroidApp(app_backend, platform_backend)
  /external/chromium-trace/catapult/telemetry/docs/pydoc/
telemetry.internal.app.android_app.html 3 <html><head><title>Python: module telemetry.internal.app.android_app</title>
10 <font color="#ffffff" face="helvetica, arial">&nbsp;<br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.internal.html"><font color="#ffffff">internal</font></a>.<a href="telemetry.internal.app.html"><font color="#ffffff">app</font></a>.android_app</strong></big></big></font></td
12 ><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/internal/app/android_app.py">telemetry/internal/app/android_app.py</a></font></td></tr></table>
35 <dt><font face="helvetica, arial"><a href="telemetry.internal.app.android_app.html#AndroidApp">AndroidApp</a>
50 &nbsp;&nbsp;with&nbsp;possible_android_app.Create(options)&nbsp;as&nbsp;android_app:<br>
51 &nbsp;&nbsp;&nbsp;&nbsp;...&nbsp;do&nbsp;all&nbsp;your&nbsp;operations&nbsp;on&nbsp;android_app&nbsp;here<br>&nbsp;</tt></td></tr>
54 <dd><a href="telemetry.internal.app.android_app.html#AndroidApp">AndroidApp</a></dd>
telemetry.internal.app.html 23 <td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="telemetry.internal.app.android_app.html">android_app</a><br>
  /external/skia/platform_tools/android/apps/visualbench/src/main/jni/
main.cpp 26 struct android_app* fApp;
32 static void handle_cmd(struct android_app* app, int32_t cmd) {
64 void android_main(struct android_app* state) {
  /development/ndk/platforms/android-17/samples/Teapot/jni/
TeapotNativeActivity.cpp 39 struct android_app;
56 android_app* app_;
67 static void HandleCmd( struct android_app* app,
69 static int32_t HandleInput( android_app* app,
74 void SetState( android_app* state );
212 int32_t Engine::HandleInput( android_app* app,
282 void Engine::HandleCmd( struct android_app* app,
375 void Engine::SetState( android_app* state )
433 void android_main( android_app* state )
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
Statement.java 29 * "target" : {"namespace": "android_app", "package_name": "com.example.app",
42 * <pre>AbstractAsset.create("{\"namespace\" : \"android_app\","
AndroidAppAsset.java 33 * string: { "namespace": "android_app", "package_name": "[Java package name]",
36 * <p>For example, { "namespace": "android_app", "package_name": "com.test.mytestapp",
AbstractAsset.java 40 * {"namespace": "android_app",
Utils.java 46 public static final String NAMESPACE_ANDROID_APP = "android_app";
  /development/ndk/platforms/android-9/samples/native-activity/jni/
main.c 45 struct android_app* app;
168 static int32_t engine_handle_input(struct android_app* app, AInputEvent* event) {
182 static void engine_handle_cmd(struct android_app* app, int32_t cmd) {
231 void android_main(struct android_app* state) {
  /external/webrtc/webrtc/modules/audio_processing/test/android/apmtest/jni/
main.c 45 struct android_app* app;
168 static int32_t engine_handle_input(struct android_app* app, AInputEvent* event) {
182 static void engine_handle_cmd(struct android_app* app, int32_t cmd) {
231 void android_main(struct android_app* state) {
  /development/ndk/platforms/android-18/samples/MoreTeapots/jni/
MoreTeapotsNativeActivity.cpp 49 struct android_app;
66 android_app* app_;
77 static void HandleCmd( struct android_app* app,
79 static int32_t HandleInput( android_app* app,
84 void SetState( android_app* state );
223 int32_t Engine::HandleInput( android_app* app,
293 void Engine::HandleCmd( struct android_app* app,
386 void Engine::SetState( android_app* state )
444 void android_main( android_app* state )
  /external/chromium-trace/catapult/tracing/tracing/model/helpers/
android_model_helper.html 11 <link rel="import" href="/tracing/model/helpers/android_app.html">
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 375 struct android_app* app;
413 static int32_t engine_handle_input(struct android_app* app, AInputEvent* event) {
428 static void engine_handle_cmd(struct android_app* app, int32_t cmd) {
446 void android_main(struct android_app* state) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/
plugin.xml 159 icon="icons/android_app.png"
  /frameworks/base/docs/html/training/app-links/
index.jd 294 "namespace": "android_app",
316 "namespace": "android_app",
325 "namespace": "android_app",
360 "namespace": "android_app",
377 "namespace": "android_app",

Completed in 2059 milliseconds

1 2