/openjdk7/hotspot/src/os/solaris/vm/ |
H A D | decoder_solaris.cpp | 29 bool ElfDecoder::demangle(const char* symbol, char *buf, int buflen) { argument 30 return !cplus_demangle(symbol, buf, (size_t)buflen);
|
/openjdk7/jdk/test/sun/security/x509/X509CRLImpl/ |
H A D | UnexpectedNPE.java | 58 private boolean run(byte[] buf) { argument 69 cf.generateCRL(new ByteArrayInputStream(buf));
|
/openjdk7/hotspot/src/os/linux/vm/ |
H A D | decoder_linux.cpp | 30 bool ElfDecoder::demangle(const char* symbol, char *buf, int buflen) { argument 35 // Don't pass buf to __cxa_demangle. In case of the 'buf' is too small, 37 // may use different malloc/realloc mechanism that allocates 'buf'. 39 jio_snprintf(buf, buflen, "%s", result);
|
H A D | jvm_linux.cpp | 191 extern bool signal_name(int signo, char* buf, size_t len) { argument 194 jio_snprintf(buf, len, "SIG%s", siglabels[i].name);
|
/openjdk7/hotspot/test/compiler/6910605/ |
H A D | Test.java | 38 public static int buf=0; field in class:Test
|
/openjdk7/jdk/test/java/nio/channels/FileChannel/ |
H A D | ExpandingMap.java | 117 static void fillBuffer(ByteBuffer buf, int from) { argument 118 int limit = buf.limit(); 120 buf.put(i, (byte)i);
|
/openjdk7/jdk/src/share/native/common/ |
H A D | check_version.c | 35 char buf[128]; local 36 sprintf(buf, "JVM interface version mismatch: expecting %d, got %d.", 40 (*env)->FatalError(env, buf);
|
/openjdk7/jdk/test/java/util/zip/GZIP/ |
H A D | Accordion.java | 40 private static void readFully(InputStream s, byte[] buf) throws Throwable { argument 43 while ((n = s.read(buf, pos, buf.length-pos)) > 0) 45 if (pos != buf.length)
|
/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | JavaUtilZipAccess.java | 32 public void update(Adler32 adler32, ByteBuffer buf); argument
|
/openjdk7/hotspot/src/os/bsd/vm/ |
H A D | jvm_bsd.cpp | 184 extern bool signal_name(int signo, char* buf, size_t len) { argument 187 jio_snprintf(buf, len, "SIG%s", siglabels[i].name);
|
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | decoder_elf.cpp | 37 bool ElfDecoder::decode(address addr, char *buf, int buflen, int* offset, const char* filepath) { argument 39 assert(buf != NULL && buflen > 0, "Invalid buffer"); 46 if (!file->decode(addr, buf, buflen, offset)) { 49 if (buf[0] != '\0') { 50 demangle(buf, buf, buflen);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/ |
H A D | InternalEntity.java | 32 this.buf = value; 35 char buf []; field in class:InternalEntity
|
/openjdk7/jdk/src/solaris/native/sun/net/dns/ |
H A D | ResolverConfigurationImpl.c | 79 char buf[MAXDNAME]; local 92 int ret = sysinfo(SI_SRPC_DOMAIN, buf, sizeof(buf)); 94 if ((ret > 0) && (ret<sizeof(buf))) { 98 if (buf[0] == '+') { 99 buf[0] = '.'; 101 cp = strchr(buf, '.'); 103 s = (*env)->NewStringUTF(env, buf); 112 if (gethostname(buf, sizeof(buf)) [all...] |
/openjdk7/jdk/test/java/io/charStreams/ |
H A D | ABCOutputStream.java | 50 public void write(byte buf[], int off, int len) throws IOException { argument 52 write(buf[i]);
|
/openjdk7/jdk/test/sun/security/x509/X500Name/ |
H A D | DerValueConstructor.java | 107 private static void byte2hex(byte b, StringBuffer buf) { argument 112 buf.append(hexChars[high]); 113 buf.append(hexChars[low]); 120 StringBuffer buf = new StringBuffer(); 125 byte2hex(block[i], buf); 127 buf.append(":"); 130 return buf.toString();
|
/openjdk7/jdk/src/share/native/java/util/zip/ |
H A D | CRC32.c | 39 Bytef buf[1]; local 41 buf[0] = (Bytef)b; 42 return crc32(crc, buf, 1); 49 Bytef *buf = (*env)->GetPrimitiveArrayCritical(env, b, 0); local 50 if (buf) { 51 crc = crc32(crc, buf + off, len); 52 (*env)->ReleasePrimitiveArrayCritical(env, b, buf, 0); 57 JNIEXPORT jint ZIP_CRC32(jint crc, const jbyte *buf, jint len) argument 59 return crc32(crc, (Bytef*)buf, len);
|
/openjdk7/jdk/src/share/classes/sun/tools/native2ascii/ |
H A D | A2NFilter.java | 51 public int read(char[] buf, int off, int len) throws IOException { argument 87 buf[retChars++] = c; 106 buf[retChars++] = '\\'; 107 buf[retChars++] = c; 121 buf[retChars++] = rc; 125 buf[retChars++] = '\\'; 126 buf[retChars++] = 'u'; 136 char[] buf = new char[1]; 138 if (read(buf, 0, 1) == -1) 141 return (int)buf[ [all...] |
H A D | N2AFilter.java | 44 char[] buf = new char[1]; 45 buf[0] = b; 46 write(buf, 0, 1); 49 public void write(char[] buf, int off, int len) throws IOException { argument 53 //System.err.println ("xx Out buffer length is " + buf.length ); 55 if ((buf[i] > '\u007f')) { 60 Integer.toHexString(buf[i]); 71 out.write(buf[i]);
|
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/ |
H A D | CompressInputStream.java | 38 int buf[] = new int[5]; field in class:CompressInputStream 101 buf[0] = (pack >>> 24) & 0x3F; 102 buf[1] = (pack >>> 18) & 0x3F; 103 buf[2] = (pack >>> 12) & 0x3F; 104 buf[3] = (pack >>> 6) & 0x3F; 105 buf[4] = (pack >>> 0) & 0x3F; 108 return buf[bufPos++];
|
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/unicast/ |
H A D | CompressInputStream.java | 38 int buf[] = new int[5]; field in class:CompressInputStream 101 buf[0] = (pack >>> 24) & 0x3F; 102 buf[1] = (pack >>> 18) & 0x3F; 103 buf[2] = (pack >>> 12) & 0x3F; 104 buf[3] = (pack >>> 6) & 0x3F; 105 buf[4] = (pack >>> 0) & 0x3F; 108 return buf[bufPos++];
|
/openjdk7/jdk/src/share/sample/nio/multicast/ |
H A D | Reader.java | 55 static void printDatagram(SocketAddress sa, ByteBuffer buf) { argument 58 System.out.println(Charset.defaultCharset().decode(buf)); 130 ByteBuffer buf = ByteBuffer.allocateDirect(4096); 140 SocketAddress sa = ch.receive(buf); 142 buf.flip(); 143 printDatagram(sa, buf); 144 buf.rewind(); 145 buf.limit(buf.capacity());
|
/openjdk7/jaxws/src/share/jaxws_classes/org/relaxng/datatype/ |
H A D | DatatypeStreamingValidator.java | 57 void addCharacters( char[] buf, int start, int len ); argument
|
/openjdk7/jdk/test/sun/security/pkcs11/SecureRandom/ |
H A D | TestDeserialization.java | 53 byte[] buf = new byte[16]; 58 r2.nextBytes(buf); 80 private SecureRandom fromByteArray(byte[] buf) throws Exception { argument 82 ByteArrayInputStream is = new ByteArrayInputStream(buf);
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/ |
H A D | XMLCharacterRecognizer.java | 71 * @param buf StringBuffer to check as XML whitespace. 74 public static boolean isWhiteSpace(StringBuffer buf) argument 77 int n = buf.length(); 81 if (!isWhiteSpace(buf.charAt(i)))
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/ |
H A D | MappedByteBufferDataSource.java | 36 private MappedByteBuffer buf; field in class:MappedByteBufferDataSource 38 public MappedByteBufferDataSource(MappedByteBuffer buf) { argument 39 this.buf = buf; 42 public byte readByte() throws IOException { return buf.get(); } 43 public short readShort() throws IOException { return buf.getShort(); } 44 public int readInt() throws IOException { return buf.getInt(); } 45 public long readLong() throws IOException { return buf.getLong(); } 46 public int read(byte[] b) throws IOException { buf.get(b); return b.length; } 49 buf [all...] |