• Home
  • Raw
  • Download

Lines Matching full:bool

112     bool SerializeJSTaggedValue(const JSHandle<JSTaggedValue> &value);
118 bool WriteJSFunction(const JSHandle<JSTaggedValue> &value);
119 bool WriteMethod(const JSHandle<JSTaggedValue> &value);
120 bool WriteConstantPool(const JSHandle<JSTaggedValue> &value);
121 bool WriteTaggedArray(const JSHandle<JSTaggedValue> &value);
122 bool WriteByteArray(const JSHandle<JSTaggedValue> &value, DataViewType viewType);
123 bool WriteTaggedObject(const JSHandle<JSTaggedValue> &value);
124 bool WritePrimitiveValue(const JSHandle<JSTaggedValue> &value);
125 bool WriteInt(int32_t value);
126 bool WriteDouble(double value);
127 bool WriteRawData(const void *data, size_t length);
128 bool WriteType(SerializationUID uId);
129 bool AllocateBuffer(size_t bytes);
130 bool ExpandBuffer(size_t requestedSize);
131 bool WriteBoolean(bool value);
132 bool WriteJSError(const JSHandle<JSTaggedValue> &value);
133 bool WriteJSErrorHeader(JSType type);
134 bool WriteJSDate(const JSHandle<JSTaggedValue> &value);
135 bool WriteJSArray(const JSHandle<JSTaggedValue> &value);
136 bool WriteJSMap(const JSHandle<JSTaggedValue> &value);
137 bool WriteJSSet(const JSHandle<JSTaggedValue> &value);
138 bool WriteJSRegExp(const JSHandle<JSTaggedValue> &value);
139 bool WriteEcmaString(const JSHandle<JSTaggedValue> &value);
140 bool WriteJSTypedArray(const JSHandle<JSTaggedValue> &value, SerializationUID uId);
141 bool WritePlainObject(const JSHandle<JSTaggedValue> &value);
142 bool WriteNativeBindingObject(const JSHandle<JSTaggedValue> &value);
143 bool WriteNativePointer(const JSHandle<JSTaggedValue> &value);
144 bool WriteJSArrayBuffer(const JSHandle<JSTaggedValue> &value);
145 bool WriteDesc(const PropertyDescriptor &desc);
146 bool IsNativeBindingObject(std::vector<JSTaggedValue> keyVector);
147 bool IsTargetSymbol(JSTaggedValue symbolVal);
148 bool IsSerialized(uintptr_t addr) const;
149 bool WriteIfSerialized(uintptr_t addr);
178 bool ReadInt(int32_t *value);
179 bool ReadObjectId(uint64_t *objectId);
180 bool ReadDouble(double *value);
202 bool JudgeType(SerializationUID targetUid);
204 bool ReadJSTaggedValue(JSTaggedValue *originalFlags);
205 bool ReadNativePointer(uintptr_t *pointer);
206 bool DefinePropertiesAndElements(const JSHandle<JSTaggedValue> &obj);
207 bool ReadDesc(PropertyDescriptor *desc);
208 bool ReadBoolean(bool *value);
260bool WriteValue(JSThread *thread, const JSHandle<JSTaggedValue> &value, const JSHandle<JSTaggedVal…
264 bool PrepareTransfer(JSThread *thread, const JSHandle<JSTaggedValue> &transfer);
265 bool FinalizeTransfer(JSThread *thread, const JSHandle<JSTaggedValue> &transfer);