Searched refs:bytes_read (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.cpp330 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 Djdmarker.c107 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/jaxws/src/share/jaf_classes/javax/activation/
H A DDataHandler.java303 int bytes_read;
308 while ((bytes_read = is.read(data)) > 0) {
309 os.write(data, 0, bytes_read);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.h198 julong bytes_read; member in struct:unpacker
H A Dunpack.cpp337 bytes_read += input.limit() - rplimit;
360 bytes_read += nr;
583 bytes_read += inbytes.len;
855 (bytes_read_before_reset+bytes_read),
3518 bytes_read_before_reset += bytes_read;
4629 if (predicted_size != bytes_read)
4701 bytes_read += fleft; // Credit it to the overall archive size.
4732 assert(bytes_read > fleft); // part2 already credited by get_next_file
4733 bytes_read -= fleft;
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4475 DWORD bytes_read; local
4482 bool res = ReadFile(hFile, base, (DWORD)bytes, &bytes_read, &overlapped) != 0;

Completed in 1457 milliseconds