/libcore/ojluni/src/main/java/javax/crypto/spec/ |
D | DESKeySpec.java | 44 private byte[] key; field in DESKeySpec 130 public DESKeySpec(byte[] key) throws InvalidKeyException { in DESKeySpec() argument 131 this(key, 0); in DESKeySpec() 153 public DESKeySpec(byte[] key, int offset) throws InvalidKeyException { in DESKeySpec() argument 154 if (key.length - offset < DES_KEY_LEN) { in DESKeySpec() 157 this.key = new byte[DES_KEY_LEN]; in DESKeySpec() 158 System.arraycopy(key, offset, this.key, 0, DES_KEY_LEN); in DESKeySpec() 168 return this.key.clone(); in getKey() 186 public static boolean isParityAdjusted(byte[] key, int offset) in isParityAdjusted() argument 188 if (key == null) { in isParityAdjusted() [all …]
|
D | DESedeKeySpec.java | 44 private byte[] key; field in DESedeKeySpec 61 public DESedeKeySpec(byte[] key) throws InvalidKeyException { in DESedeKeySpec() argument 62 this(key, 0); in DESedeKeySpec() 83 public DESedeKeySpec(byte[] key, int offset) throws InvalidKeyException { in DESedeKeySpec() argument 84 if (key.length - offset < 24) { in DESedeKeySpec() 87 this.key = new byte[24]; in DESedeKeySpec() 88 System.arraycopy(key, offset, this.key, 0, 24); in DESedeKeySpec() 98 return this.key.clone(); in getKey() 114 public static boolean isParityAdjusted(byte[] key, int offset) in isParityAdjusted() argument 116 if (key.length - offset < 24) { in isParityAdjusted() [all …]
|
D | SecretKeySpec.java | 59 private byte[] key; field in SecretKeySpec 91 public SecretKeySpec(byte[] key, String algorithm) { in SecretKeySpec() argument 92 if (key == null || algorithm == null) { in SecretKeySpec() 95 if (key.length == 0) { in SecretKeySpec() 98 this.key = key.clone(); in SecretKeySpec() 140 public SecretKeySpec(byte[] key, int offset, int len, String algorithm) { in SecretKeySpec() argument 141 if (key == null || algorithm == null) { in SecretKeySpec() 144 if (key.length == 0) { in SecretKeySpec() 147 if (key.length-offset < len) { in SecretKeySpec() 154 this.key = new byte[len]; in SecretKeySpec() [all …]
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
D | SecretKeySpecTest.java | 44 byte[] key = new byte[] {1, 2, 3, 4, 5}; in testSecretKeySpec1() 62 new SecretKeySpec(key, null); in testSecretKeySpec1() 68 SecretKeySpec ks = new SecretKeySpec(key, algorithm); in testSecretKeySpec1() 69 key[0] ++; in testSecretKeySpec1() 72 key[0] == ks.getEncoded()[0]); in testSecretKeySpec1() 82 byte[] key = new byte[] {1, 2, 3, 4, 5}; in testSecretKeySpec2() 102 new SecretKeySpec(key, offset, len, null); in testSecretKeySpec2() 109 new SecretKeySpec(key, offset, key.length, algorithm); in testSecretKeySpec2() 116 new SecretKeySpec(key, 0, -1, algorithm); in testSecretKeySpec2() 124 SecretKeySpec ks = new SecretKeySpec(key, algorithm); in testSecretKeySpec2() [all …]
|
/libcore/ojluni/src/main/java/sun/util/locale/ |
D | LocaleObjectCache.java | 51 public V get(K key) { in get() argument 55 CacheEntry<K, V> entry = map.get(key); in get() 60 V newVal = createObject(key); in get() 63 key = normalizeKey(key); in get() 64 if (key == null || newVal == null) { in get() 69 CacheEntry<K, V> newEntry = new CacheEntry<>(key, newVal, queue); in get() 71 entry = map.putIfAbsent(key, newEntry); in get() 77 map.put(key, newEntry); in get() 85 protected V put(K key, V value) { in put() argument 86 CacheEntry<K, V> entry = new CacheEntry<>(key, value, queue); in put() [all …]
|
D | Extension.java | 36 private final char key; field in Extension 39 protected Extension(char key) { in Extension() argument 40 this.key = key; in Extension() 43 Extension(char key, String value) { in Extension() argument 44 this.key = key; in Extension() 50 this.id = key + LanguageTag.SEP + value; in setValue() 54 return key; in getKey()
|
/libcore/ojluni/src/main/java/java/util/ |
D | Map.java | 164 boolean containsKey(Object key); in containsKey() argument 212 V get(Object key); in get() argument 240 V put(K key, V value); in put() argument 272 V remove(Object key); in remove() argument 586 default V getOrDefault(Object key, V defaultValue) { in getOrDefault() argument 588 return (((v = get(key)) != null) || containsKey(key)) in getOrDefault() 741 default V putIfAbsent(K key, V value) { in putIfAbsent() argument 742 V v = get(key); in putIfAbsent() 744 v = put(key, value); in putIfAbsent() 784 default boolean remove(Object key, Object value) { in remove() argument [all …]
|
D | MissingResourceException.java | 60 public MissingResourceException(String s, String className, String key) { in MissingResourceException() argument 63 this.key = key; in MissingResourceException() 84 MissingResourceException(String message, String className, String key, Throwable cause) { in MissingResourceException() argument 87 this.key = key; in MissingResourceException() 105 return key; in getKey() 123 private String key; field in MissingResourceException
|
D | AbstractMap.java | 143 public boolean containsKey(Object key) { in containsKey() argument 145 if (key==null) { in containsKey() 154 if (key.equals(e.getKey())) in containsKey() 175 public V get(Object key) { in get() argument 177 if (key==null) { in get() 186 if (key.equals(e.getKey())) in get() 208 public V put(K key, V value) { in put() argument 234 public V remove(Object key) { in remove() argument 237 if (key==null) { in remove() 246 if (key.equals(e.getKey())) in remove() [all …]
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentMap.java | 88 default V getOrDefault(Object key, V defaultValue) { in getOrDefault() argument 90 return ((v = get(key)) != null) ? v : defaultValue; in getOrDefault() 159 V putIfAbsent(K key, V value); in putIfAbsent() argument 190 boolean remove(Object key, Object value); in remove() argument 222 boolean replace(K key, V oldValue, V newValue); in replace() argument 254 V replace(K key, V value); in replace() argument 327 default V computeIfAbsent(K key, in computeIfAbsent() argument 331 return ((oldValue = get(key)) == null in computeIfAbsent() 332 && (newValue = mappingFunction.apply(key)) != null in computeIfAbsent() 333 && (oldValue = putIfAbsent(key, newValue)) == null) in computeIfAbsent() [all …]
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
D | MembershipKeyTest.java | 36 private MembershipKey key; field in MembershipKeyTest 50 key = client.join(MULTICAST_ADDRESS, NETWORK_INTERFACE, sourceAddress); in init() 52 key = client.join(MULTICAST_ADDRESS, NETWORK_INTERFACE); in init() 59 key = null; in tearDown() 73 assertTrue(key.isValid()); in check_isValid() 75 assertFalse(key.isValid()); in check_isValid() 89 assertTrue(key.isValid()); in check_isValid_OnDrop() 90 key.drop(); in check_isValid_OnDrop() 91 assertFalse(key.isValid()); in check_isValid_OnDrop() 105 key.drop(); in check_drop() [all …]
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | AbstractWatchService.java | 71 final void enqueueKey(WatchKey key) { in enqueueKey() argument 72 pendingKeys.offer(key); in enqueueKey() 87 private void checkKey(WatchKey key) { in checkKey() argument 88 if (key == CLOSE_KEY) { in checkKey() 90 enqueueKey(key); in checkKey() 98 WatchKey key = pendingKeys.poll(); in poll() local 99 checkKey(key); in poll() 100 return key; in poll() 108 WatchKey key = pendingKeys.poll(timeout, unit); in poll() local 109 checkKey(key); in poll() [all …]
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | MembershipRegistry.java | 57 for (MembershipKeyImpl key: keys) { in checkMembership() 58 if (key.networkInterface().equals(interf)) { in checkMembership() 62 if (key.sourceAddress() == null) in checkMembership() 63 return key; in checkMembership() 69 if (key.sourceAddress() == null) in checkMembership() 71 if (source.equals(key.sourceAddress())) in checkMembership() 72 return key; in checkMembership() 83 void add(MembershipKeyImpl key) { in add() argument 84 InetAddress group = key.group(); in add() 96 keys.add(key); in add() [all …]
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
D | ExemptionMechanismSpiTest.java | 66 protected void engineInit(Key key) throws InvalidKeyException, ExemptionMechanismException { in engineInit() argument 67 super.engineInit(key); in engineInit() 72 …protected void engineInit(Key key, AlgorithmParameterSpec params) throws InvalidKeyException, Inva… in engineInit() argument 73 super.engineInit(key, params); in engineInit() 78 …protected void engineInit(Key key, AlgorithmParameters params) throws InvalidKeyException, Invalid… in engineInit() argument 79 super.engineInit(key, params); in engineInit() 98 Key key = null; in testExemptionMechanismSpi01() local 102 emSpi.engineInit(key); in testExemptionMechanismSpi01() 107 emSpi.engineInit(key, params); in testExemptionMechanismSpi01() 112 emSpi.engineInit(key, parSpec); in testExemptionMechanismSpi01() [all …]
|
/libcore/ojluni/src/main/java/java/security/ |
D | Provider.java | 327 public synchronized Object put(Object key, Object value) { in put() argument 331 key + "/" + value +"]"); in put() 333 return implPut(key, value); in put() 354 public synchronized Object putIfAbsent(Object key, Object value) { in putIfAbsent() argument 358 key + "/" + value +"]"); in putIfAbsent() 360 return implPutIfAbsent(key, value); in putIfAbsent() 380 public synchronized Object remove(Object key) { in remove() argument 383 debug.println("Remove " + name + " provider property " + key); in remove() 385 return implRemove(key); in remove() 405 public synchronized boolean remove(Object key, Object value) { in remove() argument [all …]
|
/libcore/ojluni/src/main/java/sun/security/util/ |
D | KeyUtil.java | 51 public static final int getKeySize(Key key) { in getKeySize() argument 54 if (key instanceof Length) { in getKeySize() 56 Length ruler = (Length)key; in getKeySize() 68 if (key instanceof SecretKey) { in getKeySize() 69 SecretKey sk = (SecretKey)key; in getKeySize() 75 } else if (key instanceof RSAKey) { in getKeySize() 76 RSAKey pubk = (RSAKey)key; in getKeySize() 78 } else if (key instanceof ECKey) { in getKeySize() 79 ECKey pubk = (ECKey)key; in getKeySize() 92 } else if (key instanceof DSAKey) { in getKeySize() [all …]
|
/libcore/luni/src/main/java/libcore/util/ |
D | BasicLruCache.java | 49 public final V get(K key) { in get() argument 50 if (key == null) { in get() 56 result = map.get(key); in get() 63 result = create(key); in get() 72 map.put(key, result); in get() 88 public synchronized final V put(K key, V value) { in put() argument 89 if (key == null) { in put() 95 V previous = map.put(key, value); in put() 104 K key = toEvict.getKey(); in trimToSize() local 106 map.remove(key); in trimToSize() [all …]
|
D | DebugInfo.java | 42 public DebugInfo addStringEntry(String key, String value) { in addStringEntry() argument 43 entries.add(new DebugEntry(key, value)); in addStringEntry() 53 public DebugInfo addStringEntry(String key, int value) { in addStringEntry() argument 54 addStringEntry(key, Integer.toString(value)); in addStringEntry() 65 public DebugEntry getDebugEntry(String key) { in getDebugEntry() argument 67 if (key.equals(entry.getKey())) { in getDebugEntry() 81 private final String key; field in DebugInfo.DebugEntry 85 public DebugEntry(String key, String stringValue) { in DebugEntry() argument 86 this.key = key; in DebugEntry() 92 return key; in getKey()
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
D | SystemScope.java | 92 public synchronized Identity getIdentity(PublicKey key) { in getIdentity() argument 93 if (key == null) { in getIdentity() 96 return (Identity) keys.get(key); in getIdentity() 112 PublicKey key = identity.getPublicKey(); in addIdentity() local 113 if (key != null && keys.containsKey(key)) { in addIdentity() 114 throw new KeyManagementException("key '" + key + "' is already used"); in addIdentity() 118 if (key != null) { in addIdentity() 119 keys.put(key, identity); in addIdentity() 142 PublicKey key = identity.getPublicKey(); in removeIdentity() local 144 if (key != null) { in removeIdentity() [all …]
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
D | CertificateX509Key.java | 56 private PublicKey key; field in CertificateX509Key 63 public CertificateX509Key(PublicKey key) { in CertificateX509Key() argument 64 this.key = key; in CertificateX509Key() 75 key = X509Key.parse(val); in CertificateX509Key() 86 key = X509Key.parse(val); in CertificateX509Key() 93 if (key == null) return ""; in toString() 94 return(key.toString()); in toString() 105 tmp.write(key.getEncoded()); in encode() 115 this.key = (PublicKey)obj; in set() 127 return(key); in get() [all …]
|
/libcore/luni/src/test/java/libcore/javax/crypto/ |
D | MockKeyAgreementSpi.java | 35 public void checkKeyType(Key key) throws InvalidKeyException { in checkKeyType() argument 36 if (!(key instanceof MockKey)) { in checkKeyType() 44 public void checkKeyType(Key key) throws InvalidKeyException { in checkKeyType() argument 45 System.err.println("Checking key of type " + key.getClass().getName()); in checkKeyType() 46 if (!(key instanceof MockKey2)) { in checkKeyType() 55 public void checkKeyType(Key key) throws InvalidKeyException { in checkKeyType() argument 59 protected Key engineDoPhase(Key key, boolean lastPhase) throws InvalidKeyException, in engineDoPhase() argument 82 protected void engineInit(Key key, SecureRandom random) throws InvalidKeyException { in engineInit() argument 83 checkKeyType(key); in engineInit() 87 protected void engineInit(Key key, AlgorithmParameterSpec params, SecureRandom random) in engineInit() argument [all …]
|
D | MockCipherSpi.java | 40 public void checkKeyType(Key key) throws InvalidKeyException { in checkKeyType() argument 41 if (!(key instanceof MockKey)) { in checkKeyType() 49 public void checkKeyType(Key key) throws InvalidKeyException { in checkKeyType() argument 50 System.err.println("Checking key of type " + key.getClass().getName()); in checkKeyType() 51 if (!(key instanceof MockKey2)) { in checkKeyType() 104 protected void engineInit(int opmode, Key key, SecureRandom random) in engineInit() argument 110 protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params, in engineInit() argument 116 protected void engineInit(int opmode, Key key, AlgorithmParameters params, in engineInit() argument 124 protected void engineInit(int opmode, Key key, SecureRandom random) in engineInit() argument 130 protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params, in engineInit() argument [all …]
|
/libcore/luni/src/test/java/tests/security/interfaces/ |
D | RSAPrivateCrtKeyTest.java | 25 RSAPrivateCrtKey key = null; field in RSAPrivateCrtKeyTest 30 key = (RSAPrivateCrtKey) gen.generatePrivate(Util.rsaCrtParam); in setUp() 39 Util.rsaCrtParam.getCrtCoefficient(), key.getCrtCoefficient()); in test_getCrtCoefficient() 48 Util.rsaCrtParam.getPrimeExponentP(), key.getPrimeExponentP()); in test_getPrimeExponentP() 57 Util.rsaCrtParam.getPrimeExponentQ(), key.getPrimeExponentQ()); in test_getPrimeExponentQ() 66 Util.rsaCrtParam.getPrimeP(), key.getPrimeP()); in test_getPrimeP() 75 Util.rsaCrtParam.getPrimeQ(), key.getPrimeQ()); in test_getPrimeQ() 84 Util.rsaCrtParam.getPublicExponent(), key.getPublicExponent()); in test_getPublicExponent() 88 key = null; in tearDown()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | TreeMapExtendTest.java | 141 String key = new Integer(100).toString(); in test_TreeMap_Constructor_Map() local 142 assertEquals(tm.ceilingKey(key), treeMap.ceilingKey(key)); in test_TreeMap_Constructor_Map() 143 assertEquals(tm.ceilingEntry(key), treeMap.ceilingEntry(key)); in test_TreeMap_Constructor_Map() 144 assertEquals(tm.floorKey(key), treeMap.floorKey(key)); in test_TreeMap_Constructor_Map() 145 assertEquals(tm.floorEntry(key), treeMap.floorEntry(key)); in test_TreeMap_Constructor_Map() 146 assertEquals(tm.lowerKey(key), treeMap.lowerKey(key)); in test_TreeMap_Constructor_Map() 147 assertEquals(tm.lowerEntry(key), treeMap.lowerEntry(key)); in test_TreeMap_Constructor_Map() 148 assertEquals(tm.higherKey(key), treeMap.higherKey(key)); in test_TreeMap_Constructor_Map() 149 assertEquals(tm.higherEntry(key), treeMap.higherEntry(key)); in test_TreeMap_Constructor_Map() 185 String key = null; in test_SubMap_containsKey() local [all …]
|
/libcore/ojluni/src/main/java/javax/crypto/ |
D | KeyAgreement.java | 372 private void implInit(KeyAgreementSpi spi, int type, Key key, in implInit() argument 376 spi.engineInit(key, random); in implInit() 378 spi.engineInit(key, params, random); in implInit() 382 private void chooseProvider(int initType, Key key, in chooseProvider() argument 388 if (spi != null && key == null) { in chooseProvider() 389 implInit(spi, initType, key, params, random); in chooseProvider() 396 if (s.supportsParameter(key) == false) { in chooseProvider() 404 implInit(spi, initType, key, params, random); in chooseProvider() 432 String kName = (key != null) ? key.getClass().getName() : "(null)"; in chooseProvider() 469 public final void init(Key key) throws InvalidKeyException { in init() argument [all …]
|