/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);
|
H A D | vmError_solaris.cpp | 35 void VMError::show_message_box(char *buf, int buflen) { argument 38 error_string(buf, buflen); 42 jio_snprintf(p, buflen - len, 54 jio_snprintf(buf, buflen, "dbx - %d", os::current_process_id());
|
/openjdk7/hotspot/src/os/linux/vm/ |
H A D | decoder_linux.cpp | 30 bool ElfDecoder::demangle(const char* symbol, char *buf, int buflen) { argument 33 size_t size = (size_t)buflen; 39 jio_snprintf(buf, buflen, "%s", result);
|
H A D | vmError_linux.cpp | 37 void VMError::show_message_box(char *buf, int buflen) { argument 40 error_string(buf, buflen); 44 jio_snprintf(p, buflen - len, 57 jio_snprintf(buf, buflen, "gdb /proc/%d/exe %d",
|
/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)) { 50 demangle(buf, buf, buflen);
|
H A D | decoder_elf.hpp | 44 bool demangle(const char* symbol, char *buf, int buflen); 45 bool decode(address addr, char *buf, int buflen, int* offset, const char* filepath = NULL); 46 bool decode(address addr, char *buf, int buflen, int* offset, const void *base) { argument
|
H A D | elfStringTable.cpp | 70 bool ElfStringTable::string_at(int pos, char* buf, int buflen) { argument 75 jio_snprintf(buf, buflen, "%s", (const char*)(m_table + pos)); 81 fread(buf, 1, buflen, m_file) <= 0 ||
|
H A D | decoder.cpp | 83 bool Decoder::decode(address addr, char* buf, int buflen, int* offset, const char* modulepath) { argument 91 return decoder->decode(addr, buf, buflen, offset, modulepath); 94 bool Decoder::decode(address addr, char* buf, int buflen, int* offset, const void* base) { argument 102 return decoder->decode(addr, buf, buflen, offset, base); 106 bool Decoder::demangle(const char* symbol, char* buf, int buflen) { argument 113 return decoder->demangle(symbol, buf, buflen);
|
H A D | elfFile.cpp | 143 bool ElfFile::decode(address addr, char* buf, int buflen, int* offset) { argument 169 return string_table->string_at(pos_in_string_table, buf, buflen);
|
H A D | decoder.hpp | 48 virtual bool decode(address pc, char* buf, int buflen, int* offset, 50 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) = 0; 53 virtual bool demangle(const char* symbol, char* buf, int buflen) = 0; 82 virtual bool decode(address pc, char* buf, int buflen, int* offset, argument 87 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) { argument 91 virtual bool demangle(const char* symbol, char* buf, int buflen) { argument 103 static bool decode(address pc, char* buf, int buflen, int* offset, const char* modulepath = NULL); 104 static bool decode(address pc, char* buf, int buflen, int* offset, const void* base); 105 static bool demangle(const char* symbol, char* buf, int buflen);
|
/openjdk7/hotspot/src/os/bsd/vm/ |
H A D | decoder_machO.hpp | 41 virtual bool demangle(const char* symbol, char* buf, int buflen); 42 virtual bool decode(address pc, char* buf, int buflen, int* offset, 44 virtual bool decode(address pc, char* buf, int buflen, int* offset, argument
|
H A D | vmError_bsd.cpp | 37 void VMError::show_message_box(char *buf, int buflen) { argument 40 error_string(buf, buflen); 44 jio_snprintf(p, buflen - len, 57 jio_snprintf(buf, buflen, "gdb /proc/%d/exe %d",
|
H A D | decoder_machO.cpp | 35 bool MachODecoder::demangle(const char* symbol, char *buf, int buflen) { argument 38 size_t size = (size_t)buflen; 43 jio_snprintf(buf, buflen, "%s", result); 52 int buflen, int *offset, const void *mach_base) { 99 strncpy(buf, symname, buflen); 51 decode(address addr, char *buf, int buflen, int *offset, const void *mach_base) argument
|
/openjdk7/hotspot/src/os/windows/vm/ |
H A D | vmError_windows.cpp | 32 void VMError::show_message_box(char *buf, int buflen) { argument 35 error_string(buf, buflen); 39 jio_snprintf(p, buflen - len,
|
H A D | decoder_windows.hpp | 48 bool demangle(const char* symbol, char *buf, int buflen); 49 bool decode(address addr, char *buf, int buflen, int* offset, const char* modulepath = NULL); 50 bool decode(address addr, char *buf, int buflen, int* offset, const void* base) { argument
|
/openjdk7/jdk/src/solaris/native/java/net/ |
H A D | SocketOutputStream.c | 68 int buflen; local 88 buflen = MAX_BUFFER_LEN; 90 buflen = min(MAX_HEAP_BUFFER_LEN, len); 91 bufP = (char *)malloc((size_t)buflen); 96 buflen = MAX_BUFFER_LEN; 102 int chunkLen = min(buflen, len);
|
/openjdk7/jdk/src/windows/native/java/net/ |
H A D | SocketOutputStream.c | 65 int buflen; local 86 buflen = MAX_BUFFER_LEN; 88 buflen = min(MAX_HEAP_BUFFER_LEN, len); 89 bufP = (char *)malloc((size_t)buflen); 92 buflen = MAX_BUFFER_LEN; 98 int chunkLen = min(buflen, len); 130 buflen = MAX_BUFFER_LEN;
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/ |
H A D | ByteBufferWithInfo.java | 44 // which length is used in this object, this.buflen is actually the 55 public int buflen; // Total length of buffer. // Unnecessary... field in class:ByteBufferWithInfo 68 this.buflen = byteBuffer.limit(); 124 this.buflen = bufferSize; 125 this.byteBuffer.limit(this.buflen); 136 this.buflen = bbwi.buflen; 137 this.byteBuffer.limit(this.buflen); 149 // accessor to buflen 152 return buflen; [all...] |
/openjdk7/jdk/src/windows/back/ |
H A D | linker_md.c | 41 static void dll_build_name(char* buffer, size_t buflen, argument 57 (void)_snprintf(buffer, buflen, "%.*s%s.dll", (p - pathname), 60 (void)_snprintf(buffer, buflen, "%.*s\\%s.dll", (p - pathname),
|
/openjdk7/jdk/src/solaris/back/ |
H A D | linker_md.c | 57 static void dll_build_name(char* buffer, size_t buflen, argument 72 (void)snprintf(buffer, buflen, "%.*s/lib%s." LIB_SUFFIX, (p - pathname),
|
/openjdk7/jdk/src/windows/classes/sun/tools/attach/ |
H A D | WindowsVirtualMachine.java | 179 static native int readPipe(long hPipe, byte buf[], int off, int buflen) throws IOException; argument
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/ |
H A D | DocCommentScanner.java | 68 private int buflen; field in class:DocCommentScanner 130 if (limit < buflen) { 225 buflen = buf.length; 239 while (bp < buflen && ch == '*') { 243 if (bp < buflen && ch == '/') { 249 if (bp < buflen) { 268 while (bp < buflen) { 274 while (bp < buflen) { 334 while (bp < buflen) {
|
/openjdk7/jdk/src/solaris/classes/sun/tools/attach/ |
H A D | SolarisVirtualMachine.java | 234 static native int read(int fd, byte buf[], int off, int buflen) throws IOException; argument
|
/openjdk7/hotspot/src/share/vm/compiler/ |
H A D | compileLog.cpp | 203 void CompileLog::finish_log_on_error(outputStream* file, char* buf, int buflen) { argument 216 jio_snprintf(buf, buflen, UINTX_FORMAT, log->thread_id()); 224 if (to_read < (julong)buflen) 226 else nr = buflen; 236 while ((nr = read(partial_fd, buf, buflen)) > 0) {
|
/openjdk7/hotspot/src/share/vm/services/ |
H A D | diagnosticFramework.cpp | 200 const size_t buflen = 120; local 202 char buf[buflen]; 208 jio_snprintf(buf, buflen - 1, "Unknown argument '%s' in diagnostic command.", argbuf); 231 const size_t buflen = 256; local 232 char buf[buflen]; 236 jio_snprintf(buf, buflen - 1, "The argument '%s' is mandatory.", arg->name()); 244 jio_snprintf(buf, buflen - 1, "The option '%s' is mandatory.", arg->name());
|