Home
last modified time | relevance | path

Searched refs:control_ (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/api/
H A Dtimer.h39 Timer(Timer&& t) : control_(BASE_NS::move(t.control_)) {} in META_BEGIN_NAMESPACE()
67 control_ = BASE_NS::move(t.control_); in META_BEGIN_NAMESPACE()
86 control_->queue = queue; in META_BEGIN_NAMESPACE()
87 control_->token = in META_BEGIN_NAMESPACE()
122 if (control_) { in META_BEGIN_NAMESPACE()
124 if (control_->queue && control_->token) { in META_BEGIN_NAMESPACE()
125 control_->queue->CancelTask(control_->token); in META_BEGIN_NAMESPACE()
128 control_.reset(); in META_BEGIN_NAMESPACE()
137 if (control_) { in META_BEGIN_NAMESPACE()
141 control_.reset(); in META_BEGIN_NAMESPACE()
[all …]
H A Ddeferred_callback.h69 : control_(new ControlBlock<Func>(BASE_NS::move(func))), queue_(q) in DeferredCallable()
83 …q->AddTask(ITaskQueueTask::Ptr(new QueueTask([control = BASE_NS::weak_ptr(control_), args...]() mu… in Invoke()
93 BASE_NS::shared_ptr<ControlBlock<Func>> control_;
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/base/
H A Dshared_ptr.h35 if (this->control_) { in BASE_BEGIN_NAMESPACE()
43 if (this->control_) { in BASE_BEGIN_NAMESPACE()
49 if (this->control_) { in BASE_BEGIN_NAMESPACE()
67 this->control_ = p.control_; in BASE_BEGIN_NAMESPACE()
77 this->control_ = p.control_; in BASE_BEGIN_NAMESPACE()
88 this->control_ = p.control_; in BASE_BEGIN_NAMESPACE()
90 if (this->control_) { in BASE_BEGIN_NAMESPACE()
148 return !this->control_ || this->control_->GetStrongCount() == 0; in BASE_BEGIN_NAMESPACE()
313 this->control_ = o.control_;
325 this->control_ = o.control_;
[all …]
H A Dshared_ptr_internals.h108 return control_ == p.control_; in BASE_BEGIN_NAMESPACE()
113 PtrCountedBase(ControlBlock* c) : control_(c) {} in BASE_BEGIN_NAMESPACE()
122 control_ = nullptr; in BASE_BEGIN_NAMESPACE()
128 ControlBlock* control_ {}; in BASE_BEGIN_NAMESPACE()
/ohos5.0/base/powermgr/thermal_manager/application/protector/src/
H A Dthermal_kernel_service.cpp41 if (control_ == nullptr) { in Init()
42 control_ = std::make_shared<ThermalDeviceControl>(); in Init()
79 if (!control_->Init()) { in Init()
/ohos5.0/base/powermgr/thermal_manager/application/protector/include/
H A Dthermal_kernel_service.h54 return control_; in GetControl()
65 std::shared_ptr<ThermalDeviceControl> control_ {nullptr};
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/video/
H A Dvideo_layout_property.h55 auto control_ = GetControlsValue(true); in fullScreenReset() local
60 UpdateControls(control_); in fullScreenReset()
/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/driver_adapter/src/
H A Dv4l2_uvc.cpp36 std::vector<DeviceControl>().swap(control_); in V4L2UvcSearchCapability()
66 control->V4L2GetControls(fd, control_); in V4L2UvcSearchCapability()
136 uvcCallbackFun_(std::string(devName), control_, format_, inOut); in V4L2UvcMatchDev()
/ohos5.0/drivers/peripheral/camera/vdi_base/usb_camera/adapter/platform/v4l2/src/driver_adapter/src/
H A Dv4l2_uvc.cpp36 std::vector<DeviceControl>().swap(control_); in V4L2UvcSearchCapability()
66 control->V4L2GetControls(fd, control_); in V4L2UvcSearchCapability()
136 uvcCallbackFun_(std::string(devName), control_, format_, inOut); in V4L2UvcMatchDev()
/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/driver_adapter/include/
H A Dv4l2_uvc.h65 std::vector<DeviceControl> control_; variable