/external/autotest/frontend/db/backends/afe_sqlite/ |
base.py | 15 self.ops = DatabaseOperations(self.connection)
|
/external/autotest/scheduler/ |
scheduler_lib_unittest.py | 21 """Connection manager unittests.""" 36 """Test connection and disconnecting from the database.""" 37 # Test that the connection manager only opens a connection once. 40 connection = connection_manager.get_connection() 43 connection = connection_manager.get_connection() 48 # Test that del on the connection manager closes the connection 55 """Test that retries don't destroy the connection.""" 60 connection = connection_manager.get_connection( [all...] |
/external/curl/docs/cmdline-opts/ |
happy-eyeballs-timeout-ms.d | 9 a connection attempt is made to the IPv4 address in parallel. The first 10 connection to be established is the one that is used. 13 "It is RECOMMENDED that connection attempts be paced 150-250 ms apart to
|
ciphers.d | 6 Specifies which ciphers to use in the connection. The list of ciphers must
|
ftp-pasv.d | 7 Use passive mode for the data connection. Passive is the internal default
|
proxy-tls13-ciphers.d | 6 Specifies which cipher suites to use in the connection to your HTTPS proxy
|
tls13-ciphers.d | 6 Specifies which cipher suites to use in the connection if it negotiates TLS
|
/external/libchrome/dbus/ |
exported_object.h | 138 DBusHandlerResult HandleMessage(DBusConnection* connection, 160 void OnUnregistered(DBusConnection* connection); 163 static DBusHandlerResult HandleMessageThunk(DBusConnection* connection, 168 static void OnUnregisteredThunk(DBusConnection* connection,
|
/external/python/cpython2/Modules/_sqlite/ |
statement.h | 28 #include "connection.h" 46 int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* sql);
|
/external/python/cpython3/Modules/_sqlite/ |
statement.h | 28 #include "connection.h" 47 int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* sql);
|
/external/skia/tools/skiaserve/ |
skiaserve.cpp | 56 int invoke(Request* request, MHD_Connection* connection, const char* url, const char* method, 60 return fHandlers[i]->handle(request, connection, url, method, upload_data, 73 int answer_to_connection(void* cls, struct MHD_Connection* connection, 80 int result = kUrlManager.invoke(request, connection, url, method, upload_data,
|
/external/skqp/tools/skiaserve/ |
skiaserve.cpp | 56 int invoke(Request* request, MHD_Connection* connection, const char* url, const char* method, 60 return fHandlers[i]->handle(request, connection, url, method, upload_data, 73 int answer_to_connection(void* cls, struct MHD_Connection* connection, 80 int result = kUrlManager.invoke(request, connection, url, method, upload_data,
|
/external/libchrome/ipc/ |
ipc_mojo_bootstrap_unittest.cc | 24 class Connection { 26 explicit Connection(std::unique_ptr<IPC::MojoBootstrap> bootstrap, 111 Connection connection( 119 connection.TakeReceiver(&receiver); 136 Connection connection( 144 connection.TakeReceiver(&receiver); 157 Connection connection( [all...] |
/external/autotest/client/common_lib/ |
barrier.py | 114 and the master a client. The connection process and usage is still the 116 connection initiation. This is called rendezvous_servers. 198 def _master_welcome(self, connection): 199 client, addr = connection 254 self._waiting[name] = connection 258 def _slave_hello(self, connection): 259 (client, addr) = connection 270 # Confirm the master accepted the connection. 272 logging.warning("Bad connection request to master") 289 self._waiting[self._hostid] = connection [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interceptors_mac.cc | 240 xpc_connection_t connection, xpc_handler_t handler) { 241 SCOPED_TSAN_INTERCEPTOR(xpc_connection_set_event_handler, connection, 243 Release(thr, pc, (uptr)connection); 247 Acquire(thr, pc, (uptr)connection); 251 REAL(xpc_connection_set_event_handler)(connection, new_handler); 254 TSAN_INTERCEPTOR(void, xpc_connection_send_barrier, xpc_connection_t connection, 256 SCOPED_TSAN_INTERCEPTOR(xpc_connection_send_barrier, connection, barrier); 257 Release(thr, pc, (uptr)connection); 261 Acquire(thr, pc, (uptr)connection); 265 REAL(xpc_connection_send_barrier)(connection, new_barrier) [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
JDWPDebuggeeWrapper.java | 37 * It encapsulates JDWP connection and communicates with debuggee using 80 * Returns opened JDWP connection or null. 82 * @return JDWP connection or null 89 * Sets opened JDWP connection. 91 * @param connection to set 93 public void setConnection(TransportWrapper connection) { 94 vmMirror.setConnection(connection);
|
/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. 83 "Invalid use of SingleClientConnManager: connection still allocated.\n" + 84 "Make sure to release the connection before allocating another one."; 87 /** The schemes supported by this connection manager. */ 96 /** The currently issued managed connection, if any. */ 99 /** The time of the last connection release, or -1. */ 102 /** The time the last released connection expires and shouldn't be reused. * [all...] |
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/ |
NettyClientHandler.java | 126 Http2Connection connection = new DefaultHttp2Connection(false); local 127 WeightedFairQueueByteDistributor dist = new WeightedFairQueueByteDistributor(connection); 130 new DefaultHttp2RemoteFlowController(connection, dist); 131 connection.remote().flowController(controller); 134 connection, 150 final Http2Connection connection, 162 Preconditions.checkNotNull(connection, "connection"); 177 new DefaultHttp2ConnectionEncoder(connection, frameWriter)); 179 // Create the local flow controller configured to auto-refill the connection window 239 Http2Connection connection = encoder.connection(); local [all...] |
/external/jacoco/org.jacoco.examples/src/org/jacoco/examples/ |
MBeanClient.java | 41 // Open connection to the coverage agent: 44 final MBeanServerConnection connection = jmxc local 48 .newProxyInstance(connection, new ObjectName( 61 // Close connection:
|
/external/mesa3d/include/vulkan/ |
vk_icd.h | 59 * contains the platform-specific connection and surface information. 77 MirConnection *connection; member in struct:__anon32860 101 xcb_connection_t *connection; member in struct:__anon32863
|
/external/mesa3d/src/amd/vulkan/ |
radv_wsi_x11.c | 24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 40 xcb_connection_t* connection, 50 connection, visual_id);
|
/external/mesa3d/src/intel/vulkan/ |
anv_wsi_x11.c | 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 36 xcb_connection_t* connection, 46 connection, visual_id);
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
ConnectionPoolTest.java | 148 // Add a third connection 151 // The third connection bounces the first. 174 private void allocateAndLeakAllocation(ConnectionPool pool, RealConnection connection) { 175 StreamAllocation leak = new StreamAllocation(pool, connection.getRoute().getAddress()); 176 leak.acquire(connection); 191 RealConnection connection = new RealConnection(route); local 192 connection.idleAtNanos = idleAtNanos; 193 connection.socket = new Socket(); 195 pool.put(connection); 197 return connection; [all...] |
/external/opencensus-java/exporters/stats/signalfx/src/main/java/io/opencensus/exporter/stats/signalfx/ |
SignalFxMetricsSenderFactory.java | 21 import com.signalfx.metrics.connection.HttpDataPointProtobufReceiverFactory; 22 import com.signalfx.metrics.connection.HttpEventProtobufReceiverFactory;
|