Home
last modified time | relevance | path

Searched defs:CallbackContext (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/base/hiviewdfx/hisysevent/interfaces/js/kits/napi/include/
H A Dnapi_callback_context.h29 using CallbackContext = struct CallbackContext { struct
30 napi_env env = nullptr;
31 napi_ref ref = nullptr;
32 CALLBACK_FUNC callback;
33 RELEASE_FUNC release;
34 pid_t threadId;
/ohos5.0/foundation/arkui/ace_engine/interfaces/napi/kits/device/
H A Djs_device.cpp27 struct CallbackContext { struct
28 napi_env env = nullptr;
29 napi_async_work work = nullptr;
31 napi_ref sucCallbackRef = nullptr;
32 napi_ref failCallbackRef = nullptr;
33 napi_ref cmpCallbackRef = nullptr;
35 napi_value infoList = nullptr;
36 bool status = 0;
38 ~CallbackContext() in ~CallbackContext()
/ohos5.0/foundation/communication/netmanager_base/frameworks/js/napi/common/
H A Dbase_context.h37 struct CallbackContext { struct
38 napi_env env = nullptr;
39 napi_ref callbackRef = nullptr;
/ohos5.0/foundation/arkui/napi/sample/native_module_callback/
H A Djs_callback.cpp23 struct CallbackContext { struct
29 void callbackTest(CallbackContext* context) in callbackTest() argument
/ohos5.0/base/print/print_fwk/frameworks/innerkitsimpl/scan_impl/include/
H A Dscan_callback.h60 struct CallbackContext { struct
79 bool ExecuteUvQueueWork(CallbackContext* &param, uv_work_t* &work, uv_loop_s* &loop); argument
/ohos5.0/base/telephony/core_service/frameworks/js/network_search/include/
H A Dnapi_radio.h145 struct CallbackContext : BaseContext { struct
164 struct GetSelectModeContext : CallbackContext { argument
/ohos5.0/base/security/huks/frameworks/crypto_lite/js/napi/
H A Dcipher_napi.cpp29 struct CallbackContext { struct
30 napi_ref callbackSuccess = nullptr;
31 napi_ref callbackFail = nullptr;
32 napi_ref callbackComplete = nullptr;
/ohos5.0/base/hiviewdfx/hisysevent/interfaces/js/kits/napi/src/
H A Djs_callback_manager.cpp40 void RunCallback(CallbackContext* context, std::tuple<CallbackContext*, CALLBACK_FUNC, RELEASE_FUNC… in RunCallback()