/drivers/peripheral/camera/vdi_base/common/pipeline_core/ipp/src/ |
D | offline_pipeline_manager.cpp | 37 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/ |
D | adaptor_log.h | 28 #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/ |
D | adaptor_log.h | 28 #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/ |
D | vendor_interface.cpp | 55 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 …]
|
D | ohos_bt_vendor_lib.h | 172 int (*op)(BtOpcodeT opcode, void* param); member
|
/drivers/interface/camera/metadata/include/ |
D | metadata_log.h | 31 #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/ |
D | codec_log_wrapper.h | 43 #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/ |
D | flow_control.c | 181 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 …]
|
D | flow_control_task.c | 53 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/ |
D | option.cpp | 59 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()
|
D | option.h | 88 void SetOptionData(char op);
|
/drivers/hdf_core/framework/tools/hdi-gen/ast/ |
D | ast_expr.cpp | 31 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()
|
D | ast_expr.h | 36 std::string UnaryOpToString(UnaryOpKind op) const; 59 std::string BinaryOpToString(BinaryOpKind op) const;
|
/drivers/peripheral/camera/hal_c/hdi_cif/src/ |
D | offline_stream_operator.cpp | 28 void OfflineStreamOperator::Init(OfflineStreamOperatorCIF* op) in Init() argument 30 operator_ = op; in Init()
|
D | camera_device.cpp | 46 StreamOperatorCIF* op = nullptr; in GetStreamOperator() local 47 int ret = device_->GetStreamOperator(cb, op); in GetStreamOperator() 49 spSO->Init(op); in GetStreamOperator()
|
D | stream_operator.cpp | 26 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/ |
D | camera.h | 57 #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/ |
D | net_device.c | 219 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/ |
D | flow_control.h | 217 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/ |
D | offline_stream_operator.h | 28 void Init(OfflineStreamOperatorCIF* op);
|
D | stream_operator.h | 26 void Init(StreamOperatorCIF* op);
|
/drivers/peripheral/camera/hal_c/include/ |
D | camera_device_c_if.h | 33 int (*GetStreamOperator)(StreamOperatorCallbackCIF callback, StreamOperatorCIF* op);
|
D | stream_operator_c_if.h | 56 OfflineStreamOperatorCIF* op);
|
/drivers/hdf_core/framework/tools/hdi-gen/util/ |
D | options.cpp | 51 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()
|
D | options.h | 149 void SetLongOption(char op);
|