Searched defs:handler (Results 251 - 275 of 365) sorted by relevance

<<1112131415

/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM2.java3168 protected final void copyTextNode(final int nodeID, SerializationHandler handler) argument
3174 m_chars.sendSAXcharacters(handler,
3178 m_chars.sendSAXcharacters(handler, m_data.elementAt(-dataIndex),
3189 * @param handler The SerializationHandler
3193 SerializationHandler handler)
3201 handler.startElement(name);
3208 handler.startElement(name);
3209 handler.namespaceAfterStartElement(EMPTY_STR, uri);
3219 handler.startElement(qName);
3228 handler
3192 copyElement(int nodeID, int exptype, SerializationHandler handler) argument
3242 copyNS(final int nodeID, SerializationHandler handler, boolean inScope) argument
3326 copyAttributes(final int nodeID, SerializationHandler handler) argument
3344 copyAttribute(int nodeID, int exptype, SerializationHandler handler) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java1213 UserDataHandler handler) {
1214 return getOwnerDocument().setUserData( key, data, handler);
1211 setUserData(String key, Object data, UserDataHandler handler) argument
/external/chromium/base/
H A Dlogging.cc109 // An assert handler override specified by the client to be called instead of
112 // An report handler override specified by the client to be called instead of
115 // A log message handler that gets notified of every log message we process.
435 void SetLogAssertHandler(LogAssertHandlerFunction handler) { argument
436 log_assert_handler = handler;
439 void SetLogReportHandler(LogReportHandlerFunction handler) { argument
440 log_report_handler = handler;
443 void SetLogMessageHandler(LogMessageHandlerFunction handler) { argument
444 log_message_handler = handler;
569 // Give any log message handler firs
[all...]
H A Dprocess_util_posix.cc61 // Catching this signal would involve installing a signal handler which may
70 // usleep() is speced to exit if a signal is received for which a handler
680 sig_t handler = reinterpret_cast<sig_t>(&StackDumpSignalHandler); local
681 success &= (signal(SIGILL, handler) != SIG_ERR);
682 success &= (signal(SIGABRT, handler) != SIG_ERR);
683 success &= (signal(SIGFPE, handler) != SIG_ERR);
684 success &= (signal(SIGBUS, handler) != SIG_ERR);
685 success &= (signal(SIGSEGV, handler) != SIG_ERR);
686 success &= (signal(SIGSYS, handler) != SIG_ERR);
/external/chromium/chrome/browser/automation/
H A Dautomation_provider.cc212 LoginHandler* handler) {
213 login_handler_map_[tab] = handler;
211 AddLoginHandler(NavigationController* tab, LoginHandler* handler) argument
/external/chromium/chrome/browser/ui/webui/chromeos/
H A Dimageburner_ui.cc126 explicit ImageBurnTaskProxy(const base::WeakPtr<ImageBurnHandler>& handler) argument
127 : handler_(handler) {}
815 ImageBurnHandler* handler = new ImageBurnHandler(contents); local
816 AddMessageHandler((handler)->Attach(this));
H A Dmobile_setup_ui.cc154 // The handler for Javascript messages related to the "register" view.
196 TaskProxy(const base::WeakPtr<MobileSetupHandler>& handler, int delay) argument
197 : handler_(handler), delay_(delay) {
199 TaskProxy(const base::WeakPtr<MobileSetupHandler>& handler, argument
201 : handler_(handler), status_(status) {
306 // Internal handler state.
1325 MobileSetupHandler* handler = new MobileSetupHandler(service_path); local
1326 AddMessageHandler((handler)->Attach(this));
1327 handler->Init(contents);
/external/chromium/chrome/browser/ui/webui/options/
H A Dextension_settings_handler.cc205 ExtensionsDOMHandler::IconLoader::IconLoader(ExtensionsDOMHandler* handler) argument
206 : handler_(handler) {
904 ExtensionsDOMHandler* handler = new ExtensionsDOMHandler(exstension_service); local
905 AddMessageHandler(handler);
906 handler->Attach(this);
/external/chromium/net/http/
H A Dhttp_auth_handler_ntlm_portable.cc729 scoped_ptr<HttpAuthHandler>* handler) {
739 handler->swap(tmp_handler);
722 CreateAuthHandler( HttpAuth::ChallengeTokenizer* challenge, HttpAuth::Target target, const GURL& origin, CreateReason reason, int digest_nonce_count, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
/external/chromium/third_party/libjingle/source/talk/base/
H A Dphysicalsocketserver.cc619 // This is called directly from our real signal handler, so it must be
620 // signal-handler-safe. That means it cannot assume anything about the
621 // user-level state of the process, since the handler could be executed at any
634 // nothing we can safely do from a signal handler.
683 // These are boolean flags that will be set in our signal handler and read
685 // benign. The signal handler sets the flag before signaling the pipe, so
688 // possible that the second time the handler may set the flag while it's still
732 // the same time as we unset our handler for it. It is not an error
734 LOG(LS_INFO) << "Received signal with no handler: " << signum;
736 // Otherwise, execute our handler
1386 SetPosixSignalHandler(int signum, void (*handler)(int)) argument
1412 InstallSignal(int signum, void (*handler)(int)) argument
[all...]
/external/icu4c/io/
H A Duprntf_p.c75 * 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, argument
188 return handler->write(context, PERCENT, 1);
193 u_printf_string_handler(const u_printf_stream_handler *handler, argument
232 written = handler->pad_and_justify(context, info, s, len);
243 u_printf_char_handler(const u_printf_stream_handler *handler, argument
265 written = handler
271 u_printf_double_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
347 u_printf_integer_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
413 u_printf_hex_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
448 u_printf_octal_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
482 u_printf_uinteger_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
535 u_printf_pointer_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
551 u_printf_scientific_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
671 u_printf_percent_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
746 u_printf_ustring_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
774 u_printf_uchar_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
794 u_printf_scidbl_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
853 u_printf_count_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
869 u_printf_spellout_handler(const u_printf_stream_handler *handler, void *context, ULocaleBundle *formatBundle, const u_printf_spec_info *info, const ufmt_args *args) argument
1218 u_printf_handler *handler; local
[all...]
H A Duscanf_p.c281 * A u_scanf handler function.
282 * A u_scanf handler is responsible for handling a single u_scanf
305 u_scanf_handler handler; member in struct:u_scanf_info
1312 u_scanf_handler handler; local
1375 /* call the handler function */
1376 handler = g_u_scanf_infos[ handlerNum ].handler;
1377 if(handler != 0) {
1382 cpConsumed += (*handler)(f, &spec.fInfo, &args, alias, &count, &argConsumed);
1384 /* if the handler encountere
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DBytecode.java287 int handler, CtClass type) {
288 addExceptionHandler(start, end, handler,
298 int handler, String type) {
299 addExceptionHandler(start, end, handler,
307 int handler, int type) {
308 tryblocks.add(start, end, handler, type);
286 addExceptionHandler(int start, int end, int handler, CtClass type) argument
297 addExceptionHandler(int start, int end, int handler, String type) argument
306 addExceptionHandler(int start, int end, int handler, int type) argument
/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java41 * forwarded and then <code>invoke()</code> is called on the method handler
43 * the interfaces are also forwarded to the method handler.
78 * it, and sets the method handler of the instance:
85 * <p>To change the method handler during runtime,
89 * MethodHandler mi = ... ; // alternative handler
94 * employ the default handler which proceeds by invoking the original method.
95 * The behaviour of the default handler is identical to the following
96 * handler:
116 * used to specify a default handler which newly created proxy classes should install
120 * clients to set the handler o
156 private MethodHandler handler; // retained for legacy usage field in class:ProxyFactory
[all...]
/external/libmtp/src/
H A Dlibusb-glue.c808 unsigned long size, PTPDataHandler *handler,void *data,
879 int putfunc_ret = handler->putfunc(NULL, handler->priv, result, bytes, &written);
932 PTPDataHandler *handler,
958 int getfunc_ret = handler->getfunc(NULL, handler->priv,towrite,bytes,&towrite);
1022 /* memory data get/put handler */
1063 ptp_init_recv_memory_handler(PTPDataHandler *handler) { argument
1066 handler->priv = priv;
1067 handler
807 ptp_read_func( unsigned long size, PTPDataHandler *handler,void *data, unsigned long *readbytes, int readzero ) argument
930 ptp_write_func( unsigned long size, PTPDataHandler *handler, void *data, unsigned long *written ) argument
1079 ptp_init_send_memory_handler(PTPDataHandler *handler, unsigned char *data, unsigned long len ) argument
1097 ptp_exit_send_memory_handler(PTPDataHandler *handler) argument
1106 ptp_exit_recv_memory_handler(PTPDataHandler *handler, unsigned char **data, unsigned long *size ) argument
1259 ptp_usb_getdata(PTPParams* params, PTPContainer* ptp, PTPDataHandler *handler) argument
[all...]
/external/libpcap/
H A Dpcap-dos.c201 * Poll the receiver queue and call the pcap callback-handler
286 * e.g. SIGINT handler, exit loop now.
395 * device (pkt_rx1.s or 32-bit device interrupt handler).
703 static void setup_signals (void (*handler)(int)) argument
705 signal (SIGSEGV,handler);
706 signal (SIGILL, handler);
707 signal (SIGFPE, handler);
783 * set in it's probe handler), initialise near-memory ring-buffer for
1317 * get_rxbuf() routine (in locked code) is called from IRQ handler
1355 * Simple ring-buffer queue handler fo
[all...]
/external/libxml2/
H A Dglobals.c363 * Default SAX version1 handler for XML, builds the DOM tree
414 * Default old SAX v1 handler for HTML, builds the DOM tree
452 * Default old SAX v1 handler for SGML DocBook, builds the DOM tree
573 xmlThrDefSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler) { argument
576 if (handler != NULL)
577 xmlGenericErrorThrDef = handler;
584 xmlThrDefSetStructuredErrorFunc(void *ctx, xmlStructuredErrorFunc handler) { argument
587 xmlStructuredErrorThrDef = handler;
H A Dxmlsave.c80 xmlCharEncodingHandlerPtr handler; member in struct:_xmlSaveCtxt
388 ret->handler = xmlFindCharEncodingHandler(encoding);
389 if (ret->handler == NULL) {
1712 ret->buf = xmlOutputBufferCreateFd(fd, ret->handler);
1740 ret->buf = xmlOutputBufferCreateFilename(filename, ret->handler,
1766 xmlCharEncodingHandlerPtr handler; local
1772 handler = xmlFindCharEncodingHandler(encoding);
1773 if (handler == NULL) {
1778 handler = NULL;
1779 out_buff = xmlOutputBufferCreateBuffer(buffer, handler);
2388 xmlCharEncodingHandlerPtr handler = NULL; local
2531 xmlCharEncodingHandlerPtr handler = NULL; local
[all...]
/external/libxslt/libxslt/
H A Dxsltutils.c508 * Default handler for out of context error messages.
529 * @handler: the new handler function
531 * Function to reset the handler and the error context for out of
533 * This simply means that @handler will be called for subsequent
535 * be passed as first argument to @handler
537 * stderr by setting @ctx to this file handle and @handler to NULL.
540 xsltSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler) { argument
542 if (handler != NULL)
543 xsltGenericError = handler;
586 xsltSetGenericDebugFunc(void *ctx, xmlGenericErrorFunc handler) argument
678 xsltSetTransformErrorFunc(xsltTransformContextPtr ctxt, void *ctx, xmlGenericErrorFunc handler) argument
1365 xsltSetSortFunc(xsltSortFunc handler) argument
1383 xsltSetCtxtSortFunc(xsltTransformContextPtr ctxt, xsltSortFunc handler) argument
2170 xsltHandleDebuggerCallback handler; member in struct:_xsltDebuggerCallbacks
[all...]
/external/linux-tools-perf/util/
H A Dsession.c329 static void perf_event_ops__fill_defaults(struct perf_event_ops *handler) argument
331 if (handler->sample == NULL)
332 handler->sample = process_event_sample_stub;
333 if (handler->mmap == NULL)
334 handler->mmap = process_event_stub;
335 if (handler->comm == NULL)
336 handler->comm = process_event_stub;
337 if (handler->fork == NULL)
338 handler->fork = process_event_stub;
339 if (handler
[all...]
/external/openssh/
H A Dmux.c176 int (*handler)(u_int, Channel *, Buffer *, Buffer *); member in struct:__anon9654
1011 for (i = 0; mux_master_handlers[i].handler != NULL; i++) {
1013 ret = mux_master_handlers[i].handler(rid, c, &in, &out);
1017 if (mux_master_handlers[i].handler == NULL) {
1260 /* Exit signal handler */
1268 * Relay signal handler - used to pass some signals from mux client to
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DParser.java111 "http://xml.org/sax/features/lexical-handler/parameter-entities";
256 "http://xml.org/sax/properties/lexical-handler";
374 throw new SAXNotSupportedException("Your lexical handler is not a LexicalHandler");
414 public void setDTDHandler (DTDHandler handler) { argument
415 theDTDHandler = (handler == null) ? this : handler;
422 public void setContentHandler (ContentHandler handler) { argument
423 theContentHandler = (handler == null) ? this : handler;
430 public void setErrorHandler (ErrorHandler handler) { argument
[all...]
/external/valgrind/main/coregrind/
H A Dm_signals.c318 unsigned long handler;
532 client's handler */
580 or ptr to our handler */
616 VG_(printf)("sig %d: handler %p, flags 0x%x\n", sig,
626 handler = if client has a handler, then our handler
627 else if client is DFL, then our handler as well
663 only set a handler if the client has set a signal handler
1628 SCSS_Per_Signal *handler = &scss.scss_per_sig[sigNo]; local
[all...]
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp678 // Calculate an exception handler vPC, unwinding call frames as necessary.
679 HandlerInfo* handler = 0; local
680 while (isInterrupt || !(handler = codeBlock->handlerForBytecodeOffset(bytecodeOffset))) {
702 // Unwind the scope chain within the exception handler's call frame.
707 scopeDelta = depth(codeBlock, scopeChain) - handler->scopeDepth;
713 return handler;
1448 HandlerInfo* handler = 0;
4588 and usually forms the beginning of an exception handler.
4605 exception handler or a native code boundary is found, and
4606 then control resumes at the exception handler i
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/radius/
H A Dradius_client.c36 RadiusRxResult (*handler)(struct radius_msg *msg, member in struct:radius_rx_handler
108 RadiusRxResult (*handler)(struct radius_msg *msg,
131 newh[*num].handler = handler;
611 res = handlers[i].handler(msg, req->msg, req->shared_secret,
626 /* continue with next handler */
636 HOSTAPD_LEVEL_DEBUG, "No RADIUS RX handler found "

Completed in 573 milliseconds

<<1112131415