/foundation/graphic/graphic_3d/lume/metaobject/src/container/ |
H A D | container_base.cpp | 390 IterationResult ContainerBase::Iterate(const IterationParameters& params) in Iterate() argument 392 auto f = params.function.GetInterface<IIterableCallable<IObject::Ptr>>(); in Iterate() 400 IterationResult ContainerBase::Iterate(const IterationParameters& params) const in Iterate() 402 auto f = params.function.GetInterface<IIterableConstCallable<IObject::Ptr>>(); in Iterate()
|
/foundation/graphic/graphic_3d/lume/metaobject/src/animation/ |
H A D | animation.h | 244 IterationResult Iterate(const IterationParameters& params) override 247 return iterable ? iterable->Iterate(params) : IterationResult::FAILED; 249 IterationResult Iterate(const IterationParameters& params) const override 252 return iterable ? iterable->Iterate(params) : IterationResult::FAILED;
|
/foundation/communication/nfc/services/src/card_emulation/ |
H A D | host_card_emulation_manager.cpp | 444 NfcFailedParams params; in DispatchAbilitySingleApp() local 445 ExternalDepsProxy::GetInstance().BuildFailedParams(params, MainErrorCode::HCE_SWIPE_CARD, in DispatchAbilitySingleApp() 447 params.appPackageName = element.GetBundleName(); in DispatchAbilitySingleApp() 448 ExternalDepsProxy::GetInstance().WriteNfcFailedHiSysEvent(¶ms); in DispatchAbilitySingleApp()
|
/foundation/communication/netstack/frameworks/js/napi/http/http_module/src/ |
H A D | http_module.cpp | 83 napi_value params[MAX_PARAM_NUM] = {nullptr}; in CreateHttpResponseCache() local 84 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in CreateHttpResponseCache() 85 if (paramsCount != 1 || NapiUtils::GetValueType(env, params[0]) != napi_number) { in CreateHttpResponseCache() 88 size_t size = NapiUtils::GetUint32FromValue(env, params[0]); in CreateHttpResponseCache()
|
/foundation/distributedhardware/distributed_camera/services/cameraservice/sinkservice/src/distributedcamera/ |
H A D | distributed_camera_sink_stub.cpp | 119 std::string params = data.ReadString(); in InitSinkInner() local 120 if (params.empty() || params.size() > PARAM_MAX_SIZE) { in InitSinkInner() 121 DHLOGE("params is invalid"); in InitSinkInner() 133 ret = InitSink(params, dCameraSinkCallbackProxy); in InitSinkInner() 164 DHLOGE("params is invalid"); in SubscribeLocalHardwareInner() 181 DHLOGE("params is invalid"); in UnsubscribeLocalHardwareInner() 198 DHLOGE("params is invalid"); in StopCaptureInner() 217 DHLOGE("params is invalid"); in ChannelNegInner() 235 DHLOGE("params i in GetCameraInfoInner() [all...] |
/foundation/distributedhardware/distributed_camera/interfaces/inner_kits/native_cpp/camera_sink/src/ |
H A D | distributed_camera_sink_proxy.cpp | 27 int32_t DistributedCameraSinkProxy::InitSink(const std::string& params, const sptr<IDCameraSinkCallback> &sinkCallback) in InitSink() argument 30 if (params.empty() || params.size() > PARAM_MAX_SIZE) { in InitSink() 31 DHLOGE("params is invalid"); in InitSink() 47 if (!data.WriteString(params)) { in InitSink() 48 DHLOGE("write params failed"); in InitSink() 88 DHLOGE("params is invalid"); in SubscribeLocalHardware() 105 DHLOGE("write params failed"); in SubscribeLocalHardware() 118 DHLOGE("params is invalid"); in UnsubscribeLocalHardware() 135 DHLOGE("write params faile in UnsubscribeLocalHardware() [all...] |
/foundation/window/window_manager/window_scene/session/host/src/ |
H A D | extension_session.cpp | 415 const std::vector<std::string>& params, std::vector<std::string>& info) in TransferAccessibilityDumpChildInfo() 421 return windowEventChannel_->TransferAccessibilityDumpChildInfo(params, info); in TransferAccessibilityDumpChildInfo() 468 WSError ExtensionSession::NotifyDumpInfo(const std::vector<std::string>& params, std::vector<std::string>& info) in NotifyDumpInfo() argument 478 return sessionStage_->NotifyDumpInfo(params, info); in NotifyDumpInfo() 414 TransferAccessibilityDumpChildInfo( const std::vector<std::string>& params, std::vector<std::string>& info) TransferAccessibilityDumpChildInfo() argument
|
/third_party/libwebsockets/test-apps/ |
H A D | test.js | 185 var params = {}; 193 params[nv[0]] = nv[1] || true; 200 if (params.mirror) 201 mirror_name = params.mirror;
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/ |
H A D | test.js | 185 var params = {}; 193 params[nv[0]] = nv[1] || true; 200 if (params.mirror) 201 mirror_name = params.mirror;
|
/third_party/node/deps/openssl/openssl/providers/implementations/include/prov/ |
H A D | ciphercommon.h | 10 #include <openssl/params.h> 121 int ossl_cipher_generic_get_params(OSSL_PARAM params[], unsigned int md, 187 static int alg##_##kbits##_##lcmode##_get_params(OSSL_PARAM params[]) \ 189 return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
|
/third_party/node/deps/openssl/openssl/providers/implementations/signature/ |
H A D | eddsa_sig.c | 14 #include <openssl/params.h> 88 ossl_unused const OSSL_PARAM params[]) in eddsa_digest_signverify_init() 305 static int eddsa_get_ctx_params(void *vpeddsactx, OSSL_PARAM *params) in eddsa_get_ctx_params() argument 313 p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_ALGORITHM_ID); in eddsa_get_ctx_params() 86 eddsa_digest_signverify_init(void *vpeddsactx, const char *mdname, void *vedkey, ossl_unused const OSSL_PARAM params[]) eddsa_digest_signverify_init() argument
|
/third_party/node/deps/openssl/openssl/crypto/encode_decode/ |
H A D | decoder_meth.c | 621 int OSSL_DECODER_get_params(OSSL_DECODER *decoder, OSSL_PARAM params[]) in OSSL_DECODER_get_params() argument 624 return decoder->get_params(params); in OSSL_DECODER_get_params() 660 const OSSL_PARAM params[]) in OSSL_DECODER_CTX_set_params() 685 if (!decoder->set_ctx_params(decoderctx, params)) in OSSL_DECODER_CTX_set_params() 659 OSSL_DECODER_CTX_set_params(OSSL_DECODER_CTX *ctx, const OSSL_PARAM params[]) OSSL_DECODER_CTX_set_params() argument
|
/third_party/openssl/crypto/encode_decode/ |
H A D | decoder_meth.c | 621 int OSSL_DECODER_get_params(OSSL_DECODER *decoder, OSSL_PARAM params[]) in OSSL_DECODER_get_params() argument 624 return decoder->get_params(params); in OSSL_DECODER_get_params() 660 const OSSL_PARAM params[]) in OSSL_DECODER_CTX_set_params() 685 if (!decoder->set_ctx_params(decoderctx, params)) in OSSL_DECODER_CTX_set_params() 659 OSSL_DECODER_CTX_set_params(OSSL_DECODER_CTX *ctx, const OSSL_PARAM params[]) OSSL_DECODER_CTX_set_params() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/postmortem/ |
H A D | vktPostmortemDeviceFaultTests.cpp | 75 const TestParams& params) in DeviceFaultCase() 77 , m_params (params) {} in DeviceFaultCase() 88 DeviceFaultInstance (Context& context, const TestParams& params) in DeviceFaultInstance() argument 90 , m_params (params) {} in DeviceFaultInstance() 73 DeviceFaultCase(TestContext& testCtx, const std::string& name, const TestParams& params) DeviceFaultCase() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/ |
H A D | vktTextureTestUtil.hpp | 216 void renderQuad (tcu::Surface& result, int texUnit, const float* texCoord, const glu::TextureTestUtil::ReferenceParams& params); 221 const glu::TextureTestUtil::ReferenceParams& params, 224 void renderQuad (const tcu::PixelBufferAccess& result, int texUnit, const float* texCoord, const glu::TextureTestUtil::ReferenceParams& params); 229 const glu::TextureTestUtil::ReferenceParams& params,
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/jsonrpc2/ |
H A D | jsonrpc2.go | 109 func (c *Conn) Notify(ctx context.Context, method string, params interface{}) (err error) { 110 jsonParams, err := marshalToRaw(params) 140 func (c *Conn) Call(ctx context.Context, method string, params, result interface{}) (err error) { 143 jsonParams, err := marshalToRaw(params) 309 Params *json.RawMessage `json:"params,omitempty"`
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
H A D | Program.h | 146 void getActiveUniformBlockiv(GLuint uniformBlockIndex, GLenum pname, GLint *params) const; 171 bool getUniformfv(GLint location, GLsizei *bufSize, GLfloat *params); 172 bool getUniformiv(GLint location, GLsizei *bufSize, GLint *params); 173 bool getUniformuiv(GLint location, GLsizei *bufSize, GLuint *params);
|
/third_party/openssl/providers/implementations/include/prov/ |
H A D | ciphercommon.h | 10 #include <openssl/params.h> 120 int ossl_cipher_generic_get_params(OSSL_PARAM params[], unsigned int md, 186 static int alg##_##kbits##_##lcmode##_get_params(OSSL_PARAM params[]) \ 188 return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
|
/third_party/openssl/providers/implementations/signature/ |
H A D | eddsa_sig.c | 14 #include <openssl/params.h> 88 ossl_unused const OSSL_PARAM params[]) in eddsa_digest_signverify_init() 305 static int eddsa_get_ctx_params(void *vpeddsactx, OSSL_PARAM *params) in eddsa_get_ctx_params() argument 313 p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_ALGORITHM_ID); in eddsa_get_ctx_params() 86 eddsa_digest_signverify_init(void *vpeddsactx, const char *mdname, void *vedkey, ossl_unused const OSSL_PARAM params[]) eddsa_digest_signverify_init() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/ |
H A D | jsonrpc2.go | 109 func (c *Conn) Notify(ctx context.Context, method string, params interface{}) (err error) { 110 jsonParams, err := marshalToRaw(params) 140 func (c *Conn) Call(ctx context.Context, method string, params, result interface{}) (err error) { 143 jsonParams, err := marshalToRaw(params) 309 Params *json.RawMessage `json:"params,omitempty"`
|
/third_party/skia/third_party/externals/tint/src/transform/ |
H A D | module_scope_var_to_entry_point_param.cc | 193 ctx.InsertFront(func_ast->params, param); in Process() 207 ctx.InsertFront(func_ast->params, param); in Process() 264 func_ast->params, in Process() 305 ctx.InsertFront(func_ast->params, param); in Process()
|
/third_party/skia/tools/sk_app/win/ |
H A D | Window_win.cpp | 396 void Window_win::setRequestedDisplayParams(const DisplayParams& params, bool allowReattach) { in setRequestedDisplayParams() argument 398 if (params.fMSAASampleCount != this->getRequestedDisplayParams().fMSAASampleCount in setRequestedDisplayParams() 401 fRequestedDisplayParams = params; in setRequestedDisplayParams() 411 INHERITED::setRequestedDisplayParams(params, allowReattach); in setRequestedDisplayParams()
|
/third_party/unity/auto/ |
H A D | generate_test_runner.rb | 142 params = Regexp.last_match(4) 183 tests_and_line_numbers << { test: name, args: args, call: call, params: params, line_number: 0 } 480 if test[:params].nil? || test[:params].empty? 483 output.puts("void #{test[:test]}(#{test[:params]});")
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | dh.rs | 59 /// Creates a DH instance based upon the given primes and generator params. 112 /// Generates DH params based on the given `prime_len` and a fixed `generator` value. 127 /// Generates a public and a private key based on the DH params. 427 let params = include_bytes!("../test/dhparams.pem"); in test_dh_from_pem() 428 let dh = Dh::params_from_pem(params).unwrap(); in test_dh_from_pem() 434 let params = include_bytes!("../test/dhparams.pem"); in test_dh_from_der() 435 let dh = Dh::params_from_pem(params).unwrap(); in test_dh_from_der()
|
/third_party/spirv-tools/utils/vscode/src/lsp/jsonrpc2/ |
H A D | jsonrpc2.go | 109 func (c *Conn) Notify(ctx context.Context, method string, params interface{}) (err error) { 110 jsonParams, err := marshalToRaw(params) 140 func (c *Conn) Call(ctx context.Context, method string, params, result interface{}) (err error) { 143 jsonParams, err := marshalToRaw(params) 309 Params *json.RawMessage `json:"params,omitempty"`
|