Searched defs:bytes_read (Results 1 - 4 of 4) sorted by relevance
/openjdk7/hotspot/src/share/vm/compiler/ |
H A D | compilerOracle.cpp | 330 static OracleCommand parse_command_name(const char * line, int* bytes_read) { argument 334 *bytes_read = 0; 336 int result = sscanf(line, "%32[a-z]%n", command, bytes_read); 428 int* bytes_read, const char*& error_msg) { 429 *bytes_read = 0; 432 if (2 == sscanf(line, patterns[i], class_name, method_name, bytes_read)) { 469 int bytes_read; local 470 OracleCommand command = parse_command_name(line, &bytes_read); 471 line += bytes_read; 498 if (scan_line(line, class_name, &c_match, method_name, &m_match, &bytes_read, error_ms 425 scan_line(const char * line, char class_name[], MethodMatcher::Mode* c_mode, char method_name[], MethodMatcher::Mode* m_mode, int* bytes_read, const char*& error_msg) argument [all...] |
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/ |
H A D | jdmarker.c | 107 unsigned int bytes_read; /* data bytes read so far in marker */ member in struct:__anon714 761 unsigned int bytes_read, data_length; local 790 marker->bytes_read = 0; 791 bytes_read = 0; 795 bytes_read = data_length = 0; 800 bytes_read = marker->bytes_read; 802 data = cur_marker->data + bytes_read; 805 while (bytes_read < data_length) { 807 marker->bytes_read [all...] |
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/ |
H A D | unpack.h | 198 julong bytes_read; member in struct:unpacker
|
/openjdk7/hotspot/src/os/windows/vm/ |
H A D | os_windows.cpp | 4475 DWORD bytes_read; local 4482 bool res = ReadFile(hFile, base, (DWORD)bytes, &bytes_read, &overlapped) != 0;
|
Completed in 62 milliseconds