HomeSort by relevance Sort by last modified time
    Searched refs:savedStateSize (Results 1 - 5 of 5) sorted by null

  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.c 35 android_app->savedStateSize = 0;
240 void* savedState, size_t savedStateSize) {
249 android_app->savedState = malloc(savedStateSize);
250 android_app->savedStateSize = savedStateSize;
251 memcpy(android_app->savedState, savedState, savedStateSize);
360 *outLen = android_app->savedStateSize;
362 android_app->savedStateSize = 0;
419 void* savedState, size_t savedStateSize) {
435 activity->instance = android_app_create(activity, savedState, savedStateSize);
    [all...]
android_native_app_glue.h 140 size_t savedStateSize;
292 * the size in android_app.savedStateSize. The will be freed for you
  /development/ndk/platforms/android-9/include/android/
native_activity.h 221 void* savedState, size_t savedStateSize);
  /frameworks/base/native/include/android/
native_activity.h 222 void* savedState, size_t savedStateSize);
  /development/ndk/platforms/android-9/samples/native-activity/jni/
main.c 189 engine->app->savedStateSize = sizeof(struct saved_state);

Completed in 54 milliseconds