/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
factory.py | 27 class MyConnection(sqlite.Connection): 29 sqlite.Connection.__init__(self, *args, **kwargs) 52 "connection is not instance of MyConnection")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
factory.py | 27 class MyConnection(sqlite.Connection): 29 sqlite.Connection.__init__(self, *args, **kwargs) 52 "connection is not instance of MyConnection")
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/ |
PhoneMock.java | 160 public ArrayList<Connection> getHandoverConnection() { 215 public void notifyHandoverStateChanged(Connection cn) { 805 public void notifyNewRingingConnectionP(Connection cn) { 809 public void notifyUnknownConnectionP(Connection cn) { [all...] |
/libcore/luni/src/test/java/tests/java/sql/ |
DatabaseMetaDataTest.java | 28 import java.sql.Connection; 51 protected static Connection conn; 424 assertEquals("Incorrect connection value", conn, meta.getConnection()); 430 Connection con = meta.getConnection(); 603 case Connection.TRANSACTION_NONE: 604 case Connection.TRANSACTION_READ_COMMITTED: 605 case Connection.TRANSACTION_READ_UNCOMMITTED: 606 case Connection.TRANSACTION_REPEATABLE_READ: 607 case Connection.TRANSACTION_SERIALIZABLE: [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
InCallServiceImpl.java | 28 import android.telecom.Connection; [all...] |
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/ |
jsoup-1.7.2.jar | |
/prebuilts/tools/common/m2/repository/org/jsoup/jsoup/1.6.3/ |
jsoup-1.6.3.jar | |
/external/jetty/src/java/org/eclipse/jetty/server/handler/ |
ConnectHandler.java | 42 import org.eclipse.jetty.io.Connection; 274 // Transfer unread data from old connection to new connection 277 // connection is installed (it is only installed after returning from this method) 362 * <p>Establishes a connection to the remote server.</p> 368 * @throws IOException if the connection cannot be established 382 LOG.debug("Establishing connection to {}:{}", host, port); 385 LOG.debug("Established connection to {}:{}", host, port); 390 LOG.debug("Failed to establish connection to " + host + ":" + port, x); 407 private void upgradeConnection(HttpServletRequest request, HttpServletResponse response, Connection connection) throws IOExceptio [all...] |
/packages/apps/Dialer/InCallUI/src/com/android/incallui/ |
VideoCallPresenter.java | 27 import android.telecom.Connection; [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/manager/ |
xmlmanager.py | 19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 202 self.connection = None 213 from httplib import HTTPSConnection as Connection 215 from httplib import HTTPConnection as Connection 217 self.connection = Connection(self.db_host, self.db_port) 221 Make a request on this connection 223 if not self.connection: 226 self.connection.close() 229 self.connection.connect( [all...] |
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/ |
HttpURLConnectionImpl.java | 20 import com.squareup.okhttp.Connection; 77 * currently connected. Instead, it indicates whether a connection has ever been 78 * attempted. Once a connection has been attempted, certain properties (request 106 * connected yet, or if the most recent connection was HTTP (and not HTTPS). 131 // Calling disconnect() before a connection exists should have no effect. 138 // connection will close its streams directly. If it doesn't, the worst 232 "Cannot access request header fields after connection is set"); 338 private HttpEngine newHttpEngine(String method, Connection connection, RetryableSink requestBody, 383 return new HttpEngine(engineClient, request, bufferRequestBody, true, false, connection, null 441 Connection connection = httpEngine.close(); local [all...] |
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
ImsPhoneCallTrackerTest.java | 35 import com.android.internal.telephony.Connection; 230 verify(mImsPhone, times(1)).notifyNewRingingConnection((Connection) any()); 307 verify(mImsPhone, times(2)).notifyNewRingingConnection((Connection) any());
|
/frameworks/base/core/java/android/speech/tts/ |
TextToSpeech.java | 664 private Connection mConnectingServiceConnection; 665 private Connection mServiceConnection; 807 Connection connection = new Connection(); local [all...] |
/external/jetty/src/java/org/eclipse/jetty/client/ |
AbstractHttpConnection.java | 39 import org.eclipse.jetty.io.Connection; 116 // The call to associate() may have closed the connection, check if it's the case 154 public abstract Connection handle() throws IOException; 437 // Cannot reuse the connection because the reply may arrive, so close it 481 // Connection idle, close it
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Connection.java | 50 * The sockets and streams of an HTTP, HTTPS, or HTTPS+SPDY connection. May be 56 * HTTP connections as members of a {@linkplain ConnectionPool connection pool}. 59 * which isn't so much a connection as a single request/response exchange. 63 * a secure connection to a remote host. Newer TLS options are quite useful: 72 * connection to be attempted with modern options and then retried without them 75 public final class Connection { 89 * The object that owns this connection. Null if it is shared (for SPDY), 91 * clears the owner when an incoming connection is recycled. 95 public Connection(ConnectionPool pool, Route route) { 109 if (this.owner != null) throw new IllegalStateException("Connection already has an owner!") [all...] |
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
GsmCdmaCallTrackerTest.java | 158 /* get the reference of the connection before reject */ 159 Connection mConnection = mCTUT.mForegroundCall.getConnections().get(0); 263 /* get the reference of the connection before reject */ 264 Connection mConnection = mCTUT.mRingingCall.getConnections().get(0);
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
VideoProviderTest.java | 37 import android.telecom.Connection; 38 import android.telecom.Connection.VideoProvider; 102 // Set the video provider on the connection.
|
/prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/ |
forking.py | 190 from _multiprocessing import win32, Connection, PipeConnection 421 # Make (Pipe)Connection picklable 433 ForkingPickler.register(Connection, reduce_connection)
|
/prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/ |
forking.py | 190 from _multiprocessing import win32, Connection, PipeConnection 421 # Make (Pipe)Connection picklable 433 ForkingPickler.register(Connection, reduce_connection)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
forking.py | 190 from _multiprocessing import win32, Connection, PipeConnection 421 # Make (Pipe)Connection picklable 433 ForkingPickler.register(Connection, reduce_connection)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
forking.py | 190 from _multiprocessing import win32, Connection, PipeConnection 421 # Make (Pipe)Connection picklable 433 ForkingPickler.register(Connection, reduce_connection)
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
winldap.h | 173 PLDAP Connection; 551 WINLDAPAPI ULONG LDAPAPI ldap_parse_resultW (LDAP *Connection,LDAPMessage *ResultMessage,ULONG *ReturnCode,PWCHAR *MatchedDNs,PWCHAR *ErrorMessage,PWCHAR **Referrals,PLDAPControlW **ServerControls,BOOLEAN Freeit); 552 WINLDAPAPI ULONG LDAPAPI ldap_parse_resultA (LDAP *Connection,LDAPMessage *ResultMessage,ULONG *ReturnCode,PCHAR *MatchedDNs,PCHAR *ErrorMessage,PCHAR **Referrals,PLDAPControlA **ServerControls,BOOLEAN Freeit); 553 WINLDAPAPI ULONG LDAPAPI ldap_parse_extended_resultA (LDAP *Connection,LDAPMessage *ResultMessage,PCHAR *ResultOID,struct berval **ResultData,BOOLEAN Freeit); 554 WINLDAPAPI ULONG LDAPAPI ldap_parse_extended_resultW (LDAP *Connection,LDAPMessage *ResultMessage,PWCHAR *ResultOID,struct berval **ResultData,BOOLEAN Freeit); 570 WINLDAPAPI ULONG LDAPAPI ldap_parse_result (LDAP *Connection,LDAPMessage *ResultMessage,ULONG *ReturnCode,PCHAR *MatchedDNs,PCHAR *ErrorMessage,PCHAR **Referrals,PLDAPControlA **ServerControls,BOOLEAN Freeit); [all...] |
/external/apache-http/android/src/android/net/http/ |
HttpsConnection.java | 49 * A Connection connecting to a secure http server or tunneling through 52 public class HttpsConnection extends Connection { 115 * Object to wait on when suspending the SSL connection 120 * True if the connection is suspended pending the result of asking the 126 * True if the connection attempt should be aborted due to an ssl 135 * Contructor for a https connection. 145 * connection. 153 * Opens the connection to a http server or proxy. 155 * @return the opened low level connection 156 * @throws IOException if the connection fails for any reason [all...] |
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
JDBCStatement.java | 94 throw new SQLException("stale connection"); 164 throw new SQLException("stale connection"); 172 public Connection getConnection() throws SQLException {
|
/external/webrtc/webrtc/p2p/base/ |
stunport.h | 84 virtual Connection* CreateConnection(const Candidate& address,
|