Home
last modified time | relevance | path

Searched refs:ctxt (Results 126 - 150 of 161) sorted by relevance

1234567

/foundation/distributeddatamgr/udmf/interfaces/jskits/data/
H A Dunified_record_napi.h44 napi_env env, napi_callback_info info, std::shared_ptr<ContextBase> ctxt);
H A Dsystem_defined_pixelmap_napi.h39 napi_env env, napi_callback_info info, std::shared_ptr<ContextBase> ctxt);
H A Dsystem_defined_record_napi.h41 napi_env env, napi_callback_info info, std::shared_ptr<ContextBase> ctxt);
H A Dtext_napi.h40 static TextNapi *GetText(napi_env env, napi_callback_info info, std::shared_ptr<ContextBase> ctxt);
H A Dvideo_napi.h38 static VideoNapi *GetVideo(napi_env env, napi_callback_info info, std::shared_ptr<ContextBase> ctxt);
H A Dapplication_defined_record_napi.h39 napi_env env, napi_callback_info info, std::shared_ptr<ContextBase> ctxt);
H A Daudio_napi.h38 static AudioNapi *GetAudio(napi_env env, napi_callback_info info, std::shared_ptr<ContextBase> ctxt);
H A Dunified_data_properties_napi.h38 napi_env env, napi_callback_info info, std::shared_ptr<ContextBase> ctxt);
H A Dsystem_defined_appitem_napi.h39 napi_env env, napi_callback_info info, std::shared_ptr<ContextBase> ctxt);
H A Dsystem_defined_form_napi.h39 napi_env env, napi_callback_info info, std::shared_ptr<ContextBase> ctxt);
H A Dtype_descriptor_napi.h43 std::shared_ptr<ContextBase> &ctxt);
/applications/standard/calendardata/calendarmanager/napi/src/
H A Dnapi_queue.cpp71 napi_value NapiQueue::AsyncWork(napi_env env, std::shared_ptr<ContextBase> ctxt, const std::string& name, in AsyncWork() argument
77 aCtx->ctx = std::move(ctxt); in AsyncWork()
95 LOG_DEBUG("AsyncWork napi_async_execute_callback ctxt->status=%{public}d", actx->ctx->status); in AsyncWork()
103 LOG_DEBUG("AsyncWork napi_async_complete_callback status = %{public}d, ctxt->status = %{public}d", in AsyncWork()
/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributeddata/src/
H A Dnapi_queue.cpp74 napi_value NapiQueue::AsyncWork(napi_env env, std::shared_ptr<ContextBase> ctxt, const std::string& name, in AsyncWork() argument
80 aCtx->ctx = std::move(ctxt); in AsyncWork()
98 ZLOGD("napi_async_execute_callback ctxt->status=%{public}d", actx->ctx->status); in AsyncWork()
106 ZLOGD("napi_async_complete_callback status=%{public}d, ctxt->status=%{public}d", status, actx->ctx->status); in AsyncWork()
/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributedkvstore/src/
H A Dnapi_queue.cpp74 napi_value NapiQueue::AsyncWork(napi_env env, std::shared_ptr<ContextBase> ctxt, const std::string& name, in AsyncWork() argument
80 aCtx->ctx = std::move(ctxt); in AsyncWork()
98 ZLOGD("napi_async_execute_callback ctxt->status=%{public}d", actx->ctx->status); in AsyncWork()
106 ZLOGD("napi_async_complete_callback status=%{public}d, ctxt->status=%{public}d", status, actx->ctx->status); in AsyncWork()
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/cloud_data/src/
H A Dnapi_queue.cpp76 napi_value NapiQueue::AsyncWork(napi_env env, std::shared_ptr<ContextBase> ctxt, const std::string &name, in AsyncWork() argument
85 aCtx->ctx = std::move(ctxt); in AsyncWork()
104 LOG_DEBUG("napi_async_execute_callback ctxt->status=%{public}d", actx->ctx->status); in AsyncWork()
113 LOG_DEBUG("napi_async_complete_callback status=%{public}d, ctxt->status=%{public}d", in AsyncWork()
/applications/standard/calendardata/calendarmanager/napi/include/
H A Dcalendar_manager_napi.h58 static napi_value LaunchEditorPage(napi_env env, std::shared_ptr<EditEventContext> ctxt);
/foundation/CastEngine/castengine_cast_framework/interfaces/kits/js/include/
H A Dnapi_async_work.h64 static napi_value Enqueue(napi_env env, std::shared_ptr<NapiAsyncTask> ctxt, const std::string &name,
/third_party/curl/lib/vtls/
H A Dschannel_int.h131 struct Curl_schannel_ctxt *ctxt; member
H A Dschannel_verify.c479 s_pSecFn->QueryContextAttributes(&BACKEND->ctxt->ctxt_handle, in Curl_verify_host()
608 s_pSecFn->QueryContextAttributes(&BACKEND->ctxt->ctxt_handle, in Curl_verify_certificate()
/third_party/libabigail/src/
H A Dabg-ini.cc1703 read_context ctxt(input); in read_sections()
1707 ctxt.skip_white_spaces_or_comments(); in read_sections()
1708 if (config::section_sptr section = ctxt.read_section()) in read_sections()
2019 read_context ctxt(input); in read_function_call_expr()
2020 return ctxt.read_function_call_expr(expr); in read_function_call_expr()
/third_party/curl/lib/
H A Dpop3.c436 struct MD5_context *ctxt; in pop3_perform_apop() local
449 ctxt = Curl_MD5_init(Curl_DIGEST_MD5); in pop3_perform_apop()
450 if(!ctxt) in pop3_perform_apop()
453 Curl_MD5_update(ctxt, (const unsigned char *) pop3c->apoptimestamp, in pop3_perform_apop()
456 Curl_MD5_update(ctxt, (const unsigned char *) conn->passwd, in pop3_perform_apop()
460 Curl_MD5_final(ctxt, digest); in pop3_perform_apop()
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/text/utils/
H A Dnapi_async_work.h102 static void GenerateOutput(sptr<ContextBase> ctxt);
/third_party/rust/crates/serde/serde_derive/src/
H A Dser.rs13 let ctxt = Ctxt::new(); in expand_derive_serialize()
14 let cont = match Container::from_ast(&ctxt, input, Derive::Serialize) { in expand_derive_serialize()
16 None => return Err(ctxt.check().unwrap_err()), in expand_derive_serialize()
18 precondition(&ctxt, &cont); in expand_derive_serialize()
19 ctxt.check()?; in expand_derive_serialize()
/base/inputmethod/imf/frameworks/js/napi/inputmethodability/
H A Djs_panel.h116 std::shared_ptr<PanelContentContext> ctxt);
/third_party/toybox/toys/other/
H A Dvmstat.c33 uint64_t user, nice, sys, idle, wait, irq, sirq, intr, ctxt, running, blocked; member
47 "intr ", "ctxt ", "procs_running ", "procs_blocked ", "/proc/meminfo", in get_vmstat_proc()
132 // cache, swap_in, swap_out, io_in, io_out, sirq, ctxt, user, sys, idle,wait in vmstat_main()

Completed in 12 milliseconds

1234567