Searched defs:handler (Results 26 - 50 of 714) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/sync/
H A Dsync_policy_handler_unittest.cc20 SyncPolicyHandler handler; local
22 handler.ApplyPolicySettings(policy, &prefs);
33 SyncPolicyHandler handler; local
35 handler.ApplyPolicySettings(policy, &prefs);
48 SyncPolicyHandler handler; local
50 handler.ApplyPolicySettings(policy, &prefs);
/external/chromium_org/chrome/browser/ui/webui/help/
H A Dhelp_ui.cc39 HelpHandler* handler = new HelpHandler(); local
40 handler->GetLocalizedValues(source);
42 web_ui->AddMessageHandler(handler);
/external/chromium_org/content/browser/
H A Dbrowser_url_handler_impl_unittest.cc35 BrowserURLHandlerImpl handler; local
37 handler.AddHandlerPair(FooRewriter, BarRewriter);
42 handler.RewriteURLIfNecessary(&url, &browser_context, &reverse_on_redirect);
48 bool reversed = handler.ReverseURLRewrite(&url,
57 reversed = handler.ReverseURLRewrite(&url, original_url, &browser_context);
64 BrowserURLHandlerImpl handler; local
69 handler.AddHandlerPair(BrowserURLHandlerImpl::null_handler(), FooRewriter);
70 bool reversed = handler.ReverseURLRewrite(&url,
76 handler.AddHandlerPair(BrowserURLHandlerImpl::null_handler(), BarRewriter);
77 reversed = handler
[all...]
/external/chromium_org/media/filters/
H A Dfile_data_source_unittest.cc75 ReadCBHandler handler; local
76 EXPECT_CALL(handler, ReadCB(10));
78 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
83 EXPECT_CALL(handler, ReadCB(1));
85 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
88 EXPECT_CALL(handler, ReadCB(0));
90 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
92 EXPECT_CALL(handler, ReadCB(5));
94 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dioctl.h18 * ioctl to register an output handler with the tty node. Will fail
19 * with EALREADY if a handler is already registered. Expects an
20 * argument of type tioc_nacl_output. The handler will be called during
23 * handler should return the number of bytes written/handled, or -errno
39 tioc_nacl_output_handler_t handler; member in struct:tioc_nacl_output
/external/chromium_org/sync/internal_api/public/base/
H A Dcancelation_signal.cc20 bool CancelationSignal::TryRegisterHandler(CancelationObserver* handler) { argument
27 handler_ = handler;
31 void CancelationSignal::UnregisterHandler(CancelationObserver* handler) { argument
33 DCHECK_EQ(handler_, handler);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebUserGestureIndicator.cpp55 void setHandler(WebUserGestureHandler* handler) argument
57 m_handler = handler;
66 DEFINE_STATIC_LOCAL(WebUserGestureHandlerHolder, handler, ());
67 return &handler;
85 void WebUserGestureIndicator::setHandler(WebUserGestureHandler* handler) argument
87 gestureHandler()->setHandler(handler);
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/
H A Dtasm-options.h41 int (*handler) (char *cmd, /*@null@*/ char *param, int extra); member in struct:opt_option_s
42 int extra; /* extra value for handler */
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
H A Dyasm-options.h44 int (*handler) (char *cmd, /*@null@*/ char *param, int extra); member in struct:opt_option_s
45 int extra; /* extra value for handler */
/external/chromium_org/tools/deep_memory_profiler/
H A Ddmprof.py65 handler = logging.StreamHandler() variable
66 handler.setLevel(logging.INFO)
68 handler.setFormatter(formatter)
69 LOGGER.addHandler(handler)
/external/dropbear/
H A Dpacket.h40 void (*handler)(); member in struct:PacketType
/external/llvm/include/llvm/Support/
H A DErrorHandling.h25 /// An error handler callback.
30 /// install_fatal_error_handler - Installs a new error handler to be used
33 /// If you are using llvm_start_multithreaded, you should register the handler
36 /// If no error handler is installed the default is to print the error message
37 /// to stderr, and call exit(1). If an error handler is installed then it is
38 /// the handler's responsibility to log the message, it will no longer be
39 /// printed to stderr. If the error handler returns, then exit(1) will be
42 /// It is dangerous to naively use an error handler which throws an exception.
48 /// handler.
49 void install_fatal_error_handler(fatal_error_handler_t handler,
61 ScopedFatalErrorHandler(fatal_error_handler_t handler, void *user_data = 0) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMessenger.java16 private Handler handler; field in class:ShadowMessenger
18 public void __constructor__(Handler handler) { argument
19 this.handler = handler;
24 message.setTarget(handler);
/external/valgrind/main/none/tests/linux/
H A Dblockfault.c6 static void handler(int sig, siginfo_t *info, void *v) function
14 the default handler */
21 sa.sa_sigaction = handler;
/external/valgrind/main/none/tests/
H A Dpending.c18 static void handler(int sig) function
29 fprintf(stderr, "FAILED: signal delivered early (in handler)\n");
47 signal(SIGUSR1, handler);
48 signal(SIGHUP, handler);
H A Dsigstackgrowth.c12 It does this by getting into the signal handler, and then
13 recursively invoking the handler by sending itself the signal
18 further signals within the handler itself, else the kernel will
19 wait till the handler exits before delivering the next signal, the
24 handler.
31 static void handler(int sig) function
50 sa.sa_handler = handler;
H A Dsyscall-restart1.c11 static void handler(int s) function
37 sa.sa_handler = handler;
H A Dsyscall-restart2.c11 static void handler(int s) function
37 sa.sa_handler = handler;
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DRefQueueWorker.java48 * 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) { argument
78 if (handler == null) {
83 refHandler = handler;
/external/apache-http/src/org/apache/http/impl/cookie/
H A DAbstractCookieSpec.java53 * Stores attribute name -> attribute handler mappings
66 final String name, final CookieAttributeHandler handler) {
70 if (handler == null) {
71 throw new IllegalArgumentException("Attribute handler may not be null");
73 this.attribHandlerMap.put(name, handler);
77 * Finds an attribute handler {@link CookieAttributeHandler} for the
78 * given attribute. Returns <tt>null</tt> if no attribute handler is
82 * @return an attribute handler or <tt>null</tt>
89 * Gets attribute handler {@link CookieAttributeHandler} for the
93 * @throws IllegalStateException if handler no
65 registerAttribHandler( final String name, final CookieAttributeHandler handler) argument
[all...]
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandlerRegistry.java59 public void register(final String pattern, final HttpRequestHandler handler) { argument
60 matcher.register(pattern, handler);
H A DUriPatternMatcher.java61 public void register(final String pattern, final Object handler) { argument
65 if (handler == null) {
68 this.handlerMap.put(pattern, handler);
97 Object handler = this.handlerMap.get(requestURI);
98 if (handler == null) {
108 handler = this.handlerMap.get(pattern);
114 return handler;
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorAttributeSet.java42 * @param handler The calling StylesheetHandler/TemplatesBuilder.
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
67 eat.setLocaterInfo(handler.getLocator());
70 eat.setPrefixes(handler.getNamespaceSupport());
77 eat.setDOMBackPointer(handler.getOriginatingNode());
78 setPropertiesFromAttributes(handler, rawName, attributes, eat);
79 handler.getStylesheet().setAttributeSet(eat);
81 // handler.pushElemTemplateElement(eat);
82 ElemTemplateElement parent = handler.getElemTemplateElement();
85 handler
60 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
99 endElement( StylesheetHandler handler, String uri, String localName, String rawName) argument
[all...]
H A DProcessorDecimalFormat.java42 * @param handler The calling StylesheetHandler/TemplatesBuilder.
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
65 DecimalFormatProperties dfp = new DecimalFormatProperties(handler.nextUid());
67 dfp.setDOMBackPointer(handler.getOriginatingNode());
68 dfp.setLocaterInfo(handler.getLocator());
70 setPropertiesFromAttributes(handler, rawName, attributes, dfp);
71 handler.getStylesheet().setDecimalFormat(dfp);
73 handler.getStylesheet().appendChild(dfp);
60 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
H A DProcessorExsltFuncResult.java46 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
51 super.startElement(handler, uri, localName, rawName, attributes);
52 ElemTemplateElement ancestor = handler.getElemTemplateElement().getParentElem();
60 handler.error(msg, new SAXException(msg));
67 handler.error(msg, new SAXException(msg));
45 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument

Completed in 3053 milliseconds

1234567891011>>