Searched defs:idMap (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/xml/crypto/dom/
H A DDOMCryptoContext.java51 private HashMap idMap = new HashMap(); field in class:DOMCryptoContext
173 return (Element) idMap.get(idValue);
207 idMap.put(idValue, element);
223 return Collections.unmodifiableMap(idMap).entrySet().iterator();
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DFunctions.java407 public static long getId(Map<String,Integer> idMap, String name) { argument
408 Integer mech = idMap.get(name);
579 Map<String,Integer> idMap, long id, String name) {
587 if (idMap.put(name, intId) != null) {
578 addMapping(Map<Integer,String> nameMap, Map<String,Integer> idMap, long id, String name) argument
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DCipherSuite.java87 private final static Map<Integer,CipherSuite> idMap; field in class:CipherSuite
246 CipherSuite c = idMap.get(id);
271 if (idMap.put(id, c) != null) {
320 if (idMap.put(id, c) != null) {
641 idMap = new HashMap<Integer,CipherSuite>();

Completed in 39 milliseconds