/dalvik/libdex/ |
DexCatch.c | 23 /* Get the first handler offset for the given DexCode. 39 /* Get count of handler lists for the given DexCode. */ 51 * in the tries table. Returns -1 if there is no applicable handler. */ 83 /* Get the handler offset just past the end of the one just iterated over.
|
/dalvik/vm/mterp/armv5te/ |
OP_RETURN_WIDE.S | 4 * structure, then jumps to the return handler.
|
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
RefQueueWorker.java | 48 * on to a handler for appropriate processing. 57 /** The handler for the references found. */ 62 * The thread executing this handler. 72 * @param handler the handler to pass the references to 74 public RefQueueWorker(ReferenceQueue<?> queue, RefQueueHandler handler) { 78 if (handler == null) { 79 throw new IllegalArgumentException("Handler must not be null."); 83 refHandler = handler;
|
/external/kernel-headers/original/asm-arm/ |
sigcontext.h | 6 * before the signal handler was invoked. Note: only add new entries
|
/external/kernel-headers/original/linux/ |
irqreturn.h | 13 * To mix old-style and new-style irq handler returns.
|
/external/netcat/data/ |
README | 9 xor.c generic xor handler
|
/external/qemu/distrib/sdl-1.2.12/src/events/ |
SDL_events_c.h | 36 /* Event handler init routines */ 42 /* Event handler quit routines */ 67 /* Used by the activity event handler to remove mouse focus */ 70 /* Used by the activity event handler to remove keyboard focus */
|
/external/qemu/hw/ |
irq.h | 29 qemu_irq *qemu_allocate_irqs(qemu_irq_handler handler, void *opaque, int n);
|
/frameworks/base/core/java/android/webkit/ |
SslErrorHandler.java | 23 import android.os.Handler; 35 public class SslErrorHandler extends Handler { 77 * Creates a new error handler with an empty loader queue. 89 * Create a new error handler that will be passed to the client. 97 * Saves this handler's state into a map. 104 outState.putBundle("ssl-error-handler", mSslPrefTable); 111 * Restores this handler's state from a map. 117 success = inState.containsKey("ssl-error-handler"); 119 mSslPrefTable = inState.getBundle("ssl-error-handler");
|
WebIconDatabase.java | 22 import android.os.Handler; 46 private static class EventHandler extends Handler { 57 // Actual handler that runs in WebCore thread 58 private Handler mHandler; 78 // Note: This is the message handler for the UI thread. 86 // Called by WebCore thread to create the actual handler 89 mHandler = new Handler() { 92 // Note: This is the message handler for the WebCore 247 // queue if there is no handler because we may never have a real 248 // handler to service the messages and the cursor will never ge [all...] |
/frameworks/base/core/java/android/widget/ |
DigitalClock.java | 22 import android.os.Handler; 45 private Handler mHandler; 79 mHandler = new Handler(); 121 super(new Handler());
|
/packages/apps/Browser/tests/src/com/android/browser/ |
TestWebViewClient.java | 98 public void onReceivedSslError(WebView view, SslErrorHandler handler, 100 mWrappedClient.onReceivedSslError(view, handler, error); 106 HttpAuthHandler handler, String host, String realm) { 107 mWrappedClient.onReceivedHttpAuthRequest(view, handler, host, realm);
|
/external/icu4c/io/ |
uprntf_p.c | 75 * A u_printf handler function. 76 * A u_printf handler is responsible for handling a single u_printf 85 u_printf_handler(const u_printf_stream_handler *handler, 94 u_printf_handler *handler; member in struct:u_printf_info 179 u_printf_simple_percent_handler(const u_printf_stream_handler *handler, 188 return handler->write(context, PERCENT, 1); 193 u_printf_string_handler(const u_printf_stream_handler *handler, 232 written = handler->pad_and_justify(context, info, s, len); 243 u_printf_char_handler(const u_printf_stream_handler *handler, 265 written = handler->pad_and_justify(context, info, s, len) 1218 u_printf_handler *handler; local [all...] |
/packages/apps/IM/libwbxml/src/ |
wbxml_jni.cpp | 47 /** The content handler.*/ 59 /** The handler to get encoding result. */ 60 JniWbxmlDataHandler * handler; member in struct:WbxmlEncodingContext 220 JniWbxmlContentHandler * handler = NULL; local 232 handler = new JniWbxmlContentHandler(context); 233 if (!handler) { 237 parser->setContentHandler(handler); 239 context->contentHandler = handler; 264 JniWbxmlContentHandler * handler = context->contentHandler; local 267 handler->reset() 354 JniWbxmlDataHandler * handler = NULL; local 399 JniWbxmlDataHandler * handler = context->handler; local [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/ |
ExpatReader.java | 54 = "http://xml.org/sax/properties/lexical-handler"; 178 public void setContentHandler(ContentHandler handler) { 179 this.contentHandler = handler; 186 public void setErrorHandler(ErrorHandler handler) { 187 this.errorHandler = handler; 195 * Returns the current lexical handler. 197 * @return the current lexical handler, or null if none has been registered 205 * Registers a lexical event handler. Supports neither 209 * <p>If the application does not register a lexical handler, all 213 * <p>Applications may register a new or different handler in th [all...] |
/frameworks/base/core/java/android/content/ |
IntentSender.java | 25 import android.os.Handler; 84 * android.content.BroadcastReceiver, Handler, int, String, Bundle) 105 private final Handler mHandler; 110 FinishedDispatcher(IntentSender pi, OnFinished who, Handler handler) { 113 mHandler = handler; 146 * @param handler Handler identifying the thread on which the callback 155 OnFinished onFinished, Handler handler) throws SendIntentException [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
PasswordEntryKeyboardHelper.java | 24 import android.os.Handler; 110 Handler handler = mTargetView.getHandler(); local 119 handler.sendMessage(handler.obtainMessage(ViewRoot.DISPATCH_KEY, event)); 126 Handler handler = mTargetView.getHandler(); local 127 handler.sendMessage(handler.obtainMessage(ViewRoot.DISPATCH_KEY_FROM_IME, 130 handler.sendMessage(handler.obtainMessage(ViewRoot.DISPATCH_KEY_FROM_IME [all...] |
/frameworks/base/docs/html/resources/articles/ |
timed-ui-updates.jd | 67 android.os.Handler class, with a few tweaks. To set it up from an event 70 <pre>private Handler mHandler = new Handler(); 87 Also, the Handler.postDelayed() method only takes one time parameter, 89 Handler "call mUpdateTimeTask() after 100ms", a sort of fire and forget 90 one time shot. We also remove any existing callbacks to the handler 91 before adding the new handler, to make absolutely sure we don't get 96 method. Note also that Handler requires an implementation of Runnable, 126 Handler, but instead of a hand-wavy 200ms before the update, we can 142 <p>Handler is actually a better choice than Timer for another reaso [all...] |
/packages/apps/Email/src/com/android/email/activity/ |
UpgradeAccounts.java | 46 import android.os.Handler; 179 String errorMessage; // set/read by handler - UI thread only 268 * Handler for updating UI from async workers 273 class UIHandler extends Handler { 372 UIHandler handler = UpgradeAccounts.this.mHandler; local 386 boolean ok = scrubAccount(mContext, mAccountInfo[i].account, i, handler); 399 copyAndDeleteAccount(info, i, handler, Store.STORE_SCHEME_POP3); 404 copyAndDeleteAccount(info, i, handler, Store.STORE_SCHEME_IMAP); 418 private void copyAndDeleteAccount(AccountInfo info, int i, UIHandler handler, String type) { 429 copyAccount(mContext, info.account, i, handler); [all...] |
/frameworks/base/core/java/android/view/ |
GestureDetector.java | 21 import android.os.Handler; 213 private final Handler mHandler; 248 private class GestureHandler extends Handler { 253 GestureHandler(Handler handler) { 254 super(handler.getLooper()); 284 * (as it allows specifying the Handler). 288 * @param handler the handler to use 291 * {@code handler} is null [all...] |
/dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/ |
XMLFilterImpl.java | 259 * Set the DTD event handler. 261 * @param handler the new DTD handler 263 public void setDTDHandler (DTDHandler handler) 265 dtdHandler = handler; 270 * Get the current DTD event handler. 272 * @return The current DTD handler, or null if none was set. 281 * Set the content event handler. 283 * @param handler the new content handler [all...] |
/frameworks/base/core/java/android/bluetooth/ |
AtParser.java | 39 * external handler method is called through the AtCommandHandler interface. 44 * passed to the handler as a string argument (e.g. "T1234567890"). 113 * Register a Basic command handler.<p> 117 * @param handler Handler to register 119 public void register(Character command, AtCommandHandler handler) { 120 mBasicHandlers.put(command, handler); 124 * Register an Extended command handler.<p> 133 * @param handler Handler to registe 310 AtCommandHandler handler = mExtHandlers.get(commandName); local [all...] |
/external/libxml2/ |
HTMLtree.c | 463 xmlCharEncodingHandlerPtr handler = NULL; local 473 handler = xmlFindCharEncodingHandler(encoding); 474 if (handler == NULL) 482 if (handler == NULL) 483 handler = xmlFindCharEncodingHandler("HTML"); 484 if (handler == NULL) 485 handler = xmlFindCharEncodingHandler("ascii"); 490 buf = xmlOutputBufferCreateFile(out, handler); 526 xmlCharEncodingHandlerPtr handler = NULL; local 555 handler = xmlFindCharEncodingHandler(encoding) 1029 xmlCharEncodingHandlerPtr handler = NULL; local 1089 xmlCharEncodingHandlerPtr handler = NULL; local 1153 xmlCharEncodingHandlerPtr handler = NULL; local [all...] |
/dalvik/libcore/luni/src/main/java/java/net/ |
ContentHandlerFactory.java | 27 * Creates a content handler to handle {@code contentType}. 32 * @return content handler object for a specific content type.
|
URLStreamHandlerFactory.java | 31 * the protocol for which a handler is needed. 32 * @return the created handler.
|