HomeSort by relevance Sort by last modified time
    Searched defs:getSession (Results 26 - 50 of 159) sorted by null

12 3 4 5 6 7

  /external/conscrypt/common/src/main/java/org/conscrypt/
ClientSessionContext.java 60 NativeSslSession session = getSession(hostName, port);
103 private NativeSslSession getSession(String host, int port) {
AbstractSessionContext.java 118 public final SSLSession getSession(byte[] sessionId) {
Java8EngineWrapper.java 170 public SSLSession getSession() {
171 return delegate.getSession();
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ServletTestUtils.java 83 @Override public HttpSession getSession() {
  /frameworks/base/core/java/android/se/omapi/
Channel.java 186 public @NonNull Session getSession() {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RadioCapability.java 160 public int getSession() {
205 + " mSession=" + getSession()
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
ImageShadowTask.java 135 public CaptureSession getSession() {
  /packages/apps/Camera2/src/com/android/camera/session/
CaptureSessionManager.java 105 public CaptureSession getSession(Uri sessionUri);
CaptureSessionManagerImpl.java 292 public CaptureSession getSession(Uri sessionUri) {
  /external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
SSLSessionContextTest.java 69 c.clientContext.getClientSessionContext().getSession(null);
74 assertNull(c.clientContext.getClientSessionContext().getSession(new byte[0]));
75 assertNull(c.clientContext.getClientSessionContext().getSession(new byte[1]));
77 c.serverContext.getServerSessionContext().getSession(null);
82 assertNull(c.serverContext.getServerSessionContext().getSession(new byte[0]));
83 assertNull(c.serverContext.getServerSessionContext().getSession(new byte[1]));
90 assertNotNull(client.getSession(clientId));
91 assertTrue(Arrays.equals(clientId, client.getSession(clientId).getId()));
96 assertNotNull(server.getSession(serverId));
97 assertTrue(Arrays.equals(serverId, server.getSession(serverId).getId()))
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/media/
MediaSessionService2Impl.java 64 return getSession();
67 MediaSession2 getSession() {
  /frameworks/base/core/java/android/database/sqlite/
SQLiteProgram.java 100 protected final SQLiteSession getSession() {
  /frameworks/support/media/src/main/java/androidx/media/
MediaSessionService2.java 201 * @see #getSession()
226 public final @Nullable MediaSession2 getSession() {
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLEngine.java 66 * using the {@link #getSession()} method.
220 * int appSize = engine.getSession().getApplicationBufferSize();
228 * int netSize = engine.getSession().getPacketBufferSize();
    [all...]
SSLSocket.java 68 * session attributes by using the <em>getSession</em> method.
76 * <LI> a call to <code>getSession</code> tries to set up a session
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DicTraverseSession.java 62 public long getSession() {
  /external/conscrypt/android-stub/src/main/java/com/android/org/conscrypt/
OpenSSLSocketImpl.java 114 public SSLSession getSession() {
  /external/conscrypt/android-stub/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSocketImpl.java 114 public SSLSession getSession() {
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ContinuingHttpServletRequest.java 66 @Override public HttpSession getSession() {
70 @Override public HttpSession getSession(boolean create) {
  /external/okhttp/android/test/java/com/squareup/okhttp/internal/
PlatformTest.java 191 public SSLSession getSession() {
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DataUsageController.java 82 private INetworkStatsSession getSession() {
156 final INetworkStatsSession session = getSession();
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareClientState.java 200 public WifiAwareDiscoverySessionState getSession(int sessionId) {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySSLContextSpi.java 135 public SSLSession getSession() { return null; }
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
MySSLContextSpi.java 133 public SSLSession getSession() { return null; }
  /packages/apps/Dialer/java/com/android/dialer/enrichedcall/
EnrichedCallManager.java 138 * Callback fired when state changes. Listeners should call {@link #getSession(long)} or {@link
139 * #getSession(String, String, Filter)} to retrieve the new state.
159 Session getSession(@NonNull String uniqueCallId, @NonNull String number, @Nullable Filter filter);
164 Session getSession(long sessionId);

Completed in 1165 milliseconds

12 3 4 5 6 7