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

1 2 3 4 5 6 78 91011>>

  /external/skia/include/effects/
SkBlurDrawLooper.h 76 explicit BlurDrawLooperContext(const SkBlurDrawLooper* looper);
SkLayerDrawLooper.h 106 explicit LayerDrawLooperContext(const SkLayerDrawLooper* looper);
151 * Pass list of layers on to newly built looper and return it. This will
152 * also reset the builder, so it can be used to build another looper.
  /frameworks/av/include/media/stagefright/foundation/
ALooperRoster.h 30 const sp<ALooper> looper, const sp<AHandler> &handler);
  /frameworks/base/core/java/android/appwidget/
AppWidgetHost.java 32 import android.os.Looper;
97 public UpdateHandler(Looper looper) {
98 super(looper);
130 public AppWidgetHost(Context context, int hostId, OnClickHandler handler, Looper looper) {
134 mHandler = new UpdateHandler(looper);
  /frameworks/base/core/java/android/content/
AsyncQueryHandler.java 23 import android.os.Looper;
44 private static Looper sLooper = null;
61 public WorkerHandler(Looper looper) {
62 super(looper);
138 protected Handler createHandler(Looper looper) {
139 return new WorkerHandler(looper);
  /frameworks/native/include/gui/
SensorEventQueue.h 36 ALooper* looper; member in struct:ASensorEventQueue
45 class Looper;
81 sp<Looper> getLooper() const;
85 mutable sp<Looper> mLooper;
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/
Espresso.java 37 import android.os.Looper;
83 * Registers a Looper for idle checking with the framework. This is intended for use with
86 * @throws IllegalArgumentException if looper is the main looper.
88 public static void registerLooperAsIdlingResource(Looper looper) {
89 registerLooperAsIdlingResource(looper, false);
93 * Registers a Looper for idle checking with the framework. This is intended for use with
98 * This is useful in the case where a looper is sending a message to the UI thread synchronously
101 * @throws IllegalArgumentException if looper is the main looper
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogQueryHandler.java 31 import android.os.Looper;
78 public CatchingWorkerHandler(Looper looper) {
79 super(looper);
100 protected Handler createHandler(Looper looper) {
102 return new CatchingWorkerHandler(looper);
  /packages/apps/InCallUI/src/com/android/incallui/
CallerInfoAsyncQuery.java 25 import android.os.Looper;
125 * This thread handles the messages enqueued in the looper. The normal sequence
126 * of events is that a new query shows up in the looper queue, followed by 0 or
132 * looper queue must be FIFO with respect to input from the synchronous startQuery
140 public CallerInfoWorkerHandler(Looper looper) {
141 super(looper);
202 protected Handler createHandler(Looper looper) {
203 return new CallerInfoWorkerHandler(looper);
    [all...]
  /frameworks/av/cmds/stagefright/
codec.cpp 70 const android::sp<android::ALooper> &looper,
121 looper, mime.c_str(), false /* encoder */);
375 sp<ALooper> looper = new ALooper; local
376 looper->start();
416 looper->registerHandler(player);
425 decode(looper, argv[0], useAudio, useVideo, surface);
432 looper->stop();
sf2.cpp 110 mDecodeLooper = looper();
113 mDecodeLooper->setName("sf2 decode looper");
238 if (mDecodeLooper != looper()) {
242 looper()->stop();
626 sp<ALooper> looper = new ALooper; local
627 looper->setName("sf2");
663 looper->registerHandler(controller);
669 CHECK_EQ(looper->start(true /* runOnCallingThread */), (status_t)OK);
671 looper->unregisterHandler(controller->id());
  /frameworks/base/media/java/android/media/
SoundPool.java 29 import android.os.Looper;
657 Looper looper; local
658 if ((looper = Looper.myLooper()) != null) {
659 mEventHandler = new EventHandler(mProxy, looper);
660 } else if ((looper = Looper.getMainLooper()) != null) {
661 mEventHandler = new EventHandler(mProxy, looper);
676 public EventHandler(SoundPool soundPool, Looper looper)
    [all...]
AudioTrack.java 33 import android.os.Looper;
217 * Looper associated with the thread that creates the AudioTrack instance.
219 private final Looper mInitializationLooper;
403 // remember which looper is associated with the AudioTrack instantiation
404 Looper looper; local
405 if ((looper = Looper.myLooper()) == null) {
406 looper = Looper.getMainLooper()
1558 Looper looper; local
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
HandlerCaller.java 21 import android.os.Looper;
25 final Looper mMainLooper;
31 MyHandler(Looper looper, boolean async) {
32 super(looper, null, async);
45 public HandlerCaller(Context context, Looper looper, Callback callback,
47 mMainLooper = looper != null ? looper : context.getMainLooper();
56 if (Looper.myLooper() == mMainLooper)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
ModelInterpreter.java 20 import android.os.Looper;
191 Looper looper = mHandlerThread.getLooper(); local
192 mSimulatedCallState = new SimulatedGsmCallState(looper);
641 Looper looper = mHandlerThread.getLooper(); local
642 if (looper != null) {
643 looper.quit();
  /external/qemu/android/
async-socket.c 50 /* Gets socket's looper. */
51 static Looper* _async_socket_get_looper(AsyncSocket* as);
365 /* I/O looper for asynchronous I/O on the socket. */
366 Looper* looper; member in struct:AsyncSocket
385 /* Flags whether (1) or not (0) socket owns the looper. */
395 static Looper*
398 return as->looper;
707 if (as->looper != NULL) {
710 looper_free(as->looper);
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
LooperTest.java 21 import android.os.Looper;
35 private Looper mLooper = null;
42 Looper.getMainLooper().dump(printer, prefix);
46 Looper looper = Looper.getMainLooper(); local
47 assertNotNull(looper);
53 Looper.prepare();
61 Looper.loop();
72 assertNull(Looper.myLooper())
    [all...]
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
RemoteControlClientCompat.java 21 import android.os.Looper;
112 public RemoteControlClientCompat(PendingIntent pendingIntent, Looper looper) {
119 sRemoteControlClientClass.getConstructor(PendingIntent.class, Looper.class)
120 .newInstance(pendingIntent, looper);
  /external/chromium_org/third_party/skia/samplecode/
SampleUnpremul.cpp 91 SkAutoTUnref<SkBlurDrawLooper> looper(
95 paint.setLooper(looper);
  /external/chromium_org/third_party/skia/src/effects/
SkBlurDrawLooper.cpp 113 const SkBlurDrawLooper* looper)
114 : fLooper(looper), fState(SkBlurDrawLooper::kBeforeEdge) {}
  /external/skia/samplecode/
SampleUnpremul.cpp 91 SkAutoTUnref<SkBlurDrawLooper> looper(
95 paint.setLooper(looper);
  /external/skia/src/effects/
SkBlurDrawLooper.cpp 113 const SkBlurDrawLooper* looper)
114 : fLooper(looper), fState(SkBlurDrawLooper::kBeforeEdge) {}
  /frameworks/av/media/libstagefright/foundation/
ALooper.cpp 34 LooperThread(ALooper *looper, bool canCallJava)
36 mLooper(looper),
153 // If not running locally and this thread _is_ the looper thread,
  /frameworks/base/core/java/android/app/
AppImportanceMonitor.java 21 import android.os.Looper;
75 public AppImportanceMonitor(Context context, Looper looper) {
77 mHandler = new Handler(looper) {
112 * Report when an app's importance changed. Called on looper given to constructor.
  /frameworks/base/core/java/android/app/job/
JobService.java 23 import android.os.Looper;
116 JobHandler(Looper looper) {
117 super(looper);

Completed in 626 milliseconds

1 2 3 4 5 6 78 91011>>