/external/skqp/tools/skiaserve/urlhandlers/ |
EnableGPUHandler.cpp | 22 int EnableGPUHandler::handle(Request* request, MHD_Connection* connection, 37 return SendError(connection, "Unable to create GPU surface"); 39 return SendOK(connection);
|
OverdrawHandler.cpp | 22 int OverdrawHandler::handle(Request* request, MHD_Connection* connection, 37 return SendError(connection, "Unable to set overdraw"); 39 return SendOK(connection);
|
PostHandler.cpp | 35 int PostHandler::handle(Request* request, MHD_Connection* connection, 40 // New connection 44 uc->connection = connection; 45 uc->fPostProcessor = MHD_create_post_processor(connection, kBufferSize, 75 return SendTemplate(connection, true, "/");
|
RootHandler.cpp | 21 int RootHandler::handle(Request* request, MHD_Connection* connection, 24 return SendTemplate(connection);
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
MissedCallTest.java | 21 import android.telecom.Connection; 62 final MockConnection connection = verifyConnectionForIncomingCall(); local 69 assertConnectionState(connection, Connection.STATE_RINGING); 71 connection.setDisconnected(new DisconnectCause(DisconnectCause.MISSED)); 72 connection.destroy();
|
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/output/ |
TcpClientOutput.java | 33 private TcpConnection connection; field in class:TcpClientOutput 50 connection = new TcpConnection(socket, data); 51 connection.init(); 55 connection.run(); 67 connection.close(); 72 connection.writeExecutionData(reset);
|
TcpServerOutput.java | 33 private TcpConnection connection; field in class:TcpServerOutput 59 connection = new TcpConnection( 62 connection.init(); 63 connection.run(); 82 if (connection != null) { 83 connection.close(); 90 if (connection != null) { 91 connection.writeExecutionData(reset);
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/ |
NullDatabaseMapTest.java | 10 import java.sql.Connection; 42 Connection connection = null; local 47 connection = DatabaseConfig.getMemoryConnection(); 49 //since the connection should not actually be made 56 Assert.assertTrue(connection == null);
|
/external/skia/tools/skiaserve/urlhandlers/ |
PostHandler.cpp | 35 int PostHandler::handle(Request* request, MHD_Connection* connection, 40 // New connection 44 uc->connection = connection; 45 uc->fPostProcessor = MHD_create_post_processor(connection, kBufferSize, 75 return SendTemplate(connection, true, "/");
|
RootHandler.cpp | 21 int RootHandler::handle(Request* request, MHD_Connection* connection, 24 return SendTemplate(connection);
|
/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/ |
CommBase.h | 40 * Closes a connection if it is open. 45 * Creates a connection to the other side. 47 * @return int Returns fd or socket number if connection is successful. 48 * Otherwise, returns -1 if no connection is availble. 60 * Blocking call to read data from the connection. 63 * an empty vector if the connection was closed or some other error occurred.
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/ |
HttpURLConnectionTest.java | 101 // this connection was closed, create new one: 129 * Selector will return the proxy, only if the connection 184 * method will be used for connection to the server 193 HttpURLConnection connection = (HttpURLConnection) url local 197 connection.setConnectTimeout(2000); 198 connection.setReadTimeout(2000); 209 connection.connect(); 215 assertTrue("Connection does not use proxy", connection.usingProxy()); 224 * will be used for connection to the serve 240 HttpURLConnection connection = local 286 HttpURLConnection connection = local [all...] |
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
IncomingSelfManagedCallActivity.java | 46 final SelfManagedConnection connection = SelfManagedCallList.getInstance() local 50 if (connection != null) { 51 connection.setConnectionActive(); 57 if (connection != null) { 58 connection.setConnectionDisconnected(DisconnectCause.INCOMING_REJECTED); 59 connection.destroy();
|
SelfManagedCallNotificationReceiver.java | 41 SelfManagedConnection connection = SelfManagedCallList.getInstance() local 46 if (connection != null) { 47 connection.setConnectionActive(); 54 if (connection != null) { 55 connection.setConnectionDisconnected(DisconnectCause.INCOMING_REJECTED); 56 connection.destroy();
|
/developers/samples/android/connectivity/network/BasicNetworking/ |
template-params.xml | 29 a network connection, and if so, what type of connection it is. 31 on the active connection, and then the connection type is printed to an on-screen console. 62 a network connection, and if so, what type of connection it is. 65 on the active connection, and then the connection type is printed to an on-screen console.
|
/external/autotest/frontend/ |
setup_test_environment.py | 21 connection = connections['default'] variable 41 """Close all connection to the test database. 43 connection.close() 49 # the real connection ourselves. 52 for con in [connection, connection_global, connection_readonly, 54 real_connection = con.connection 57 con.connection = None 80 for query in connection.queries:
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/tls/ |
TlsNoCloseNotifyException.java | 6 * This exception will be thrown (only) when the connection is closed by the peer without sending a 8 * protocol cannot rule out truncation of the connection data (potentially malicious). It may be
|
/external/curl/docs/cmdline-opts/ |
ftp-skip-pasv-ip.d | 8 to curl's PASV command when curl connects the data connection. Instead curl 10 connection.
|
insecure.d | 8 By default, every SSL connection curl makes is verified to be secure. This 12 The server connection is verified by making sure the server's certificate
|
ssl.d | 7 Try to use SSL/TLS for the connection. Reverts to a non-secure connection if
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
9c5590f33073c38b46315d8a86e95b95.000001a7.honggfuzz.cov | 4 Connection: keep-alllive
6 Connection: keepkeep-alllive
|
/external/okhttp/okhttp-ws/ |
README.md | 11 A `WebSocketListener` will notify of the initial connection, server-sent messages, and any failures 12 on the connection.
|
/external/skia/tools/skiaserve/ |
Response.cpp | 44 int SendOK(MHD_Connection* connection) { 50 int ret = MHD_queue_response(connection, 200, response); 55 int SendError(MHD_Connection* connection, const char* msg) { 59 int ret = MHD_queue_response(connection, 500, response); 64 int SendData(MHD_Connection* connection, const SkData* data, const char* type, 75 int ret = MHD_queue_response(connection, MHD_HTTP_OK, response); 80 int SendTemplate(MHD_Connection* connection, bool redirect, const char* redirectUrl) { 96 int ret = MHD_queue_response(connection, status, response);
|
/external/skqp/tools/skiaserve/ |
Response.cpp | 44 int SendOK(MHD_Connection* connection) { 50 int ret = MHD_queue_response(connection, 200, response); 55 int SendError(MHD_Connection* connection, const char* msg) { 59 int ret = MHD_queue_response(connection, 500, response); 64 int SendData(MHD_Connection* connection, const SkData* data, const char* type, 75 int ret = MHD_queue_response(connection, MHD_HTTP_OK, response); 80 int SendTemplate(MHD_Connection* connection, bool redirect, const char* redirectUrl) { 96 int ret = MHD_queue_response(connection, status, response);
|
/external/syslinux/gpxe/src/arch/i386/interface/pcbios/ |
keepsan.c | 11 .description = "Preserve SAN connection", 23 printf ( "Preserving connection to SAN disk\n" );
|