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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/sql/
Connection.java 33 * <P>A connection (session) with a specific
35 * within the context of a connection.
37 * A <code>Connection</code> object's database is able to provide information
39 * procedures, the capabilities of this connection, and so on. This
42 * <P><B>Note:</B> When configuring a <code>Connection</code>, JDBC applications
43 * should use the appropriate <code>Connection</code> method such as
45 * Applications should not invoke SQL commands directly to change the connection's
46 * configuration when there is a JDBC method available. By default a <code>Connection</code> object is in
52 * A new <code>Connection</code> object created using the JDBC 2.1 core API
57 * will check the connection's type map to see if there is an entry for tha
    [all...]
  /system/connectivity/shill/
link_monitor.cc 24 #include "shill/connection.h"
39 static string ObjectID(Connection* c) { return c->interface_name(); }
48 LinkMonitor::LinkMonitor(const ConnectionRefPtr& connection,
54 : connection_(connection),
61 connection,
71 connection,
passive_link_monitor.cc 25 #include "shill/connection.h"
38 static string ObjectID(Connection* c) { return c->interface_name(); }
46 PassiveLinkMonitor::PassiveLinkMonitor(const ConnectionRefPtr& connection,
49 : connection_(connection),
51 // Connection is not provided when this is used as a mock for testing
54 new ArpClient(connection ? connection->interface_index() : 0)),
  /external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/
main.js 50 var info="["+socketInfo.peerAddress+":"+socketInfo.peerPort+"] Connection accepted!";
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
certutils.py 81 def get_ssl_connection(context, connection):
82 return WrappedConnection(SSL.Connection(context, connection))
157 connection = SSL.Connection(context, s)
159 connection.connect((host, port))
160 connection.send('')
166 connection.shutdown()
167 connection.close()
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/directconnect/
layer1.py 19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24 from boto.connection import AWSQueryConnection
34 connection from your premises to Amazon Web Services (AWS). Using
87 Creates a hosted connection on an interconnect.
90 for use by a hosted connection on the given interconnect.
93 :param bandwidth: Bandwidth of the connection.
99 :param connection_name: Name of the provisioned connection.
100 Example: " 500M Connection to AWS "
106 connection will be provisioned.
112 :param interconnect_id: ID of the interconnect on which the connection
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
SQL_Results.java 13 import java.sql.Connection;
39 SQL_Results(Connection con) throws SQLException {
  /external/jetty/src/java/org/eclipse/jetty/security/
JDBCLoginService.java 22 import java.sql.Connection;
47 * interval to zero. Uses one database connection that is initialized at
74 private Connection _con;
176 * Load JDBC connection configuration from properties file.
271 * Close an existing connection
277 if (LOG.isDebugEnabled()) LOG.debug("Closing db connection for JDBCUserRealm");
  /external/jetty/src/java/org/eclipse/jetty/server/nio/
SelectChannelConnector.java 31 import org.eclipse.jetty.io.Connection;
218 * This is not an exact measure as the connection count is averaged over the select sets.
239 * Set the period in ms that a connection is allowed to be idle when this there are more
242 * @param lowResourcesMaxIdleTime the period in ms that a connection is allowed to be idle when resources are low.
317 protected void endPointUpgraded(ConnectedEndPoint endpoint, Connection oldConnection)
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Call.java 57 * {@link Response#body} method. To facilitate connection recycling, callers
209 @Override public Connection connection() { method in class:Call.ApplicationInterceptorChain
311 Connection connection = engine.close(); local
313 engine = new HttpEngine(client, request, false, false, forWebSocket, connection, null, null,
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteCursor.java 8 import java.sql.Connection;
228 private void fillRows(String sql, Connection connection) throws SQLException {
231 Statement statement = connection.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY);
  /frameworks/base/telecomm/java/android/telecom/
ParcelableConnection.java 30 * Information about a connection that is used between Telecom and the ConnectionService.
31 * This is used to send initial Connection information to Telecom when the connection is
101 * Returns the current connection capabilities bit-mask. Connection capabilities are defined as
102 * {@code CAPABILITY_*} constants in {@link Connection}.
104 * @return Bit-mask containing capabilities of the connection.
111 * Returns the current connection properties bit-mask. Connection properties are defined as
112 * {@code PROPERTY_*} constants in {@link Connection}
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
InsertFunctionalityTest.java 18 import java.sql.Connection;
35 private static Connection conn = null;
UpdateFunctionalityTest.java 20 import java.sql.Connection;
38 private static Connection conn;
UpdateFunctionalityTest2.java 21 import java.sql.Connection;
38 private static Connection conn = null;
  /packages/services/Telecomm/src/com/android/server/telecom/
VideoProviderProxy.java 23 import android.telecom.Connection;
38 * implementations to the underlying {@link Connection.VideoProvider} implementation. Also proxies
39 * callbacks from the {@link Connection.VideoProvider} to {@link InCallService.VideoCall}
44 public class VideoProviderProxy extends Connection.VideoProvider {
67 * The {@link android.telecom.Connection.VideoProvider} implementation residing with the
351 * @param responseProfile The response connection video properties.
381 * {@link #mConectionServiceVideoProvider} to request the connection data usage.
442 * {@link Connection.VideoProvider}.
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestVideoProvider.java 39 import android.telecom.Connection;
56 public class TestVideoProvider extends Connection.VideoProvider {
77 public TestVideoProvider(Context context, TestConnection connection) {
78 mConnection = connection;
187 log("Requested connection data usage");
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
reduction.py 2 # Module to allow connection and socket objects to be transferred
47 from multiprocessing.connection import Client, Listener
162 # Register `_multiprocessing.Connection` with `ForkingPickler`
171 return _multiprocessing.Connection(
175 ForkingPickler.register(_multiprocessing.Connection, reduce_connection)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
reduction.py 2 # Module to allow connection and socket objects to be transferred
47 from multiprocessing.connection import Client, Listener
162 # Register `_multiprocessing.Connection` with `ForkingPickler`
171 return _multiprocessing.Connection(
175 ForkingPickler.register(_multiprocessing.Connection, reduce_connection)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 2 # Module to allow connection and socket objects to be transferred
47 from multiprocessing.connection import Client, Listener
162 # Register `_multiprocessing.Connection` with `ForkingPickler`
171 return _multiprocessing.Connection(
175 ForkingPickler.register(_multiprocessing.Connection, reduce_connection)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 2 # Module to allow connection and socket objects to be transferred
47 from multiprocessing.connection import Client, Listener
162 # Register `_multiprocessing.Connection` with `ForkingPickler`
171 return _multiprocessing.Connection(
175 ForkingPickler.register(_multiprocessing.Connection, reduce_connection)
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Connection.java 33 * Encapsulates a connection between SdkController service and the emulator. On
34 * the device side, the connection is bound to the UNIX-domain socket named
35 * 'android.sdk.controller'. On the emulator side the connection is established
55 * 3. Connection is initiated by the emulator side, while the service provides
65 * 3. Bind emulator connection with service-side channel via port name, provided by
68 * 4. Monitor connection state with the emulator, and automatically restore the
69 * connection once it is lost.
71 public class Connection {
87 * for that connection. In this case (when app-side channel is not registered
88 * with this class) we will keep emulator connection in this list, pendin
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 39 RemoteAdtTestRunner_RunTimeoutException=Connection with device timed out.
40 RemoteAdtTestRunner_RunIOException_s=Lost connection with device: %s
  /system/bt/vendor_libs/test_vendor_lib/scripts/
test_channel.py 59 class Connection(object):
80 connection: The connection to the test vendor library that commands are sent
85 self._connection = Connection(port)
  /packages/services/Telephony/src/com/android/phone/
PhoneUtils.java 57 import com.android.internal.telephony.Connection;
105 /** Speaker state, persisting between wired headset connection events */
108 /** Static handler for the connection/mute tracking */
155 * Mute settings for each connection as needed.
189 * Register the ConnectionHandler with the phone, to receive connection events
303 * Smart "hang up" helper method which hangs up exactly one connection,
427 * Trivial wrapper around Connection.hangup(), except that we silently
429 * connection wasn't actually active.
431 static void hangup(Connection c) {
437 Log.w(LOG_TAG, "Connection hangup: caught " + ex, ex)
576 Connection connection; local
    [all...]

Completed in 1586 milliseconds

1 2 3 4 5 6 7 8 91011>>