HomeSort by relevance Sort by last modified time
    Searched defs:handler (Results 901 - 925 of 2987) sorted by null

<<31323334353637383940>>

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaInboundSmsHandler.java 56 * Create a new inbound SMS handler for CDMA.
85 CdmaInboundSmsHandler handler = new CdmaInboundSmsHandler(context, storageMonitor, local
87 handler.start();
88 return handler;
92 * Return true if this handler is for 3GPP2 messages; false for 3GPP format.
299 // pass the user data portion of the PDU to the shared handler in SMSDispatcher
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCellBroadcastHandler.java 35 * Handler for 3GPP format Cell Broadcasts. Parent class can also handle CDMA Cell Broadcasts.
58 * @return the new handler
62 GsmCellBroadcastHandler handler = new GsmCellBroadcastHandler(context, phone); local
63 handler.start();
64 return handler;
  /packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
LocationFragment.java 24 import android.os.Handler;
68 private final Handler handler = new Handler(); field in class:LocationFragment
105 handler.removeCallbacks(dataTimeoutRunnable);
170 handler.postDelayed(dataTimeoutRunnable, TIMEOUT_MILLIS);
176 handler.removeCallbacks(dataTimeoutRunnable);
  /packages/apps/Dialer/java/com/android/voicemail/impl/sync/
VvmNetworkRequestCallback.java 25 import android.os.Handler;
146 Handler handler = new Handler(Looper.getMainLooper()); local
147 handler.postDelayed(
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MovieControllerOverlay.java 20 import android.os.Handler;
37 private final Handler handler; field in class:MovieControllerOverlay
44 handler = new Handler();
88 handler.postDelayed(startHidingRunnable, 2500);
105 handler.removeCallbacks(startHidingRunnable);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryDownloadProgressBar.java 25 import android.os.Handler;
163 // resort to a runnable posted to the handler of the view.
164 final Handler handler = getHandler(); local
167 if (null == handler) return;
168 handler.post(this);
  /packages/services/Car/car-lib/src/android/car/vms/
VmsPublisherClientService.java 23 import android.os.Handler;
56 private Handler mHandler = new VmsEventHandler(this);
218 Handler handler = vmsPublisherClientService.mHandler; local
219 handler.sendMessage(
220 handler.obtainMessage(VmsEventHandler.SET_SERVICE_CALLBACK, service));
242 Handler handler = vmsPublisherClientService.mHandler; local
243 handler.sendMessage(
244 handler.obtainMessage(VmsEventHandler.ON_SUBSCRIPTION_CHANGE_EVENT
    [all...]
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/setting/
UsbHostManagementActivity.java 49 * a) Device was used before and user selected handler for it.
50 * In this case handler will be launched.
51 * b) Device has not handler assigned. In this case supported handlers will be captured,
52 * and user will be presented with choice to assign default handler.
53 * After that handler will be lauched.
191 ComponentName handler = getItem(position).getHandler(); local
195 mPackageManager.getApplicationInfo(handler.getPackageName(), 0);
199 Log.e(TAG, "Handling package not found: " + handler.getPackageName());
200 holder.mAppName.setText(handler.flattenToShortString());
  /packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/
MockedVehicleHal.java 47 * Interface for handler of each property.
69 VehicleHalPropertyHandler handler) {
70 mPropertyHandlerMap.put(config.prop, handler);
103 VehicleHalPropertyHandler handler = mPropertyHandlerMap.get(value.prop); local
104 if (handler != null) {
105 handler.onPropertySet(value);
158 VehicleHalPropertyHandler handler = mPropertyHandlerMap.get(requestedPropValue.prop); local
159 if (handler == null) {
162 cb.onValues(StatusCode.OK, handler.onPropertyGet(requestedPropValue));
168 VehicleHalPropertyHandler handler = mPropertyHandlerMap.get(propValue.prop) local
181 VehicleHalPropertyHandler handler = mPropertyHandlerMap.get(opt.propId); local
208 VehicleHalPropertyHandler handler = mPropertyHandlerMap.get(propId); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
RelativeLayoutRule.java 258 DeletionHandler handler = new DeletionHandler(deleted, Collections.<INode>emptyList(), local
260 handler.updateConstraints();
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
MidiTest.java 27 import android.os.Handler;
38 private Handler handler = new Handler(); field in class:MidiTest
89 handler.post(new Runnable() {
108 handler.postDelayed(cancelMidiOutRunnable, noteDelay * inputRepetitions + timeout);
115 handler.post(new Runnable() {
134 handler.postDelayed(requestNoteRunnable, noteDelay);
229 handler.removeCallbacks(cancelMidiOutRunnable);
273 handler.postDelayed(finishMidiInRunnable, timeout)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/
RemoteViewsAdapterTest.java 38 import android.os.Handler;
71 private Handler mMainHandler;
80 mMainHandler = new Handler(Looper.getMainLooper());
98 waitOnHandler(mContext.handler.get());
117 waitOnHandler(mContext.handler.get());
128 waitOnHandler(mContext.handler.get());
151 waitOnHandler(mContext.handler.get());
171 waitOnHandler(mContext.handler.get());
191 waitOnHandler(mContext.handler.get());
198 getOnHandler(mContext.handler.get(), () ->
229 Handler handler = mContext.handler.get(); local
243 public final LockedValue<Handler> handler = new LockedValue<>(); field in class:RemoteViewsAdapterTest.TestContext
    [all...]
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/
OtherActivityTouchConsumer.java 203 // Notify the handler that the gesture has actually started
216 // Create the shared handler
218 final WindowTransformSwipeHandler handler = new WindowTransformSwipeHandler( local
223 mInteractionHandler = handler;
224 handler.setGestureEndCallback(mEventQueue::reset);
227 handler.setLauncherOnDrawCallback(() -> {
229 if (handler == mInteractionHandler) {
233 handler.initWhenReady();
298 // Clean up the old interaction handler
300 final WindowTransformSwipeHandler handler = mInteractionHandler local
    [all...]
  /cts/suite/audio_quality/lib/src/audio/
RemoteAudio.cpp 110 CommandHandler* handler = NULL; local
112 handler = reinterpret_cast<CommandHandler*>(mDownloadHandler.get());
114 handler = reinterpret_cast<CommandHandler*>(mPlaybackHandler.get());
116 handler = reinterpret_cast<CommandHandler*>(mRecordingHandler.get());
118 handler = reinterpret_cast<CommandHandler*>(mDeviceInfoHandler.get());
121 if (handler != NULL) {
122 param = &(handler->getParam());
125 if (handler != NULL) {
126 LOGD("handler present. Notify client");
127 android::Mutex::Autolock lock(handler->mStateLock)
165 CommandHandler* handler = reinterpret_cast<CommandHandler*>(commandHandler.get()); local
181 CommandHandler* handler = reinterpret_cast<CommandHandler*>(commandHandler.get()); local
198 CommandHandler* handler = reinterpret_cast<CommandHandler*>(mDownloadHandler.get()); local
234 CommandHandler* handler = reinterpret_cast<CommandHandler*>(mPlaybackHandler.get()); local
279 CommandHandler* handler = reinterpret_cast<CommandHandler*>(mRecordingHandler.get()); local
313 CommandHandler* handler = reinterpret_cast<CommandHandler*>(mDeviceInfoHandler.get()); local
    [all...]
  /cts/suite/audio_quality/test_description/
processing_main.py 217 handler = CommandHandler(conn) variable
219 handler.run()
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchHandlerList.java 24 * Ordered list of (exception type, handler address) entries.
98 * handler.
101 * handler or {@code false} if not
119 * @param handler {@code >= 0;} exception handler address
121 public void set(int n, CstType exceptionType, int handler) {
122 set0(n, new Entry(exceptionType, handler));
171 /** {@code >= 0;} exception handler address */
172 private final int handler; field in class:CatchHandlerList.Entry
178 * @param handler {@code >= 0;} exception handler addres
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchHandlerList.java 24 * Ordered list of (exception type, handler address) entries.
99 * handler.
102 * handler or {@code false} if not
120 * @param handler {@code >= 0;} exception handler address
122 public void set(int n, CstType exceptionType, int handler) {
123 set0(n, new Entry(exceptionType, handler));
173 /** {@code >= 0;} exception handler address */
174 private final int handler; field in class:CatchHandlerList.Entry
180 * @param handler {@code >= 0;} exception handler addres
    [all...]
  /developers/build/prebuilts/gradle/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 28 import android.os.Handler;
308 Handler handler = new Handler(getContext().getMainLooper()); local
309 return ParcelFileDescriptor.open(file, accessMode, handler,
  /developers/samples/android/content/documentsUi/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 28 import android.os.Handler;
308 Handler handler = new Handler(getContext().getMainLooper()); local
309 return ParcelFileDescriptor.open(file, accessMode, handler,
  /development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/
MyCloudProvider.java 28 import android.os.Handler;
308 Handler handler = new Handler(getContext().getMainLooper()); local
309 return ParcelFileDescriptor.open(file, accessMode, handler,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
FirstOrderIntegratorWithJacobians.java 106 /** Add a step handler to this integrator.
107 * <p>The handler will be called by the integrator for each accepted
109 * @param handler handler for the accepted steps
113 public void addStepHandler(StepHandlerWithJacobians handler) {
116 integrator.addStepHandler(new StepHandlerWrapper(handler, n, k));
127 for (final StepHandler handler : integrator.getStepHandlers()) {
128 if (handler instanceof StepHandlerWrapper) {
129 handlers.add(((StepHandlerWrapper) handler).getHandler());
143 /** Add an event handler to the integrator
544 private final StepHandlerWithJacobians handler; field in class:FirstOrderIntegratorWithJacobians.StepHandlerWrapper
845 private final EventHandlerWithJacobians handler; field in class:FirstOrderIntegratorWithJacobians.EventHandlerWrapper
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
RungeKuttaIntegrator.java 74 * step. The default step handler does nothing.
131 for (StepHandler handler : stepHandlers) {
132 handler.reset();
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemExtensionDecl.java 259 String handler = "org.apache.xalan.extensions.ExtensionHandlerGeneral"; local
262 extNsSpt = new ExtensionNamespaceSupport(declNamespace, handler, args);
327 // Instantiate a handler for this extension namespace.
361 // System.out.println("Adding NS Handler: declNamespace = "+
  /external/autotest/frontend/client/src/autotest/common/
PaddedJsonRpcProxy.java 89 UncaughtExceptionHandler handler = GWT.getUncaughtExceptionHandler(); local
90 if (handler == null) {
98 handler.onUncaughtException(throwable);
  /external/autotest/frontend/client/src/autotest/common/ui/
DoubleListSelector.java 89 public HandlerRegistration addDoubleClickHandler(DoubleClickHandler handler) {
90 availableListHandlerManager.addHandler(DoubleClickEvent.getType(), handler); local
91 selectedListHandlerManager.addHandler(DoubleClickEvent.getType(), handler); local

Completed in 1927 milliseconds

<<31323334353637383940>>