Home
last modified time | relevance | path

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

/base/hiviewdfx/hisysevent/interfaces/js/kits/napi/include/
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;
/base/print/print_fwk/frameworks/innerkitsimpl/scan_impl/include/
Dscan_callback.h60 struct CallbackContext { struct
79 bool ExecuteUvQueueWork(CallbackContext* &param, uv_work_t* &work, uv_loop_s* &loop); argument
/base/telephony/core_service/frameworks/js/network_search/include/
Dnapi_radio.h145 struct CallbackContext : BaseContext { struct
164 struct GetSelectModeContext : CallbackContext { argument
/base/security/huks/frameworks/crypto_lite/js/napi/
Dcipher_napi.cpp29 struct CallbackContext { struct
30 napi_ref callbackSuccess = nullptr;
31 napi_ref callbackFail = nullptr;
32 napi_ref callbackComplete = nullptr;
/base/hiviewdfx/hisysevent/interfaces/js/kits/napi/src/
Djs_callback_manager.cpp40 void RunCallback(CallbackContext* context, std::tuple<CallbackContext*, CALLBACK_FUNC, RELEASE_FUNC… in RunCallback()