Searched +refs:val +refs:entry (Results 1 - 25 of 60) sorted by relevance

123

/openjdk7/jdk/src/share/classes/java/io/
H A DExpiringCache.java46 private String val; field in class:ExpiringCache.Entry
48 Entry(long timestamp, String val) { argument
50 this.val = val;
56 String val() { return val; } method in class:ExpiringCache.Entry
57 void setVal(String val) { this.val = val; } argument
77 Entry entry
84 put(String key, String val) argument
[all...]
H A DObjectStreamClass.java324 Object entry = null;
326 entry = ref.get();
329 if (entry == null) {
338 entry = ref.get();
340 } while (ref != null && entry == null);
341 if (entry == null) {
346 if (entry instanceof ObjectStreamClass) { // check common case first
347 return (ObjectStreamClass) entry;
349 if (entry instanceof EntryFuture) {
350 future = (EntryFuture) entry;
400 private Object entry = unset; field in class:ObjectStreamClass.EntryFuture
409 set(Object entry) argument
[all...]
H A DObjectOutputStream.java672 * @param val the byte to be written to the stream
675 public void write(int val) throws IOException { argument
676 bout.write(val);
745 * @param val the boolean to be written
749 public void writeBoolean(boolean val) throws IOException { argument
750 bout.writeBoolean(val);
756 * @param val the byte value to be written
760 public void writeByte(int val) throws IOException { argument
761 bout.writeByte(val);
767 * @param val th
771 writeShort(int val) argument
782 writeChar(int val) argument
793 writeInt(int val) argument
804 writeLong(long val) argument
815 writeFloat(float val) argument
826 writeDouble(double val) argument
887 put(String name, boolean val) argument
899 put(String name, byte val) argument
911 put(String name, char val) argument
923 put(String name, short val) argument
935 put(String name, int val) argument
947 put(String name, long val) argument
959 put(String name, float val) argument
971 put(String name, double val) argument
984 put(String name, Object val) argument
1615 put(String name, boolean val) argument
1619 put(String name, byte val) argument
1623 put(String name, char val) argument
1627 put(String name, short val) argument
1631 put(String name, int val) argument
1635 put(String name, float val) argument
1639 put(String name, long val) argument
1643 put(String name, double val) argument
1647 put(String name, Object val) argument
2449 push(String entry) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/jdp/
H A DJdpPacketWriter.java56 * Put string entry to packet
58 * @param entry - string to put (utf-8 encoded)
61 public void addEntry(String entry) argument
65 * pkt.writeShort(entry.getBytes("UTF-8").length);
66 * pkt.write(entry.getBytes("UTF-8"));
68 pkt.writeUTF(entry);
75 * @param val - value to put (utf-8 encoded)
78 public void addEntry(String key, String val) argument
84 if (val != null) {
86 addEntry(val);
[all...]
/openjdk7/jdk/src/macosx/classes/apple/security/
H A DKeychainStore.java57 Date date; // the creation date of this entry
67 Date date; // the creation date of this entry
140 * or does not identify a <i>key entry</i>.
152 Object entry = entries.get(alias.toLowerCase());
154 if (entry == null || !(entry instanceof KeyEntry)) {
159 byte[] exportedKeyInfo = _getEncodedKeyData(((KeyEntry)entry).keyRef, password);
177 DerValue val = new DerValue(encrInfo.getAlgorithm().encode());
178 DerInputStream in = val.toDerInputStream();
198 DerValue val
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DRdn.java137 RdnEntry entry = new RdnEntry();
139 entry.type = attr.getID();
140 entry.value = attr.get();
141 entries.add(nEntries, entry);
206 private boolean isEmptyValue(Object val) { argument
207 return ((val instanceof String) && val.equals("")) ||
208 ((val instanceof byte[]) && (((byte[]) val).length == 0));
411 RdnEntry entry
518 escapeValue(Object val) argument
533 escapeStringValue(String val) argument
568 escapeBinaryValue(byte[] val) argument
602 unescapeValue(String val) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs12/
H A DPKCS12KeyStore.java152 // in pkcs12 with one private key entry and associated cert-chain
176 Date date; // the creation date of this entry
215 * or does not identify a <i>key entry</i>.
225 KeyEntry entry = entries.get(alias.toLowerCase());
228 if (entry == null) {
233 byte[] encrBytes = entry.protectedPrivKey;
245 DerValue val = new DerValue(encrInfo.getAlgorithm().encode());
246 DerInputStream in = val.toDerInputStream();
285 DerValue val = new DerValue(privateKeyInfo);
286 DerInputStream in = val
1382 findMatchedCertificate(KeyEntry entry) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DXMLUtils.java56 "<!ELEMENT properties ( comment?, entry* ) >"+
60 "<!ELEMENT entry (#PCDATA) >" +
61 "<!ATTLIST entry " +
114 Element entry = (Element)entries.item(i);
115 if (entry.hasAttribute("key")) {
116 Node n = entry.getFirstChild();
117 String val = (n == null) ? "" : n.getNodeValue();
118 props.setProperty(entry.getAttribute("key"), val);
146 Element entry
[all...]
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DHttpOnly.java109 for (Map.Entry<String,List<String>> entry : entries) {
110 String header = entry.getKey();
113 entry.getValue());
138 for (Map.Entry<String,List<String>> entry : respEntries) {
139 String header = entry.getKey();
141 List<String> setCookieValues = entry.getValue();
149 List<String> setCookieValues = entry.getValue();
173 for (Map.Entry<String,List<String>> entry : entries) {
174 String header = entry.getKey();
176 for (String val
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DNetscapeCertTypeExtension.java112 for (MapEntry entry : mMapData) {
113 mAttributeNames.add(entry.mName);
145 private void set(int position, boolean val) { argument
152 bitString[position] = val;
195 DerValue val = new DerValue(this.extensionValue);
196 this.bitString = val.getUnalignedBitString().toBooleanArray();
215 boolean val = ((Boolean)obj).booleanValue();
216 set(getPosition(name), val);
303 Boolean val = Boolean.TRUE;
309 keyUsage.set(keyUsage.DIGITAL_SIGNATURE, val);
[all...]
H A DX509CRLEntryImpl.java44 * This class is for each entry in the <code>revokedCertificates</code>,
85 * Constructs a revoked certificate entry using the given
97 * Constructs a revoked certificate entry using the given
98 * serial number, revocation date and the entry
103 * @param crlEntryExts the extensions for this entry.
143 * Returns true if this revoked certificate entry has
146 * @return true if this CRL entry has extensions, otherwise
262 DerValue val = new DerValue(ext);
263 byte[] data = val.getOctetString();
274 * get Reason Code from CRL entry
485 toImpl(X509CRLEntry entry) argument
[all...]
H A DX509CRLImpl.java156 * @param val a DER value holding at least one CRL
159 public X509CRLImpl(DerValue val) throws CRLException { argument
161 parse(val);
311 for (X509CRLEntry entry : revokedList) {
312 ((X509CRLEntryImpl)entry).encode(rCerts);
500 for (X509CRLEntry entry: revokedList) {
501 sb.append("\n[" + i++ + "] " + entry.toString());
636 * Gets the CRL entry with the given serial number from this CRL.
638 * @return the entry with the given serial number, or <code>null</code> if
639 * no such entry exist
1004 parse(DerValue val) argument
1189 getCertIssuer(X509CRLEntryImpl entry, X500Principal prevCertIssuer) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.cpp317 // In any case, we can reset the end of the current committed entry.
334 jbyte* entry; local
336 entry = byte_for(_whole_heap.start());
338 entry = byte_after(old_region.last());
361 if (entry < end) {
362 memset(entry, clean_card, pointer_delta(end, entry, sizeof(jbyte)));
412 it does not it will only result in duplicate entry in the update
418 jbyte val = _byte_map[card_index]; local
419 assert(val !
438 jbyte val = _byte_map[card_index]; local
680 verify_region(MemRegion mr, jbyte val, bool val_equals) argument
[all...]
H A DblockOffsetTable.hpp89 // "N" = 2^"LogN". An array with an entry for each such subregion
242 void set_init_to_zero(bool val) { _init_to_zero = val; }
297 static size_t entry_to_cards_back(u_char entry) {
298 assert(entry >= N_words, "Precondition");
299 return power_to_cards_back(entry - N_words);
301 static size_t entry_to_words_back(u_char entry) {
302 assert(entry >= N_words, "Precondition");
303 return power_to_words_back(entry - N_words);
325 // updates to individual entries always reduce the entry fro
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp55 // A resolved constantPool entry will contain a klassOop, otherwise a Symbol*.
56 // It is not safe to rely on the tag bit's here, since we don't have a lock, and the entry and
58 CPSlot entry = this_oop->slot_at(which); local
59 if (entry.is_oop()) {
60 assert(entry.get_oop()->is_klass(), "must be");
61 // Already resolved - return entry.
62 return (klassOop)entry.get_oop();
87 // The original attempt to resolve this constant pool entry failed so find the
111 // to resolve this constant pool entry fail with the same error (JVMS 5.4.3).
123 entry
206 CPSlot entry = this_oop->slot_at(which); local
249 CPSlot entry = this_oop->slot_at(which); local
411 CPSlot entry = slot_at(which); local
434 CPSlot entry = slot_at(which); local
685 CPSlot entry = this_oop->slot_at(which); local
706 CPSlot entry = slot_at(which); local
733 oop entry = StringTable::intern(sym, CHECK_(-1)); local
1250 CPSlot entry = from_cp->slot_at(from_i); local
1271 CPSlot entry = from_cp->slot_at(from_i); local
1398 u4 val = Bytes::get_Java_u4(bytes); local
1404 u4 val = Bytes::get_Java_u4(bytes); local
1410 u8 val = Bytes::get_Java_u8(bytes); local
1417 u8 val = Bytes::get_Java_u8(bytes); local
1619 jint val = int_at(idx); local
1624 jfloat val = float_at(idx); local
1629 jlong val = long_at(idx); local
1635 jdouble val = double_at(idx); local
1778 SymbolHashMapEntry* entry = new SymbolHashMapEntry(hash, sym, value); local
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DUtility.java503 StubEntry entry = null;
510 entry = loadStubAndUpdateCache(
517 entry = (StubEntry) cached;
525 if (!entry.mostDerived && onlyMostDerived) {
531 entry = loadStubAndUpdateCache(tie,null,
534 !StubAdapter.getTypeIds(entry.stub)[0].equals(
540 entry = loadStubAndUpdateCache(tie,null,
545 if (entry == null) {
546 entry = loadStubAndUpdateCache(tie,stubFactory,
553 entry
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp76 address _osr_entry; /* the entry to the osr method */
106 method_entry, // initial method entry to interpreter
213 inline void set_callee_entry_point(address entry) { _result._to_call._callee_entry_point = entry; } argument
215 inline void set_osr_entry(address entry) { _result._osr._osr_entry = entry; } argument
309 static jlong VMint2Long(jint val);
314 static jint VMlong2Int(jlong val);
319 static jfloat VMlong2Float(jlong val);
324 static jdouble VMlong2Double(jlong val);
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DGenerateCharacter.java284 * has its components in the same sorted order, with one entry for each defined
286 * entries, such that the name of the first entry begins with "<" and ends with
287 * "First>" and the second entry begins with "<" and ends with "Last>".) This is
300 * For undefined characters, method buildOne is not called and the map entry for
304 * @return an array of length 65536 with one entry for every possible char value
420 int val = 0;
423 val = c - 0x0041;
427 val = c - 0x0061;
431 val = c - 0xFF21;
435 val
1367 propertiesComments(StringBuffer result, long val) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DDocumentBuilderImpl.java235 Map.Entry entry = (Map.Entry) entries.next();
236 String feature = (String) entry.getKey();
237 boolean value = ((Boolean) entry.getValue()).booleanValue();
260 Map.Entry entry = (Map.Entry) entries.next();
261 String name = (String) entry.getKey();
262 Object val = entry.getValue();
263 if (val instanceof Boolean) {
265 domParser.setFeature(name, ((Boolean)val).booleanValue());
271 if ( W3C_XML_SCHEMA.equals(val) ) {
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DRenderingHints.java127 // will replace the entry for the old Key subclass with
128 // an entry for the new Key subclass. At that time the
164 * @param val the <code>Object</code> to test for validity
165 * @return <code>true</code> if <code>val</code> is valid;
168 public abstract boolean isCompatibleValue(Object val); argument
1137 for (Map.Entry<?,?> entry : m.entrySet())
1138 hintmap.put(entry.getKey(), entry.getValue());
1141 for (Map.Entry<?,?> entry : m.entrySet())
1142 put(entry
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DRuleBasedBreakIteratorBuilder.java240 // set up a vector to contain the broken-up description (each entry in the
548 * This function builds the character category table. On entry,
1093 // A () group can have multiple entry and exit points. To keep track of this,
1096 // the ) is reached. The next entry down is the decision point list at the
1098 // entry point.
1101 // we need to keep track of the entry points in case the expression loops
1105 // at the end. It exists only to hold the entry points in case the ()
1109 // add a new state to the state table to hold the entry points into
1184 // we squirreled away the row number of our entry point list
1186 // that state number out and retrieve the entry poin
2145 toByteArray(short val) argument
2152 toByteArray(int val) argument
2161 toByteArray(long val) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.cpp448 jbyte val = *p; local
450 if (card_is_dirty(val))
453 if (card_is_newgen(val))
456 if (card_is_clean(val))
467 jbyte val = *p; local
469 if (card_is_newgen(val))
472 if (card_is_verify(val))
475 if (card_is_clean(val))
478 if (card_is_dirty(val))
703 jbyte* entry;
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DnativeInst_x86.hpp163 static void insert(address code_pos, address entry);
405 intptr_t val = dest - next_instruction_address(); local
407 val = -5; // jump to self
410 assert((labs(val) & 0xFFFFFFFF00000000) == 0 || dest == (address)-1, "must be 32bit offset or -1");
412 set_int_at(data_offset, (jint)val);
424 static void insert(address code_pos, address entry);
425 // MT-safe insertion of native jump at verified method entry
426 static void check_verified_entry_alignment(address entry, address verified_entry);
427 static void patch_verified_entry(address entry, address verified_entry, address dest);
459 static void insert_unconditional(address code_pos, address entry);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DCommands.java136 Value val = null;
139 val = ExpressionParser.getMassagedValue();
140 valStr = val.toString();
706 Value val = evaluate(expr);
707 if ((val != null) && (val instanceof ObjectReference)) {
709 thread.stop((ObjectReference)val);
1338 // Turn on method entry trace
1339 MethodEntryRequest entry;
1362 entry
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.cpp394 oop val = *base_loc; local
395 if (val == (oop)NULL || Universe::is_narrow_oop_base(val)) {
417 oop val = *loc; local
418 if (val == (oop)NULL || Universe::is_narrow_oop_base(val)) {
656 DerivedPointerEntry *entry = new DerivedPointerEntry(derived_loc, offset); local
657 _list->append(entry);
665 DerivedPointerEntry* entry = _list->at(i); local
666 oop* derived_loc = entry
[all...]

Completed in 457 milliseconds

123