Searched refs:WasmStreaming (Results 1 – 5 of 5) sorted by relevance
/third_party/node/deps/v8/include/ |
D | v8-wasm.h | 58 friend class WasmStreaming; variable 129 class V8_EXPORT WasmStreaming final { 146 explicit WasmStreaming(std::unique_ptr<WasmStreamingImpl> impl); 148 ~WasmStreaming(); 202 static std::shared_ptr<WasmStreaming> Unpack(Isolate* isolate,
|
/third_party/node/src/ |
D | node_wasm_web_api.cc | 21 using v8::WasmStreaming; 61 Environment* env, std::shared_ptr<WasmStreaming> streaming) { in Create() 159 std::shared_ptr<WasmStreaming> streaming = in StartStreamingCompilation() 160 WasmStreaming::Unpack(info.GetIsolate(), info.Data()); in StartStreamingCompilation()
|
D | node_wasm_web_api.h | 24 Environment* env, std::shared_ptr<v8::WasmStreaming> streaming); 41 std::shared_ptr<v8::WasmStreaming> streaming_;
|
/third_party/node/deps/v8/src/wasm/ |
D | wasm-js.cc | 52 class WasmStreaming::WasmStreamingImpl { 109 WasmStreaming::WasmStreaming(std::unique_ptr<WasmStreamingImpl> impl) in WasmStreaming() function in v8::WasmStreaming 116 WasmStreaming::~WasmStreaming() = default; 118 void WasmStreaming::OnBytesReceived(const uint8_t* bytes, size_t size) { in OnBytesReceived() 123 void WasmStreaming::Finish(bool can_use_compiled_module) { in Finish() 128 void WasmStreaming::Abort(MaybeLocal<Value> exception) { in Abort() 133 bool WasmStreaming::SetCompiledModuleBytes(const uint8_t* bytes, size_t size) { in SetCompiledModuleBytes() 138 void WasmStreaming::SetClient(std::shared_ptr<Client> client) { in SetClient() 143 void WasmStreaming::SetUrl(const char* url, size_t length) { in SetUrl() 150 std::shared_ptr<WasmStreaming> WasmStreaming::Unpack(Isolate* isolate, in Unpack() [all …]
|
/third_party/node/deps/v8/src/api/ |
D | api.cc | 10415 class WasmStreaming::WasmStreamingImpl {}; 10417 WasmStreaming::WasmStreaming(std::unique_ptr<WasmStreamingImpl>) { in WasmStreaming() function in v8::WasmStreaming 10421 WasmStreaming::~WasmStreaming() = default; 10423 void WasmStreaming::OnBytesReceived(const uint8_t* bytes, size_t size) { in OnBytesReceived() 10427 void WasmStreaming::Finish(bool can_use_compiled_module) { UNREACHABLE(); } in Finish() 10429 void WasmStreaming::Abort(MaybeLocal<Value> exception) { UNREACHABLE(); } in Abort() 10431 bool WasmStreaming::SetCompiledModuleBytes(const uint8_t* bytes, size_t size) { in SetCompiledModuleBytes() 10435 void WasmStreaming::SetClient(std::shared_ptr<Client> client) { UNREACHABLE(); } in SetClient() 10437 void WasmStreaming::SetUrl(const char* url, size_t length) { UNREACHABLE(); } in SetUrl() 10440 std::shared_ptr<WasmStreaming> WasmStreaming::Unpack(Isolate* isolate, in Unpack()
|