Searched defs:Choreographer (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/native/android/
H A Dchoreographer.cpp17 #define LOG_TAG "Choreographer"
50 class Choreographer : public DisplayEventDispatcher, public MessageHandler { class in namespace:android
61 static Choreographer* getForThread();
64 virtual ~Choreographer() = default;
67 explicit Choreographer(const sp<Looper>& looper);
68 Choreographer(const Choreographer&) = delete;
85 static thread_local Choreographer* gChoreographer;
86 Choreographer* Choreographer
103 Choreographer::Choreographer(const sp<Looper>& looper) : function in class:android::Choreographer
[all...]
/frameworks/base/core/java/android/view/
H A DChoreographer.java68 * {@link Choreographer#postFrameCallback}.</li>
77 public final class Choreographer { class
78 private static final String TAG = "Choreographer";
100 private static final ThreadLocal<Choreographer> sThreadInstance =
101 new ThreadLocal<Choreographer>() {
103 protected Choreographer initialValue() {
108 return new Choreographer(looper, VSYNC_SOURCE_APP);
113 private static final ThreadLocal<Choreographer> sSfThreadInstance =
114 new ThreadLocal<Choreographer>() {
116 protected Choreographer initialValu
221 private Choreographer(Looper looper, int vsyncSource) { method in class:Choreographer
[all...]

Completed in 70 milliseconds