Lines Matching defs:bytes_read
330 static OracleCommand parse_command_name(const char * line, int* bytes_read) {
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;
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_msg)) {
504 line += bytes_read;
507 if (1 == sscanf(line, "%*[ \t](%254[[);/" RANGEBASE "]%n", sig + 1, &bytes_read)) {
509 line += bytes_read;
518 while (sscanf(line, "%*[ \t]%255[a-zA-Z0-9]%n", option, &bytes_read) == 1) {
525 line += bytes_read;
528 bytes_read = 0;
529 sscanf(line, "%*[ \t]%n", &bytes_read);
530 if (line[bytes_read] != '\0') {