Home
last modified time | relevance | path

Searched refs:other (Results 1 – 25 of 128) sorted by relevance

123456

/drivers/hdf_core/framework/tools/hdi-gen/util/
Dautoptr.h19 AutoPtr(T *other);
21 AutoPtr(const AutoPtr<T> &other);
23 AutoPtr(AutoPtr<T> &&other);
27 AutoPtr &operator=(T *other);
29 AutoPtr &operator=(const AutoPtr<T> &other);
31 AutoPtr &operator=(AutoPtr<T> &&other);
33 void MoveTo(T **other);
45 inline bool operator==(T *other) const;
47 inline bool operator==(const AutoPtr<T> &other) const;
49 inline bool operator!=(T *other) const;
[all …]
/drivers/hdf_core/interfaces/inner_api/hdi/base/
Dhdi_smq_meta.h108 SharedMemQueueMeta(const SharedMemQueueMeta<T> &other);
116 SharedMemQueueMeta &operator=(const SharedMemQueueMeta<T> &other);
238 SharedMemQueueMeta<T> &SharedMemQueueMeta<T>::operator=(const SharedMemQueueMeta<T> &other)
240 if (this != &other) {
244 ashmemFd_ = dup(other.ashmemFd_);
245 size_ = other.size_;
246 elementCount_ = other.elementCount_;
247 elementSize_ = other.elementSize_;
248 type_ = other.type_;
249 if (memcpy_s(memzone_, sizeof(memzone_), other.memzone_, sizeof(other.memzone_)) != EOK) {
[all …]
Dnative_buffer.h62 NativeBuffer(const NativeBuffer &other);
63 NativeBuffer(NativeBuffer &&other) noexcept;
65 NativeBuffer &operator=(const NativeBuffer &other);
66 NativeBuffer &operator=(NativeBuffer &&other) noexcept;
/drivers/hdf_core/adapter/uhdf2/hdi/src/
Dbuffer_util.c46 BufferHandle *CloneNativeBufferHandle(const BufferHandle *other) in CloneNativeBufferHandle() argument
48 if (other == NULL) { in CloneNativeBufferHandle()
53 BufferHandle *handle = AllocateNativeBufferHandle(other->reserveFds, other->reserveInts); in CloneNativeBufferHandle()
59 if (other->fd == -1) { in CloneNativeBufferHandle()
60 handle->fd = other->fd; in CloneNativeBufferHandle()
62 handle->fd = dup(other->fd); in CloneNativeBufferHandle()
69 handle->width = other->width; in CloneNativeBufferHandle()
70 handle->stride = other->stride; in CloneNativeBufferHandle()
71 handle->height = other->height; in CloneNativeBufferHandle()
72 handle->size = other->size; in CloneNativeBufferHandle()
[all …]
Dnative_buffer.cpp38 NativeBuffer::NativeBuffer(const NativeBuffer &other) : NativeBuffer() in NativeBuffer() argument
40 if (other.handle_ == nullptr) { in NativeBuffer()
43 handle_ = CloneNativeBufferHandle(other.handle_); in NativeBuffer()
46 NativeBuffer::NativeBuffer(NativeBuffer &&other) noexcept : NativeBuffer() in NativeBuffer() argument
48 handle_ = other.handle_; in NativeBuffer()
49 isOwner_ = other.isOwner_; in NativeBuffer()
50 bufferDestructor_ = other.bufferDestructor_; in NativeBuffer()
51 other.handle_ = nullptr; in NativeBuffer()
54 NativeBuffer &NativeBuffer::operator=(const NativeBuffer &other) in operator =() argument
56 if (this != &other) { in operator =()
[all …]
/drivers/peripheral/camera/vdi_base/v4l2/include/stream_operator/
Dstream_video.h29 StreamVideo(const StreamVideo &other) = delete;
30 StreamVideo(StreamVideo &&other) = delete;
31 StreamVideo& operator=(const StreamVideo &other) = delete;
32 StreamVideo& operator=(StreamVideo &&other) = delete;
Dstream_preview.h29 StreamPreview(const StreamPreview &other) = delete;
30 StreamPreview(StreamPreview &&other) = delete;
31 StreamPreview& operator=(const StreamPreview &other) = delete;
32 StreamPreview& operator=(StreamPreview &&other) = delete;
Dcapture_message.h48 ICaptureMessage(const ICaptureMessage& other) = delete;
49 ICaptureMessage(ICaptureMessage&& other) = delete;
50 ICaptureMessage& operator=(const ICaptureMessage& other) = delete;
51 ICaptureMessage& operator=(ICaptureMessage&& other) = delete;
138 CaptureMessageOperator(const CaptureMessageOperator& other) = delete;
139 CaptureMessageOperator(CaptureMessageOperator&& other) = delete;
140 CaptureMessageOperator& operator=(const CaptureMessageOperator& other) = delete;
141 CaptureMessageOperator& operator=(CaptureMessageOperator&& other) = delete;
/drivers/peripheral/distributed_camera/hdi_service/include/dstream_operator/
Ddoffline_stream_operator.h28 DOfflineStreamOperator(const DOfflineStreamOperator &other) = delete;
29 DOfflineStreamOperator(DOfflineStreamOperator &&other) = delete;
30 DOfflineStreamOperator& operator=(const DOfflineStreamOperator &other) = delete;
31 DOfflineStreamOperator& operator=(DOfflineStreamOperator &&other) = delete;
Ddbuffer_manager.h38 DBufferManager(const DBufferManager &other) = delete;
39 DBufferManager(DBufferManager &&other) = delete;
40 DBufferManager& operator=(const DBufferManager &other) = delete;
41 DBufferManager& operator=(DBufferManager &&other) = delete;
Ddcamera_stream.h35 DCameraStream(const DCameraStream &other) = delete;
36 DCameraStream(DCameraStream &&other) = delete;
37 DCameraStream &operator=(const DCameraStream &other) = delete;
38 DCameraStream &operator=(DCameraStream &&other) = delete;
/drivers/peripheral/camera/vdi_base/common/pipeline_core/ipp/include/
Dipp_algo_parser.h32 IppAlgoParser(const IppAlgoParser& other) = delete;
33 IppAlgoParser(IppAlgoParser&& other) = delete;
34 IppAlgoParser& operator=(const IppAlgoParser& other) = delete;
35 IppAlgoParser& operator=(IppAlgoParser&& other) = delete;
/drivers/peripheral/pin_auth/common/utils/
Diam_ptr.h27 static inline std::shared_ptr<T> SptrToStdSharedPtr(sptr<T> &other) in SptrToStdSharedPtr() argument
29 return std::shared_ptr<T>(other.GetRefPtr(), [other](T *) mutable { other = nullptr; }); in SptrToStdSharedPtr()
/drivers/peripheral/user_auth/common/utils/
Diam_ptr.h27 static inline std::shared_ptr<T> SptrToStdSharedPtr(sptr<T> &other) in SptrToStdSharedPtr() argument
29 return std::shared_ptr<T>(other.GetRefPtr(), [other](T *) mutable { other = nullptr; }); in SptrToStdSharedPtr()
/drivers/peripheral/camera/hal_c/hdi_cif/include/
Dcamera_device.h30 CameraDevice(const CameraDevice& other) = delete;
31 CameraDevice(CameraDevice&& other) = delete;
32 CameraDevice& operator=(const CameraDevice& other) = delete;
33 CameraDevice& operator=(CameraDevice&& other) = delete;
Dcamera_host.h43 CameraHost(const CameraHost& other) = delete;
44 CameraHost(CameraHost&& other) = delete;
45 CameraHost& operator=(const CameraHost& other) = delete;
46 CameraHost& operator=(CameraHost&& other) = delete;
Dstream_operator.h47 StreamOperator(const StreamOperator &other) = delete;
48 StreamOperator(StreamOperator &&other) = delete;
49 StreamOperator& operator=(const StreamOperator &other) = delete;
50 StreamOperator& operator=(StreamOperator &&other) = delete;
/drivers/peripheral/camera/hdi_service/v1_0/include/
Dcamera_device_service.h37 CameraDeviceService(const CameraDeviceService &other) = delete;
38 CameraDeviceService(CameraDeviceService &&other) = delete;
39 CameraDeviceService &operator=(const CameraDeviceService &other) = delete;
40 CameraDeviceService &operator=(CameraDeviceService &&other) = delete;
Dstream_operator_service.h51 StreamOperatorService(const StreamOperatorService &other) = delete;
52 StreamOperatorService(StreamOperatorService &&other) = delete;
53 StreamOperatorService &operator=(const StreamOperatorService &other) = delete;
54 StreamOperatorService &operator=(StreamOperatorService &&other) = delete;
Dcamera_host_service.h53 CameraHostService(const CameraHostService &other) = delete;
54 CameraHostService(CameraHostService &&other) = delete;
55 CameraHostService &operator=(const CameraHostService &other) = delete;
56 CameraHostService &operator=(CameraHostService &&other) = delete;
/drivers/interface/camera/sequenceable/buffer_producer/
Dbuffer_producer_sequenceable.h39 BufferProducerSequenceable &operator=(const BufferProducerSequenceable &other);
41 … BufferProducerSequenceable(const BufferProducerSequenceable &other):producer_(other.producer_) {} in BufferProducerSequenceable() argument
Dbuffer_producer_sequenceable.cpp52 …roducerSequenceable &BufferProducerSequenceable::operator=(const BufferProducerSequenceable &other) in operator =() argument
54 if (&other != this) in operator =()
55 producer_ = other.producer_; in operator =()
/drivers/peripheral/camera/vdi_base/v4l2/src/stream_operator/stream_tunnel/lite/
Dstream_tunnel.h53 StreamTunnel(const StreamTunnel& other) = delete;
54 StreamTunnel(StreamTunnel&& other) = delete;
55 StreamTunnel& operator=(const StreamTunnel& other) = delete;
56 StreamTunnel& operator=(StreamTunnel&& other) = delete;
/drivers/peripheral/camera/vdi_base/v4l2/include/camera_host/
Dcamera_host_vdi_impl.h42 CameraHostVdiImpl(const CameraHostVdiImpl &other) = delete;
43 CameraHostVdiImpl(CameraHostVdiImpl &&other) = delete;
44 CameraHostVdiImpl &operator=(const CameraHostVdiImpl &other) = delete;
45 CameraHostVdiImpl &operator=(CameraHostVdiImpl &&other) = delete;
Dcamera_host_config.h46 CameraHostConfig(const CameraHostConfig &other) = delete;
47 CameraHostConfig(CameraHostConfig &&other) = delete;
48 CameraHostConfig& operator=(const CameraHostConfig &other) = delete;
49 CameraHostConfig& operator=(CameraHostConfig &&other) = delete;

123456