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

1234567891011>>

/external/chromium_org/media/filters/
H A Dfile_data_source_unittest.cc58 ReadCBHandler handler; local
59 EXPECT_CALL(handler, ReadCB(10));
61 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
66 EXPECT_CALL(handler, ReadCB(1));
68 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
71 EXPECT_CALL(handler, ReadCB(0));
73 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
75 EXPECT_CALL(handler, ReadCB(5));
77 &ReadCBHandler::ReadCB, base::Unretained(&handler)));
/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/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/jarjar/src/main/com/tonicsystems/jarjar/
H A DDepFind.java34 public void run(String from, String to, DepHandler handler) throws IOException { argument
56 handler.handleStart();
64 new DepFindVisitor(classes, entry.getSource(), handler),
75 handler.handleEnd();
/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 no error handler is installed the default is to print the error message
34 /// to stderr, and call exit(1). If an error handler is installed then it is
35 /// the handler's responsibility to log the message, it will no longer be
36 /// printed to stderr. If the error handler returns, then exit(1) will be
39 /// It is dangerous to naively use an error handler which throws an exception.
45 /// handler.
46 void install_fatal_error_handler(fatal_error_handler_t handler,
56 explicit ScopedFatalErrorHandler(fatal_error_handler_t handler, argument
[all...]
/external/ltrace/testsuite/ltrace.main/
H A Dsignals.c12 handler(int signum,siginfo_t *info,void *act) function
14 /* Trace printf in signal handler. */
34 act.sa_sigaction=handler;
/external/ltrace/testsuite/ltrace.torture/
H A Dsignals.c12 handler(int signum,siginfo_t *info,void *act) function
30 act.sa_sigaction=handler;
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DHandler.java33 * Information about an exception handler block.
40 * Beginning of the exception handler's scope (inclusive).
45 * End of the exception handler's scope (exclusive).
50 * Beginning of the exception handler's code.
52 Label handler; field in class:Handler
55 * Internal name of the type of exceptions handled by this handler, or
62 * handled by this handler, or 0 to catch any exceptions.
67 * Next exception handler block info.
/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/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DBuilderExceptionHandler.java41 @Nonnull protected final Label handler; field in class:BuilderExceptionHandler
43 private BuilderExceptionHandler(@Nonnull Label handler) { argument
44 this.handler = handler;
49 return handler;
53 @Nonnull Label handler) {
55 return newExceptionHandler(handler);
57 return new BuilderExceptionHandler(handler) {
63 return handler.getCodeAddress();
72 static BuilderExceptionHandler newExceptionHandler(@Nonnull Label handler) { argument
52 newExceptionHandler(@ullable final TypeReference exceptionType, @Nonnull Label handler) argument
84 newExceptionHandler(@ullable final String exceptionType, @Nonnull Label handler) argument
[all...]
/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.
62 /** The handler for the references found. */
67 * The thread executing this handler.
77 * @param handler the handler to pass the references to
79 public RefQueueWorker(ReferenceQueue<?> queue, RefQueueHandler handler) { argument
83 if (handler == null) {
88 refHandler = handler;
/external/apache-http/src/org/apache/http/impl/cookie/
H A DAbstractCookieSpec.java58 * Stores attribute name -> attribute handler mappings
71 final String name, final CookieAttributeHandler handler) {
75 if (handler == null) {
76 throw new IllegalArgumentException("Attribute handler may not be null");
78 this.attribHandlerMap.put(name, handler);
82 * Finds an attribute handler {@link CookieAttributeHandler} for the
83 * given attribute. Returns <tt>null</tt> if no attribute handler is
87 * @return an attribute handler or <tt>null</tt>
94 * Gets attribute handler {@link CookieAttributeHandler} for the
98 * @throws IllegalStateException if handler no
70 registerAttribHandler( final String name, final CookieAttributeHandler handler) argument
[all...]
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandlerRegistry.java64 public void register(final String pattern, final HttpRequestHandler handler) { argument
65 matcher.register(pattern, handler);
H A DUriPatternMatcher.java66 public void register(final String pattern, final Object handler) { argument
70 if (handler == null) {
73 this.handlerMap.put(pattern, handler);
102 Object handler = this.handlerMap.get(requestURI);
103 if (handler == null) {
113 handler = this.handlerMap.get(pattern);
119 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
H A DProcessorGlobalParamDecl.java40 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
47 StylesheetHandler handler, ElemTemplateElement elem)
52 handler.pushElemTemplateElement(elem);
61 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
67 StylesheetHandler handler, String uri, String localName, String rawName)
71 ElemParam v = (ElemParam) handler.getElemTemplateElement();
73 handler.getStylesheet().appendChild(v);
74 handler.getStylesheet().setParam(v);
75 super.endElement(handler, uri, localName, rawName);
46 appendAndPush( StylesheetHandler handler, ElemTemplateElement elem) argument
66 endElement( StylesheetHandler handler, String uri, String localName, String rawName) argument

Completed in 402 milliseconds

1234567891011>>