Home
last modified time | relevance | path

Searched refs:op (Results 1 – 25 of 26) sorted by relevance

12

/drivers/peripheral/camera/vdi_base/common/pipeline_core/ipp/src/
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 == nullptr) { in DestoryOfflinePipeline()
[all …]
/drivers/peripheral/pin_auth/hdi_service/adaptor/inc/
Dadaptor_log.h28 #define DECORATOR_HDFLOG(op, fmt, args...) \ argument
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/user_auth/hdi_service/adaptor/inc/
Dadaptor_log.h28 #define DECORATOR_HDFLOG(op, fmt, args...) \ argument
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/bluetooth/hci/hdi_service/implement/
Dvendor_interface.cpp55 int channelCount = vendorInterface_->op(BtOpcodeT::BT_OP_HCI_CHANNEL_OPEN, channel); in WatchHciChannel()
115 result = vendorInterface_->op(BtOpcodeT::BT_OP_POWER_ON, nullptr); in Initialize()
130 vendorInterface_->op(BtOpcodeT::BT_OP_INIT, nullptr); in Initialize()
144 vendorInterface_->op(BtOpcodeT::BT_OP_LPM_DISABLE, nullptr); in CleanUp()
145 vendorInterface_->op(BtOpcodeT::BT_OP_HCI_CHANNEL_CLOSE, nullptr); in CleanUp()
146 vendorInterface_->op(BtOpcodeT::BT_OP_POWER_OFF, nullptr); in CleanUp()
168 vendorInterface_->op(BtOpcodeT::BT_OP_WAKEUP_LOCK, nullptr); in SendPacket()
185 …if (VendorInterface::GetInstance()->vendorInterface_->op(BtOpcodeT::BT_OP_GET_LPM_TIMER, &lpmTimer… in OnInitCallback()
190 VendorInterface::GetInstance()->vendorInterface_->op(BtOpcodeT::BT_OP_LPM_ENABLE, nullptr); in OnInitCallback()
233 if (vendorInterface_ && vendorInterface_->op) { in OnEventReceived()
[all …]
Dohos_bt_vendor_lib.h172 int (*op)(BtOpcodeT opcode, void* param); member
/drivers/interface/camera/metadata/include/
Dmetadata_log.h31 #define DECORATOR_HILOG(op, fmt, args...) \ argument
33 op(LOG_CORE, fmt, ##args); \
36 #define DECORATOR_HILOG(op, fmt, args...) \ argument
38 op(LOG_CORE, "{%s()-%s:%d} " fmt, __FUNCTION__, FILENAME, __LINE__, ##args); \
/drivers/peripheral/codec/utils/include/
Dcodec_log_wrapper.h43 #define DECORATOR_HDFLOG(op, fmt, args...) \ argument
45 op("%{public}s() " fmt, __FUNCTION__, ##args); \
48 #define DECORATOR_HDFLOG(op, fmt, args...) \
50 op("{%s()-%s:%d} " fmt, __FUNCTION__, FILENAME, __LINE__, ##args); \
/drivers/hdf_core/framework/model/network/wifi/platform/src/qos/
Dflow_control.c181 static int32_t RegisterFlowControlOp(struct FlowControlModule *fcm, struct FlowControlOp *op) in RegisterFlowControlOp() argument
183 if ((fcm == NULL) || (op == NULL)) { 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->txDataPacket != NULL) { in SendFlowControlQueue()
314 fcm->op->txDataPacket(q, fcm->fcmPriv, fwPriorityId); in SendFlowControlQueue()
322 if (fcm->op != NULL && fcm->op->getRxPriorityId != NULL) { in SendFlowControlQueue()
323 rxPriorityId = fcm->op->getRxPriorityId(id); in SendFlowControlQueue()
325 if (fcm->op != NULL && fcm->op->rxDataPacket != NULL) { in SendFlowControlQueue()
[all …]
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/hdf_core/framework/tools/hc-gen/src/
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()
Doption.h88 void SetOptionData(char op);
/drivers/hdf_core/framework/tools/hdi-gen/ast/
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()
Dast_expr.h36 std::string UnaryOpToString(UnaryOpKind op) const;
59 std::string BinaryOpToString(BinaryOpKind op) const;
/drivers/peripheral/camera/hal_c/hdi_cif/src/
Doffline_stream_operator.cpp28 void OfflineStreamOperator::Init(OfflineStreamOperatorCIF* op) in Init() argument
30 operator_ = op; in Init()
Dcamera_device.cpp46 StreamOperatorCIF* op = nullptr; in GetStreamOperator() local
47 int ret = device_->GetStreamOperator(cb, op); in GetStreamOperator()
49 spSO->Init(op); in GetStreamOperator()
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/
Dcamera.h57 #define DECORATOR_HDFLOG(op, fmt, args...) \ argument
59 op("%{public}s() " fmt, __FUNCTION__, ##args); \
62 #define DECORATOR_HDFLOG(op, fmt, args...) \
64 op("{%s()-%s:%d} " fmt, __FUNCTION__, FILENAME, __LINE__, ##args); \
/drivers/hdf_core/framework/model/network/common/netdevice/
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()
248 return op->delete(ndImpl); in NetDeviceDelete()
/drivers/hdf_core/framework/model/network/wifi/platform/include/
Dflow_control.h217 struct FlowControlOp *op; /**< Flow control operation */ member
290 int32_t (*registerFlowControlOp)(struct FlowControlModule *fcm, struct FlowControlOp *op);
/drivers/peripheral/camera/hal_c/hdi_cif/include/
Doffline_stream_operator.h28 void Init(OfflineStreamOperatorCIF* op);
Dstream_operator.h26 void Init(StreamOperatorCIF* op);
/drivers/peripheral/camera/hal_c/include/
Dcamera_device_c_if.h33 int (*GetStreamOperator)(StreamOperatorCallbackCIF callback, StreamOperatorCIF* op);
Dstream_operator_c_if.h56 OfflineStreamOperatorCIF* op);
/drivers/hdf_core/framework/tools/hdi-gen/util/
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()
Doptions.h149 void SetLongOption(char op);

12