/third_party/node/lib/ |
D | _tls_common.js | 75 function SecureContext(secureProtocol, secureOptions, minVersion, maxVersion) { argument 78 maxVersion); 84 if (maxVersion != null) 85 throw new ERR_TLS_PROTOCOL_VERSION_CONFLICT(maxVersion, secureProtocol); 91 toV('maximum', maxVersion, tls.DEFAULT_MAX_VERSION)); 105 maxVersion, 115 minVersion, maxVersion);
|
D | _tls_wrap.js | 1412 if (options.maxVersion) 1413 this.maxVersion = options.maxVersion; 1415 this.maxVersion = undefined; 1483 maxVersion: this.maxVersion, property 1534 if (options.maxVersion) this.maxVersion = options.maxVersion;
|
D | https.js | 261 if (options.maxVersion) 262 name += options.maxVersion;
|
/third_party/node/test/parallel/ |
D | test-tls-getcipher.js | 52 maxVersion: 'TLSv1.2', property 67 maxVersion: 'TLSv1.2', property 82 maxVersion: 'TLSv1.3', property 89 maxVersion: 'TLSv1.3', property
|
D | test-tls-set-ciphers.js | 22 return options.maxVersion; 34 maxVersion: max_tls_ver(cciphers, options), property 40 maxVersion: max_tls_ver(sciphers, options), property 107 test('AES256-SHA', U, 'TLS_AES_256_GCM_SHA384', U, U, { maxVersion: 'TLSv1.3' }); property 108 test(U, 'AES256-SHA', 'TLS_AES_256_GCM_SHA384', U, U, { maxVersion: 'TLSv1.3' }); property
|
D | test-tls-multi-pfx.js | 27 maxVersion: 'TLSv1.2', property 33 maxVersion: 'TLSv1.2', property
|
D | test-tls-multi-key.js | 157 maxVersion: 'TLSv1.2' 177 maxVersion: 'TLSv1.2',
|
D | test-tls-ecdh.js | 42 maxVersion: 'TLSv1.2' property
|
D | test-tls-ecdh-auto.js | 27 maxVersion: 'TLSv1.2', property
|
D | test-tls-keylog-tlsv13.js | 17 maxVersion: 'TLSv1.3', property
|
D | test-https-agent-keylog.js | 17 maxVersion: 'TLSv1.3', property
|
D | test-tls-ecdh-multiple.js | 27 maxVersion: 'TLSv1.2', property
|
/third_party/qrcodegen/c/ |
D | qrcodegen.h | 188 enum qrcodegen_Ecc ecl, int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl); 227 enum qrcodegen_Ecc ecl, int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl); 303 …int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl, uint8_t tempBuffer[], uin…
|
D | qrcodegen.c | 130 enum qrcodegen_Ecc ecl, int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl) { in qrcodegen_encodeText() argument 134 …return qrcodegen_encodeSegmentsAdvanced(NULL, 0, ecl, minVersion, maxVersion, mask, boostEcl, temp… in qrcodegen_encodeText() 135 size_t bufLen = (size_t)qrcodegen_BUFFER_LEN_FOR_VERSION(maxVersion); in qrcodegen_encodeText() 158 …return qrcodegen_encodeSegmentsAdvanced(&seg, 1, ecl, minVersion, maxVersion, mask, boostEcl, temp… in qrcodegen_encodeText() 168 enum qrcodegen_Ecc ecl, int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl) { in qrcodegen_encodeBinary() argument 179 …return qrcodegen_encodeSegmentsAdvanced(&seg, 1, ecl, minVersion, maxVersion, mask, boostEcl, data… in qrcodegen_encodeBinary() 205 …int minVersion, int maxVersion, enum qrcodegen_Mask mask, bool boostEcl, uint8_t tempBuffer[], uin… in qrcodegen_encodeSegmentsAdvanced() argument 207 …assert(qrcodegen_VERSION_MIN <= minVersion && minVersion <= maxVersion && maxVersion <= qrcodegen_… in qrcodegen_encodeSegmentsAdvanced() 217 if (version >= maxVersion) { // All versions in the range could not fit the given data in qrcodegen_encodeSegmentsAdvanced()
|
/third_party/node/benchmark/tls/ |
D | secure-pair.js | 28 maxVersion: 'TLSv1.2', property 42 maxVersion: options.maxVersion, property
|
D | tls-connect.js | 25 maxVersion: 'TLSv1.2', property
|
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/ |
D | QrSegmentAdvanced.java | 63 …Segment> makeSegmentsOptimally(CharSequence text, QrCode.Ecc ecl, int minVersion, int maxVersion) { in makeSegmentsOptimally() argument 67 …if (!(QrCode.MIN_VERSION <= minVersion && minVersion <= maxVersion && maxVersion <= QrCode.MAX_VER… in makeSegmentsOptimally() 83 if (version >= maxVersion) { // All versions in the range could not fit the given text in makeSegmentsOptimally()
|
D | QrCode.java | 143 …public static QrCode encodeSegments(List<QrSegment> segs, Ecc ecl, int minVersion, int maxVersion,… in encodeSegments() argument 146 …if (!(MIN_VERSION <= minVersion && minVersion <= maxVersion && maxVersion <= MAX_VERSION) || mask … in encodeSegments() 156 if (version >= maxVersion) { // All versions in the range could not fit the given data in encodeSegments()
|
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/ |
D | QrSegmentAdvanced.java | 63 …ist<QrSegment> makeSegmentsOptimally(String text, QrCode.Ecc ecl, int minVersion, int maxVersion) { in makeSegmentsOptimally() argument 67 …if (!(QrCode.MIN_VERSION <= minVersion && minVersion <= maxVersion && maxVersion <= QrCode.MAX_VER… in makeSegmentsOptimally() 83 if (version >= maxVersion) { // All versions in the range could not fit the given text in makeSegmentsOptimally()
|
D | QrCode.java | 143 …public static QrCode encodeSegments(List<QrSegment> segs, Ecc ecl, int minVersion, int maxVersion,… in encodeSegments() argument 146 …if (!(MIN_VERSION <= minVersion && minVersion <= maxVersion && maxVersion <= MAX_VERSION) || mask … in encodeSegments() 156 if (version >= maxVersion) { // All versions in the range could not fit the given data in encodeSegments()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/eagl/ |
D | DisplayEAGL.mm | 95 const gl::Version &maxVersion = mRenderer->getMaxSupportedESVersion(); 96 if (maxVersion < gl::Version(2, 0)) 202 const gl::Version &maxVersion = getMaxSupportedESVersion(); 203 ASSERT(maxVersion >= gl::Version(2, 0)); 204 bool supportsES3 = maxVersion >= gl::Version(3, 0);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | RendererVk.cpp | 2391 gl::Version maxVersion = gl::Version(3, 2); in getMaxSupportedESVersion() local 2398 return maxVersion; in getMaxSupportedESVersion() 2405 maxVersion = LimitVersionTo(maxVersion, {3, 1}); in getMaxSupportedESVersion() 2411 maxVersion = LimitVersionTo(maxVersion, {3, 1}); in getMaxSupportedESVersion() 2426 maxVersion = LimitVersionTo(maxVersion, {3, 0}); in getMaxSupportedESVersion() 2433 maxVersion = LimitVersionTo(maxVersion, {3, 0}); in getMaxSupportedESVersion() 2444 maxVersion = LimitVersionTo(maxVersion, {2, 0}); in getMaxSupportedESVersion() 2452 maxVersion = LimitVersionTo(maxVersion, {2, 0}); in getMaxSupportedESVersion() 2461 maxVersion = LimitVersionTo(maxVersion, {2, 0}); in getMaxSupportedESVersion() 2474 maxVersion = LimitVersionTo(maxVersion, {2, 0}); in getMaxSupportedESVersion() [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/ |
D | DisplayWGL.cpp | 329 const gl::Version &maxVersion = mRenderer->getMaxSupportedESVersion(); in initializeImpl() local 330 if (maxVersion < gl::Version(2, 0)) in initializeImpl() 488 const gl::Version &maxVersion = getMaxSupportedESVersion(); in generateConfigs() local 489 ASSERT(maxVersion >= gl::Version(2, 0)); in generateConfigs() 490 bool supportsES3 = maxVersion >= gl::Version(3, 0); in generateConfigs()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/ |
D | DisplayGLX.cpp | 340 const gl::Version &maxVersion = mRenderer->getMaxSupportedESVersion(); in initialize() local 341 if (maxVersion < gl::Version(2, 0)) in initialize() 573 const gl::Version &maxVersion = getMaxSupportedESVersion(); in generateConfigs() local 574 ASSERT(maxVersion >= gl::Version(2, 0)); in generateConfigs() 575 bool supportsES3 = maxVersion >= gl::Version(3, 0); in generateConfigs()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/cgl/ |
D | DisplayCGL.mm | 225 const gl::Version &maxVersion = mRenderer->getMaxSupportedESVersion(); 226 if (maxVersion < gl::Version(2, 0)) 367 const gl::Version &maxVersion = getMaxSupportedESVersion(); 368 ASSERT(maxVersion >= gl::Version(2, 0)); 369 bool supportsES3 = maxVersion >= gl::Version(3, 0);
|