Home
last modified time | relevance | path

Searched refs:DebuggerPostTask (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/ability/ability_runtime/frameworks/native/runtime/
H A Dconnect_server_manager.h22 using DebuggerPostTask = std::function<void(std::function<void()>&&)>; variable
23 using DebuggerInfo = std::unordered_map<int, std::pair<void*, const DebuggerPostTask>>;
51 const DebuggerPostTask& debuggerPostTask, bool isDebugApp);
56 DebuggerPostTask GetDebuggerPostTask(int32_t tid);
H A Dconnect_server_manager.cpp66 std::unordered_map<int, std::pair<void*, const DebuggerPostTask>> g_debuggerInfo;
157 const DebuggerPostTask& debuggerPostTask, bool isDebugApp) in StoreDebuggerInfo()
416 DebuggerPostTask ConnectServerManager::GetDebuggerPostTask(int32_t tid) in GetDebuggerPostTask()
/ohos5.0/foundation/ability/ability_runtime/js_environment/interfaces/inner_api/
H A Djs_environment.h30 using DebuggerPostTask = std::function<void(std::function<void()>&&)>; variable
94 DebuggerPostTask GetDebuggerPostTask();
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H A Dark_js_runtime.h57 using DebuggerPostTask = std::function<void(std::function<void()>&&)>; variable
146 void SetDebuggerPostTask(DebuggerPostTask&& task) in SetDebuggerPostTask()
259 DebuggerPostTask debuggerPostTask_;
/ohos5.0/commonlibrary/ets_utils/js_concurrent_module/taskpool/
H A Dworker.h56 using DebuggerPostTask = std::function<void()>;
199 std::queue<DebuggerPostTask> debuggerQueue_ {};
/ohos5.0/foundation/arkui/napi/native_engine/
H A Dnative_engine.h79 using DebuggerPostTask = std::function<void(std::function<void()>&&)>; variable
315 virtual void SetDebuggerPostTaskFunc(DebuggerPostTask func);
531 DebuggerPostTask debuggerPostTaskFunc_ {nullptr};
H A Dnative_engine.cpp676 void NativeEngine::SetDebuggerPostTaskFunc(DebuggerPostTask func) in SetDebuggerPostTaskFunc()
/ohos5.0/commonlibrary/ets_utils/js_concurrent_module/worker/
H A Dworker.h45 using DebuggerPostTask = std::function<void()>; variable
587 std::queue<DebuggerPostTask> debuggerQueue_ {};
/ohos5.0/foundation/ability/ability_runtime/js_environment/frameworks/js_environment/src/
H A Djs_environment.cpp337 DebuggerPostTask JsEnvironment::GetDebuggerPostTask() in GetDebuggerPostTask()