/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-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
CVTypeDumper.h | 31 TypeServerHandler *Handler = nullptr) 32 : TypeDB(TypeDB), Handler(Handler) {} 55 TypeServerHandler *Handler;
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
CVTypeDumper.h | 31 TypeServerHandler *Handler = nullptr) 32 : TypeDB(TypeDB), Handler(Handler) {} 55 TypeServerHandler *Handler;
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
CVTypeDumper.h | 31 TypeServerHandler *Handler = nullptr) 32 : TypeDB(TypeDB), Handler(Handler) {} 55 TypeServerHandler *Handler;
|
/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-3957855/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-3960126/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-3977809/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;
|
/device/linaro/bootloader/edk2/ShellPkg/Include/Protocol/ |
EfiShellDynamicCommand.h | 37 This is the shell command handler function pointer callback type. This
59 This is the command help handler function pointer callback type. This
79 SHELL_COMMAND_HANDLER Handler;
|
/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 {
|
/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/autotest/client/site_tests/autoupdate_CannedOmahaUpdate/ |
autoupdate_CannedOmahaUpdate.py | 23 class Handler(BaseHTTPServer.BaseHTTPRequestHandler): 56 """Handler for POST requests.""" 82 self._httpd = BaseHTTPServer.HTTPServer(('127.0.0.1', 0), self.Handler)
|
/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 | 189 // Handler returns an HTTP handler that serves the named profile. 190 func Handler(name string) http.Handler { 191 return handler(name) 194 type handler string type 196 func (name handler) ServeHTTP(w http.ResponseWriter, r *http.Request) { 221 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 | 189 // Handler returns an HTTP handler that serves the named profile. 190 func Handler(name string) http.Handler { 191 return handler(name) 194 type handler string type 196 func (name handler) ServeHTTP(w http.ResponseWriter, r *http.Request) { 221 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_VERBOSE, "%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 {
|