Home
last modified time | relevance | path

Searched refs:exec (Results 1 – 25 of 28) sorted by relevance

12

/base/inputmethod/imf/interfaces/kits/js/napi/inputmethodability/
Djs_keyboard_controller_engine.cpp93 auto exec = [ctxt](AsyncCall::Context *ctx) { in Hide() local
104 return asyncCall.Call(env, exec); in Hide()
112 auto exec = [ctxt](AsyncCall::Context *ctx) { in HideKeyboard() local
118 return asyncCall.Call(env, exec); in HideKeyboard()
Djs_text_input_client_engine.cpp70 auto exec = [ctxt](AsyncCall::Context *ctx) { in MoveCursor() local
81 return asyncCall.Call(env, exec); in MoveCursor()
278 auto exec = [ctxt](AsyncCall::Context *ctx) { in SendKeyFunction() local
290 return asyncCall.Call(env, exec); in SendKeyFunction()
316 auto exec = [ctxt](AsyncCall::Context *ctx) { in DeleteForward() local
328 return asyncCall.Call(env, exec); in DeleteForward()
354 auto exec = [ctxt](AsyncCall::Context *ctx) { in DeleteBackward() local
366 return asyncCall.Call(env, exec); in DeleteBackward()
392 auto exec = [ctxt](AsyncCall::Context *ctx) { in InsertText() local
404 return asyncCall.Call(env, exec); in InsertText()
[all …]
/base/theme/wallpaper_mgr/interfaces/kits/napi/
Dnapi_wallpaper_ability.cpp86 auto exec = [context, apiInfo](AsyncCall::Context *ctx) { in GetColorsInner() local
104 context->SetExecution(std::move(exec)); in GetColorsInner()
132 auto exec = [context](AsyncCall::Context *ctx) { in GetIdInner() local
140 context->SetExecution(std::move(exec)); in GetIdInner()
172 auto exec = [context, apiInfo](AsyncCall::Context *ctx) { in GetFileInner() local
190 context->SetExecution(std::move(exec)); in GetFileInner()
221 auto exec = [context, apiInfo](AsyncCall::Context *ctx) { in GetMinHeightInner() local
237 context->SetExecution(std::move(exec)); in GetMinHeightInner()
268 auto exec = [context, apiInfo](AsyncCall::Context *ctx) { in GetMinWidthInner() local
283 context->SetExecution(std::move(exec)); in GetMinWidthInner()
[all …]
Dasync_call.h41 void SetExecution(ExecAction exec) in SetExecution() argument
43 exec_ = exec; in SetExecution()
/base/request/request/upload/interfaces/kits/napi/src/
Dasync_call.cpp53 napi_value AsyncCall::Call(napi_env env, Context::ExecAction exec) in Call() argument
60 context_->ctx->exec_ = std::move(exec); in Call()
78 napi_value AsyncCall::SyncCall(napi_env env, AsyncCall::Context::ExecAction exec) in SyncCall() argument
84 context_->ctx->exec_ = std::move(exec); in SyncCall()
Dupload_task_napi.cpp143 auto exec = [context](AsyncCall::Context *ctx) { in JsRemove() local
151 return asyncCall.Call(env, exec); in JsRemove()
Dupload_task_napiV9.cpp328 auto exec = [context](AsyncCall::Context *ctx) { in JsDelete() local
336 return asyncCall.Call(env, exec); in JsDelete()
/base/request/request/download/interfaces/kits/js/napi/download_single/src/
Dasync_call.cpp58 napi_value AsyncCall::Call(napi_env env, Context::ExecAction exec) in Call() argument
65 context_->ctx->exec_ = std::move(exec); in Call()
83 napi_value AsyncCall::SyncCall(napi_env env, AsyncCall::Context::ExecAction exec) in SyncCall() argument
89 context_->ctx->exec_ = std::move(exec); in SyncCall()
Ddownload_resume.cpp56 auto exec = [context](AsyncCall::Context *ctx) { in Exec() local
64 return asyncCall.Call(env, exec); in Exec()
Ddownload_query_mimetype.cpp56 auto exec = [context](AsyncCall::Context *ctx) { in Exec() local
64 return asyncCall.Call(env, exec); in Exec()
Ddownload_pause.cpp57 auto exec = [context](AsyncCall::Context *ctx) { in Exec() local
65 return asyncCall.Call(env, exec); in Exec()
Ddownload_remove.cpp56 auto exec = [context](AsyncCall::Context *ctx) { in Exec() local
64 return asyncCall.Call(env, exec); in Exec()
Ddownload_query.cpp81 auto exec = [context](AsyncCall::Context *ctx) { in Exec() local
88 return asyncCall.Call(env, exec); in Exec()
/base/inputmethod/imf/interfaces/kits/js/napi/inputmethodclient/
Dasync_call.cpp54 napi_value AsyncCall::Call(napi_env env, Context::ExecAction exec) in Call() argument
64 context_->ctx->exec_ = std::move(exec); in Call()
81 napi_value AsyncCall::SyncCall(napi_env env, AsyncCall::Context::ExecAction exec) in SyncCall() argument
87 context_->ctx->exec_ = std::move(exec); in SyncCall()
Djs_get_input_method_setting.cpp234 auto exec = [ctxt](AsyncCall::Context *ctx) { in ListInputMethod() local
246 return asyncCall.Call(env, exec); in ListInputMethod()
274 auto exec = [ctxt](AsyncCall::Context *ctx) { in GetInputMethods() local
287 return asyncCall.Call(env, exec); in GetInputMethods()
297 auto exec = [ctxt](AsyncCall::Context *ctx) { in DisplayOptionalInputMethod() local
308 return asyncCall.Call(env, exec); in DisplayOptionalInputMethod()
322 auto exec = [ctxt](AsyncCall::Context *ctx) { in ShowOptionalInputMethods() local
335 return asyncCall.Call(env, exec); in ShowOptionalInputMethods()
361 auto exec = [ctxt](AsyncCall::Context *ctx) { in ListInputMethodSubtype() local
374 return asyncCall.Call(env, exec); in ListInputMethodSubtype()
[all …]
Dasync_call.h98 napi_value Call(napi_env env, Context::ExecAction exec = nullptr);
99 napi_value SyncCall(napi_env env, Context::ExecAction exec = nullptr);
Djs_input_method.cpp240 auto exec = [ctxt](AsyncCall::Context *ctx) { in SwitchInputMethod() local
258 return asyncCall.Call(env, exec); in SwitchInputMethod()
308 auto exec = [ctxt](AsyncCall::Context *ctx) { in SwitchCurrentInputMethodSubtype() local
326 return asyncCall.Call(env, exec); in SwitchCurrentInputMethodSubtype()
357 auto exec = [ctxt](AsyncCall::Context *ctx) { in SwitchCurrentInputMethodAndSubtype() local
375 return asyncCall.Call(env, exec); in SwitchCurrentInputMethodAndSubtype()
Djs_get_input_method_controller.cpp127 auto exec = [ctxt, callback, needThrowException](AsyncCall::Context *ctx) { in HandleSoftKeyboard() local
143 return asyncCall.Call(env, exec); in HandleSoftKeyboard()
/base/theme/screenlock_mgr/interfaces/kits/napi/src/
Dasync_call.cpp62 napi_value AsyncCall::Call(const napi_env env, Context::ExecAction exec) in Call() argument
73 context_->ctx->exec_ = std::move(exec); in Call()
91 napi_value AsyncCall::SyncCall(const napi_env env, AsyncCall::Context::ExecAction exec) in SyncCall() argument
97 context_->ctx->exec_ = std::move(exec); in SyncCall()
Dnapi_screenlock_ability.cpp154 auto exec = [context](AsyncCall::Context *ctx) { in NAPI_IsScreenLocked() local
161 return asyncCall.Call(env, exec); in NAPI_IsScreenLocked()
386 auto exec = [context](AsyncCall::Context *ctx) { in NAPI_IsSecureMode() local
394 return asyncCall.Call(env, exec); in NAPI_IsSecureMode()
471 auto exec = [context](AsyncCall::Context *ctx) { in NAPI_ScreenLockSendEvent() local
485 return asyncCall.Call(env, exec); in NAPI_ScreenLockSendEvent()
/base/request/request/upload/interfaces/kits/napi/include/
Dasync_call.h84 napi_value Call(napi_env env, Context::ExecAction exec = nullptr);
85 napi_value SyncCall(napi_env env, Context::ExecAction exec = nullptr);
/base/request/request/download/interfaces/kits/js/napi/download_single/include/
Dasync_call.h88 napi_value Call(napi_env env, Context::ExecAction exec = nullptr);
89 napi_value SyncCall(napi_env env, Context::ExecAction exec = nullptr);
/base/theme/screenlock_mgr/interfaces/kits/napi/include/
Dasync_call.h95 napi_value Call(const napi_env env, Context::ExecAction exec = nullptr);
96 napi_value SyncCall(const napi_env env, Context::ExecAction exec = nullptr);
/base/global/i18n_lite/tools/i18n-dat-tool/src/main/java/ohos/global/i18n/
DDataFetcher.java355 ExecutorService exec = Executors.newCachedThreadPool(); in main() local
357 exec.execute(fe); in main()
359 exec.shutdown(); in main()
361 exec.awaitTermination(MAX_TIME_TO_WAIT, TimeUnit.SECONDS); in main()
/base/security/selinux/sepolicy/ohos_policy/hiviewdfx/hilog/system/
Dhilogd.te119 # only init is allowed to enter the hilogd domain via exec()

12