Searched refs:isClient (Results 1 - 25 of 30) sorted by relevance

12

/openjdk9/jdk/test/javax/net/ssl/DTLS/
H A DClientAuth.java49 SSLEngine createSSLEngine(boolean isClient) throws Exception { argument
50 SSLEngine engine = super.createSSLEngine(isClient);
52 if (!isClient) {
H A DCipherSuite.java69 SSLEngine createSSLEngine(boolean isClient) throws Exception { argument
70 SSLEngine engine = super.createSSLEngine(isClient);
72 if (isClient) {
H A DWeakCipherSuite.java64 SSLEngine createSSLEngine(boolean isClient) throws Exception { argument
65 SSLEngine engine = super.createSSLEngine(isClient);
H A DPacketLossRetransmission.java79 private static boolean isClient; field in class:PacketLossRetransmission
85 isClient = args[0].equals("client");
99 if (needPacketLoss && (!(isClient ^ engine.getUseClientMode()))) {
H A DRespondToRetransmit.java79 private static boolean isClient; field in class:RespondToRetransmit
85 isClient = args[0].equals("client");
99 if (needPacketDuplicate && (!(isClient ^ engine.getUseClientMode()))) {
/openjdk9/jdk/test/javax/net/ssl/TLSCommon/
H A DNotEnabledRC4Test.java44 private static void rc4Test(String[] ciphers, boolean isClient) { argument
45 String mode = isClient ? "client" : "server";
/openjdk9/jdk/test/java/net/Socket/
H A DUrgentDataTest.java37 boolean isClient, isServer; field in class:UrgentDataTest
57 test.isClient = true;
65 test.isClient = false;
70 test.isClient = true;
94 if (isClient) {
108 if (isClient) {
127 if (isClient) {
/openjdk9/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DWindowDimensions.java36 * If isClient is true, the bounds represent the client window area.
39 public WindowDimensions(int x, int y, int width, int height, boolean isClient) { argument
40 this(new Rectangle(x, y, width, height), null, isClient);
44 * If isClient is true, the bounds represent the client window area.
47 public WindowDimensions(Rectangle rec, Insets ins, boolean isClient) { argument
51 isClientSizeSet = isClient;
58 * If isClient is true, the bounds represent the client window area.
61 public WindowDimensions(Point loc, Dimension size, Insets in, boolean isClient) { argument
62 this(new Rectangle(loc, size), in, isClient);
66 * If isClient i
69 WindowDimensions(Rectangle bounds, boolean isClient) argument
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/handler/
H A DSOAPHandlerProcessor.java57 public SOAPHandlerProcessor(boolean isClient, HandlerTube owner, WSBinding binding, List<? extends Handler> chain) { argument
59 this.isClient = isClient;
98 return isClient ? soapVersion.faultCodeClient : soapVersion.faultCodeServer;
/openjdk9/jdk/src/java.base/share/classes/sun/security/ssl/
H A DX509TrustManagerImpl.java149 String authType, boolean isClient) {
161 if (isClient) {
191 Socket socket, boolean isClient) throws CertificateException {
192 Validator v = checkTrustedInit(chain, authType, isClient);
222 if (!isClient && isExtSession) {
227 constraints, isClient ? null : authType);
238 checkIdentity(session, trustedChain[0], identityAlg, isClient,
243 null, isClient ? null : authType);
252 SSLEngine engine, boolean isClient) throws CertificateException {
253 Validator v = checkTrustedInit(chain, authType, isClient);
148 checkTrustedInit(X509Certificate[] chain, String authType, boolean isClient) argument
190 checkTrusted(X509Certificate[] chain, String authType, Socket socket, boolean isClient) argument
251 checkTrusted(X509Certificate[] chain, String authType, SSLEngine engine, boolean isClient) argument
430 checkIdentity(SSLSession session, X509Certificate cert, String algorithm, boolean isClient, List<SNIServerName> sniNames, boolean chainsToPublicCA) argument
[all...]
H A DHandshaker.java137 private boolean isClient; field in class:Handshaker
237 boolean isClient, ProtocolVersion activeProtocolVersion,
242 init(context, enabledProtocols, needCertVerify, isClient,
249 boolean isClient, ProtocolVersion activeProtocolVersion,
255 init(context, enabledProtocols, needCertVerify, isClient,
261 boolean needCertVerify, boolean isClient,
275 this.isClient = isClient;
862 if (isClient) {
882 if (isClient) {
235 Handshaker(SSLSocketImpl c, SSLContextImpl context, ProtocolList enabledProtocols, boolean needCertVerify, boolean isClient, ProtocolVersion activeProtocolVersion, boolean isInitialHandshake, boolean secureRenegotiation, byte[] clientVerifyData, byte[] serverVerifyData) argument
247 Handshaker(SSLEngineImpl engine, SSLContextImpl context, ProtocolList enabledProtocols, boolean needCertVerify, boolean isClient, ProtocolVersion activeProtocolVersion, boolean isInitialHandshake, boolean secureRenegotiation, byte[] clientVerifyData, byte[] serverVerifyData, boolean isDTLS) argument
260 init(SSLContextImpl context, ProtocolList enabledProtocols, boolean needCertVerify, boolean isClient, ProtocolVersion activeProtocolVersion, boolean isInitialHandshake, boolean secureRenegotiation, byte[] clientVerifyData, byte[] serverVerifyData) argument
[all...]
H A DClientKeyExchangeService.java101 * @param isClient if true called from client side, otherwise from server
106 boolean isRelated(boolean isClient, AccessControlContext acc, Principal p); argument
H A DSSLContextImpl.java336 * @param isClient true if the caller is operating in a client side role,
341 boolean isStaplingEnabled(boolean isClient) { argument
342 return isClient ? clientEnableStapling : serverEnableStapling;
363 ProtocolList protocols, boolean isClient) {
365 if (isClient) {
1400 Socket socket, boolean isClient) throws CertificateException {
1440 checkAlgorithmConstraints(chain, constraints, isClient);
1445 SSLEngine engine, boolean isClient) throws CertificateException {
1482 checkAlgorithmConstraints(chain, constraints, isClient);
1487 AlgorithmConstraints constraints, boolean isClient) throw
362 getApplicableEnabledCipherSuiteList( ProtocolList protocols, boolean isClient) argument
1399 checkAdditionalTrust(X509Certificate[] chain, String authType, Socket socket, boolean isClient) argument
1444 checkAdditionalTrust(X509Certificate[] chain, String authType, SSLEngine engine, boolean isClient) argument
1486 checkAlgorithmConstraints(X509Certificate[] chain, AlgorithmConstraints constraints, boolean isClient) argument
[all...]
H A DHandshakeStateManager.java866 boolean isClient) throws SSLProtocolException {
876 if ((isClient && isInput) || (!isClient && !isInput)) {
865 changeCipherSpec(boolean isInput, boolean isClient) argument
/openjdk9/hotspot/test/compiler/testlibrary/
H A DCompilerUtils.java59 if (Platform.isClient() || Platform.isMinimal() || Platform.isEmulatedClient()) {
/openjdk9/hotspot/test/compiler/codecache/stress/
H A DOverloadCompileQueueTest.java70 } else if (Platform.isClient() || Platform.isMinimal() || Platform.isEmulatedClient()) {
/openjdk9/hotspot/test/native/
H A DGTestWrapper.java73 } else if (Platform.isClient()) {
/openjdk9/hotspot/test/compiler/tiered/
H A DNonTieredLevelsTest.java53 } else if (Platform.isClient() || Platform.isMinimal() || Platform.isEmulatedClient()) {
/openjdk9/jaxp/test/javax/xml/jaxp/libs/jdk/testlibrary/
H A DPlatform.java45 public static boolean isClient() { method in class:Platform
/openjdk9/jdk/test/lib/testlibrary/jdk/testlibrary/
H A DPlatform.java45 public static boolean isClient() { method in class:Platform
/openjdk9/jdk/test/javax/net/ssl/TLSv12/
H A DSignatureAlgorithms.java288 boolean isClient = sslSocket.getUseClientMode();
289 String mode = "[" + (isClient ? "Client" : "Server") + "]";
297 if (!isClient) {
/openjdk9/test/lib/jdk/test/lib/
H A DPlatform.java42 public static boolean isClient() { method in class:Platform
/openjdk9/jdk/test/javax/net/ssl/ciphersuites/
H A DECCurvesconstraints.java204 private static SSLContext generateSSLContext(boolean isClient) argument
224 if (isClient) {
/openjdk9/jdk/test/javax/net/ssl/ServerName/
H A DSSLSocketSNISensitive.java363 private static SSLContext generateSSLContext(boolean isClient) argument
383 if (isClient) {
/openjdk9/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/ssl/
H A DKrb5KeyExchangeService.java148 public boolean isRelated(boolean isClient, argument
156 isClient ? GSSCaller.CALLER_SSL_CLIENT
175 if (isClient) {

Completed in 225 milliseconds

12