HomeSort by relevance Sort by last modified time
    Searched refs:getSession (Results 1 - 25 of 203) sorted by null

1 2 3 4 5 6 7 8 9

  /external/testng/src/test/java/test/guice/
MyContext.java 5 MySession getSession();
MyContextImpl.java 8 public MySession getSession() {
GuiceTestModule.java 16 bind(MySession.class).toInstance(myContext.getSession());
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLSessionContext.java 68 public SSLSession getSession(byte[] sessionId);
SSLSessionBindingEvent.java 89 public SSLSession getSession()
  /frameworks/base/core/java/android/database/sqlite/
SQLiteStatement.java 44 getSession().execute(getSql(), getBindArgs(), getConnectionFlags(), null);
64 return getSession().executeForChangedRowCount(
86 return getSession().executeForLastInsertedRowId(
107 return getSession().executeForLong(
128 return getSession().executeForString(
149 return getSession().executeForBlobFileDescriptor(
SQLiteQuery.java 62 int numRows = getSession().executeForCursorWindow(getSql(), getBindArgs(),
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLSessions.java 69 SSLSession invalid = ssl.getSession();
71 return new TestSSLSessions(invalid, s.server.getSession(), s.client.getSession(), s);
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/serialization/
HandshakeCompletedEventTest.java 41 return new Object[] { new HandshakeCompletedEvent(soc, soc.getSession()) };
51 test.getSession();
SSLSessionBindingEventTest.java 41 return new Object[] { new SSLSessionBindingEvent(soc.getSession(), "someName") };
  /external/conscrypt/src/main/java/org/conscrypt/
ServerSessionContext.java 56 public SSLSession getSession(byte[] sessionId) {
58 SSLSession cachedSession = super.getSession(sessionId);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RadioCapability.java 160 public int getSession() {
205 + " mSession=" + getSession()
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSessionContextImplTest.java 48 assertTrue(context.getSession(id) != null);
51 SSLSession ses = context.getSession(ses1.getId());
54 ses = context.getSession(ses3.getId());
  /cts/tests/tests/print/src/android/print/cts/services/
PrinterDiscoverySessionCallbacks.java 33 public StubbablePrinterDiscoverySession getSession() {
  /frameworks/base/core/tests/coretests/src/android/print/mockservice/
PrinterDiscoverySessionCallbacks.java 33 public StubbablePrinterDiscoverySession getSession() {
  /packages/apps/Camera2/src/com/android/camera/processing/
ProcessingTask.java 96 public CaptureSession getSession();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLSessionBindingListenerTest.java 65 SSLSession ss = sock.getSession();
79 SSLSession ss = sock.getSession();
SSLSessionBindingEventTest.java 45 if (!event.getSession().equals(ses)) {
78 * javax.net.ssl.SSLSessionBindingEvent#getSession()
83 assertEquals("Incorrect session", ses, event.getSession());
  /external/conscrypt/src/test/java/org/conscrypt/
ClientSessionContextTest.java 90 assertSame(s.getPeerHost(), s, context.getSession(s.getId()));
91 assertSame(s.getPeerHost(), s, context.getSession(s.getPeerHost(), 443));
94 assertNull(s.getPeerHost(), context.getSession(s.getId()));
95 assertNull(s.getPeerHost(), context.getSession(s.getPeerHost(), 443));
102 sessions.add(context.getSession(id));
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSessionContextTest.java 83 c.clientContext.getClientSessionContext().getSession(null);
87 assertNull(c.clientContext.getClientSessionContext().getSession(new byte[0]));
88 assertNull(c.clientContext.getClientSessionContext().getSession(new byte[1]));
90 c.serverContext.getServerSessionContext().getSession(null);
94 assertNull(c.serverContext.getServerSessionContext().getSession(new byte[0]));
95 assertNull(c.serverContext.getServerSessionContext().getSession(new byte[1]));
102 assertNotNull(client.getSession(clientId));
103 assertTrue(Arrays.equals(clientId, client.getSession(clientId).getId()));
108 assertNotNull(server.getSession(serverId));
109 assertTrue(Arrays.equals(serverId, server.getSession(serverId).getId()))
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/transport/
MailTransport.java 129 if (sslSocket.getSession() != null) {
131 sslSocket.getSession().getProtocol(),
132 sslSocket.getSession().getCipherSuite(), 0);
176 if (sslSocket.getSession() != null) {
178 sslSocket.getSession().getProtocol(),
179 sslSocket.getSession().getCipherSuite(), 0);
218 SSLSession session = ssl.getSession();
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
PairingContext.java 88 Certificate localCert = PoloUtil.getLocalCert(socket.getSession());
89 Certificate peerCert = PoloUtil.getPeerCert(socket.getSession());
  /external/jetty/src/java/org/eclipse/jetty/server/
ServletRequestHttpWrapper.java 141 public HttpSession getSession(boolean create)
146 public HttpSession getSession()
  /external/llvm/tools/llvm-pdbdump/
TypedefDumper.cpp 32 if (auto TypeSymbol = Symbol.getSession().getSymbolById(TargetId))
56 auto PointeeType = Symbol.getSession().getSymbolById(PointeeId);
  /frameworks/base/core/tests/coretests/src/android/net/
SSLSessionCacheTest.java 47 clientCtx.getSession("www.foogle.com", 443);
52 clientCtx.getSession("www.foogle.com", 443);

Completed in 6883 milliseconds

1 2 3 4 5 6 7 8 9