HomeSort by relevance Sort by last modified time
    Searched refs:looper (Results 151 - 175 of 495) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/av/include/media/stagefright/
MediaCodecSource.h 42 const sp<ALooper> &looper,
81 const sp<ALooper> &looper,
  /frameworks/av/media/libstagefright/
MediaCodecListOverrides.cpp 143 sp<ALooper> looper = new ALooper; local
144 looper->setName("MediaCodec_looper");
145 looper->start(
148 sp<MediaCodec> codec = MediaCodec::CreateByComponentName(looper, name.c_str(), &err);
198 sp<ALooper> looper = new ALooper; local
199 looper->setName("MediaCodec_looper");
201 ALOGV("doProfileCodecs start looper");
202 looper->start(
205 sp<MediaCodec> codec = MediaCodec::CreateByComponentName(looper, name.c_str(), &err);
  /frameworks/base/graphics/java/android/graphics/
SurfaceTexture.java 23 import android.os.Looper;
70 private final Looper mCreatorLooper;
132 mCreatorLooper = Looper.myLooper();
159 mCreatorLooper = Looper.myLooper();
196 // prefer to send the callback on the creating looper or the main looper
198 Looper looper = handler != null ? handler.getLooper() : local
199 mCreatorLooper != null ? mCreatorLooper : Looper.getMainLooper();
200 mOnFrameAvailableHandler = new Handler(looper, null, true /*async*/)
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
InputConsumerImpl.java 19 import android.os.Looper;
38 public InputConsumerImpl(WindowManagerService service, Looper looper,
49 mClientChannel, looper);
  /frameworks/native/include/android/
sensor.h 45 #include <android/looper.h>
238 * Creates a new sensor event queue and associate it with a looper.
241 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /packages/apps/Settings/src/com/android/settings/applications/
AppStateBaseBridge.java 19 import android.os.Looper;
127 public BackgroundHandler(Looper looper) {
128 super(looper);
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/android/
sensor.h 45 #include <android/looper.h>
199 * Creates a new sensor event queue and associate it with a looper.
202 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/android/
sensor.h 45 #include <android/looper.h>
199 * Creates a new sensor event queue and associate it with a looper.
202 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/android/
sensor.h 45 #include <android/looper.h>
199 * Creates a new sensor event queue and associate it with a looper.
202 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/android/
sensor.h 46 #include <android/looper.h>
226 * Creates a new sensor event queue and associate it with a looper.
229 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/android/
sensor.h 46 #include <android/looper.h>
226 * Creates a new sensor event queue and associate it with a looper.
229 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/android/
sensor.h 46 #include <android/looper.h>
226 * Creates a new sensor event queue and associate it with a looper.
229 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/android/
sensor.h 46 #include <android/looper.h>
226 * Creates a new sensor event queue and associate it with a looper.
229 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/android/
sensor.h 46 #include <android/looper.h>
226 * Creates a new sensor event queue and associate it with a looper.
229 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/android/
sensor.h 46 #include <android/looper.h>
226 * Creates a new sensor event queue and associate it with a looper.
229 ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
  /frameworks/av/media/libstagefright/foundation/
AMessage.cpp 358 sp<ALooper> looper = mLooper.promote(); local
359 if (looper == NULL) {
360 ALOGW("failed to post message as target looper for handler %d is gone.", mTarget);
364 looper->post(this, delayUs);
369 sp<ALooper> looper = mLooper.promote(); local
370 if (looper == NULL) {
371 ALOGW("failed to post message as target looper for handler %d is gone.", mTarget);
375 sp<AReplyToken> token = looper->createReplyToken();
382 looper->post(this, 0 /* delayUs */);
383 return looper->awaitResponse(token, response)
391 sp<ALooper> looper = replyToken->getLooper(); local
    [all...]
  /frameworks/base/location/java/android/location/
LocationManager.java 29 import android.os.Looper;
223 ListenerTransport(LocationListener listener, Looper looper) {
226 if (looper == null) {
234 mListenerHandler = new Handler(looper) {
453 * @throws RuntimeException if the calling thread has no Looper
469 * the specified looper thread.
480 * @param looper a Looper object whose message queue will be used to
490 LocationListener listener, Looper looper)
    [all...]
  /external/skia/include/effects/
SkBlurDrawLooper.h 75 explicit BlurDrawLooperContext(const SkBlurDrawLooper* looper);
SkLayerDrawLooper.h 105 explicit LayerDrawLooperContext(const SkLayerDrawLooper* looper);
150 * Pass list of layers on to newly built looper and return it. This will
151 * also reset the builder, so it can be used to build another 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/base/core/java/android/net/
NetworkAgent.java 21 import android.os.Looper;
158 public NetworkAgent(Looper looper, Context context, String logTag, NetworkInfo ni,
160 this(looper, context, logTag, ni, nc, lp, score, null);
163 public NetworkAgent(Looper looper, Context context, String logTag, NetworkInfo ni,
165 super(looper);
  /frameworks/native/include/gui/
SensorEventQueue.h 37 ALooper* looper; member in struct:ASensorEventQueue
46 class Looper;
84 sp<Looper> getLooper() const;
88 mutable sp<Looper> mLooper;
  /frameworks/native/services/surfaceflinger/tests/vsync/
vsync.cpp 17 #include <android/looper.h>
19 #include <utils/Looper.h>
55 sp<Looper> loop = new Looper(false);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogQueryHandler.java 30 import android.os.Looper;
80 public CatchingWorkerHandler(Looper looper) {
81 super(looper);
106 protected Handler createHandler(Looper looper) {
108 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...]

Completed in 855 milliseconds

1 2 3 4 5 67 8 91011>>