HomeSort by relevance Sort by last modified time
    Searched full:handlers (Results 1 - 25 of 768) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/sax/java/android/sax/
package.html 3 A framework that makes it easy to write efficient and robust SAX handlers.
  /sdk/emulator/qtools/tests/
tests.ld 4 handlers 0x0 : { *(handlers) }
  /external/oprofile/daemon/
opd_extended.c 58 && ext_feature_table[opd_ext_feat_index].handlers != NULL)
68 && ext_feature_table[opd_ext_feat_index].handlers != NULL
69 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile != NULL)
102 ret = ext_feature_table[opd_ext_feat_index].handlers->ext_init(args);
115 && ext_feature_table[opd_ext_feat_index].handlers->ext_print_stats != NULL) {
117 ext_feature_table[opd_ext_feat_index].handlers->ext_print_stats();
129 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create != NULL)
130 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create(sf);
138 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->dup != NULL)
139 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->dup(to, from)
    [all...]
opd_extended.h 28 // Feature handlers
29 struct opd_ext_handlers * handlers; member in struct:opd_ext_feature
33 * OProfile Extended handlers
40 // Extended sfile handlers
45 * OProfile Extended sub-handlers (sfile)
  /external/chromium/net/ocsp/
nss_ocsp.h 12 // Initializes OCSP handlers for NSS. This must be called before any
14 // handlers will only ever be initialized once.
17 // Set URLRequestContext for OCSP handlers.
  /external/webkit/WebKitTools/QueueStatusServer/
app.yaml 6 handlers:
main.py 36 from handlers.dashboard import Dashboard
37 from handlers.gc import GC
38 from handlers.patch import Patch
39 from handlers.patchstatus import PatchStatus
40 from handlers.recentstatus import RecentStatus
41 from handlers.showresults import ShowResults
42 from handlers.statusbubble import StatusBubble
43 from handlers.updatestatus import UpdateStatus
  /libcore/luni/src/test/resources/config/java/util/logging/
logging.properties 0 handlers=libcore.java.util.logging.OldLogManagerTest$MockHandler java.util.logging.ConsoleHandler
logging.config 0 handlers=org.apache.harmony.logging.tests.java.util.logging.LogManagerTest$MockHandler , java.util.logging.ConsoleHandler
  /development/pdk/hosting/
app.yaml 6 handlers:
  /external/webkit/WebCore/manual-tests/
textarea-onpaste.html 6 This tests that onpaste handlers are called. To test this, paste some text in the textarea below. The result below should change from FAILURE to SUCCESS.
onsearch-enter.html 4 <p>This tests that onsearch handlers for search fields are invoked correctly when pressing enter. To test this in Safari, focus the search field and press enter. The text below should change to SUCCESS.</p>
  /libcore/luni/src/main/java/org/xml/sax/ext/
package.html 18 <li>SAX2 drivers are <em>not</em> required to recognize these handlers.
25 handlers and classes may be added without updating SAX2 itself).</li>
27 <li>The new handlers are not implemented by the SAX2
33 <li>The handlers need to be registered differently than core SAX2
34 handlers.</li>
  /dalvik/dx/src/com/android/dx/dex/code/
CatchTable.java 102 /** {@code non-null;} list of catch handlers */
103 private final CatchHandlerList handlers; field in class:CatchTable.Entry
110 * @param handlers {@code non-null;} list of catch handlers
112 public Entry(int start, int end, CatchHandlerList handlers) {
121 if (handlers.isMutable()) {
122 throw new IllegalArgumentException("handlers.isMutable()");
127 this.handlers = handlers;
134 hash = (hash * 31) + handlers.hashCode()
    [all...]
StdCatchBuilder.java 144 CatchHandlerList handlers = handlersFor(block, addresses); local
150 currentHandlers = handlers;
154 if (currentHandlers.equals(handlers)
157 * The block we are looking at now has the same handlers
167 * The block we are looking at now has incompatible handlers,
169 * one. Note: We only emit an entry if it has associated handlers.
180 currentHandlers = handlers;
267 * handlers.
271 * @param handlers {@code non-null;} the handlers for the rang
    [all...]
  /system/core/nexus/
LoopController.cpp 23 IControllerHandler *handlers) :
24 Controller("loop", propmngr, handlers) {
  /dalvik/dx/tests/088-ssa-combine-blocks/
info.txt 1 This is a test case for the identical-block combining algorithm, which runs after the SSA optimizer to recombine identical blocks (usually exception handlers) created during edge-splitting.
  /dalvik/vm/mterp/arm-vfp/
README.txt 1 Instruction handlers that take advantage of ARM VFP. These work with VFP
  /development/scripts/app_engine_server/
app.yaml 6 handlers:
  /frameworks/base/core/java/android/ddm/
DdmRegister.java 32 * Register handlers for all known chunk types.
38 * way so that the handlers can use Android classes with native calls
48 Log.v("ddm", "Registering DDM message handlers");
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 33 * List of exception handlers (tuples of covered range, catch type,
61 * length of the handlers header (encoded size), if known; used for
137 "too many catch handlers");
142 // Write out the handlers "header" consisting of its size in entries.
224 * Helper method to annotate or simply print the exception handlers.
250 CatchHandlerList handlers = entry.getHandlers(); local
253 String s2 = handlers.toHuman(subPrefix, "");
269 annotateTo.annotate(0, prefix + "handlers:");
299 * @param handlers {@code non-null;} handlers to annotat
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
app.yaml 6 handlers:
  /development/scripts/app_engine_server/gae_shell/
README 16 your app's source directory. Then, copy the URL handlers from app.yaml into
  /external/bluetooth/glib/gobject/
gsignal.h 336 /* --- signal handlers --- */
456 * @instance: The instance to remove handlers from.
457 * @func: The C closure callback of the handlers (useless for non-C closures).
458 * @data: The closure data of the handlers' closures.
460 * Disconnects all handlers on an instance that match @func and @data.
462 * Returns: The number of handlers that matched.
470 * @instance: The instance to block handlers from.
471 * @func: The C closure callback of the handlers (useless for non-C closures).
472 * @data: The closure data of the handlers' closures.
474 * Blocks all handlers on an instance that match @func and @data
    [all...]
  /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
__init__.py 49 user-written Web Socket handlers are placed.
54 To limit the search for Web Socket handlers to a directory <scan_dir>
63 (mod_pywebsocket is in /websock_lib, Web Socket handlers are in
72 Writing Web Socket handlers:

Completed in 411 milliseconds

1 2 3 4 5 6 7 8 91011>>