HomeSort by relevance Sort by last modified time
    Searched refs:connection (Results 226 - 250 of 861) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/proxy/
host_resolver_resource.h 21 HostResolverResource(Connection connection, PP_Instance instance);
network_proxy_resource.h 20 NetworkProxyResource(Connection connection, PP_Instance instance);
video_destination_resource.h 11 #include "ppapi/proxy/connection.h"
28 VideoDestinationResource(Connection connection,
ext_crx_file_system_private_resource.cc 19 Connection connection, PP_Instance instance)
20 : PluginResource(connection, instance), called_open_(false) {
file_system_resource.cc 18 FileSystemResource::FileSystemResource(Connection connection,
21 : PluginResource(connection, instance),
flash_font_file_resource.cc 17 Connection connection,
21 : PluginResource(connection, instance),
flash_menu_resource.cc 14 FlashMenuResource::FlashMenuResource(Connection connection,
16 : PluginResource(connection, instance),
host_resolver_resource.cc 44 HostResolverResource::HostResolverResource(Connection connection,
46 : HostResolverResourceBase(connection, instance, false) {
network_proxy_resource.cc 16 NetworkProxyResource::NetworkProxyResource(Connection connection,
18 : PluginResource(connection, instance) {
udp_socket_private_resource.cc 14 UDPSocketPrivateResource::UDPSocketPrivateResource(Connection connection,
16 : UDPSocketResourceBase(connection, instance, true) {
udp_socket_resource.cc 22 UDPSocketResource::UDPSocketResource(Connection connection,
24 : UDPSocketResourceBase(connection, instance, false) {
url_response_info_resource.cc 24 Connection connection,
28 : PluginResource(connection, instance),
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RequestHeaders.java 55 private String connection; field in class:RequestHeaders
108 } else if ("Connection".equalsIgnoreCase(fieldName)) {
109 connection = value;
125 return "close".equalsIgnoreCase(connection);
177 return connection;
232 public void setConnection(String connection) {
233 if (this.connection != null) {
234 headers.removeAll("Connection");
236 headers.add("Connection", connection);
    [all...]
  /external/qemu/android/protocol/
core-connection.c 23 #include "android/protocol/core-connection.h"
98 // Create sync connection to the console.
106 // Upon successful connection the console will reply with two strings:
125 derror("console has failed the connection: %s\n", buf);
330 CoreConnection* connection = NULL; local
333 connection = core_connection_create(console_socket);
334 if (connection == NULL) {
337 if (core_connection_open(connection)) {
338 core_connection_free(connection);
344 if (core_connection_switch_stream(connection, switch_cmd, handshake))
    [all...]
  /external/smack/src/org/jivesoftware/smack/
Roster.java 48 * @see Connection#getRoster()
59 private Connection connection; field in class:Roster
98 Roster(final Connection connection, RosterStorage persistentStorage){
99 this(connection);
106 * @param connection an XMPP connection.
108 Roster(final Connection connection) {
    [all...]
ChatManager.java 96 private Connection connection; field in class:ChatManager
98 ChatManager(Connection connection) {
99 this.connection = connection;
113 connection.addPacketListener(new PacketListener() {
260 message.setFrom(connection.getUser());
262 connection.sendPacket(message);
266 return connection.createPacketCollector(new AndFilter(new ThreadFilter(chat.getThreadID()),
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
Offer.java 22 import org.jivesoftware.smack.Connection;
40 private Connection connection; field in class:Offer
57 * @param conn the XMPP connection with which the issuing session was created.
68 Offer(Connection conn, AgentSession agentSession, String userID,
72 this.connection = conn;
88 connection.sendPacket(acceptPacket);
98 connection.sendPacket(rejectPacket);
  /libcore/luni/src/main/java/java/net/
ResponseCache.java 75 * @param connection
76 * the connection to fetch the response.
84 public abstract CacheRequest put(URI uri, URLConnection connection) throws IOException;
  /libcore/luni/src/test/java/libcore/java/net/
URLStreamHandlerFactoryTest.java 58 URLConnection connection = url.openConnection(); local
59 assertTrue(connection instanceof Handler.HandlerURLConnection);
81 URLConnection connection = new URL("http://android.com/").openConnection(); local
82 assertTrue(connection instanceof Handler.HandlerURLConnection);
93 // creating a connection should use the platform's default stream handler
98 // set the property and get another connection. The property should not be honored
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
AppRTCClient.java 180 HttpURLConnection connection = (HttpURLConnection) local
182 connection.setInstanceFollowRedirects(false);
183 int code = connection.getResponseCode();
186 ", with contents: " + drainStream(connection.getInputStream()));
190 while ((name = connection.getHeaderFieldKey(n)) != null) {
191 value = connection.getHeaderField(n);
352 URLConnection connection = (new URL(url)).openConnection(); local
353 connection.addRequestProperty("user-agent", "Mozilla/5.0");
354 connection.addRequestProperty("origin", "https://apprtc.appspot.com");
355 String response = drainStream(connection.getInputStream())
409 URLConnection connection = new URL( local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteDatabase.java 14 import java.sql.Connection;
32 * Implemented as a wrapper around an embedded SQL database, accessed via JDBC. The JDBC connection is
38 private static Connection connection; field in class:ShadowSQLiteDatabase
67 connection = DatabaseConfig.getMemoryConnection();
94 PreparedStatement insert = connection.prepareStatement(sqlInsertString.sql, Statement.RETURN_GENERATED_KEYS);
128 Statement statement = connection.createStatement(DatabaseConfig.getResultSetType(), ResultSet.CONCUR_READ_ONLY);
158 PreparedStatement statement = connection.prepareStatement(sqlUpdateString.sql);
176 return connection.prepareStatement(sql).executeUpdate();
190 connection.createStatement().execute(scrubbedSql)
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver1.java 20 import java.sql.Connection;
76 public Connection connect(String url, Properties info) throws SQLException {
88 // It all checks out - so return a connection
89 Connection connection = new TestHelper_Connection1(); local
90 return connection;
  /external/apache-http/src/org/apache/http/impl/conn/
SingleClientConnManager.java 52 * A connection "manager" for a single connection.
54 * Allocation <i>always</i> returns the connection immediately,
57 * and the previously issued connection is revoked.
78 "Invalid use of SingleClientConnManager: connection still allocated.\n" +
79 "Make sure to release the connection before allocating another one.";
82 /** The schemes supported by this connection manager. */
91 /** The currently issued managed connection, if any. */
94 /** The time of the last connection release, or -1. */
97 /** The time the last released connection expires and shouldn't be reused. *
    [all...]
  /external/chromium_org/net/tools/quic/test_tools/
quic_test_utils.cc 62 TestSession::TestSession(QuicConnection* connection,
65 : QuicSession(connection, config, is_server),
  /external/valgrind/main/gdbserver_tests/
mcbreak.stderrB.exp 7 Remote connection closed

Completed in 1380 milliseconds

1 2 3 4 5 6 7 8 91011>>