/drivers/hdf_core/framework/tools/hdi-gen/util/ |
D | autoptr.h | 19 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/ |
D | hdi_smq_meta.h | 108 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 …]
|
D | native_buffer.h | 62 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/ |
D | buffer_util.c | 46 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 …]
|
D | native_buffer.cpp | 38 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/ |
D | stream_video.h | 29 StreamVideo(const StreamVideo &other) = delete; 30 StreamVideo(StreamVideo &&other) = delete; 31 StreamVideo& operator=(const StreamVideo &other) = delete; 32 StreamVideo& operator=(StreamVideo &&other) = delete;
|
D | stream_preview.h | 29 StreamPreview(const StreamPreview &other) = delete; 30 StreamPreview(StreamPreview &&other) = delete; 31 StreamPreview& operator=(const StreamPreview &other) = delete; 32 StreamPreview& operator=(StreamPreview &&other) = delete;
|
D | capture_message.h | 48 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/ |
D | doffline_stream_operator.h | 28 DOfflineStreamOperator(const DOfflineStreamOperator &other) = delete; 29 DOfflineStreamOperator(DOfflineStreamOperator &&other) = delete; 30 DOfflineStreamOperator& operator=(const DOfflineStreamOperator &other) = delete; 31 DOfflineStreamOperator& operator=(DOfflineStreamOperator &&other) = delete;
|
D | dbuffer_manager.h | 38 DBufferManager(const DBufferManager &other) = delete; 39 DBufferManager(DBufferManager &&other) = delete; 40 DBufferManager& operator=(const DBufferManager &other) = delete; 41 DBufferManager& operator=(DBufferManager &&other) = delete;
|
D | dcamera_stream.h | 35 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/ |
D | ipp_algo_parser.h | 32 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/ |
D | iam_ptr.h | 27 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/ |
D | iam_ptr.h | 27 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/ |
D | camera_device.h | 30 CameraDevice(const CameraDevice& other) = delete; 31 CameraDevice(CameraDevice&& other) = delete; 32 CameraDevice& operator=(const CameraDevice& other) = delete; 33 CameraDevice& operator=(CameraDevice&& other) = delete;
|
D | camera_host.h | 43 CameraHost(const CameraHost& other) = delete; 44 CameraHost(CameraHost&& other) = delete; 45 CameraHost& operator=(const CameraHost& other) = delete; 46 CameraHost& operator=(CameraHost&& other) = delete;
|
D | stream_operator.h | 47 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/ |
D | camera_device_service.h | 37 CameraDeviceService(const CameraDeviceService &other) = delete; 38 CameraDeviceService(CameraDeviceService &&other) = delete; 39 CameraDeviceService &operator=(const CameraDeviceService &other) = delete; 40 CameraDeviceService &operator=(CameraDeviceService &&other) = delete;
|
D | stream_operator_service.h | 51 StreamOperatorService(const StreamOperatorService &other) = delete; 52 StreamOperatorService(StreamOperatorService &&other) = delete; 53 StreamOperatorService &operator=(const StreamOperatorService &other) = delete; 54 StreamOperatorService &operator=(StreamOperatorService &&other) = delete;
|
D | camera_host_service.h | 53 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/ |
D | buffer_producer_sequenceable.h | 39 BufferProducerSequenceable &operator=(const BufferProducerSequenceable &other); 41 … BufferProducerSequenceable(const BufferProducerSequenceable &other):producer_(other.producer_) {} in BufferProducerSequenceable() argument
|
D | buffer_producer_sequenceable.cpp | 52 …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/ |
D | stream_tunnel.h | 53 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/ |
D | camera_host_vdi_impl.h | 42 CameraHostVdiImpl(const CameraHostVdiImpl &other) = delete; 43 CameraHostVdiImpl(CameraHostVdiImpl &&other) = delete; 44 CameraHostVdiImpl &operator=(const CameraHostVdiImpl &other) = delete; 45 CameraHostVdiImpl &operator=(CameraHostVdiImpl &&other) = delete;
|
D | camera_host_config.h | 46 CameraHostConfig(const CameraHostConfig &other) = delete; 47 CameraHostConfig(CameraHostConfig &&other) = delete; 48 CameraHostConfig& operator=(const CameraHostConfig &other) = delete; 49 CameraHostConfig& operator=(CameraHostConfig &&other) = delete;
|