Home
last modified time | relevance | path

Searched refs:create_server (Results 1 – 25 of 31) sorted by relevance

12

/external/ltp/testcases/kernel/syscalls/sendfile/
Dsendfile05.c73 int create_server(void);
87 out_fd = create_server(); in do_sendfile()
173 int create_server(void) in create_server() function
Dsendfile06.c58 static int create_server(void);
72 out_fd = create_server(); in do_sendfile()
152 static int create_server(void) in create_server() function
Dsendfile02.c79 int create_server(void);
106 out_fd = create_server(); in do_sendfile()
211 int create_server(void) in create_server() function
Dsendfile04.c78 int create_server(void);
113 out_fd = create_server(); in do_sendfile()
208 int create_server(void) in create_server() function
/external/autotest/client/site_tests/platform_TLSDateActual/
Dplatform_TLSDateActual.py94 def create_server(ip,port): function
150 create_server(self.ip, self.port)
/external/grpc-grpc/test/core/end2end/fixtures/
Dproxy.h29 grpc_server* (*create_server)(const char* port, member
Dproxy.cc102 proxy->server = def->create_server(proxy->proxy_port, server_args); in grpc_end2end_proxy_create()
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_base_events.py1120 coro = self.loop.create_server(MyProto, sock=sock)
1126 coro = self.loop.create_server(
1139 coro = self.loop.create_server(lambda: None, sock=sock)
1484 fut = self.loop.create_server(MyProto, '', 0)
1489 fut = self.loop.create_server(
1494 fut = self.loop.create_server(MyProto)
1502 f = self.loop.create_server(MyProto, 'python.org', 0)
1511 f = self.loop.create_server(
1522 f = self.loop.create_server(
1539 fut = self.loop.create_server(MyProto, '0.0.0.0', 0)
[all …]
Dtest_events.py888 f = self.loop.create_server(lambda: MyProto(self.loop), hosts, 80)
904 f = self.loop.create_server(lambda: proto, '0.0.0.0', 0)
941 f = self.loop.create_server(
954 f = self.loop.create_server(
1021 f = self.loop.create_server(factory, '127.0.0.1', 0, ssl=sslcontext)
1252 f = self.loop.create_server(TestMyProto, sock=sock_ob)
1270 f = self.loop.create_server(MyProto, sock=sock_ob)
1275 f = self.loop.create_server(MyProto, host=host, port=port)
1295 f = self.loop.create_server(TestMyProto, host=None, port=port)
1324 f = self.loop.create_server(MyProto, '0.0.0.0', 0)
[all …]
Dtest_sslproto.py494 server = await self.loop.create_server(
Dtest_proactor_events.py929 server = self.run_loop(self.loop.create_server(
/external/clang/tools/scan-view/bin/
Dscan-view75 httpd = ScanView.create_server((options.host, port),
/external/python/cpython3/Doc/library/
Dasyncio.rst50 provide asynchronous APIs for :meth:`networking <loop.create_server>`,
Dasyncio-eventloop.rst75 event loop methods like :meth:`loop.create_server`;
521 .. coroutinemethod:: loop.create_server(protocol_factory, \
616 Similar to :meth:`loop.create_server` but works with the
624 See the documentation of the :meth:`loop.create_server` method
715 :meth:`~loop.create_server` and
721 upgraded (like the one created by :meth:`~loop.create_server`).
767 such as :meth:`loop.create_connection` and :meth:`loop.create_server`
857 :meth:`loop.create_server` and :func:`start_server`.
1296 Server objects are created by :meth:`loop.create_server`,
1309 srv = await loop.create_server(...)
[all …]
Dasyncio-stream.rst98 :meth:`loop.create_server`.
372 example uses the :meth:`loop.create_server` method.
Dasyncio-protocol.rst122 :meth:`loop.create_server`, :meth:`loop.sendfile`, etc.
528 Event methods, such as :meth:`loop.create_server`,
714 Create a TCP echo server using the :meth:`loop.create_server` method, send back
742 server = await loop.create_server(
Dasyncio-llapi-index.rst152 * - ``await`` :meth:`loop.create_server`
/external/python/cpython3/Lib/asyncio/
Devents.py311 async def create_server( member in AbstractEventLoop
Dstreams.py114 return await loop.create_server(factory, host, port, **kwds)
/external/grpc-grpc/src/python/grpcio/grpc/
D__init__.py1663 return _server.create_server(thread_pool, ()
D_server.py835 def create_server(thread_pool, generic_rpc_handlers, interceptors, options, function
/external/clang/tools/scan-view/share/
DScanView.py759 def create_server(address, options, root): function
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b1.rst317 loop.create_server() and loop.create_unix_server().
/external/python/cpython3/Doc/whatsnew/
D3.7.rst701 :meth:`loop.create_server() <asyncio.loop.create_server>` and
710 srv = await loop.create_server(...)
732 :meth:`loop.create_server() <asyncio.loop.create_server>`,
D3.5.rst837 * The :meth:`loop.create_server() <asyncio.loop.create_server>`
860 and :meth:`loop.create_server() <asyncio.loop.create_server>`

12