OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OnBytesReceived
(Results
1 - 6
of
6
) sorted by null
/external/v8/src/wasm/
streaming-decoder.h
55
// of {
OnBytesReceived
}, and extracts the bytes which belong to section payloads
61
// The buffer passed into
OnBytesReceived
is owned by the caller.
62
void
OnBytesReceived
(Vector<const uint8_t> bytes);
streaming-decoder.cc
28
void StreamingDecoder::
OnBytesReceived
(Vector<const uint8_t> bytes) {
29
TRACE_STREAMING("
OnBytesReceived
(%zu bytes)\n", bytes.size());
wasm-engine.cc
147
streaming_decoder->
OnBytesReceived
(bytes.module_bytes());
wasm-js.cc
43
void
OnBytesReceived
(const uint8_t* bytes, size_t size) {
44
streaming_decoder_->
OnBytesReceived
(i::Vector<const uint8_t>(bytes, size));
74
void WasmStreaming::
OnBytesReceived
(const uint8_t* bytes, size_t size) {
75
impl_->
OnBytesReceived
(bytes, size);
[
all
...]
/external/v8/include/
v8.h
[
all
...]
/external/v8/src/
api.cc
[
all
...]
Completed in 588 milliseconds