HomeSort by relevance Sort by last modified time
    Searched full:handler (Results 326 - 350 of 2523) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/app/
PendingIntent.java 26 import android.os.Handler;
118 * android.content.BroadcastReceiver, Handler, int, String, Bundle)
139 private final Handler mHandler;
144 FinishedDispatcher(PendingIntent pi, OnFinished who, Handler handler) {
147 mHandler = handler;
300 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
314 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
333 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
350 * @param handler Handler identifying the thread on which the callbac
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/helpers/
XMLFilterImplTest.java 56 private MockHandler handler = new MockHandler(logger); field in class:XMLFilterImplTest
73 parent.setContentHandler(handler);
74 parent.setDTDHandler(handler);
75 parent.setErrorHandler(handler);
77 child.setContentHandler(handler);
78 child.setDTDHandler(handler);
79 child.setErrorHandler(handler);
237 parent.setDTDHandler(handler);
238 assertEquals(handler, parent.getDTDHandler());
257 parent.setContentHandler(handler);
    [all...]
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 28 import android.os.Handler;
88 // the listener and handler are synchronized on "this" and must be updated together
90 private Handler mHandler;
144 public void setListener(RegisteredServicesCacheListener<V> listener, Handler handler) {
145 if (handler == null) {
146 handler = new Handler(mContext.getMainLooper());
149 mHandler = handler;
159 Handler handler; local
    [all...]
  /frameworks/base/core/java/android/webkit/
WebStorage.java 19 import android.os.Handler;
75 private Handler mHandler = null;
76 private Handler mUIHandler = null;
113 * Message handler, UI side
117 mUIHandler = new Handler() {
147 * Message handler, webcore side
151 mHandler = new Handler() {
352 * Utility function to send a message to our handler
361 * Utility function to send a message to the handler on the UI thread
WebViewClient.java 30 * proper handler for the url. If WebViewClient is provided, return true
170 * host application has to call either handler.cancel() or handler.proceed()
175 * @param handler An SslErrorHandler object that will handle the user's
179 public void onReceivedSslError(WebView view, SslErrorHandler handler,
181 handler.cancel();
189 * @param handler The HttpAuthHandler that will handle the user's response.
195 HttpAuthHandler handler, String host, String realm) {
196 handler.cancel();
  /dalvik/libcore/logging/src/main/java/java/util/logging/
logging.properties 33 # logger will be used. You can also set the level for every handler, as below for
37 # Specify handler classes list, these classes will be instantiated during the
39 # For example, use the line below to add SocketHandler. Note that the handler
55 # Handler settings
58 # The properties below are samples for handler settings.
  /dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
SimpleFormatterTest.java 27 import java.util.logging.Handler;
70 args = {java.util.logging.Handler.class}
76 args = {java.util.logging.Handler.class}
166 args = {java.util.logging.Handler.class}
176 args = {java.util.logging.Handler.class}
  /external/icu4c/common/
propsvec.h 113 * - for each (non-unique) row, call the handler function
115 * The handler's rowIndex is the index of the row in the compacted
121 * Then the handler is called once more with start==end==UPVEC_START_REAL_VALUES_CP
124 * Then, in the second phase, the handler is called for each row of real values.
133 upvec_compact(UPropsVectors *pv, UPVecCompactHandler *handler, void *context, UErrorCode *pErrorCode);
  /external/iproute2/man/man3/
libnetlink.3 36 int (*handler)(struct sockaddr_nl *,struct nlmsghdr *n, void *),
40 int (*handler)(struct sockaddr_nl *,struct nlmsghdr *n, void *),
109 .I handler.
110 .B handler
125 .B handler
  /external/qemu/distrib/sdl-1.2.12/src/
SDL.c 265 /* Exception handler to prevent the Audio thread hanging, making a zombie process! */
305 /* printf("[SDL DLL Unintialization] : Removing exception handler\n"); */
316 /* Fire up exception handler */
318 /* printf("[SDL DLL Initialization] : Setting exception handler\n"); */
320 /* Set exception handler */
  /external/qemu/telephony/
simulator.c 167 SysChannel handler; local
170 printf( "connection accepted for server channel, getting handler socket\n" );
171 handler = sys_channel_create_tcp_handler( server );
172 client = client_alloc( handler );
176 sys_channel_on( handler, SYS_EVENT_READ, client_handler, client );
test2.c 180 SysChannel handler; local
183 printf( "connection accepted for server channel, getting handler socket\n" );
184 handler = sys_channel_create_tcp_handler( server );
186 client = client_alloc( handler );
189 sys_channel_on( handler, SYS_EVENT_READ, client_handler, client );
  /external/v8/src/
full-codegen.cc 885 // The try block adds a handler to the exception handler chain
888 // control is passed to the handler, which also consumes the handler.
897 // Try handler code, exception in result register.
913 // Try block code. Sets up the exception handler chain.
928 // Try finally is compiled by setting up a try-handler on the stack while
932 // 1. By exiting the try-block normally. This removes the try-handler and
936 // try handler and calls the finally block code before continuing
939 // This can happen in nested function calls. It traverses the try-handler
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothServerSocket.java 19 import android.os.Handler;
63 private Handler mHandler;
124 /*package*/ synchronized void setCloseHandler(Handler handler, int message) {
125 mHandler = handler;
ScoSocket.java 19 import android.os.Handler;
49 private Handler mHandler;
61 public ScoSocket(PowerManager pm, Handler handler, int acceptedCode, int connectedCode,
65 mHandler = handler;
  /frameworks/base/core/java/android/os/
Looper.java 29 * {@link Handler} class.
33 * initial Handler to communicate with the Looper.
37 * public Handler mHandler;
42 * mHandler = new Handler() {
144 * target Handler and message contents.
TokenWatcher.java 34 * @param h A handler to call {@link #acquired} and {@link #released}
37 * <code>new TokenWatcher(new Handler())</code>
40 public TokenWatcher(Handler h, String tag)
59 * handler.
193 private Handler mHandler;
  /frameworks/base/location/java/com/android/internal/location/
LocationProviderProxy.java 28 import android.os.Handler;
46 private Handler mHandler;
61 Handler handler) {
64 mHandler = handler;
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uexception.h 25 /// If you write a replacement terminate handler, it must be of this type.
27 /// If you write a replacement unexpected handler, it must be of this type.
29 /// Takes a new handler function as an argument, returns the old function.
34 /// Takes a new handler function as an argument, returns the old function.
81 /// by the error handler node chain to troubleshoot specific errors.
  /frameworks/base/sax/java/android/sax/
RootElement.java 68 final Handler handler = new Handler(); field in class:RootElement
94 return this.handler;
97 class Handler extends DefaultHandler {
  /packages/apps/Browser/tests/src/com/android/browser/
JNIBindingsTestApp.java 22 import android.os.Handler;
63 private Handler mHandler;
72 mHandler = new Handler() {
177 public void onReceivedSslError(WebView view, SslErrorHandler handler,
180 handler.proceed();
  /packages/apps/Mms/src/com/android/mms/ui/
AttachmentEditor.java 27 import android.os.Handler;
56 private Handler mHandler;
93 public void setHandler(Handler handler) {
94 mHandler = handler;
  /system/core/sh/
error.h 50 * jump locations. The global variable handler contains the location to
53 * exception handlers, the user should save the value of handler on entry
54 * to an inner scope, set handler to point to a jmploc structure for the
55 * inner scope, and restore handler on exit from the scope.
64 extern struct jmploc *handler;
  /dalvik/libcore/xml/src/test/java/tests/xml/
DomTest.java 813 RecordingHandler handler = new RecordingHandler(); local
833 RecordingHandler handler = new RecordingHandler(); local
856 RecordingHandler handler = new RecordingHandler(); local
877 RecordingHandler handler = new RecordingHandler(); local
1013 RecordingHandler handler = new RecordingHandler(); local
1277 RecordingHandler handler = new RecordingHandler(); local
    [all...]
  /external/bluetooth/glib/glib/
gmessages.c 228 register GLogHandler *handler; local
230 handler = domain->handlers;
231 while (handler)
233 if ((handler->log_level & log_level) == log_level)
235 *data = handler->data;
236 return handler->log_func;
238 handler = handler->next;
306 GLogHandler *handler; local
314 handler = g_new (GLogHandler, 1)
    [all...]

Completed in 54 milliseconds

<<11121314151617181920>>