Searched defs:Connection (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/test/CodeGen/
H A D2002-03-12-StructInitialize.c8 } Connection; typedef in typeref:struct:Connection_Type
10 Connection link[3]
H A D2002-03-12-StructInitializer.c12 } Connection; typedef in typeref:struct:Connection_Type
14 Connection link[3]
/external/libbrillo/brillo/http/
H A Dhttp_connection.h25 // Connection class is the base class for HTTP communication session.
27 // When the Connection-derived class is constructed, it is pre-set up with
43 class BRILLO_EXPORT Connection class in namespace:brillo::http
44 : public std::enable_shared_from_this<Connection> {
46 explicit Connection(const std::shared_ptr<Transport>& transport) function in class:brillo::http::Connection
48 virtual ~Connection() = default;
97 // connection exists. But some implementations of Connection could use
102 DISALLOW_COPY_AND_ASSIGN(Connection);
H A Dhttp_connection_fake.h20 // This is a fake implementation of http::Connection for unit testing.
21 class Connection : public http::Connection { class in namespace:brillo::http::fake
23 Connection(const std::string& url,
26 ~Connection() override;
28 // Overrides from http::Connection.
55 DISALLOW_COPY_AND_ASSIGN(Connection);
H A Dhttp_connection_fake.cc18 Connection::Connection(const std::string& url, function in class:brillo::http::fake::Connection
21 : http::Connection(transport), request_(url, method) {
22 VLOG(1) << "fake::Connection created: " << method;
25 Connection::~Connection() {
26 VLOG(1) << "fake::Connection destroyed";
29 bool Connection::SendHeaders(const HeaderList& headers,
35 bool Connection::SetRequestData(StreamPtr stream,
41 bool Connection
[all...]
H A Dhttp_connection_curl.h22 // This is a libcurl-based implementation of http::Connection.
23 class BRILLO_EXPORT Connection : public http::Connection { class in namespace:brillo::http::curl
25 Connection(CURL* curl_handle,
29 ~Connection() override;
31 // Overrides from http::Connection.
96 DISALLOW_COPY_AND_ASSIGN(Connection);
H A Dhttp_connection_curl.cc53 Connection::Connection(CURL* curl_handle, function in class:brillo::http::curl::Connection
57 : http::Connection(transport),
64 VLOG(2) << "curl::Connection created: " << method_;
67 Connection::~Connection() {
71 VLOG(2) << "curl::Connection destroyed";
74 bool Connection::SendHeaders(const HeaderList& headers,
80 bool Connection::SetRequestData(StreamPtr stream,
86 void Connection
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DConnection.java45 * <h3>Connection Reuse</h3>
66 public interface Connection { interface
/external/python/cpython2/Lib/multiprocessing/dummy/
H A Dconnection.py49 return Connection(*self._backlog_queue.get())
60 return Connection(_in, _out)
65 return Connection(a, b), Connection(b, a)
68 class Connection(object): class in inherits:object
/external/python/cpython3/Lib/multiprocessing/dummy/
H A Dconnection.py24 return Connection(*self._backlog_queue.get())
41 return Connection(_in, _out)
46 return Connection(a, b), Connection(b, a)
49 class Connection(object): class in inherits:object
/external/webrtc/webrtc/base/
H A Dhttpserver.h80 class Connection : private IHttpNotify { class in class:rtc::HttpServer
82 Connection(int connection_id, HttpServer* server);
83 ~Connection() override;
103 Connection* Find(int connection_id);
106 friend class Connection;
107 typedef std::map<int,Connection*> ConnectionMap;
H A Dhttpserver.cc48 Connection* connection = new Connection(connection_id, this);
57 if (Connection* connection = Find(connection_id)) {
68 if (Connection* connection = Find(connection_id)) {
80 std::list<Connection*> connections;
85 for (std::list<Connection*>::const_iterator it = connections.begin();
91 HttpServer::Connection*
106 Connection* connection = it->second;
117 // HttpServer::Connection
120 HttpServer::Connection function in class:rtc::HttpServer::Connection
[all...]
/external/apache-http/android/src/android/net/http/
H A DConnection.java39 abstract class Connection { class
101 protected Connection(Context context, HttpHost host, method in class:Connection
119 static Connection getConnection(
147 "Connection.cancel(): connection closed " + mHost);
327 "Connection.clearPipe(): clearing pipe " + pipe.size());
396 HttpLog.v("Connection.openHttpConnection() " +
532 // Check for 'Connection' directive
/external/llvm/include/llvm/CodeGen/
H A DScheduleDFS.h93 struct Connection { struct in class:llvm::SchedDFSResult
97 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {} function in struct:llvm::SchedDFSResult::Connection
110 std::vector<SmallVector<Connection, 4> > SubtreeConnections;
/external/python/cpython2/Lib/multiprocessing/
H A Dforking.py190 from _multiprocessing import win32, Connection, PipeConnection namespace
421 # Make (Pipe)Connection picklable
433 ForkingPickler.register(Connection, reduce_connection)
/external/python/cpython2/Lib/sqlite3/test/
H A Dregression.py184 class Connection(sqlite.Connection): class in function:RegressionTests.CheckConnectionConstructorCallCheck
188 con = Connection(":memory:")
202 class Connection(sqlite.Connection): class in function:RegressionTests.CheckCursorRegistration
210 con = Connection(":memory:")
333 Connection.commit() did reset cursors, which made sqlite3
/external/python/cpython3/Lib/sqlite3/test/
H A Dregression.py204 class Connection(sqlite.Connection): class in function:RegressionTests.CheckConnectionConstructorCallCheck
208 con = Connection(":memory:")
217 class Connection(sqlite.Connection): class in function:RegressionTests.CheckCursorRegistration
225 con = Connection(":memory:")
350 Connection.commit() did reset cursors, which made sqlite3
/external/python/cpython3/Lib/multiprocessing/
H A Dconnection.py111 # Connection classes
270 Connection class based on a Windows named pipe.
348 class Connection(_ConnectionBase): class in inherits:_ConnectionBase
350 Connection class based on an arbitrary file descriptor (Unix only), or
449 Returns a `Connection` object.
509 c1 = Connection(s1.detach())
510 c2 = Connection(s2.detach())
513 c1 = Connection(fd1, writable=False)
514 c2 = Connection(fd2, readable=False)
595 return Connection(
[all...]
/external/webrtc/webrtc/p2p/base/
H A Dport.cc32 const std::vector<cricket::Connection::SentPing>& pings_since_last_response,
49 const std::vector<cricket::Connection::SentPing>& pings_since_last_response,
205 std::vector<Connection*> list;
217 Connection* Port::GetConnection(const rtc::SocketAddress& remote_addr) {
264 void Port::AddConnection(Connection* conn) {
580 Connection* conn = GetConnection(addr);
642 void Port::OnConnectionDestroyed(Connection* conn) {
671 explicit ConnectionRequest(Connection* connection)
702 // in Connection will be set to false by default. Once the connection
757 Connection* connection
764 Connection::Connection(Port* port, function in class:cricket::Connection
[all...]
H A Dport.h35 class Connection;
215 typedef std::map<rtc::SocketAddress, Connection*> AddressMap;
219 virtual Connection* GetConnection(
223 sigslot::signal2<Port*, Connection*> SignalConnectionCreated;
292 // Called when the Connection discovers a local peer reflexive candidate.
320 void AddConnection(Connection* conn);
352 void OnConnectionDestroyed(Connection* conn);
398 friend class Connection;
403 class Connection : public rtc::MessageHandler, class in namespace:cricket
422 virtual ~Connection();
[all...]
/external/libmicrohttpd/src/testspdy/
H A Dtest_new_connection.c107 struct Connection { struct
228 struct Connection *connection;
230 connection = (struct Connection*)user_data;
260 struct Connection *connection;
262 connection = (struct Connection*)user_data;
576 static void ctl_poll(struct pollfd *pollfd, struct Connection *connection)
594 static void submit_request(struct Connection *connection, struct Request *req)
619 static void exec_io(struct Connection *connection)
660 struct Connection connection;
718 die("Connection erro
[all...]
H A Dtest_notls.c86 struct Connection { struct
207 struct Connection *connection;
209 connection = (struct Connection*)user_data;
248 struct Connection *connection;
250 connection = (struct Connection*)user_data;
528 static void ctl_poll(struct pollfd *pollfd, struct Connection *connection)
546 static void submit_request(struct Connection *connection, struct Request *req)
571 static void exec_io(struct Connection *connection)
610 struct Connection connection;
656 die("Connection erro
[all...]
H A Dtest_request_response.c89 struct Connection { struct
210 struct Connection *connection;
212 connection = (struct Connection*)user_data;
242 struct Connection *connection;
244 connection = (struct Connection*)user_data;
564 static void ctl_poll(struct pollfd *pollfd, struct Connection *connection)
582 static void submit_request(struct Connection *connection, struct Request *req)
607 static void exec_io(struct Connection *connection)
648 struct Connection connection;
706 die("Connection erro
[all...]
/external/pdfium/xfa/fxfa/
H A Dfxfa_basic.h437 Connection, member in class:XFA_Attribute
/external/guice/extensions/struts2/lib/
H A Djetty-6.1.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/mortbay/jetty/ org/mortbay/jetty/webapp/ ...

Completed in 697 milliseconds

12