/prebuilts/go/linux-x86/src/net/http/httptest/ |
D | server.go | 26 type Server struct { struct 27 URL string // base URL of form http://ipaddr:port with no trailing slash 28 Listener net.Listener 33 EnableHTTP2 bool 38 TLS *tls.Config 42 Config *http.Server 45 certificate *x509.Certificate 49 wg sync.WaitGroup 51 mu sync.Mutex // guards closed and conns 52 closed bool [all …]
|
/prebuilts/go/linux-x86/src/cmd/go/internal/vcweb/ |
D | vcweb.go | 55 type Server struct { struct 56 env []string 57 logger *log.Logger 59 scriptDir string 60 workDir string 61 homeDir string // $workdir/home 62 engine *script.Engine 64 scriptCache sync.Map // script path → *scriptResult 66 vcsHandlers map[string]vcsHandler 159 func (s *Server) Close() error { [all …]
|
/prebuilts/go/linux-x86/src/cmd/go/internal/vcweb/vcstest/ |
D | vcstest.go | 32 type Server struct { struct 33 vcweb *vcweb.Server 34 workDir string 35 HTTP *httptest.Server 36 HTTPS *httptest.Server 118 func (srv *Server) Close() error { 135 func (srv *Server) WriteCertificateFile() (string, error) {
|
/prebuilts/go/linux-x86/src/net/rpc/ |
D | server.go | 187 type Server struct { struct 188 serviceMap sync.Map // map[string]*service 189 reqLock sync.Mutex // protects freeReq 190 freeReq *Request 191 respLock sync.Mutex // protects freeResp 192 freeResp *Response 224 func (server *Server) Register(rcvr any) error { 230 func (server *Server) RegisterName(name string, rcvr any) error { 238 func (server *Server) register(rcvr any, name string, useName bool) error { 347 …ver) sendResponse(sending *sync.Mutex, req *Request, reply any, codec ServerCodec, errmsg string) { [all …]
|
D | debug.go | 69 *Server anonMember
|
/prebuilts/go/linux-x86/src/go/internal/gccgoimporter/testdata/ |
D | issue29198.go | 27 type Server struct { struct 28 FooServer *FooServer 29 user string 30 ctx context.Context
|
/prebuilts/go/linux-x86/src/net/http/ |
D | server.go | 2880 type Server struct { struct 2885 Addr string 2887 Handler Handler // handler to invoke, http.DefaultServeMux if nil 2891 DisableGeneralOptionsHandler bool 2900 TLSConfig *tls.Config 2910 ReadTimeout time.Duration 2918 ReadHeaderTimeout time.Duration 2925 WriteTimeout time.Duration 2931 IdleTimeout time.Duration 2938 MaxHeaderBytes int [all …]
|
D | alpn_test.go | 107 func handleTLSProtocol09(srv *Server, conn *tls.Conn, h Handler) {
|
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/mod/sumdb/ |
D | server.go | 40 type Server struct { struct 54 // for _, path := range sumdb.ServerPaths { 65 func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Debuginfod/ |
D | HTTPServer.h | 27 class Server; variable 101 std::unique_ptr<httplib::Server> Server; variable
|
D | Debuginfod.h | 156 HTTPServer Server; member
|
/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/Debuginfod/ |
D | HTTPServer.h | 27 class Server; variable 101 std::unique_ptr<httplib::Server> Server; variable
|
D | Debuginfod.h | 142 HTTPServer Server; member
|
/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Debuginfod/ |
D | HTTPServer.h | 27 class Server; variable 101 std::unique_ptr<httplib::Server> Server; variable
|
D | Debuginfod.h | 156 HTTPServer Server; member
|
/prebuilts/clang/host/linux-x86/clang-r547379/include/llvm/Debuginfod/ |
D | HTTPServer.h | 27 class Server; variable 101 std::unique_ptr<httplib::Server> Server; variable
|
D | Debuginfod.h | 156 HTTPServer Server; member
|
/prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/ |
D | Server.java | 56 public abstract class Server { class 65 Server(int port, int backlog, in Server() method in Server
|
/prebuilts/jdk/jdk8/linux-x86/sample/nio/server/ |
D | Server.java | 56 public abstract class Server { class 65 Server(int port, int backlog, in Server() method in Server
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
D | issue33355.go | 38 type Server struct { struct 39 gateway *srvGateway
|
/prebuilts/rust/linux-musl-x86/1.82.0/lib/rustlib/src/rust/library/proc_macro/src/bridge/ |
D | server.rs | 110 pub trait Server: Types $(+ $name)* { trait 367 S: Server, in run_server() 400 S: Server, in run() 426 S: Server, in run()
|
/prebuilts/rust/linux-x86/1.82.0/lib/rustlib/src/rust/library/proc_macro/src/bridge/ |
D | server.rs | 110 pub trait Server: Types $(+ $name)* { trait 367 S: Server, in run_server() 400 S: Server, in run() 426 S: Server, in run()
|
/prebuilts/rust/linux-musl-x86/1.83.0/lib/rustlib/src/rust/library/proc_macro/src/bridge/ |
D | server.rs | 110 pub trait Server: Types $(+ $name)* { trait 367 S: Server, in run_server() 400 S: Server, in run() 426 S: Server, in run()
|
/prebuilts/rust/linux-x86/1.83.0/lib/rustlib/src/rust/library/proc_macro/src/bridge/ |
D | server.rs | 110 pub trait Server: Types $(+ $name)* { trait 367 S: Server, in run_server() 400 S: Server, in run() 426 S: Server, in run()
|
/prebuilts/go/linux-x86/src/cmd/go/ |
D | script_test.go | 210 func scriptEnv(srv *vcstest.Server, srvCertFile string) ([]string, error) {
|