Searched refs:wire_bytes_length (Results 1 – 1 of 1) sorted by relevance
813 int wire_bytes_length = wire_bytes->length(); in WriteWasmModule() local814 WriteVarint<uint32_t>(wire_bytes_length); in WriteWasmModule()816 if (ReserveRawBytes(wire_bytes_length).To(&destination)) { in WriteWasmModule()817 String::WriteToFlat(*wire_bytes, destination, 0, wire_bytes_length); in WriteWasmModule()1612 uint32_t wire_bytes_length = 0; in ReadWasmModule() local1616 if (!ReadVarint<uint32_t>().To(&wire_bytes_length) || in ReadWasmModule()1617 wire_bytes_length > max_valid_size || in ReadWasmModule()1618 !ReadRawBytes(wire_bytes_length).To(&wire_bytes) || in ReadWasmModule()