| 521 | } |
| 522 | |
| 523 | Result BinaryReaderLogging::OnNameSubsection( |
| 524 | Index index, |
| 525 | NameSectionSubsection subsection_type, |
| 526 | Offset subsection_size) { |
| 527 | LOGF("OnNameSubsection(index: %" PRIindex ", type: %s, size:%" PRIzd ")\n", |
| 528 | index, GetNameSectionSubsectionName(subsection_type), subsection_size); |
| 529 | return reader_->OnNameSubsection(index, subsection_type, subsection_size); |
| 530 | } |
| 531 | |
| 532 | Result BinaryReaderLogging::OnNameEntry(NameSectionSubsection type, |
| 533 | Index index, |
nothing calls this directly
no test coverage detected