HomeSort by relevance Sort by last modified time
    Searched refs:Connection (Results 126 - 150 of 646) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/services/Telephony/src/com/android/services/telephony/
CdmaConnection.java 28 import com.android.internal.telephony.Connection;
64 * {@code True} if the CDMA connection should allow mute.
77 Connection connection,
81 super(connection);
85 mIsCallWaiting = connection != null && connection.getState() == Call.State.WAITING;
113 Connection connection = getOriginalConnection(); local
114 if (connection != null)
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver4.java 20 import java.sql.Connection;
74 public Connection connect(String url, Properties info) throws SQLException {
104 // It all checks out - so return a connection
105 Connection connection = new TestHelper_Connection1(); local
106 return connection;
  /external/chromium_org/sql/
statement.h 14 #include "sql/connection.h"
43 // in the connection object using set_error_delegate().
50 explicit Statement(scoped_refptr<Connection::StatementRef> ref);
55 void Assign(scoped_refptr<Connection::StatementRef> ref);
153 // connection object. It takes a sqlite error code, and returns the same
177 // by the connection, which is why it's refcounted. This pointer is
179 scoped_refptr<Connection::StatementRef> ref_;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portinterface.h 42 class Connection;
82 // Returns the connection to the given address or NULL if none exists.
83 virtual Connection* GetConnection(
86 // Creates a new connection to the given address.
88 virtual Connection* CreateConnection(
99 // that of a connection or an address that has sent to us already.
105 // address that doesn't correspond to any current connection. To turn this
106 // into a real connection, call CreateConnection.
127 // Normally, packets arrive through a connection (or they result signaling of
129 // through their respective connection and instead delivers every packe
    [all...]
port.h 52 class Connection;
70 // The length of time we wait before timing out readability on a connection.
73 // The length of time we wait before timing out writability on a connection.
222 // connection.
227 typedef std::map<rtc::SocketAddress, Connection*> AddressMap;
230 // Returns the connection to the given address or NULL if none exists.
231 virtual Connection* GetConnection(
234 // Called each time a connection is created.
235 sigslot::signal2<Port*, Connection*> SignalConnectionCreated;
298 // Called when the Connection discovers a local peer reflexive candidate
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
PEPManager.java 27 import org.jivesoftware.smack.Connection;
67 private Connection connection; field in class:PEPManager
75 * @param connection a Connection which is used to send and receive messages.
77 public PEPManager(Connection connection) {
78 this.connection = connection;
116 //pubSub.setFrom(connection.getUser())
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5ClientForInitiator.java 20 import org.jivesoftware.smack.Connection;
37 /* the XMPP connection used to communicate with the SOCKS5 proxy */
38 private Connection connection; field in class:Socks5ClientForInitiator
51 * @param connection the XMPP connection
55 public Socks5ClientForInitiator(StreamHost streamHost, String digest, Connection connection,
58 this.connection = connection;
    [all...]
  /external/smack/src/org/jivesoftware/smackx/search/
UserSearchManager.java 19 import org.jivesoftware.smack.Connection;
38 * Connection con = new XMPPConnection("jabber.org");
52 private Connection con;
58 * @param con the Connection to use.
60 public UserSearchManager(Connection con) {
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
TranscriptManager.java 26 import org.jivesoftware.smack.Connection;
38 private Connection connection; field in class:TranscriptManager
40 public TranscriptManager(Connection connection) {
41 this.connection = connection;
55 PacketCollector collector = connection.createPacketCollector(new PacketIDFilter(request.getPacketID()));
57 connection.sendPacket(request);
84 PacketCollector collector = connection.createPacketCollector(new PacketIDFilter(request.getPacketID()));
    [all...]
TranscriptSearchManager.java 25 import org.jivesoftware.smack.Connection;
40 private Connection connection; field in class:TranscriptSearchManager
42 public TranscriptSearchManager(Connection connection) {
43 this.connection = connection;
60 PacketCollector collector = connection.createPacketCollector(
62 connection.sendPacket(search);
94 PacketCollector collector = connection.createPacketCollector(new PacketIDFilter(search.getPacketID()));
    [all...]
Agent.java 26 import org.jivesoftware.smack.Connection;
39 private Connection connection; field in class:Agent
42 public static Collection<String> getWorkgroups(String serviceJID, String agentJID, Connection connection) throws XMPPException {
45 PacketCollector collector = connection.createPacketCollector(new PacketIDFilter(request.getPacketID()));
47 connection.sendPacket(request);
65 Agent(Connection connection, String workgroupJID) {
66 this.connection = connection;
    [all...]
  /external/chromium_org/chrome/browser/extensions/activity_log/
counting_policy.h 68 virtual bool InitDatabase(sql::Connection* db) OVERRIDE;
69 virtual bool FlushDatabase(sql::Connection* db) OVERRIDE;
113 bool CleanOlderThan(sql::Connection* db, const base::Time& cutoff);
117 bool CleanStringTables(sql::Connection* db);
  /external/chromium_org/content/browser/dom_storage/
local_storage_database_adapter.cc 29 sql::Connection::Delete(db_->file_path());
  /external/chromium_org/device/serial/
serial_connection_factory.h 33 mojo::InterfaceRequest<serial::Connection> connection_request,
  /external/chromium_org/ppapi/proxy/
flash_fullscreen_resource.cc 13 FlashFullscreenResource::FlashFullscreenResource(Connection connection,
15 : PluginResource(connection, instance),
flash_menu_resource.h 24 FlashMenuResource(Connection connection, PP_Instance instance);
host_resolver_private_resource.h 21 HostResolverPrivateResource(Connection connection,
host_resolver_resource.h 21 HostResolverResource(Connection connection, PP_Instance instance);
isolated_file_system_private_resource.h 25 #include "ppapi/proxy/connection.h"
43 Connection connection, PP_Instance instance);
network_monitor_resource.h 25 explicit NetworkMonitorResource(Connection connection,
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,
  /external/chromium_org/sync/test/
test_directory_backing_store.cc 14 const std::string& dir_name, sql::Connection* db)
19 // This variant of the DirectoryBackingStore does not own its connection, so
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InBandBytestreamManager.java 25 import org.jivesoftware.smack.Connection;
94 * connection
97 Connection.addConnectionCreationListener(new ConnectionCreationListener() {
98 public void connectionCreated(Connection connection) {
100 manager = InBandBytestreamManager.getByteStreamManager(connection);
103 connection.addConnectionListener(new AbstractConnectionListener() {
131 /* stores one InBandBytestreamManager for each XMPP connection */
132 private final static Map<Connection, InBandBytestreamManager> managers = new HashMap<Connection, InBandBytestreamManager>();
135 private final Connection connection; field in class:InBandBytestreamManager
    [all...]
  /frameworks/base/core/java/android/net/http/
IdleCache.java 34 Connection mConnection;
63 * Caches connection, if there is room.
64 * @return true if connection cached
67 HttpHost host, Connection connection) {
81 entry.mConnection = connection;
97 synchronized Connection getConnection(HttpHost host) {
98 Connection ret = null;

Completed in 4036 milliseconds

1 2 3 4 56 7 8 91011>>