Home
last modified time | relevance | path

Searched defs:Server (Results 1 – 25 of 60) sorted by relevance

123

/prebuilts/go/linux-x86/src/net/http/httptest/
Dserver.go26 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/
Dvcweb.go55 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/
Dvcstest.go32 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/
Dserver.go187 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 …]
Ddebug.go69 *Server anonMember
/prebuilts/go/linux-x86/src/go/internal/gccgoimporter/testdata/
Dissue29198.go27 type Server struct { struct
28 FooServer *FooServer
29 user string
30 ctx context.Context
/prebuilts/go/linux-x86/src/net/http/
Dserver.go2880 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 …]
Dalpn_test.go107 func handleTLSProtocol09(srv *Server, conn *tls.Conn, h Handler) {
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/mod/sumdb/
Dserver.go40 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/
DHTTPServer.h27 class Server; variable
101 std::unique_ptr<httplib::Server> Server; variable
DDebuginfod.h156 HTTPServer Server; member
/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/Debuginfod/
DHTTPServer.h27 class Server; variable
101 std::unique_ptr<httplib::Server> Server; variable
DDebuginfod.h142 HTTPServer Server; member
/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Debuginfod/
DHTTPServer.h27 class Server; variable
101 std::unique_ptr<httplib::Server> Server; variable
DDebuginfod.h156 HTTPServer Server; member
/prebuilts/clang/host/linux-x86/clang-r547379/include/llvm/Debuginfod/
DHTTPServer.h27 class Server; variable
101 std::unique_ptr<httplib::Server> Server; variable
DDebuginfod.h156 HTTPServer Server; member
/prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
DServer.java56 public abstract class Server { class
65 Server(int port, int backlog, in Server() method in Server
/prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
DServer.java56 public abstract class Server { class
65 Server(int port, int backlog, in Server() method in Server
/prebuilts/go/linux-x86/test/fixedbugs/
Dissue33355.go38 type Server struct { struct
39 gateway *srvGateway
/prebuilts/rust/linux-musl-x86/1.82.0/lib/rustlib/src/rust/library/proc_macro/src/bridge/
Dserver.rs110 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/
Dserver.rs110 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/
Dserver.rs110 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/
Dserver.rs110 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/
Dscript_test.go210 func scriptEnv(srv *vcstest.Server, srvCertFile string) ([]string, error) {

123