/third_party/nghttp2/src/ |
H A D | shrpx_connection.cc | 56 Connection::Connection(struct ev_loop *loop, int fd, SSL *ssl, in Connection() function in shrpx::Connection 97 Connection::~Connection() { disconnect(); } in ~Connection() 99 void Connection::disconnect() { in disconnect() 150 void Connection::prepare_client_handshake() { in prepare_client_handshake() 156 void Connection::prepare_server_handshake() { in prepare_server_handshake() 176 auto conn = static_cast<Connection *>(BIO_get_data(b)); in shrpx_bio_write() 217 auto conn = static_cast<Connection *>(BIO_get_data(b)); in shrpx_bio_read() 323 void Connection [all...] |
H A D | shrpx_rate_limit.h | 36 struct Connection; 43 Connection *conn = nullptr); 59 Connection *conn_;
|
H A D | shrpx_connection.h | 101 struct Connection { struct 102 Connection(struct ev_loop *loop, int fd, SSL *ssl, MemchunkPool *mcpool, 108 ~Connection(); 167 // This must be the first member of Connection. 194 static_assert(std::is_standard_layout<Connection>::value,
|
H A D | shrpx_client_handler.h | 185 Connection *get_connection(); 206 Connection conn_;
|
H A D | shrpx_memcached_connection.cc | 43 auto conn = static_cast<Connection *>(w->data); in timeoutcb() 60 auto conn = static_cast<Connection *>(w->data); in readcb() 72 auto conn = static_cast<Connection *>(w->data); in writecb() 84 auto conn = static_cast<Connection *>(w->data); in connectcb()
|
H A D | shrpx_http_downstream_connection.cc | 52 auto conn = static_cast<Connection *>(w->data); in timeoutcb() 127 auto conn = static_cast<Connection *>(w->data); in connect_timeoutcb() 152 auto conn = static_cast<Connection *>(w->data); in readcb() 173 auto conn = static_cast<Connection *>(w->data); in writecb() 193 auto conn = static_cast<Connection *>(w->data); in connectcb() 581 buf->append("Connection: "); in push_request_headers() 593 buf->append("Connection: close\r\n"); in push_request_headers() 835 auto conn = static_cast<Connection *>(w->data); in idle_readcb() 848 auto conn = static_cast<Connection *>(w->data); in idle_timeoutcb()
|
/third_party/python/Lib/multiprocessing/dummy/ |
H A D | connection.py | 24 return Connection(*self._backlog_queue.get()) 43 return Connection(_in, _out) 48 return Connection(a, b), Connection(b, a) 51 class Connection(object): class
|
/third_party/nghttp2/examples/ |
H A D | client.c | 79 struct Connection { struct 164 struct Connection *connection; in send_callback() 169 connection = (struct Connection *)user_data; in send_callback() 194 struct Connection *connection; in recv_callback() 199 connection = (struct Connection *)user_data; in recv_callback() 463 static void ctl_poll(struct pollfd *pollfd, struct Connection *connection) { in ctl_poll() 480 static void submit_request(struct Connection *connection, struct Request *req) { in submit_request() 504 static void exec_io(struct Connection *connection) { in exec_io() 539 struct Connection connection; in fetch_uri() 612 die("Connection erro in fetch_uri() [all...] |
/third_party/skia/third_party/externals/microhttpd/src/testspdy/ |
H A D | test_new_connection.c | 107 struct Connection { struct 228 struct Connection *connection; in send_callback() 230 connection = (struct Connection*)user_data; in send_callback() 260 struct Connection *connection; in recv_callback() 262 connection = (struct Connection*)user_data; in recv_callback() 576 static void ctl_poll(struct pollfd *pollfd, struct Connection *connection) in ctl_poll() 594 static void submit_request(struct Connection *connection, struct Request *req) in submit_request() 619 static void exec_io(struct Connection *connection) in exec_io() 660 struct Connection connection; in fetch_uri() 718 die("Connection erro in fetch_uri() [all...] |
H A D | test_notls.c | 86 struct Connection { struct 207 struct Connection *connection; in send_callback() 209 connection = (struct Connection*)user_data; in send_callback() 248 struct Connection *connection; in recv_callback() 250 connection = (struct Connection*)user_data; in recv_callback() 528 static void ctl_poll(struct pollfd *pollfd, struct Connection *connection) in ctl_poll() 546 static void submit_request(struct Connection *connection, struct Request *req) in submit_request() 571 static void exec_io(struct Connection *connection) in exec_io() 610 struct Connection connection; in fetch_uri() 656 die("Connection erro in fetch_uri() [all...] |
H A D | test_request_response.c | 89 struct Connection { struct 210 struct Connection *connection; in send_callback() 212 connection = (struct Connection*)user_data; in send_callback() 242 struct Connection *connection; in recv_callback() 244 connection = (struct Connection*)user_data; in recv_callback() 564 static void ctl_poll(struct pollfd *pollfd, struct Connection *connection) in ctl_poll() 582 static void submit_request(struct Connection *connection, struct Request *req) in submit_request() 607 static void exec_io(struct Connection *connection) in exec_io() 648 struct Connection connection; in fetch_uri() 706 die("Connection erro in fetch_uri() [all...] |
/third_party/node/test/parallel/ |
H A D | test-http-autoselectfamily.js | 68 res.writeHead(200, { Connection: 'close' }); 104 res.writeHead(200, { Connection: 'close' }); 109 res.writeHead(200, { Connection: 'close' });
|
H A D | test-http-keep-alive-pipeline-max-requests.js | 12 assert.match(headers, /Connection: close\r\n/m); 16 assert.match(headers, /Connection: keep-alive\r\n/m); 24 socket.write('Connection: keep-alive\r\n'); 77 assert.match(responseParts[6], /Connection: close\r\n/m);
|
H A D | test-https-autoselectfamily.js | 83 res.writeHead(200, { Connection: 'close' }); 121 res.writeHead(200, { Connection: 'close' }); 127 res.writeHead(200, { Connection: 'close' });
|
H A D | test-http-keep-alive-max-requests.js | 12 assert.match(headers, /Connection: close\r\n/m); 16 assert.match(headers, /Connection: keep-alive\r\n/m); 25 socket.write('Connection: keep-alive\r\n'); 32 socket.write('Connection: keep-alive\r\n');
|
H A D | test-http-chunked-304.js | 59 // Connection: close should be in the response 60 assert.match(resp, /^Connection: close\r\n$/m);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | ScheduleDFS.h | 92 struct Connection { struct in llvm::SchedDFSResult 96 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {} in Connection() function 109 std::vector<SmallVector<Connection, 4>> SubtreeConnections;
|
/third_party/python/Lib/multiprocessing/ |
H A D | connection.py | 111 # Connection classes 269 Connection class based on a Windows named pipe. 347 class Connection(_ConnectionBase): class 349 Connection class based on an arbitrary file descriptor (Unix only), or 458 Returns a `Connection` object. 523 c1 = Connection(s1.detach()) 524 c2 = Connection(s2.detach()) 527 c1 = Connection(fd1, writable=False) 528 c2 = Connection(fd2, readable=False) 610 return Connection( [all...] |
/third_party/curl/lib/vquic/ |
H A D | curl_msh3.c | 80 static void MSH3_CALL msh3_conn_connected(MSH3_CONNECTION *Connection, 82 static void MSH3_CALL msh3_conn_shutdown_complete(MSH3_CONNECTION *Connection, 84 static void MSH3_CALL msh3_conn_new_request(MSH3_CONNECTION *Connection, 235 static void MSH3_CALL msh3_conn_connected(MSH3_CONNECTION *Connection, in msh3_conn_connected() argument 241 (void)Connection; in msh3_conn_connected() 249 static void MSH3_CALL msh3_conn_shutdown_complete(MSH3_CONNECTION *Connection, in msh3_conn_shutdown_complete() argument 256 (void)Connection; in msh3_conn_shutdown_complete() 262 static void MSH3_CALL msh3_conn_new_request(MSH3_CONNECTION *Connection, in msh3_conn_new_request() argument 266 (void)Connection; in msh3_conn_new_request()
|
/third_party/python/Lib/test/test_sqlite3/ |
H A D | test_factory.py | 41 class DefectFactory(sqlite.Connection): 44 class OkFactory(sqlite.Connection): 46 sqlite.Connection.__init__(self, *args, **kwargs) 55 class Factory(sqlite.Connection): 65 class Factory(sqlite.Connection):
|
/third_party/mesa3d/.gitlab-ci/ |
H A D | report-flakes.py | 31 class Connection: class 109 irc = Connection(args.host, args.port, args.verbose)
|
/third_party/node/lib/ |
H A D | inspector.js | 38 Connection, 68 new Connection((message) => this[onMessageSymbol](message));
|
/third_party/mesa3d/src/vulkan/overlay-layer/ |
H A D | mesa-overlay-control.py | 19 class Connection: class 158 conn = Connection(address)
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
H A D | download.js | 11 Connection: 'keep-alive'
|
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-graph-printer.cc | 56 struct Connection { struct 110 std::ostream& operator<<(std::ostream& os, const Connection& c) { in operator <<() 124 Connection c; 271 Connection c; in PreProcessBasicBlock()
|