| 101 | } |
| 102 | |
| 103 | MdfBlock *Ch4Block::Find(int64_t index) const { // NOLINT |
| 104 | for (auto &ch : ch_list_) { |
| 105 | if (!ch) { |
| 106 | continue; |
| 107 | } |
| 108 | auto *p = ch->Find(index); |
| 109 | if (p != nullptr) { |
| 110 | return p; |
| 111 | } |
| 112 | } |
| 113 | return MdfBlock::Find(index); |
| 114 | } |
| 115 | |
| 116 | int64_t Ch4Block::Index() const { return FilePosition(); } |
| 117 |
no outgoing calls
no test coverage detected