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

1 2 3 4 5 6 7 8 91011>>

  /cts/hostsidetests/devicepolicy/app/WidgetProvider/src/com/android/cts/widgetprovider/
SimpleAppWidgetHostService.java 30 import android.os.Looper;
75 public CheckHandler(Looper looper) {
76 super(looper);
  /cts/tests/tests/permission/src/android/permission/cts/
NoLocationPermissionTest.java 27 import android.os.Looper;
140 Looper looper = Looper.myLooper(); local
150 mLocationManager.requestLocationUpdates(provider, 0, 0, mockListener, looper);
  /developers/build/prebuilts/gradle/BasicMediaDecoder/Application/src/main/java/com/example/android/common/media/
MediaCodecWrapper.java 21 import android.os.Looper;
118 Looper looper; local
121 if ((looper = Looper.myLooper()) != null) {
125 "Looper doesn't exist in the calling thread");
  /developers/build/prebuilts/gradle/BasicRenderScript/Application/src/main/java/com/example/android/common/media/
MediaCodecWrapper.java 21 import android.os.Looper;
118 Looper looper; local
121 if ((looper = Looper.myLooper()) != null) {
125 "Looper doesn't exist in the calling thread");
  /developers/build/prebuilts/gradle/MediaRecorder/Application/src/main/java/com/example/android/common/media/
MediaCodecWrapper.java 21 import android.os.Looper;
118 Looper looper; local
121 if ((looper = Looper.myLooper()) != null) {
125 "Looper doesn't exist in the calling thread");
  /developers/samples/android/common/src/java/com/example/android/common/media/
MediaCodecWrapper.java 21 import android.os.Looper;
118 Looper looper; local
121 if ((looper = Looper.myLooper()) != null) {
125 "Looper doesn't exist in the calling thread");
  /development/ndk/platforms/android-9/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.
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ServiceStartArguments.java 29 import android.os.Looper;
57 private volatile Looper mServiceLooper;
61 public ServiceHandler(Looper looper) {
62 super(looper);
  /development/samples/browseable/BasicMediaDecoder/src/com.example.android.common.media/
MediaCodecWrapper.java 21 import android.os.Looper;
118 Looper looper; local
121 if ((looper = Looper.myLooper()) != null) {
125 "Looper doesn't exist in the calling thread");
  /development/samples/browseable/BasicRenderScript/src/com.example.android.common.media/
MediaCodecWrapper.java 21 import android.os.Looper;
118 Looper looper; local
121 if ((looper = Looper.myLooper()) != null) {
125 "Looper doesn't exist in the calling thread");
  /development/samples/browseable/MediaRecorder/src/com.example.android.common.media/
MediaCodecWrapper.java 21 import android.os.Looper;
118 Looper looper; local
121 if ((looper = Looper.myLooper()) != null) {
125 "Looper doesn't exist in the calling thread");
  /frameworks/base/core/java/android/inputmethodservice/
IInputMethodSessionWrapper.java 26 import android.os.Looper;
216 public ImeInputEventReceiver(InputChannel inputChannel, Looper looper) {
217 super(inputChannel, looper);
  /frameworks/base/core/java/android/net/
DnsPinger.java 21 import android.os.Looper;
119 public DnsPinger(Context context, String TAG, Looper looper,
121 super(looper);
NetworkFactory.java 21 import android.os.Looper;
109 public NetworkFactory(Looper looper, Context context, String logTag,
111 super(looper);
  /frameworks/base/core/java/android/print/
PrinterDiscoverySession.java 22 import android.os.Looper;
260 if (!Looper.getMainLooper().isCurrentThread()) {
267 public SessionHandler(Looper looper) {
268 super(looper, null, false);
  /frameworks/base/core/java/android/printservice/
PrintService.java 25 import android.os.Looper;
353 if (!Looper.getMainLooper().isCurrentThread()) {
431 public ServiceHandler(Looper looper) {
432 super(looper, null, true);
  /frameworks/base/core/java/com/android/internal/util/
StateMachine.java 21 import android.os.Looper;
899 * Cleanup all the static variables and the looper after the SM has been quit.
903 // If we made the thread then quit looper which stops the thread.
1253 Looper looper = mSmThread.getLooper(); local
    [all...]
  /frameworks/base/media/java/android/media/
JetPlayer.java 25 import android.os.Looper;
109 * Looper associated with the thread that creates the AudioTrack instance
111 private Looper mInitializationLooper = null;
159 // remember which looper is associated with the JetPlayer instanciation
160 if ((mInitializationLooper = Looper.myLooper()) == null) {
161 mInitializationLooper = Looper.getMainLooper();
402 public NativeEventHandler(JetPlayer jet, Looper looper) {
403 super(looper);
483 // no given handler, use the looper the AudioTrack was created i
    [all...]
  /frameworks/base/media/lib/remotedisplay/java/com/android/media/remotedisplay/
RemoteDisplayProvider.java 28 import android.os.Looper;
86 * {@link Context#getMainLooper main looper thread} of an application.
361 public ProviderHandler(Looper looper) {
362 super(looper, null, true);
  /frameworks/base/packages/FusedLocation/src/com/android/location/fused/
FusionEngine.java 32 import android.os.Looper;
52 private final Looper mLooper;
65 public FusionEngine(Context context, Looper looper) {
72 mLooper = looper;
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
RemotePrintDocument.java 27 import android.os.Looper;
75 private final Looper mLooper;
642 public LayoutCommand(Looper looper, IPrintDocumentAdapter adapter,
646 mHandler = new LayoutHandler(looper);
788 public LayoutHandler(Looper looper) {
789 super(looper, null, false);
878 public WriteCommand(Context context, Looper looper, IPrintDocumentAdapter adapter
    [all...]
  /frameworks/base/packages/StatementService/src/com/android/statementservice/
DirectStatementService.java 26 import android.os.Looper;
141 public void onCreate(AbstractStatementRetriever statementRetriever, Looper looper,
145 mHandler = new Handler(looper);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSFooter.java 23 import android.os.Looper;
217 private H(Looper looper) {
218 super(looper);
  /frameworks/base/telecomm/java/android/telecom/
VideoCallImpl.java 22 import android.os.Looper;
118 public MessageHandler(Looper looper) {
119 super(looper);
200 mHandler = new MessageHandler(Looper.getMainLooper());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
IconLoader.java 26 import android.os.Looper;
70 private IconLoader(Looper looper , IccFileHandler fh) {
71 super(looper);

Completed in 1610 milliseconds

1 2 3 4 5 6 7 8 91011>>