/aosp_15_r20/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 …]
|
/aosp_15_r20/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 …]
|
/aosp_15_r20/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 …]
|
/aosp_15_r20/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 …]
|
/aosp_15_r20/external/pigweed/pw_target_runner/go/ |
H A D | server.go | 41 type Server struct { struct 42 grpcServer *grpc.Server 43 listener net.Listener 44 tasksPassed uint32 45 tasksFailed uint32 46 startTime time.Time 47 active bool 48 workerPool *WorkerPool 64 func (s *Server) Bind(port int) error { 74 func (s *Server) RegisterWorker(worker DeviceRunner) { [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/transport/server/ |
D | mod.rs | 81 pub struct Server<L = Identity> { struct 101 impl Default for Server<Identity> { argument 136 impl Server { impl 147 impl<L> Server<L> { impl 736 impl<L> fmt::Debug for Server<L> { implementation
|
/aosp_15_r20/external/boringssl/src/util/fipstools/acvp/acvptool/acvp/ |
H A D | acvp.go | 38 type Server struct { struct 42 PrefixTokens map[string]string 46 SizeLimit uint64 48 AccessToken string 50 client *http.Client 51 prefix string 52 totpFunc func() string 246 func (server *Server) getToken(endPoint string) (string, error) { 275 func (server *Server) Login() error { 367 …rver *Server) newRequestWithToken(method, endpoint string, body io.Reader) (*http.Request, error) { [all …]
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/util/fipstools/acvp/acvptool/acvp/ |
H A D | acvp.go | 38 type Server struct { struct 42 PrefixTokens map[string]string 46 SizeLimit uint64 48 AccessToken string 50 client *http.Client 51 prefix string 52 totpFunc func() string 246 func (server *Server) getToken(endPoint string) (string, error) { 275 func (server *Server) Login() error { 367 …rver *Server) newRequestWithToken(method, endpoint string, body io.Reader) (*http.Request, error) { [all …]
|
/aosp_15_r20/external/grpc-grpc/doc/ |
H A D | interop-test-descriptions.md | 1272 Server section in Interoperability Test Case Descriptions 1294 ### EmptyCall 1299 ### UnaryCall 1307 ### CacheableUnaryCall 1320 ### CompressedResponse 1327 ### CompressedRequest 1335 ### StreamingInputCall 1342 ### StreamingOutputCall 1351 ### FullDuplexCall 1361 ### Echo Status [all …]
|
/aosp_15_r20/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) {
|
/aosp_15_r20/external/federated-compute/fcp/demo/ |
H A D | README.md | 186 #### `server.py` 194 #### `eligibility_eval_tasks.py` 203 #### `task_assignments.py` 210 #### `aggregations.py` 223 #### `media.py` 232 #### `http_actions.py` 238 #### `plan_utils.py`
|
/aosp_15_r20/tools/treble/hacksaw/bind/ |
H A D | remoteserver.go | 18 type Server struct { struct 19 priv PathBinder 40 func (s Server) BindReadOnly(args *BindReadOnlyArgs, reply *BindReadOnlyReply) error { 59 func (s Server) BindReadWrite(args *BindReadWriteArgs, reply *BindReadWriteReply) error { 77 func (s Server) Unbind(args *UnbindArgs, reply *UnbindReply) error { 95 func (s Server) List(args *ListArgs, reply *ListReply) error {
|
/aosp_15_r20/external/rust/crates/openssl/src/ssl/test/ |
D | server.rs | 7 pub struct Server { struct 12 impl Drop for Server { argument 20 impl Server { impl 77 pub fn build(self) -> Server { in build()
|
/aosp_15_r20/external/rust/android-crates-io/crates/hyper/src/server/ |
D | server.rs | 57 impl<I> Server<I, ()> { impl 72 impl Server<AddrIncoming, ()> { implementation 102 impl<S, E> Server<AddrIncoming, S, E> { impl 110 impl<I, IO, IE, S, E, B> Server<I, S, E> implementation 212 impl<I, IO, IE, S, B, E> Future for Server<I, S, E> implementation 231 impl<I: fmt::Debug, S: fmt::Debug> fmt::Debug for Server<I, S> { implementation
|
D | server_stub.rs | 8 pub struct Server<I, S, E = Exec> { struct 12 impl<I: fmt::Debug, S: fmt::Debug> fmt::Debug for Server<I, S> { argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio/src/ |
D | server.rs | 249 pub fn build(self) -> Result<Server> { in build() 376 pub struct Server { struct 378 core: Arc<ServerCore>, argument 380 checkers: Vec<Box<dyn ServerChecker>>, argument 383 impl Server { implementation 479 impl Drop for Server { implementation 493 impl Debug for Server { implementation
|
/aosp_15_r20/external/grpc-grpc/src/php/ext/grpc/ |
H A D | server.c | 67 PHP_METHOD(Server, __construct) { in PHP_METHOD() argument 98 PHP_METHOD(Server, requestCall) { in PHP_METHOD() argument 154 PHP_METHOD(Server, addHttp2Port) { in PHP_METHOD() argument 179 PHP_METHOD(Server, addSecureHttp2Port) { in PHP_METHOD() argument 205 PHP_METHOD(Server, start) { in PHP_METHOD() argument
|
/aosp_15_r20/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
|
/aosp_15_r20/external/rust/android-crates-io/crates/p9/src/server/ |
D | tests.rs | 188 fn check_attr(server: &mut Server, fid: u32, md: &fs::Metadata) { in check_attr() 227 fn check_content(server: &mut Server, content: &[u8], fid: u32) { in check_content() 241 server: &mut Server, in walk() 271 server: &mut Server, in open() 290 fn write<P: AsRef<Path>>(server: &mut Server, dir: P, name: &str, fid: u32, flags: u32) { in write() 325 server: &mut Server, in create() 387 fn readdir(server: &mut Server, fid: u32) -> Readdir { in readdir() 399 fn setup<P: AsRef<Path>>(name: P) -> (ScopedPath<OsString>, Server) { in setup() argument 967 fn setup_simple_lock(flags: u32) -> Server { in setup_simple_lock()
|
/aosp_15_r20/external/pigweed/pw_rpc/raw/public/pw_rpc/raw/ |
H A D | server_reader_writer.h | 113 friend class Server; variable 167 friend class Server; variable 219 friend class Server; variable 281 friend class Server; variable
|
/aosp_15_r20/external/llvm-libc/libc/shared/ |
H A D | rpc.h | 373 struct Server { struct 376 RPC_INLINE Server &operator=(const Server &) = delete; argument 379 RPC_INLINE Server(uint32_t port_count, void *buffer) in Server() function 382 using Port = rpc::Port<true>; 387 RPC_INLINE static uint64_t allocation_size(uint32_t lane_size, in allocation_size()
|
/aosp_15_r20/external/boringssl/src/util/fipstools/acvp/acvptool/ |
H A D | acvp.go | 137 func loadCachedSessionTokens(server *acvp.Server, cachePath string) error { 294 func getVectorsWithRetry(server *acvp.Server, url string) (out acvp.Vectors, vectorsBytes []byte, e… 318 func uploadResult(server *acvp.Server, setURL string, resultData []byte) error { 433 func getResultsWithRetry(server *acvp.Server, url string) (bool, error) {
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/util/fipstools/acvp/acvptool/ |
H A D | acvp.go | 137 func loadCachedSessionTokens(server *acvp.Server, cachePath string) error { 294 func getVectorsWithRetry(server *acvp.Server, url string) (out acvp.Vectors, vectorsBytes []byte, e… 318 func uploadResult(server *acvp.Server, setURL string, resultData []byte) error { 433 func getResultsWithRetry(server *acvp.Server, url string) (bool, error) {
|
/aosp_15_r20/external/pigweed/pw_rpc/nanopb/public/pw_rpc/nanopb/ |
H A D | server_reader_writer.h | 214 friend class Server; variable 280 friend class Server; variable 353 friend class Server; variable 412 friend class Server; variable
|
/aosp_15_r20/external/pigweed/pw_rpc/pwpb/public/pw_rpc/pwpb/ |
H A D | server_reader_writer.h | 278 friend class Server; variable 354 friend class Server; variable 430 friend class Server; variable 499 friend class Server; variable
|