Home
last modified time | relevance | path

Searched refs:op (Results 1 - 25 of 27) sorted by relevance

12

/drivers/peripheral/camera/vdi_base/common/pipeline_core/ipp/src/
H A Doffline_pipeline_manager.cpp37 auto op = GetOfflinePipeline(streamId, pipeline); in SwitchToOfflinePipeline() local
38 if (op == nullptr) { in SwitchToOfflinePipeline()
43 op->BindOfflineStreamCallback(callback); in SwitchToOfflinePipeline()
44 op->SwitchToOfflineMode(); in SwitchToOfflinePipeline()
48 offlinePipelineList_.emplace_back(std::make_pair(streamId, op)); in SwitchToOfflinePipeline()
56 auto op = FindOfflinePipeline(streamId); in CancelCapture() local
57 if (op == nullptr) { in CancelCapture()
61 return op->CancelCapture(captureId); in CancelCapture()
66 std::shared_ptr<OfflinePipeline> op = FindOfflinePipeline(id); in DestoryOfflinePipeline() local
67 if (op in DestoryOfflinePipeline()
115 std::shared_ptr<OfflinePipeline> op = nullptr; FindOfflinePipeline() local
131 auto op = FindOfflinePipeline(id); CheckCaptureIdExist() local
[all...]
/drivers/peripheral/user_auth/hdi_service/adaptor/inc/
H A Dadaptor_log.h28 #define DECORATOR_HDFLOG(op, fmt, args...) \
30 op("%{public}s() " fmt, __FUNCTION__, ##args); \
33 #define DECORATOR_HDFLOG(op, fmt, args...) \
35 op("{%s()-%s:%d} " fmt, __FUNCTION__, __LINE__, ##args); \
/drivers/peripheral/pin_auth/hdi_service/adaptor/inc/
H A Dadaptor_log.h28 #define DECORATOR_HDFLOG(op, fmt, args...) \
30 op("%{public}s() " fmt, __FUNCTION__, ##args); \
33 #define DECORATOR_HDFLOG(op, fmt, args...) \
35 op("{%s()-%s:%d} " fmt, __FUNCTION__, __LINE__, ##args); \
/drivers/interface/camera/metadata/include/
H A Dmetadata_log.h31 #define DECORATOR_HILOG(op, fmt, args...) \
33 op(LOG_CORE, fmt, ##args); \
36 #define DECORATOR_HILOG(op, fmt, args...) \
38 op(LOG_CORE, "{%s()-%s:%d} " fmt, __FUNCTION__, FILENAME, __LINE__, ##args); \
/drivers/interface/camera/sequenceable/include/
H A Dhdi_log.h31 #define DECORATOR_HDFLOG(op, fmt, args...) \
33 op(LOG_CORE, "%{public}s() " fmt, __FUNCTION__, ##args); \
36 #define DECORATOR_HDFLOG(op, fmt, args...) \
38 op(LOG_CORE, "{%s()-%s:%d} " fmt, __FUNCTION__, FILENAME, __LINE__, ##args); \
/drivers/peripheral/bluetooth/hci/hdi_service/implement/
H A Dvendor_interface.cpp61 int channelCount = vendorInterface_->op(BtOpcodeT::BT_OP_HCI_CHANNEL_OPEN, channel); in WatchHciChannel()
63 HDF_LOGE("vendorInterface_->op BT_OP_HCI_CHANNEL_OPEN failed ret:%d.", channelCount); in WatchHciChannel()
126 result = vendorInterface_->op(BtOpcodeT::BT_OP_POWER_ON, nullptr); in Initialize()
128 HDF_LOGE("vendorInterface_->op BT_OP_POWER_ON failed."); in Initialize()
147 vendorInterface_->op(BtOpcodeT::BT_OP_INIT, nullptr); in Initialize()
164 vendorInterface_->op(BtOpcodeT::BT_OP_LPM_DISABLE, nullptr); in CleanUp()
165 vendorInterface_->op(BtOpcodeT::BT_OP_HCI_CHANNEL_CLOSE, nullptr); in CleanUp()
166 vendorInterface_->op(BtOpcodeT::BT_OP_POWER_OFF, nullptr); in CleanUp()
188 vendorInterface_->op(BtOpcodeT::BT_OP_WAKEUP_LOCK, nullptr); in SendPacket()
209 if (VendorInterface::GetInstance()->vendorInterface_->op(BtOpcode in OnInitCallback()
[all...]
H A Dohos_bt_vendor_lib.h172 int (*op)(BtOpcodeT opcode, void* param); member
/drivers/peripheral/codec/utils/include/
H A Dcodec_log_wrapper.h48 #define DECORATOR_HDFLOG(op, fmt, args...) \
50 op("%{public}s() " fmt, __FUNCTION__, ##args); \
53 #define DECORATOR_HDFLOG(op, fmt, args...) \
55 op("{%s()-%s:%d} " fmt, __FUNCTION__, FILENAME, __LINE__, ##args); \
/drivers/hdf_core/framework/tools/hc-gen/src/
H A Doption.cpp59 int32_t op = 0; in ParseOptions() local
60 while (op != OPTION_END) { in ParseOptions()
61 op = getopt(argc, argv, HCS_SUPPORT_ARGS); in ParseOptions()
62 SetOptionData(op); in ParseOptions()
71 void Option::SetOptionData(char op) in SetOptionData() argument
73 switch (op) { in SetOptionData()
H A Doption.h88 void SetOptionData(char op);
/drivers/hdf_core/framework/tools/hdi-gen/ast/
H A Dast_expr.cpp31 std::string ASTUnaryExpr::UnaryOpToString(UnaryOpKind op) const in UnaryOpToString()
33 switch (op) { in UnaryOpToString()
62 std::string ASTBinaryExpr::BinaryOpToString(BinaryOpKind op) const in BinaryOpToString()
64 switch (op) { in BinaryOpToString()
H A Dast_expr.h36 std::string UnaryOpToString(UnaryOpKind op) const;
59 std::string BinaryOpToString(BinaryOpKind op) const;
/drivers/hdf_core/framework/model/network/wifi/platform/src/qos/
H A Dflow_control.c181 static int32_t RegisterFlowControlOp(struct FlowControlModule *fcm, struct FlowControlOp *op) in RegisterFlowControlOp() argument
183 if ((fcm == NULL) || (op == NULL)) { in RegisterFlowControlOp()
184 HDF_LOGE("%s fail : fcm = null or op = null!", __func__); in RegisterFlowControlOp()
187 fcm->op = op; in RegisterFlowControlOp()
310 if (fcm->op != NULL && fcm->op->getTxPriorityId != NULL) { in SendFlowControlQueue()
311 fwPriorityId = fcm->op->getTxPriorityId(id); in SendFlowControlQueue()
313 if (fcm->op != NULL && fcm->op in SendFlowControlQueue()
[all...]
H A Dflow_control_task.c53 if (fcm->op != NULL && fcm->op->isDeviceStaOrP2PClient != NULL) { in FlowControlTxTreadProcess()
54 isSta = fcm->op->isDeviceStaOrP2PClient(); in FlowControlTxTreadProcess()
71 if (fcm->op != NULL && fcm->op->isDeviceStaOrP2PClient != NULL) { in FlowControlRxTreadProcess()
72 isSta = fcm->op->isDeviceStaOrP2PClient(); in FlowControlRxTreadProcess()
/drivers/peripheral/camera/hal_c/hdi_cif/src/
H A Doffline_stream_operator.cpp28 void OfflineStreamOperator::Init(OfflineStreamOperatorCIF* op) in Init() argument
30 operator_ = op; in Init()
H A Dcamera_device.cpp46 StreamOperatorCIF* op = nullptr; in GetStreamOperator() local
47 int ret = device_->GetStreamOperator(cb, op); in GetStreamOperator()
49 spSO->Init(op); in GetStreamOperator()
H A Dstream_operator.cpp26 void StreamOperator::Init(StreamOperatorCIF* op) in Init() argument
28 operator_ = op; in Init()
284 OfflineStreamOperatorCIF* op = nullptr; in ChangeToOfflineStream() local
285 int ret = operator_->ChangeToOfflineStream(ids, count, cb, op); in ChangeToOfflineStream()
287 os->Init(op); in ChangeToOfflineStream()
/drivers/peripheral/camera/vdi_base/common/include/
H A Dcamera.h62 #define DECORATOR_HDFLOG(op, fmt, args...) \
64 op("%{public}s() " fmt, __FUNCTION__, ##args); \
67 #define DECORATOR_HDFLOG(op, fmt, args...) \
69 op("{%s()-%s:%d} " fmt, __FUNCTION__, FILENAME, __LINE__, ##args); \
/drivers/hdf_core/framework/model/network/wifi/platform/include/
H A Dflow_control.h217 struct FlowControlOp *op; /**< Flow control operation */ member
284 * @param op Indicates the pointer to the flow control operation API to register.
290 int32_t (*registerFlowControlOp)(struct FlowControlModule *fcm, struct FlowControlOp *op);
/drivers/hdf_core/framework/model/network/common/netdevice/
H A Dnet_device.c219 struct NetDeviceImplOp *op = NULL; in NetDeviceAdd() local
226 op = ndImpl->interFace; in NetDeviceAdd()
227 if (op == NULL || op->add == NULL) { in NetDeviceAdd()
231 return op->add(ndImpl); in NetDeviceAdd()
236 struct NetDeviceImplOp *op = NULL; in NetDeviceDelete() local
243 op = ndImpl->interFace; in NetDeviceDelete()
244 if (op == NULL || op->delete == NULL) { in NetDeviceDelete()
245 HDF_LOGE("%s fail: Impl op Delet in NetDeviceDelete()
[all...]
/drivers/peripheral/camera/hal_c/include/
H A Dcamera_device_c_if.h33 int (*GetStreamOperator)(StreamOperatorCallbackCIF callback, StreamOperatorCIF* op);
H A Dstream_operator_c_if.h56 OfflineStreamOperatorCIF* op);
/drivers/peripheral/camera/hal_c/hdi_cif/include/
H A Doffline_stream_operator.h28 void Init(OfflineStreamOperatorCIF* op);
H A Dstream_operator.h26 void Init(StreamOperatorCIF* op);
/drivers/hdf_core/framework/tools/hdi-gen/util/
H A Doptions.cpp51 int op = 0; in Parse() local
53 while ((op = getopt_long(argc, argv, optSupportArgs, g_longOpts, &optIndex)) != OPT_END) { in Parse()
54 switch (op) { in Parse()

Completed in 9 milliseconds

12