HomeSort by relevance Sort by last modified time
    Searched refs:looper (Results 126 - 150 of 489) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-15/arch-arm/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-15/arch-x86/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-16/arch-arm/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-16/arch-mips/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-16/arch-x86/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-17/arch-arm/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-17/arch-mips/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-17/arch-x86/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/android/
sensor.h 45 #include <android/looper.h>
166 * Creates a new sensor event queue and associate it with a looper.
169 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /frameworks/base/media/java/android/media/
ImageReader.java 22 import android.os.Looper;
387 * if the listener should be invoked on the calling thread's looper.
389 * If no handler specified and the calling thread has no looper.
394 Looper looper = handler != null ? handler.getLooper() : Looper.myLooper(); local
395 if (looper == null) {
397 "handler is null but the current thread is not a looper");
399 if (mListenerHandler == null || mListenerHandler.getLooper() != looper) {
400 mListenerHandler = new ListenerHandler(looper);
    [all...]
MediaDrm.java 27 import android.os.Looper;
94 * MediaDrm objects on a thread with its own Looper running (main UI
95 * thread by default has a Looper running).
168 Looper looper; local
169 if ((looper = Looper.myLooper()) != null) {
170 mEventHandler = new EventHandler(this, looper);
171 } else if ((looper = Looper.getMainLooper()) != null)
    [all...]
RemoteControlClient.java 28 import android.os.Looper;
354 Looper looper; local
355 if ((looper = Looper.myLooper()) != null) {
356 mEventHandler = new EventHandler(this, looper);
357 } else if ((looper = Looper.getMainLooper()) != null) {
358 mEventHandler = new EventHandler(this, looper);
367 * happens on a user-provided Looper
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkLayerDrawLooper.cpp 132 const SkLayerDrawLooper* looper) : fCurrRec(looper->fRecs) {}
248 SkLayerDrawLooper* looper = builder.detachLooper(); local
249 SkASSERT(count == looper->fCount);
253 Rec* rec = looper->fRecs;
263 return looper;
378 SkLayerDrawLooper* looper = SkNEW(SkLayerDrawLooper); local
379 looper->fCount = fCount;
380 looper->fRecs = fRecs;
386 return looper;
    [all...]
  /external/skia/src/effects/
SkLayerDrawLooper.cpp 132 const SkLayerDrawLooper* looper) : fCurrRec(looper->fRecs) {}
248 SkLayerDrawLooper* looper = builder.detachLooper(); local
249 SkASSERT(count == looper->fCount);
253 Rec* rec = looper->fRecs;
263 return looper;
378 SkLayerDrawLooper* looper = SkNEW(SkLayerDrawLooper); local
379 looper->fCount = fCount;
380 looper->fRecs = fRecs;
386 return looper;
    [all...]
  /system/core/libutils/
Looper.cpp 4 // A looper implementation based on epoll().
6 #define LOG_TAG "Looper"
17 #include <utils/Looper.h>
58 // --- Looper ---
69 Looper::Looper(bool allowNonCallbacks) :
102 Looper::~Looper() {
108 void Looper::initTLSKey() {
113 void Looper::threadDestructor(void *st)
143 sp<Looper> looper = Looper::getForThread(); local
    [all...]
  /frameworks/base/core/java/android/os/
Handler.java 107 * Default constructor associates this handler with the {@link Looper} for the
110 * If this thread does not have a looper, this handler won't be able to receive messages
118 * Constructor associates this handler with the {@link Looper} for the
122 * If this thread does not have a looper, this handler won't be able to receive messages
132 * Use the provided {@link Looper} instead of the default one.
134 * @param looper The looper, must not be null.
136 public Handler(Looper looper) {
137 this(looper, null, false)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMnsObexClient.java 21 import android.os.Looper;
77 /* This will block until the looper have started, hence it will be safe to use it,
79 Looper looper = thread.getLooper(); local
80 mHandler = new MnsObexClientHandler(looper);
89 private MnsObexClientHandler(Looper looper) {
90 super(looper);
158 Looper looper = mHandler.getLooper() local
    [all...]
  /frameworks/av/cmds/stagefright/
muxer.cpp 53 const android::sp<android::ALooper> &looper,
298 sp<ALooper> looper = new ALooper; local
299 looper->start();
301 int result = muxing(looper, argv[0], useAudio, useVideo, outputFileName,
304 looper->stop();

Completed in 653 milliseconds

1 2 3 4 56 7 8 91011>>