Lines Matching full:bool
111 bool SerializeJSTaggedValue(const JSHandle<JSTaggedValue> &value);
119 bool WriteJSFunction(const JSHandle<JSTaggedValue> &value);
120 bool WriteMethod(const JSHandle<JSTaggedValue> &value);
121 bool WriteConstantPool(const JSHandle<JSTaggedValue> &value);
122 bool WriteTaggedArray(const JSHandle<JSTaggedValue> &value);
123 bool WriteByteArray(const JSHandle<JSTaggedValue> &value, DataViewType viewType);
124 bool WriteTaggedObject(const JSHandle<JSTaggedValue> &value);
125 bool WritePrimitiveValue(const JSHandle<JSTaggedValue> &value);
126 bool WriteInt(int32_t value);
127 bool WriteDouble(double value);
128 bool WriteRawData(const void *data, size_t length);
129 bool WriteType(SerializationUID uId);
130 bool AllocateBuffer(size_t bytes);
131 bool ExpandBuffer(size_t requestedSize);
132 bool WriteBoolean(bool value);
133 bool WriteJSError(const JSHandle<JSTaggedValue> &value);
134 bool WriteJSErrorHeader(JSType type);
135 bool WriteJSDate(const JSHandle<JSTaggedValue> &value);
136 bool WriteJSArray(const JSHandle<JSTaggedValue> &value);
137 bool WriteJSMap(const JSHandle<JSTaggedValue> &value);
138 bool WriteJSSet(const JSHandle<JSTaggedValue> &value);
139 bool WriteJSRegExp(const JSHandle<JSTaggedValue> &value);
140 bool WriteEcmaString(const JSHandle<JSTaggedValue> &value);
141 bool WriteJSTypedArray(const JSHandle<JSTaggedValue> &value, SerializationUID uId);
142 bool WritePlainObject(const JSHandle<JSTaggedValue> &value);
143 bool WriteNativeBindingObject(const JSHandle<JSTaggedValue> &value);
144 bool WriteJSNativePointer(const JSHandle<JSNativePointer> &value);
145 bool WriteJSArrayBuffer(const JSHandle<JSTaggedValue> &value);
146 bool WriteBigInt(const JSHandle<JSTaggedValue> &value);
147 bool WriteDesc(const PropertyDescriptor &desc);
148 bool IsNativeBindingObject(std::vector<JSTaggedValue> keyVector);
149 bool IsTargetSymbol(JSTaggedValue symbolVal);
150 bool IsSerialized(uintptr_t addr) const;
151 bool WriteIfSerialized(uintptr_t addr);
153 bool WriteString(const CString &str);
182 bool ReadInt(int32_t *value);
183 bool ReadObjectId(uint64_t *objectId);
184 bool ReadDouble(double *value);
207 bool JudgeType(SerializationUID targetUid);
209 bool ReadJSTaggedValue(JSTaggedValue *originalFlags);
210 bool ReadNativePointer(uintptr_t *pointer);
211 bool DefinePropertiesAndElements(const JSHandle<JSTaggedValue> &obj);
212 bool ReadDesc(PropertyDescriptor *desc);
213 bool ReadBoolean(bool *value);
214 bool ReadString(CString *value);
266 …bool WriteValue(JSThread *thread, const JSHandle<JSTaggedValue> &value, const JSHandle<JSTaggedVal…
270 bool PrepareTransfer(JSThread *thread, const JSHandle<JSTaggedValue> &transfer);