/drivers/peripheral/camera/vdi_base/common/pipeline_core/ipp/src/ |
H A 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 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 D | adaptor_log.h | 28 #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 D | adaptor_log.h | 28 #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 D | metadata_log.h | 31 #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 D | hdi_log.h | 31 #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 D | vendor_interface.cpp | 61 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 D | ohos_bt_vendor_lib.h | 172 int (*op)(BtOpcodeT opcode, void* param);
member
|
/drivers/peripheral/codec/utils/include/ |
H A D | codec_log_wrapper.h | 48 #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 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()
|
H A D | option.h | 88 void SetOptionData(char op);
|
/drivers/hdf_core/framework/tools/hdi-gen/ast/ |
H A 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()
|
H A D | ast_expr.h | 36 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 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() 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 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/peripheral/camera/hal_c/hdi_cif/src/ |
H A D | offline_stream_operator.cpp | 28 void OfflineStreamOperator::Init(OfflineStreamOperatorCIF* op) in Init() argument 30 operator_ = op; in Init()
|
H A 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()
|
H A 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/ |
H A D | camera.h | 62 #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 D | flow_control.h | 217 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 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() 245 HDF_LOGE("%s fail: Impl op Delet in NetDeviceDelete() [all...] |
/drivers/peripheral/camera/hal_c/include/ |
H A D | camera_device_c_if.h | 33 int (*GetStreamOperator)(StreamOperatorCallbackCIF callback, StreamOperatorCIF* op);
|
H A D | stream_operator_c_if.h | 56 OfflineStreamOperatorCIF* op);
|
/drivers/peripheral/camera/hal_c/hdi_cif/include/ |
H A D | offline_stream_operator.h | 28 void Init(OfflineStreamOperatorCIF* op);
|
H A D | stream_operator.h | 26 void Init(StreamOperatorCIF* op);
|
/drivers/hdf_core/framework/tools/hdi-gen/util/ |
H A 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()
|