HomeSort by relevance Sort by last modified time
    Searched refs:looper (Results 201 - 225 of 338) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/android/
input.h 46 #include <android/looper.h>
644 * Add this input queue to a looper for processing. See
647 void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
651 * Remove the input queue from the looper it is currently attached to.
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/android/
input.h 46 #include <android/looper.h>
644 * Add this input queue to a looper for processing. See
647 void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
651 * Remove the input queue from the looper it is currently attached to.
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/android/
input.h 46 #include <android/looper.h>
644 * Add this input queue to a looper for processing. See
647 void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
651 * Remove the input queue from the looper it is currently attached to.
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/android/
input.h 46 #include <android/looper.h>
644 * Add this input queue to a looper for processing. See
647 void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
651 * Remove the input queue from the looper it is currently attached to.
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/android/
input.h 46 #include <android/looper.h>
644 * Add this input queue to a looper for processing. See
647 void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
651 * Remove the input queue from the looper it is currently attached to.
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/android/
input.h 46 #include <android/looper.h>
644 * Add this input queue to a looper for processing. See
647 void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
651 * Remove the input queue from the looper it is currently attached to.
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/android/
input.h 46 #include <android/looper.h>
644 * Add this input queue to a looper for processing. See
647 void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
651 * Remove the input queue from the looper it is currently attached to.
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/android/
input.h 46 #include <android/looper.h>
644 * Add this input queue to a looper for processing. See
647 void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
651 * Remove the input queue from the looper it is currently attached to.
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/android/
input.h 46 #include <android/looper.h>
644 * Add this input queue to a looper for processing. See
647 void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
651 * Remove the input queue from the looper it is currently attached to.
  /external/chromium_org/third_party/skia/src/core/
SkCanvas.cpp 427 // no looper means we only draw once
468 AutoDrawLooper looper(this, paint, true); \
469 while (looper.next(type)) { \
475 AutoDrawLooper looper(this, paint); \
476 while (looper.next(type)) { \
975 iter.fDevice->drawBitmap(iter, bitmap, matrix, looper.paint());
992 paint = &looper.paint();
1028 paint = &looper.paint();
    [all...]
  /external/skia/src/core/
SkCanvas.cpp 427 // no looper means we only draw once
468 AutoDrawLooper looper(this, paint, true); \
469 while (looper.next(type)) { \
475 AutoDrawLooper looper(this, paint); \
476 while (looper.next(type)) { \
975 iter.fDevice->drawBitmap(iter, bitmap, matrix, looper.paint());
992 paint = &looper.paint();
1028 paint = &looper.paint();
    [all...]
  /frameworks/base/media/java/android/media/
RemoteController.java 30 import android.os.Looper;
103 * @param looper the {@link Looper} on which to run the event loop,
104 * or null to use the current thread's looper.
107 public RemoteController(Context context, OnClientUpdateListener updateListener, Looper looper)
115 if (looper != null) {
116 mEventHandler = new EventHandler(this, looper);
118 Looper l = Looper.myLooper()
    [all...]
  /frameworks/base/services/java/com/android/server/wifi/
WifiController.java 35 import android.os.Looper;
132 WifiController(Context context, WifiService service, Looper looper) {
133 super(TAG, looper);
181 initializeAndRegisterForSettingsChange(looper);
184 private void initializeAndRegisterForSettingsChange(Looper looper) {
185 Handler handler = new Handler(looper);
  /external/qemu/android/
main-common.c 1232 Looper* looper; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
Avrcp.java 33 import android.os.Looper;
172 Looper looper = thread.getLooper(); local
173 mHandler = new AvrcpMessageHandler(looper);
189 Looper looper = mHandler.getLooper(); local
190 if (looper != null) {
191 looper.quit();
264 private AvrcpMessageHandler(Looper looper) {
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
HealthService.java 32 import android.os.Looper;
95 Looper looper = thread.getLooper(); local
96 mHandler = new HealthServiceMessageHandler(looper);
104 Looper looper = mHandler.getLooper(); local
105 if (looper != null) {
106 looper.quit();
144 private HealthServiceMessageHandler(Looper looper) {
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraDevice.java 30 import android.os.Looper;
272 // Need a valid handler, or current thread needs to have a looper, if
663 * Looper to create a Handler with. If no looper exists, throw exception.
667 Looper looper = Looper.myLooper(); local
668 if (looper == null) {
670 "No handler given, and current thread has no looper!");
672 handler = new Handler(looper);
    [all...]
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 150 sp<ALooper> looper = new ALooper; local
151 looper->setName("screenrecord_looper");
152 looper->start();
154 sp<MediaCodec> codec = MediaCodec::CreateByType(looper, "video/avc", true);
  /frameworks/base/drm/java/android/drm/
DrmManagerClient.java 27 import android.os.Looper;
130 public EventHandler(Looper looper) {
131 super(looper);
196 public InfoHandler(Looper looper) {
197 super(looper);
    [all...]
  /frameworks/base/services/input/
PointerController.h 26 #include <utils/Looper.h>
156 const sp<Looper>& looper, const sp<SpriteController>& spriteController);
208 sp<Looper> mLooper;
SpriteController.h 21 #include <utils/Looper.h>
143 SpriteController(const sp<Looper>& looper, int32_t overlayLayer);
267 sp<Looper> mLooper;
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pManager.java 36 import android.os.Looper;
641 Channel(Context context, Looper looper, ChannelListener l) {
643 mHandler = new P2pHandler(looper);
661 P2pHandler(Looper looper) {
662 super(looper);
    [all...]
  /external/skia/tests/
PaintTest.cpp 143 SkLayerDrawLooper* looper = new SkLayerDrawLooper(); local
144 paint.setLooper(looper)->unref();
  /frameworks/base/core/java/android/bluetooth/
BluetoothTetheringDataTracker.java 33 import android.os.Looper;
388 BtdtHandler(Looper looper, BluetoothTetheringDataTracker parent) {
389 super(looper);
  /frameworks/base/core/java/android/net/nsd/
NsdManager.java 26 import android.os.Looper;
298 ServiceHandler(Looper looper) {
299 super(looper);

Completed in 1112 milliseconds

1 2 3 4 5 6 7 891011>>