Home
last modified time | relevance | path

Searched refs:para (Results 226 - 250 of 337) sorted by relevance

12345678910>>...14

/base/security/device_auth/frameworks/deviceauth_lite/test/fuzztest/destroy_fuzzer/
H A Ddestroy_fuzzer.cpp34 struct hc_pin *pin, struct operation_parameter *para) in GetProtocolParamsCb()
33 GetProtocolParamsCb(const struct session_identity *identity, int32_t operationCode, struct hc_pin *pin, struct operation_parameter *para) GetProtocolParamsCb() argument
/base/security/device_auth/frameworks/deviceauth_lite/test/fuzztest/getinstance_fuzzer/
H A Dgetinstance_fuzzer.cpp36 struct hc_pin *pin, struct operation_parameter *para) in GetProtocolParamsCb()
35 GetProtocolParamsCb(const struct session_identity *identity, int32_t operationCode, struct hc_pin *pin, struct operation_parameter *para) GetProtocolParamsCb() argument
/base/security/device_auth/frameworks/deviceauth_lite/test/fuzztest/istrustpeer_fuzzer/
H A Distrustpeer_fuzzer.cpp34 struct hc_pin *pin, struct operation_parameter *para) in GetProtocolParamsCb()
33 GetProtocolParamsCb(const struct session_identity *identity, int32_t operationCode, struct hc_pin *pin, struct operation_parameter *para) GetProtocolParamsCb() argument
/base/useriam/user_auth_framework/services/context/inc/
H A Dremote_auth_service.h52 virtual uint64_t StartRemoteAuthContext(Authentication::AuthenticationPara para,
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/render/
H A Drs_linear_gradient_blur_shader_filter.h26 RSLinearGradientBlurShaderFilter(const std::shared_ptr<RSLinearGradientBlurPara>& para,
/foundation/multimedia/media_foundation/interface/inner_api/osal/utils/
H A Ddump_buffer.h61 void DumpAVBufferToFile(const std::string& para, const std::string& fileName,
/foundation/communication/dsoftbus/core/authentication/include/
H A Dauth_device.h56 void AuthRegisterToDpDelay(void *para);
/third_party/FreeBSD/sys/dev/usb/
H A Dusb_process.h87 unsigned int usb_os_task_creat(pthread_t *taskid, TSK_ENTRY_FUNC func, unsigned int prio, const char *nm, UINTPTR para);
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/
H A Drs_node.h254 void SetEmitterUpdater(const std::vector<std::shared_ptr<EmitterUpdater>>& para);
255 void SetParticleNoiseFields(const std::shared_ptr<ParticleNoiseFields>& para);
300 void SetLinearGradientBlurPara(const std::shared_ptr<RSLinearGradientBlurPara>& para);
302 void SetMagnifierParams(const std::shared_ptr<RSMagnifierParams>& para);
/base/location/test/location_gnss/include/
H A Dgnss_interface_test.h37 int32_t SetGnssConfigPara(const GnssConfigPara &para) override;
/base/security/device_auth/frameworks/deviceauth_lite/test/fuzztest/authenticatepeer_fuzzer/
H A Dauthenticatepeer_fuzzer.cpp36 struct hc_pin *pin, struct operation_parameter *para) in GetProtocolParamsCb()
35 GetProtocolParamsCb(const struct session_identity *identity, int32_t operationCode, struct hc_pin *pin, struct operation_parameter *para) GetProtocolParamsCb() argument
/base/security/device_auth/frameworks/deviceauth_lite/test/fuzztest/receivedata_fuzzer/
H A Dreceivedata_fuzzer.cpp46 struct hc_pin *pin, struct operation_parameter *para) in GetProtocolParamsCb()
45 GetProtocolParamsCb(const struct session_identity *identity, int32_t operationCode, struct hc_pin *pin, struct operation_parameter *para) GetProtocolParamsCb() argument
/base/security/device_auth/frameworks/deviceauth_lite/test/fuzztest/listtrustpeer_fuzzer/
H A Dlisttrustpeer_fuzzer.cpp35 struct hc_pin *pin, struct operation_parameter *para) in GetProtocolParamsCb()
34 GetProtocolParamsCb(const struct session_identity *identity, int32_t operationCode, struct hc_pin *pin, struct operation_parameter *para) GetProtocolParamsCb() argument
/base/security/device_auth/frameworks/deviceauth_lite/test/fuzztest/startpake_fuzzer/
H A Dstartpake_fuzzer.cpp34 struct hc_pin *pin, struct operation_parameter *para) in GetProtocolParamsCb()
33 GetProtocolParamsCb(const struct session_identity *identity, int32_t operationCode, struct hc_pin *pin, struct operation_parameter *para) GetProtocolParamsCb() argument
/foundation/communication/dsoftbus/core/bus_center/utils/include/
H A Dlnn_state_machine.h39 typedef bool (*StateProcessFunc)(struct tagFsmStateMachine *fsm, int32_t msgType, void *para);
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/include/
H A Di_stream_manager.h67 virtual int32_t SetMultiLayer(const void *para) = 0;
/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_builder/include/
H A Dlnn_data_cloud_sync_deps_mock.h48 void *para, uint64_t delayMillis);
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/property/
H A Drs_properties.h250 void SetLinearGradientBlurPara(const std::shared_ptr<RSLinearGradientBlurPara>& para);
251 void SetEmitterUpdater(const std::vector<std::shared_ptr<EmitterUpdater>>& para);
252 void SetParticleNoiseFields(const std::shared_ptr<ParticleNoiseFields>& para);
298 void SetMotionBlurPara(const std::shared_ptr<MotionBlurParam>& para);
299 void SetMagnifierParams(const std::shared_ptr<RSMagnifierParams>& para);
/base/print/print_fwk/services/scan_service/src/
H A Dscan_service_stub.cpp199 ScanParameters para; in OnGetScanParameters() local
200 int32_t ret = GetScanParameters(scannerId, para); in OnGetScanParameters()
203 para.Marshalling(reply); in OnGetScanParameters()
/foundation/ability/idl_tool/codegen/
H A Dts_code_emitter.cpp144 Parameter para; in EmitInterfaceMethod() local
145 para.attr_ = mp->attributes_; in EmitInterfaceMethod()
146 para.name_ = mp->name_; in EmitInterfaceMethod()
147 para.type_ = EmitType(paraType).string(); in EmitInterfaceMethod()
151 method.parameters_.emplace_back(para); in EmitInterfaceMethod()
218 void TsCodeEmitter::EmitInterfaceMethodExportCallback(Method& m, const Parameter& para, bool isLast) in EmitInterfaceMethodExportCallback() argument
223 exportCallback.AppendFormat("%s: %s) => void;", para.name_.c_str(), para.type_.c_str()); in EmitInterfaceMethodExportCallback()
225 exportCallback.AppendFormat("%s: %s, ", para.name_.c_str(), para in EmitInterfaceMethodExportCallback()
[all...]
/foundation/communication/dsoftbus/components/nstackx/nstackx_core/dfile/core/
H A Dnstackx_dfile.c591 FileListPara para = NEW_FILE_LIST_PARA(&(rFilelist.files[i]), (remotePath ? &(rFilelist.remotePath[i]) : NULL), in SendFilesInner() local
594 ctx->fileListInfo = CreateFileListInfo(&para); in SendFilesInner()
1316 int32_t NSTACKX_DFileClientWithTargetDev(NSTACKX_SessionPara *para) in NSTACKX_DFileClientWithTargetDev() argument
1319 Coverity_Tainted_Set((void *)para); in NSTACKX_DFileClientWithTargetDev()
1324 if (CheckSessionPara(para) != NSTACKX_EOK) { in NSTACKX_DFileClientWithTargetDev()
1327 InitSockaddr(para->addr, &sockAddr); in NSTACKX_DFileClientWithTargetDev()
1335 DFileSession *session = DFileSessionCreate(DFILE_SESSION_TYPE_CLIENT, para->msgReceiver); in NSTACKX_DFileClientWithTargetDev()
1340 if (DFileSenderInitWithTargetDev(session, &sockAddr, &type, para->localInterfaceName, 0) != NSTACKX_EOK) { in NSTACKX_DFileClientWithTargetDev()
1344 if (CreateFileManager(session, para->key, para in NSTACKX_DFileClientWithTargetDev()
[all...]
H A Dnstackx_dfile_transfer.c1505 DFileTrans *DFileTransCreate(const DFileTransPara *para) in DFileTransCreate() argument
1520 dFileTrans->isSender = para->isSender; in DFileTransCreate()
1521 dFileTrans->transId = para->transId; in DFileTransCreate()
1522 dFileTrans->fileManager = para->fileManager; in DFileTransCreate()
1523 dFileTrans->connType = para->connType; in DFileTransCreate()
1524 dFileTrans->writeHandle = para->writeHandle; in DFileTransCreate()
1525 dFileTrans->msgReceiver = para->msgReceiver; in DFileTransCreate()
1526 dFileTrans->context = para->context; in DFileTransCreate()
1527 dFileTrans->session = para->session; in DFileTransCreate()
1528 dFileTrans->onRenameFile = para in DFileTransCreate()
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H A Drs_motion_blur_filter.cpp33 RSMotionBlurFilter::RSMotionBlurFilter(const std::shared_ptr<MotionBlurParam>& para) in RSMotionBlurFilter() argument
34 : RSDrawingFilterOriginal(nullptr), motionBlurPara_(para) in RSMotionBlurFilter()
/base/print/print_fwk/frameworks/innerkitsimpl/scan_impl/include/
H A Discan_service.h45 virtual int32_t GetScanParameters(const std::string scannerId, ScanParameters &para) = 0;
/base/print/print_fwk/interfaces/kits/napi/scan_napi/include/
H A Dnapi_inner_scan.h92 ScanParameters para; member

Completed in 15 milliseconds

12345678910>>...14