/third_party/node/deps/v8/src/runtime/ |
D | runtime-futex.cc | 28 CHECK(!sta->WasDetached()); in RUNTIME_FUNCTION() 49 CHECK(!sta->WasDetached()); in RUNTIME_FUNCTION()
|
D | runtime-typedarray.cc | 92 DCHECK(!array->WasDetached()); in RUNTIME_FUNCTION()
|
D | runtime-atomics.cc | 384 if (V8_UNLIKELY(sta->WasDetached())) { \ 456 DCHECK(!sta->WasDetached()); in RUNTIME_FUNCTION()
|
D | runtime-test-wasm.cc | 352 CHECK(!wire_bytes->WasDetached()); in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/objects/ |
D | js-array-buffer-inl.h | 187 bool JSArrayBufferView::WasDetached() const { in WasDetached() function 202 if (WasDetached()) return 0; in GetLengthOrOutOfBounds() 225 if (WasDetached()) { in IsDetachedOrOutOfBounds() 338 if (V8_UNLIKELY(array->WasDetached())) { in Validate()
|
D | js-array-buffer.cc | 284 if (o->WasDetached() || out_of_bounds || index >= length) { in DefineOwnProperty() 384 DCHECK(!WasDetached()); in GetVariableLengthOrOutOfBounds()
|
D | js-array-buffer.h | 254 inline bool WasDetached() const;
|
D | elements.cc | 3336 if (typed_array.WasDetached()) { in IncludesValueImpl() 3413 if V8_UNLIKELY (typed_array.WasDetached()) return Just<int64_t>(-1); in IndexOfValueImpl() 3744 CHECK(!destination.WasDetached()); in TryCopyElementsFastNumber() 3860 if (V8_UNLIKELY(out_of_bounds || destination->WasDetached() || in CopyElementsHandleSlow() 3887 CHECK(!destination_ta->WasDetached()); in CopyElementsHandleImpl() 3900 if (source_is_bigint == target_is_bigint && !source_ta->WasDetached() && in CopyElementsHandleImpl() 3906 CHECK(!destination_ta->WasDetached()); in CopyElementsHandleImpl()
|
D | objects.cc | 1037 if (array->WasDetached() || in CreateListFromArrayLikeFastPath() 2806 if (Handle<JSArrayBufferView>::cast(receiver)->WasDetached()) { in SetDataProperty() 2816 if (Handle<JSArrayBufferView>::cast(receiver)->WasDetached()) { in SetDataProperty()
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-typed-array.cc | 85 if (V8_UNLIKELY(array->WasDetached())) { in BUILTIN() 178 if (V8_UNLIKELY(array->WasDetached())) { in BUILTIN() 258 if (V8_UNLIKELY(array->WasDetached())) return Smi::FromInt(-1); in BUILTIN() 296 if (V8_UNLIKELY(array->WasDetached())) return Smi::FromInt(-1); in BUILTIN()
|
D | builtins-sharedarraybuffer.cc | 58 if (typed_array->WasDetached()) { in ValidateIntegerTypedArray()
|
D | data-view.tq | 66 macro WasDetached(view: JSArrayBufferView): bool { 102 if (WasDetached(dataView)) {
|
/third_party/node/deps/v8/include/ |
D | v8-array-buffer.h | 246 bool WasDetached() const;
|
/third_party/node/deps/v8/src/debug/ |
D | debug-property-iterator.cc | 182 typed_array->WasDetached() ? 0 : typed_array->length(); in FillKeysForCurrentPrototypeAndStage()
|
/third_party/node/src/ |
D | node_util.cc | 143 args.GetReturnValue().Set(buffer->WasDetached()); in IsArrayBufferDetached()
|
D | node_buffer.cc | 1233 if (abv.WasDetached()) { in IsUtf8() 1248 if (abv.WasDetached()) { in IsAscii()
|
D | util-inl.h | 574 was_detached_ = ab->WasDetached(); in ReadValue()
|
D | util.h | 506 inline bool WasDetached() const { return was_detached_; } in WasDetached() function
|
D | js_native_api_v8.cc | 3383 value->IsArrayBuffer() && value.As<v8::ArrayBuffer>()->WasDetached(); in napi_is_detached_arraybuffer()
|
/third_party/node/deps/v8/src/diagnostics/ |
D | objects-printer.cc | 1491 if (WasDetached()) os << "\n - detached"; in JSTypedArrayPrint() 1494 JSObjectPrintBody(os, *this, !WasDetached()); in JSTypedArrayPrint() 1514 if (WasDetached()) os << "\n - detached"; in JSDataViewPrint() 1515 JSObjectPrintBody(os, *this, !WasDetached()); in JSDataViewPrint()
|
D | objects-debug.cc | 1603 if (!WasDetached()) { in JSDataViewVerify()
|
/third_party/node/deps/v8/src/snapshot/ |
D | serializer.cc | 516 if (!typed_array.WasDetached()) { in SerializeJSTypedArray()
|
/third_party/node/deps/v8/src/api/ |
D | api.cc | 7920 bool v8::ArrayBuffer::WasDetached() const { in WasDetached() function in v8::v8::ArrayBuffer 8054 return obj->WasDetached() ? 0 : obj->byte_offset(); in ByteOffset() 8059 return obj->WasDetached() ? 0 : obj->byte_length(); in ByteLength() 8064 return obj->WasDetached() ? 0 : obj->length(); in Length()
|