| 112 | } |
| 113 | |
| 114 | inline bool ScannerContext::Stream::ReadText(uint8_t** buf, int64_t* len, |
| 115 | Status* status) { |
| 116 | RETURN_IF_FALSE(ReadVLong(len, status)); |
| 117 | RETURN_IF_FALSE(ReadBytes(*len, buf, status)); |
| 118 | return true; |
| 119 | } |
| 120 | |
| 121 | inline bool ScannerContext::Stream::ReadBoolean(bool* b, Status* status) { |
| 122 | uint8_t* val; |
no outgoing calls
no test coverage detected