Searched refs:hc (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DStringPattern.java49 StringPattern(int hc) { argument
50 super(false, DATA_CONTENT_TYPE, hc);
H A DPattern.java55 private int hc; field in class:Pattern
86 Pattern(boolean nullable, int contentType, int hc) { argument
89 this.hc = hc;
94 this.hc = hashCode();
135 return hc;
H A DBinaryPattern.java58 BinaryPattern(boolean nullable, int hc, Pattern p1, Pattern p2) { argument
59 super(nullable, Math.max(p1.getContentType(), p2.getContentType()), hc);
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DKeepAliveStream.java43 HttpClient hc; field in class:KeepAliveStream
56 public KeepAliveStream(InputStream is, ProgressSource pi, long expected, HttpClient hc) { argument
58 this.hc = hc;
94 queueForCleanup(new KeepAliveCleanerEntry(this, hc));
96 hc.closeServer();
100 hc.finished();
110 hc = null;
205 hc = null;
214 HttpClient hc; field in class:KeepAliveCleanerEntry
216 KeepAliveCleanerEntry(KeepAliveStream kas, HttpClient hc) argument
[all...]
H A DKeepAliveStreamCleaner.java122 HttpClient hc = kace.getHttpClient();
124 if (hc != null && !hc.isInKeepAliveCache()) {
125 int oldTimeout = hc.getReadTimeout();
126 hc.setReadTimeout(TIMEOUT);
140 hc.setReadTimeout(oldTimeout);
141 hc.finished();
143 hc.closeServer();
146 hc.closeServer();
H A DKeepAliveCache.java198 HttpClient h = e.hc;
257 HttpClient hc = null;
262 e.hc.closeServer();
264 hc = e.hc;
266 } while ((hc== null) && (!empty()));
267 return hc;
340 HttpClient hc; field in class:KeepAliveEntry
343 KeepAliveEntry(HttpClient hc, long idleStartTime) { argument
344 this.hc
[all...]
H A DChunkedInputStream.java55 private HttpClient hc; field in class:ChunkedInputStream
219 hc.finished();
222 hc.closeServer();
620 * @param hc the HttpClient
624 public ChunkedInputStream(InputStream in, HttpClient hc, MessageHeader responses) throws IOException { argument
629 this.hc = hc;
/openjdk7/jdk/test/java/util/Locale/
H A DHashCodeTest.java41 int hc = loc.hashCode();
42 min = Math.min(hc, min);
43 max = Math.max(hc, max);
44 Integer key = new Integer(hc);
H A DBug4518797.java50 int hc = loc.hashCode();
51 if (hc != hashcode) {
53 message = "t1: wrong hashcode: " + hc;
73 int hc = loc2.hashCode();
74 if (hc != hashcode) {
76 message = "t2: wrong hashcode: " + hc;
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DOptionOutputFormatter.java57 HeaderClosure hc = new HeaderClosure();
58 format.apply(hc);
59 header = hc.getHeader();
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DHashCodeTest.java58 int hc = tv.hashCode();
60 System.out.printf("\t%s 0x%x (%d)%n", tv.getName(), hc, hc);
/openjdk7/jdk/test/java/net/InetAddress/
H A DHashSpread.java83 int hc = randomIPv6Adress().hashCode();
84 if (hc >= MIN_SHORT && hc <= MAX_SHORT) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DType.java807 int hc = 13 * sort;
810 hc = 17 * (hc + buf[i]);
813 return hc;
/openjdk7/hotspot/src/share/vm/classfile/
H A DaltHashing.cpp37 intptr_t hc = k->java_mirror()->mark()->hash(); local
38 return hc != markOopDesc::no_hash ? hc : os::random();
/openjdk7/jdk/src/share/classes/sun/font/
H A DDecoration.java216 int hc = 1;
218 hc |= 2;
221 hc |= 4;
224 hc += stdUnderline.hashCode();
226 return hc;
/openjdk7/jdk/src/windows/native/com/sun/management/
H A DOperatingSystem_md.c721 HCOUNTER hc = NULL; local
734 if (PdhAddCounter_i(tmpQuery, counter, 0, &hc) != ERROR_SUCCESS) {
751 PdhGetFormattedCounterValue_i(hc, PDH_FMT_LONG, NULL, &cv);
761 PdhRemoveCounter_i(hc);
765 PdhRemoveCounter_i(hc);
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.cpp324 HistoClosure hc(&histo);
326 cit.iterate(&hc);
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DHttpNegotiateServer.java262 HttpContext hc = server.createContext("/", h);
263 hc.setAuthenticator(new MyServerAuthenticator(
/openjdk7/jdk/src/share/classes/java/util/
H A DLocale.java1873 int hc = hashCodeValue;
1874 if (hc == 0) {
1875 hc = baseLocale.hashCode();
1877 hc ^= localeExtensions.hashCode();
1879 hashCodeValue = hc;
1881 return hc;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp481 klassOop hc = (klassOop) ik->host_klass(); local
482 if (hc == NULL) return false;
483 if (hc == host_klass) return true;
484 ik = instanceKlass::cast(hc);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java615 int hc = 0;
618 hc += (parts[i + 0].hashCode() ^ parts[i + 1].hashCode());
620 hc ^= hc << 11;
621 hc += name.hashCode();
623 hc ^= hc << 7;
626 hc += p.hashCode(); // recursion is common case
628 hc += fixupString(p).hashCode();
631 hc
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java2554 HttpClient hc = http;
2557 boolean ka = hc.isKeepingAlive();
2569 hc.closeIdleConnection();
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java2823 int hc = System.identityHashCode(o);
2824 String st = o.getClass().getName() + "@" + Integer.toHexString(hc);
2825 Object expect = Arrays.asList(st, eq, hc);
2826 if (verbosity >= 2) System.out.println("expect st/eq/hc = "+expect);
2828 if (verbosity >= 2) System.out.println("actual st/eq/hc = "+actual);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageColorTrue2Index.c4229 mlib_s32 hc,

Completed in 158 milliseconds