HomeSort by relevance Sort by last modified time
    Searched defs:Handler (Results 1 - 25 of 379) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
Handler.java 50 interface Handler {
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Handler.java 50 interface Handler {
  /device/linaro/bootloader/edk2/StdLib/LibC/Signal/
Signal.c 22 /** The signal function associates a "signal handler" with a signal number.
31 is called a signal handler.
70 If a signal handler is called, the raise function shall not return until
71 after the signal handler does.
79 __sighandler_t *Handler;
84 Handler = gMD->sigarray[sig];
86 if(Handler == SIG_DFL) {
89 else if( Handler != SIG_IGN) {
90 Handler( sig );
  /external/owasp/sanitizer/src/main/org/owasp/html/
Handler.java 38 public interface Handler<T> {
42 /** A handler that does nothing given any input. */
43 public static final Handler<Object> DO_NOTHING = new Handler<Object>() {
50 * A handler that re-raises an error, wrapping it in a runtime exception if
53 public static final Handler<Throwable> PROPAGATE = new Handler<Throwable>() {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVTypeDumper.h 31 TypeServerHandler *Handler = nullptr)
32 : TypeDB(TypeDB), Handler(Handler) {}
55 TypeServerHandler *Handler;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVTypeDumper.h 31 TypeServerHandler *Handler = nullptr)
32 : TypeDB(TypeDB), Handler(Handler) {}
55 TypeServerHandler *Handler;
  /art/test/676-proxy-jit-at-first-use/src/
Main.java 25 new Handler());
34 class Handler implements InvocationHandler {
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
ShellDynamicCommand.h 36 This is the shell command handler function pointer callback type. This
58 This is the command help handler function pointer callback type. This
78 SHELL_COMMAND_HANDLER Handler;
  /external/annotation-tools/asmx/src/org/objectweb/asm/
Handler.java 33 * Information about an exception handler block.
37 class Handler {
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.
69 Handler next
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/test_protocol/
Handler.java 25 public class Handler extends URLStreamHandler {
  /external/autotest/client/cros/update_engine/
nano_omaha_devserver.py 31 class Handler(BaseHTTPServer.BaseHTTPRequestHandler):
74 """Handler for POST requests."""
110 self._httpd = BaseHTTPServer.HTTPServer(('127.0.0.1', 0), self.Handler)
  /libcore/luni/src/test/java/libcore/java/net/customstreamhandler/http/
Handler.java 26 * test to be effective, its name must be "Handler" and parent package name must
29 public final class Handler extends URLStreamHandler {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/test_protocol/
Handler.java 25 public class Handler extends URLStreamHandler {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
triegen.go 76 func (c *normCompacter) Handler() string {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
triegen.go 76 func (c *normCompacter) Handler() string {
  /external/annotation-tools/asmx/core/org/objectweb/asm/
Handler.class 
  /libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
Handler.java 37 public class Handler extends java.net.URLStreamHandler {
  /prebuilts/go/darwin-x86/src/net/http/cgi/
host.go 46 // Handler runs an executable in a subprocess with a CGI environment.
47 type Handler struct {
49 Root string // root URI prefix of handler or empty for "/"
63 // PathLocationHandler specifies the root http Handler that
71 PathLocationHandler http.Handler
74 func (h *Handler) stderr() io.Writer {
83 // cgi.Handler{
106 func (h *Handler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
341 func (h *Handler) printf(format string, v ...interface{}) {
349 func (h *Handler) handleInternalRedirect(rw http.ResponseWriter, req *http.Request, path string)
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/pprof/
pprof.go 217 // Handler returns an HTTP handler that serves the named profile.
218 func Handler(name string) http.Handler {
219 return handler(name)
222 type handler string type
224 func (name handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
248 handler(name).ServeHTTP(w, r)
  /prebuilts/go/linux-x86/src/net/http/cgi/
host.go 46 // Handler runs an executable in a subprocess with a CGI environment.
47 type Handler struct {
49 Root string // root URI prefix of handler or empty for "/"
63 // PathLocationHandler specifies the root http Handler that
71 PathLocationHandler http.Handler
74 func (h *Handler) stderr() io.Writer {
83 // cgi.Handler{
106 func (h *Handler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
341 func (h *Handler) printf(format string, v ...interface{}) {
349 func (h *Handler) handleInternalRedirect(rw http.ResponseWriter, req *http.Request, path string)
    [all...]
  /prebuilts/go/linux-x86/src/net/http/pprof/
pprof.go 217 // Handler returns an HTTP handler that serves the named profile.
218 func Handler(name string) http.Handler {
219 return handler(name)
222 type handler string type
224 func (name handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
248 handler(name).ServeHTTP(w, r)
  /external/google-breakpad/src/processor/
cfi_frame_info.h 139 // to use a parser/handler pattern for this, as it's not a likely
145 class Handler {
147 Handler() { }
148 virtual ~Handler() { }
158 // Construct a parser which feeds its results to HANDLER.
159 CFIRuleParser(Handler *handler) : handler_(handler) { }
171 // The handler to which the parser reports its findings.
172 Handler *handler_
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/QemuVideoDxe/
VbeShim.c 2 Install a fake VGABIOS service handler (real mode Int10h) for the buggy
5 The handler is never meant to be directly executed by a VCPU; it's there for
47 handler routine in the C segment. Point the real-mode Int10h interrupt vector
48 to the handler. The only advertised mode is 1024x768x32.
94 EFI_PHYSICAL_ADDRESS Handler;
97 // Check if a video BIOS handler has been installed previously -- we
101 Handler = (Int0x10->Segment << 4) + Int0x10->Offset;
102 if (Handler >= SegmentC && Handler < SegmentF) {
103 DEBUG ((EFI_D_INFO, "%a: Video BIOS handler found at %04x:%04x\n",
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
FrameReader.java 28 boolean nextFrame(Handler handler) throws IOException;
30 interface Handler {
  /libcore/ojluni/src/main/java/sun/net/www/protocol/file/
Handler.java 43 public class Handler extends URLStreamHandler {

Completed in 853 milliseconds

1 2 3 4 5 6 7 8 91011>>