Searched refs:BufferToVector (Results 1 – 1 of 1) sorted by relevance
/ohos5.0/foundation/communication/ipc/ipc/native/src/napi_common/source/ |
H A D | napi_message_sequence_write.cpp | 1891 static std::vector<T> BufferToVector(void *data, size_t byteLength) in BufferToVector() function 1957 … return napiSequence->nativeParcel_->WriteInt8Vector(BufferToVector<int8_t>(data, byteLength)); in JS_writeVectorByTypeCode() 1960 … return napiSequence->nativeParcel_->WriteUInt8Vector(BufferToVector<uint8_t>(data, byteLength)); in JS_writeVectorByTypeCode() 1963 … return napiSequence->nativeParcel_->WriteInt16Vector(BufferToVector<int16_t>(data, byteLength)); in JS_writeVectorByTypeCode() 1966 … return napiSequence->nativeParcel_->WriteUInt16Vector(BufferToVector<uint16_t>(data, byteLength)); in JS_writeVectorByTypeCode() 1969 … return napiSequence->nativeParcel_->WriteInt32Vector(BufferToVector<int32_t>(data, byteLength)); in JS_writeVectorByTypeCode() 1972 … return napiSequence->nativeParcel_->WriteUInt32Vector(BufferToVector<uint32_t>(data, byteLength)); in JS_writeVectorByTypeCode() 1975 … return napiSequence->nativeParcel_->WriteFloatVector(BufferToVector<float>(data, byteLength)); in JS_writeVectorByTypeCode() 1978 … return napiSequence->nativeParcel_->WriteDoubleVector(BufferToVector<double>(data, byteLength)); in JS_writeVectorByTypeCode() 1981 … return napiSequence->nativeParcel_->WriteInt64Vector(BufferToVector<int64_t>(data, byteLength)); in JS_writeVectorByTypeCode() [all …]
|