Stay organized with collections
Save and categorize content based on your preferences.
Bug List
Summary
- Member AChoreographer_postFrameCallback (AChoreographer *choreographer, AChoreographer_frameCallback callback, void *data) __DEPRECATED_IN(29
The callback receives the frame time in nanoseconds as a long. On 32-bit systems, long is 32-bit, so the frame time will roll over roughly every two seconds. If your minSdkVersion is 29 or higher, switch to AChoreographer_postFrameCallback64, which uses a 64-bit frame time for all platforms. For older OS versions, you must combine the argument with the upper bits of clock_gettime(CLOCK_MONOTONIC, ...) on 32-bit systems. - Member AChoreographer_postFrameCallbackDelayed (AChoreographer *choreographer, AChoreographer_frameCallback callback, void *data, long delayMillis) __DEPRECATED_IN(29
The callback receives the frame time in nanoseconds as a long. On 32-bit systems, long is 32-bit, so the frame time will roll over roughly every two seconds. If your minSdkVersion is 29 or higher, switch to AChoreographer_postFrameCallbackDelayed64, which uses a 64-bit frame time for all platforms. For older OS versions, you must combine the argument with the upper bits of clock_gettime(CLOCK_MONOTONIC, ...) on 32-bit systems. - Member ALooper_pollAll (int timeoutMillis, int *outFd, int *outEvents, void **outData) __REMOVED_IN(1
ALooper_pollAll() will not wake in response to ALooper_wake() calls if it also handles another event at the same time. - Member ALooper_wake (ALooper *looper)
ALooper_pollAll() will not reliably wake in response to ALooper_wake().
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-11-03 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-11-03 UTC."],[],[]]