Home
last modified time | relevance | path

Searched defs:session (Results 1 – 25 of 1869) sorted by relevance

12345678910>>...75

/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/tls/
DHostnameVerifierTest.java42 FakeSSLSession session = new FakeSSLSession(); in verify() local
48 SSLSession session = session("" in verifyCn() local
83 SSLSession session = session("" in verifyNonAsciiCn() local
117 SSLSession session = session("" in verifySubjectAlt() local
158 SSLSession session = session("" in verifyNonAsciiSubjectAlt() local
199 SSLSession session = session("" in verifySubjectAltOnly() local
233 SSLSession session = session("" in verifyMultipleCn() local
272 SSLSession session = session("" in verifyWilcardCn() local
311 SSLSession session = session("" in verifyWilcardCnOnTld() local
353 SSLSession session = session("" in testWilcardNonAsciiSubjectAlt() local
[all …]
/external/dexmaker/dexmaker-mockito-inline-extended-tests/src/main/java/com/android/dx/mockito/inline/extended/tests/
DMockStatic.java96 MockitoSession session = mockitoSession().spyStatic(Settings.Global.class).startMocking(); in spyStatic() local
122 MockitoSession session = mockitoSession().spyStatic(NoDefaultConstructorClass.class) in spyStaticOnObjectWithNoDefaultConstructor() local
140 MockitoSession session = mockitoSession().mockStatic(Settings.Global.class).startMocking(); in mockStatic() local
160 MockitoSession session = mockitoSession().mockStatic(SubClass.class).startMocking(); in mockOverriddenStaticMethod() local
191 MockitoSession session = mockitoSession().mockStatic(SuperClass.class).startMocking(); in mockSuperMethod() local
227 MockitoSession session = mockitoSession().mockStatic(SuperClass.class).startMocking(); in resetMock() local
243 MockitoSession session = mockitoSession().spyStatic(SuperClass.class).startMocking(); in resetSpy() local
262 MockitoSession session = mockitoSession().mockStatic(SuperClass.class).startMocking(); in staticMockingIsSeparateFromNonStaticMocking() local
292 MockitoSession session = mockitoSession().mockStatic(SuperClass.class) in mockWithTwoClasses() local
307 MockitoSession session = mockitoSession().mockStatic(SuperClass.class) in doReturnMockWithTwoClasses() local
[all …]
DVerifyStatic.java44 MockitoSession session = mockitoSession().mockStatic(EchoClass.class).startMocking(); in verifyMockedStringMethod() local
60 MockitoSession session = mockitoSession().mockStatic(ConsumeClass.class).startMocking(); in verifyMockedVoidMethod() local
75 MockitoSession session = mockitoSession().mockStatic(EchoClass.class) in verifyWithTwoMocks() local
96 MockitoSession session = mockitoSession().spyStatic(EchoClass.class).startMocking(); in verifySpiedStringMethod() local
112 MockitoSession session = mockitoSession().mockStatic(EchoClass.class).mockStatic in verifyInOrder() local
144 MockitoSession session = mockitoSession().mockStatic(EchoClass.class).startMocking(); in verifyBadOrder() local
159 MockitoSession session = mockitoSession().mockStatic(EchoClass.class).startMocking(); in verifyBadMatcher() local
180 MockitoSession session = mockitoSession().mockStatic(EchoClass.class).startMocking(); in zeroInvocationsThrowsIfThereWasAnInvocation() local
192 MockitoSession session = mockitoSession().spyStatic(EchoClass.class).startMocking(); in verifyWithIgnoreStubs() local
/external/boringssl/src/ssl/
Dssl_session.cc192 UniquePtr<SSL_SESSION> SSL_SESSION_dup(SSL_SESSION *session, int dup_flags) { in SSL_SESSION_dup()
283 void ssl_session_rebase_time(SSL *ssl, SSL_SESSION *session) { in ssl_session_rebase_time()
312 void ssl_session_renew_timeout(SSL *ssl, SSL_SESSION *session, in ssl_session_renew_timeout()
328 uint16_t ssl_session_protocol_version(const SSL_SESSION *session) { in ssl_session_protocol_version()
340 const EVP_MD *ssl_session_get_digest(const SSL_SESSION *session) { in ssl_session_get_digest()
352 UniquePtr<SSL_SESSION> session = ssl_session_new(ssl->ctx->x509_method); in ssl_get_new_session() local
571 const SSL_SESSION *session) { in ssl_encrypt_ticket()
591 const SSL_SESSION *session) { in ssl_session_is_context_valid()
601 int ssl_session_is_time_valid(const SSL *ssl, const SSL_SESSION *session) { in ssl_session_is_time_valid()
618 const SSL_SESSION *session) { in ssl_session_is_resumable()
[all …]
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java70 public void handleCommand(Command command, Session session) { in handleCommand()
111 protected abstract void handle(Command command, Session session); in handle()
129 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
170 protected void sendReply(Session session, int replyCode) { in sendReply()
186 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
198 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
212 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
225 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
238 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java70 public void handleCommand(Command command, Session session) { in handleCommand()
111 protected abstract void handle(Command command, Session session); in handle()
129 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
170 protected void sendReply(Session session, int replyCode) { in sendReply()
186 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
198 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
212 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
225 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
238 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java70 public void handleCommand(Command command, Session session) { in handleCommand()
111 protected abstract void handle(Command command, Session session); in handle()
129 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
170 protected void sendReply(Session session, int replyCode) { in sendReply()
186 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
198 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
212 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
225 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
238 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java70 public void handleCommand(Command command, Session session) { in handleCommand()
111 protected abstract void handle(Command command, Session session); in handle()
129 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
170 protected void sendReply(Session session, int replyCode) { in sendReply()
186 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
198 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
212 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
225 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
238 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java70 public void handleCommand(Command command, Session session) { in handleCommand()
111 protected abstract void handle(Command command, Session session); in handle()
129 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
170 protected void sendReply(Session session, int replyCode) { in sendReply()
186 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
198 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
212 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
225 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
238 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java72 public void handleCommand(Command command, Session session) { in handleCommand()
109 protected abstract void handle(Command command, Session session); in handle()
127 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
144 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
169 protected void sendReply(Session session, int replyCode) { in sendReply()
185 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
197 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
211 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
234 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
247 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java70 public void handleCommand(Command command, Session session) { in handleCommand()
111 protected abstract void handle(Command command, Session session); in handle()
129 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
170 protected void sendReply(Session session, int replyCode) { in sendReply()
186 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
198 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
212 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
225 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
238 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java70 public void handleCommand(Command command, Session session) { in handleCommand()
111 protected abstract void handle(Command command, Session session); in handle()
129 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
170 protected void sendReply(Session session, int replyCode) { in sendReply()
186 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
198 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
212 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
225 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
238 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java70 public void handleCommand(Command command, Session session) { in handleCommand()
111 protected abstract void handle(Command command, Session session); in handle()
129 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
170 protected void sendReply(Session session, int replyCode) { in sendReply()
186 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
198 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
212 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
225 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
238 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java70 public void handleCommand(Command command, Session session) { in handleCommand()
111 protected abstract void handle(Command command, Session session); in handle()
129 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
170 protected void sendReply(Session session, int replyCode) { in sendReply()
186 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
198 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
212 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
225 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
238 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java70 public void handleCommand(Command command, Session session) { in handleCommand()
111 protected abstract void handle(Command command, Session session); in handle()
129 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
170 protected void sendReply(Session session, int replyCode) { in sendReply()
186 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
198 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
212 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
225 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
238 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/command/
DAbstractFakeCommandHandler.java70 public void handleCommand(Command command, Session session) { in handleCommand()
111 protected abstract void handle(Command command, Session session); in handle()
129 protected void sendReply(Session session, int replyCode, String messageKey) { in sendReply()
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) { in sendReply()
170 protected void sendReply(Session session, int replyCode) { in sendReply()
186 protected void sendReply(Session session, int replyCode, List args) { in sendReply()
198 …private void handleException(Command command, Session session, Throwable exception, int replyCode)… in handleException()
212 …private void handleFileSystemException(Command command, Session session, FileSystemException excep… in handleFileSystemException()
225 protected Object getRequiredSessionAttribute(Session session, String name) { in getRequiredSessionAttribute()
238 protected void verifyLoggedIn(Session session) { in verifyLoggedIn()
[all …]
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/
DClassLevelManagedLocalTransactionsTest.java64 EntityManager session = injector.getInstance(EntityManager.class); in testSimpleTransaction() local
94 EntityManager session = injector.getInstance(EntityManager.class); in testSimpleTransactionRollbackOnChecked() local
121 EntityManager session = injector.getInstance(EntityManager.class); in testSimpleTransactionRollbackOnCheckedExcepting() local
146 EntityManager session = injector.getInstance(EntityManager.class); in testSimpleTransactionRollbackOnUnchecked() local
166 @Inject EntityManager session; field in ClassLevelManagedLocalTransactionsTest.TransactionalObject
178 @Inject EntityManager session; field in ClassLevelManagedLocalTransactionsTest.TransactionalObject4
193 @Inject EntityManager session; field in ClassLevelManagedLocalTransactionsTest.TransactionalObject3
207 @Inject EntityManager session; field in ClassLevelManagedLocalTransactionsTest.TransactionalObject2
/external/nanohttpd/fileupload/src/main/java/fi/iki/elonen/
DNanoFileUpload.java58 private NanoHTTPD.IHTTPSession session; field in NanoFileUpload.NanoHttpdContext
60 public NanoHttpdContext(NanoHTTPD.IHTTPSession session) { in NanoHttpdContext()
98 public static final boolean isMultipartContent(NanoHTTPD.IHTTPSession session) { in isMultipartContent()
106 public List<FileItem> parseRequest(NanoHTTPD.IHTTPSession session) throws FileUploadException { in parseRequest()
110 …public Map<String, List<FileItem>> parseParameterMap(NanoHTTPD.IHTTPSession session) throws FileUp… in parseParameterMap()
114 …public FileItemIterator getItemIterator(NanoHTTPD.IHTTPSession session) throws FileUploadException… in getItemIterator()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DAbstractSessionContext.java92 NativeSslSession session = iter.next(); in getIds() local
124 NativeSslSession session; in getSession() local
164 NativeSslSession session = i.next(); in setSessionTimeout() local
203 final void cacheSession(NativeSslSession session) { in cacheSession()
224 final void removeSession(NativeSslSession session) { in removeSession()
248 NativeSslSession session; in getSessionFromCache() local
271 abstract void onBeforeAddSession(NativeSslSession session); in onBeforeAddSession()
279 abstract void onBeforeRemoveSession(NativeSslSession session); in onBeforeRemoveSession()
298 NativeSslSession session = i.next(); in trimToSize() local
/external/conscrypt/common/src/main/java/org/conscrypt/
DAbstractSessionContext.java91 NativeSslSession session = iter.next(); in getIds() local
123 NativeSslSession session; in getSession() local
163 NativeSslSession session = i.next(); in setSessionTimeout() local
202 final void cacheSession(NativeSslSession session) { in cacheSession()
223 final void removeSession(NativeSslSession session) { in removeSession()
247 NativeSslSession session; in getSessionFromCache() local
270 abstract void onBeforeAddSession(NativeSslSession session); in onBeforeAddSession()
278 abstract void onBeforeRemoveSession(NativeSslSession session); in onBeforeRemoveSession()
297 NativeSslSession session = i.next(); in trimToSize() local
/external/skqp/platform_tools/android/apps/arcore/src/main/cpp/
DSkArCamera.cpp12 std::unique_ptr<SkArCamera> SkArCamera::Make(SkArSession* session, SkArFrame* frame) { in Make()
20 SkArCamera::SkArCamera(SkArSession* session, SkArFrame* frame) : fArCamera(nullptr) { in SkArCamera()
24 void SkArCamera::getViewMatrix(const SkArSession* session, float outColMajor[16]) { in getViewMatrix()
28 void SkArCamera::getProjectionMatrix(const SkArSession* session, float nearClip, in getProjectionMatrix()
34 SkArTrackingState SkArCamera::getTrackingState(const SkArSession* session) { in getTrackingState()
/external/skia/platform_tools/android/apps/arcore/src/main/cpp/
DSkArCamera.cpp12 std::unique_ptr<SkArCamera> SkArCamera::Make(SkArSession* session, SkArFrame* frame) { in Make()
20 SkArCamera::SkArCamera(SkArSession* session, SkArFrame* frame) : fArCamera(nullptr) { in SkArCamera()
24 void SkArCamera::getViewMatrix(const SkArSession* session, float outColMajor[16]) { in getViewMatrix()
28 void SkArCamera::getProjectionMatrix(const SkArSession* session, float nearClip, in getProjectionMatrix()
34 SkArTrackingState SkArCamera::getTrackingState(const SkArSession* session) { in getTrackingState()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowPackageInstallerTest.java67 PackageInstaller.Session session = packageInstaller.openSession(sessionId); in packageInstallerOpenSession() local
74 PackageInstaller.Session session = packageInstaller.openSession(-99); in packageInstallerOpenSession_nonExistantSessionThrowsException() local
80 PackageInstaller.Session session = packageInstaller.openSession(sessionId); in sessionOpenWriteDoesNotThrowException() local
89 PackageInstaller.Session session = packageInstaller.openSession(sessionId); in sessionCommitSession_streamProperlyClosed() local
100 PackageInstaller.Session session = packageInstaller.openSession(sessionId); in sessionCommitSession_streamStillOpen() local
114 PackageInstaller.Session session = packageInstaller.openSession(sessionId); in registerSessionCallback_sessionFails() local
133 PackageInstaller.Session session = packageInstaller.openSession(sessionId); in registerSessionCallback_sessionSucceeds() local
/external/mockftpserver/tags/1.0/src/main/java/org/mockftpserver/stub/command/
DAbstractStubDataCommandHandler.java100 …public final void handleCommand(Command command, Session session, InvocationRecord invocationRecor… in handleCommand()
118 protected void sendFinalReply(Session session) { in sendFinalReply()
134 …protected void beforeProcessData(Command command, Session session, InvocationRecord invocationReco… in beforeProcessData()
150 …protected abstract void processData(Command command, Session session, InvocationRecord invocationR… in processData()
162 …protected void afterProcessData(Command command, Session session, InvocationRecord invocationRecor… in afterProcessData()
171 private void sendPreliminaryReply(Session session) { in sendPreliminaryReply()
/external/mockftpserver/tags/1.2.3/src/main/java/org/mockftpserver/stub/command/
DAbstractStubDataCommandHandler.java100 …public final void handleCommand(Command command, Session session, InvocationRecord invocationRecor… in handleCommand()
118 protected void sendFinalReply(Session session) { in sendFinalReply()
134 …protected void beforeProcessData(Command command, Session session, InvocationRecord invocationReco… in beforeProcessData()
150 …protected abstract void processData(Command command, Session session, InvocationRecord invocationR… in processData()
162 …protected void afterProcessData(Command command, Session session, InvocationRecord invocationRecor… in afterProcessData()
171 private void sendPreliminaryReply(Session session) { in sendPreliminaryReply()

12345678910>>...75