Searched defs:server (Results 1 - 25 of 222) sorted by relevance

123456789

/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/pulse/
H A Dbrowser.h41 PA_BROWSE_NEW_SERVER = 0, /**< New server found */
67 /** Information about a sink/source/server found with Zeroconf */
71 const char *server; /**< Server name; always available */ member in struct:pa_browse_info
73 const char *user_name; /**< User name of the server process; optional */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
H A Dbrowser.h41 PA_BROWSE_NEW_SERVER = 0, /**< New server found */
67 /** Information about a sink/source/server found with Zeroconf */
71 const char *server; /**< Server name; always available */ member in struct:pa_browse_info
73 const char *user_name; /**< User name of the server process; optional */
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_docxmlrpc.py14 # the server created in setUp blocks expecting one to come in.
26 def server(evt, numrequests): function
37 "This is an XML-RPC server's documentation, but the server "
73 # Enable server feedback
77 threading.Thread(target=server, args=(self.evt, 1)).start()
92 # Disable server feedback
132 """Test that the server correctly automatically wraps references to
170 '&nbsp;server.</tt></dd></dl>\n <dl><dt><a name="-system.methodHelp">'
184 '&nbsp;result.<br>\n&nbsp;<br>\nThis&nbsp;server
[all...]
H A Dtest_telnetlib.py14 def server(evt, serv, dataq=None): function
15 """ Open a tcp server in three steps
50 self.thread = threading.Thread(target=server, args=(self.evt,self.sock))
101 self.thread = threading.Thread(target=server, args=(self.evt,self.sock, self.dataq))
391 self.thread = threading.Thread(target=server, args=(self.evt,self.sock,
H A Dtest_poplib.py20 # the dummy data returned by server when LIST and RETR commands are issued
39 self.push('+OK dummy pop3 server ready.')
163 self.server = DummyPOP3Server((HOST, 0))
164 self.server.start()
165 self.client = poplib.POP3(self.server.host, self.server.port)
169 self.server.stop()
172 self.assertEqual(self.client.getwelcome(), '+OK dummy pop3 server ready.')
242 self.push('+OK dummy pop3 server ready.')
270 self.server
295 def server(self, evt, serv): member in class:TestTimeouts
[all...]
H A Dtest_smtplib.py21 def server(evt, buf, serv): function
53 self.thread = threading.Thread(target=server, args=servargs)
105 # Test server thread using the specified SMTP server class
120 # set client_evt, and it's then ok to kill the server
143 # test server times out, causing the test to fail.
166 # wait until server thread has assigned a port number
173 # wait for the server thread to terminate
279 self.thread = threading.Thread(target=server, args=servargs)
315 # Simulated SMTP channel & server
[all...]
H A Dtest_ftplib.py24 # the dummy data returned by server over the data channel when
404 self.server = DummyFTPServer((HOST, 0))
405 self.server.start()
407 self.client.connect(self.server.host, self.server.port)
411 self.server.stop()
459 self.server.handler.next_response = '200'
464 self.server.handler.next_response = '199'
508 self.assertEqual(self.server.handler.last_received_data, RETR_DATA)
520 self.assertEqual(self.server
681 def server(self, evt, serv): member in class:TestTimeouts
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_docxmlrpc.py14 # the server created in setUp blocks expecting one to come in.
26 def server(evt, numrequests): function
37 "This is an XML-RPC server's documentation, but the server "
73 # Enable server feedback
77 threading.Thread(target=server, args=(self.evt, 1)).start()
92 # Disable server feedback
132 """Test that the server correctly automatically wraps references to
170 '&nbsp;server.</tt></dd></dl>\n <dl><dt><a name="-system.methodHelp">'
184 '&nbsp;result.<br>\n&nbsp;<br>\nThis&nbsp;server
[all...]
H A Dtest_telnetlib.py14 def server(evt, serv, dataq=None): function
15 """ Open a tcp server in three steps
50 self.thread = threading.Thread(target=server, args=(self.evt,self.sock))
101 self.thread = threading.Thread(target=server, args=(self.evt,self.sock, self.dataq))
391 self.thread = threading.Thread(target=server, args=(self.evt,self.sock,
H A Dtest_poplib.py20 # the dummy data returned by server when LIST and RETR commands are issued
39 self.push('+OK dummy pop3 server ready.')
163 self.server = DummyPOP3Server((HOST, 0))
164 self.server.start()
165 self.client = poplib.POP3(self.server.host, self.server.port)
169 self.server.stop()
172 self.assertEqual(self.client.getwelcome(), '+OK dummy pop3 server ready.')
242 self.push('+OK dummy pop3 server ready.')
270 self.server
295 def server(self, evt, serv): member in class:TestTimeouts
[all...]
H A Dtest_smtplib.py21 def server(evt, buf, serv): function
53 self.thread = threading.Thread(target=server, args=servargs)
105 # Test server thread using the specified SMTP server class
120 # set client_evt, and it's then ok to kill the server
143 # test server times out, causing the test to fail.
166 # wait until server thread has assigned a port number
173 # wait for the server thread to terminate
279 self.thread = threading.Thread(target=server, args=servargs)
315 # Simulated SMTP channel & server
[all...]
H A Dtest_ftplib.py24 # the dummy data returned by server over the data channel when
404 self.server = DummyFTPServer((HOST, 0))
405 self.server.start()
407 self.client.connect(self.server.host, self.server.port)
411 self.server.stop()
459 self.server.handler.next_response = '200'
464 self.server.handler.next_response = '199'
508 self.assertEqual(self.server.handler.last_received_data, RETR_DATA)
520 self.assertEqual(self.server
681 def server(self, evt, serv): member in class:TestTimeouts
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A DSimpleXMLRPCServer.py4 by creating a server and either installing functions, a
15 server = SimpleXMLRPCServer(("localhost", 8000))
16 server.register_function(pow)
17 server.register_function(lambda x,y: x+y, 'add')
18 server.serve_forever()
36 server = SimpleXMLRPCServer(("localhost", 8000))
37 server.register_introspection_functions()
38 server.register_instance(MyFuncs())
39 server.serve_forever()
67 server
704 server = SimpleXMLRPCServer(("localhost", 8000)) variable in class:CGIXMLRPCRequestHandler
[all...]
H A Dsmtplib.py69 """Not connected to any SMTP server.
71 This exception is raised when the server unexpectedly disconnects,
73 connecting it to a server.
80 server returns an error code. The error code is stored in the
117 """The SMTP server didn't accept the data."""
123 """The server refused our HELO reply."""
128 Most probably the server didn't accept the username/password
198 """This class manages a connection to an SMTP or ESMTP server.
202 This is the message given by the server in response to the
206 This is the message given by the server i
855 server = SMTP('localhost') variable
[all...]
H A Dxmlrpclib.py108 ServerProxy Represents a logical connection to an XML-RPC server
120 Transport Handles an HTTP transaction to an XML-RPC server
121 SafeTransport Handles an HTTPS transaction to an XML-RPC server
229 # transport layer, if the server returns an error code other than 200
964 """server -> a object used to boxcar method calls
966 server should be a ServerProxy object.
980 def __init__(self, server):
981 self.__server = server
1216 # some magic to bind an XML-RPC method to an RPC server.
1233 """Handles an HTTP transaction to an XML-RPC server
1623 server = ServerProxy("http://time.xmlrpc.com/RPC2") variable
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A DSimpleXMLRPCServer.py4 by creating a server and either installing functions, a
15 server = SimpleXMLRPCServer(("localhost", 8000))
16 server.register_function(pow)
17 server.register_function(lambda x,y: x+y, 'add')
18 server.serve_forever()
36 server = SimpleXMLRPCServer(("localhost", 8000))
37 server.register_introspection_functions()
38 server.register_instance(MyFuncs())
39 server.serve_forever()
67 server
704 server = SimpleXMLRPCServer(("localhost", 8000)) variable in class:CGIXMLRPCRequestHandler
[all...]
H A Dsmtplib.py69 """Not connected to any SMTP server.
71 This exception is raised when the server unexpectedly disconnects,
73 connecting it to a server.
80 server returns an error code. The error code is stored in the
117 """The SMTP server didn't accept the data."""
123 """The server refused our HELO reply."""
128 Most probably the server didn't accept the username/password
198 """This class manages a connection to an SMTP or ESMTP server.
202 This is the message given by the server in response to the
206 This is the message given by the server i
855 server = SMTP('localhost') variable
[all...]
H A Dxmlrpclib.py108 ServerProxy Represents a logical connection to an XML-RPC server
120 Transport Handles an HTTP transaction to an XML-RPC server
121 SafeTransport Handles an HTTPS transaction to an XML-RPC server
229 # transport layer, if the server returns an error code other than 200
964 """server -> a object used to boxcar method calls
966 server should be a ServerProxy object.
980 def __init__(self, server):
981 self.__server = server
1216 # some magic to bind an XML-RPC method to an RPC server.
1233 """Handles an HTTP transaction to an XML-RPC server
1623 server = ServerProxy("http://time.xmlrpc.com/RPC2") variable
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
H A Desd.h21 /* default port for the EsounD server */
24 /* default sample rate for the EsounD server */
51 ESD_PROTO_SAMPLE_CACHE, /* cache a sample in the server */
52 ESD_PROTO_SAMPLE_FREE, /* release a sample in the server */
67 ESD_PROTO_SERVER_INFO, /* get server info (ver, sample rate, format) */
68 ESD_PROTO_ALL_INFO, /* get all info (server info, players, samples) */
77 ESD_PROTO_STANDBY_MODE, /* see if server is in standby, autostandby, etc */
130 /* server = listen socket (localhost:5001, 192.168.168.0:9999 */
161 /* cache a sample in the server returns sample id, < 0 = error */
169 /* uncache a sample in the server */
210 esd_server_info_t *server; /* the server that contains this stream */ member in struct:esd_player_info
225 esd_server_info_t *server; /* the server that contains this sample */ member in struct:esd_sample_info
240 esd_server_info_t *server; member in struct:esd_info
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
H A Desd.h21 /* default port for the EsounD server */
24 /* default sample rate for the EsounD server */
51 ESD_PROTO_SAMPLE_CACHE, /* cache a sample in the server */
52 ESD_PROTO_SAMPLE_FREE, /* release a sample in the server */
67 ESD_PROTO_SERVER_INFO, /* get server info (ver, sample rate, format) */
68 ESD_PROTO_ALL_INFO, /* get all info (server info, players, samples) */
77 ESD_PROTO_STANDBY_MODE, /* see if server is in standby, autostandby, etc */
130 /* server = listen socket (localhost:5001, 192.168.168.0:9999 */
161 /* cache a sample in the server returns sample id, < 0 = error */
169 /* uncache a sample in the server */
210 esd_server_info_t *server; /* the server that contains this stream */ member in struct:esd_player_info
225 esd_server_info_t *server; /* the server that contains this sample */ member in struct:esd_sample_info
240 esd_server_info_t *server; member in struct:esd_info
[all...]
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
H A Dmaven-settings-3.2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/maven/ org/apache/maven/settings/ ...
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
H A Dnfs_xdr.h91 const struct nfs_server *server; member in struct:nfs_openargs
103 const struct nfs_server *server; member in struct:nfs_openres
131 const struct nfs_server *server; member in struct:nfs_closeres
185 const struct nfs_server *server; member in struct:nfs4_delegreturnres
223 const struct nfs_server *server; member in struct:nfs_writeres
268 const struct nfs_server * server; member in struct:nfs_setattrargs
288 const struct nfs_server * server; member in struct:nfs_setattrres
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
H A Dnfs_xdr.h91 const struct nfs_server *server; member in struct:nfs_openargs
103 const struct nfs_server *server; member in struct:nfs_openres
131 const struct nfs_server *server; member in struct:nfs_closeres
185 const struct nfs_server *server; member in struct:nfs4_delegreturnres
223 const struct nfs_server *server; member in struct:nfs_writeres
268 const struct nfs_server * server; member in struct:nfs_setattrargs
288 const struct nfs_server * server; member in struct:nfs_setattrres
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
H A Dnfs_xdr.h91 const struct nfs_server *server; member in struct:nfs_openargs
103 const struct nfs_server *server; member in struct:nfs_openres
131 const struct nfs_server *server; member in struct:nfs_closeres
185 const struct nfs_server *server; member in struct:nfs4_delegreturnres
223 const struct nfs_server *server; member in struct:nfs_writeres
268 const struct nfs_server * server; member in struct:nfs_setattrargs
288 const struct nfs_server * server; member in struct:nfs_setattrres
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
H A Dnfs_xdr.h91 const struct nfs_server *server; member in struct:nfs_openargs
103 const struct nfs_server *server; member in struct:nfs_openres
131 const struct nfs_server *server; member in struct:nfs_closeres
185 const struct nfs_server *server; member in struct:nfs4_delegreturnres
223 const struct nfs_server *server; member in struct:nfs_writeres
268 const struct nfs_server * server; member in struct:nfs_setattrargs
288 const struct nfs_server * server; member in struct:nfs_setattrres

Completed in 1653 milliseconds

123456789