Lines Matching refs:WasmStreamingObject
23 Local<Function> WasmStreamingObject::Initialize(Environment* env) {
33 WasmStreamingObject::kInternalFieldCount);
45 void WasmStreamingObject::RegisterExternalReferences(
53 void WasmStreamingObject::MemoryInfo(MemoryTracker* tracker) const {
60 MaybeLocal<Object> WasmStreamingObject::Create(
70 WasmStreamingObject* ptr = Unwrap<WasmStreamingObject>(obj);
77 void WasmStreamingObject::New(const FunctionCallbackInfo<Value>& args) {
80 new WasmStreamingObject(env, args.This());
83 void WasmStreamingObject::SetURL(const FunctionCallbackInfo<Value>& args) {
84 WasmStreamingObject* obj;
94 void WasmStreamingObject::Push(const FunctionCallbackInfo<Value>& args) {
95 WasmStreamingObject* obj;
130 void WasmStreamingObject::Finish(const FunctionCallbackInfo<Value>& args) {
131 WasmStreamingObject* obj;
139 void WasmStreamingObject::Abort(const FunctionCallbackInfo<Value>& args) {
140 WasmStreamingObject* obj;
153 // a WasmStreamingObject that encapsulates v8::WasmStreaming and that we can
163 if (!WasmStreamingObject::Create(env, streaming).ToLocal(&obj)) {
172 // WasmStreamingObject as the first argument, followed by the argument that we
205 WasmStreamingObject::RegisterExternalReferences(registry);