Home
last modified time | relevance | path

Searched defs:handler (Results 1 – 25 of 102) sorted by relevance

12345

/arkcompiler/ets_runtime/ecmascript/ic/
Dic_handler.h83 static inline bool IsAccessor(Type handler) in IsAccessor()
88 static inline SharedFieldType GetFieldType(Type handler) in GetFieldType()
93 static inline bool IsNonExist(Type handler) in IsNonExist()
98 static inline bool IsField(Type handler) in IsField()
103 static inline bool IsNonSharedStoreField(Type handler) in IsNonSharedStoreField()
108 static inline bool IsStoreShared(Type handler) in IsStoreShared()
113 static inline void ClearSharedStoreKind(Type &handler) in ClearSharedStoreKind()
118 static inline bool IsStoreOutOfBounds(Type handler) in IsStoreOutOfBounds()
123 static inline void ClearStoreOutOfBounds(Type &handler) in ClearStoreOutOfBounds()
128 static inline bool IsString(Type handler) in IsString()
[all …]
Dic_runtime_stub-inl.h43 JSTaggedValue handler = profileTypeInfo->Get(slotId); in LoadGlobalICByName() local
59 JSTaggedValue handler = profileTypeInfo->Get(slotId); in StoreGlobalICByName() local
212 … JSTaggedValue value, JSTaggedValue handler) in StoreICWithHandler()
257 JSTaggedValue value, JSTaggedValue handler) in StorePrototype()
279 JSTaggedValue value, JSTaggedValue handler) in StoreWithTS()
303 JSTaggedValue handler, bool withPrototype) in StoreWithTransition()
358 JSTaggedValue handler) in StoreTransWithProto()
375 …untimeStub::StoreField(JSThread *thread, JSObject *receiver, JSTaggedValue value, uint64_t handler) in StoreField()
397 ARK_INLINE JSTaggedValue ICRuntimeStub::LoadGlobal(JSTaggedValue handler) in LoadGlobal()
409 …aggedValue ICRuntimeStub::StoreGlobal(JSThread *thread, JSTaggedValue value, JSTaggedValue handler) in StoreGlobal()
[all …]
/arkcompiler/toolchain/tooling/
Ddebugger_service.cpp31 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in InitializeDebugger() local
45 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in UninitializeDebugger() local
56 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in WaitForDebugger() local
68 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in OnMessage() local
80 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in ProcessMessage() local
92 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in GetDispatchStatus() local
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/connection/
Dserver_endpoint_base.h30 void OnValidate(std::function<void()> &&handler) override in OnValidate()
35 void OnOpen(std::function<void()> &&handler) override in OnOpen()
40 void OnFail(std::function<void()> &&handler) override in OnFail()
Dendpoint_base.cpp24 void EndpointBase::OnCall(const char *method, EndpointBase::MethodHandler &&handler) in OnCall()
48 if (auto handler = methodHandlers_.find(*method); handler != methodHandlers_.end()) { in HandleMessage() local
65 if (auto handler = resultHandlers_.extract(*id)) { in HandleMessage() local
/arkcompiler/runtime_core/static_core/runtime/mem/
Dobject-references-iterator-inl.h34 bool ObjectArrayIterator::Iterate(coretypes::Array *array, Handler *handler) in Iterate()
54 bool ObjectArrayIterator::Iterate(coretypes::Array *array, Handler *handler, void *begin, void *end) in Iterate()
81 bool ObjectIterator<LANG_TYPE_STATIC>::Iterate(ObjectHeader *obj, Handler *handler, void *begin, vo… in Iterate()
89 …erator<LANG_TYPE_STATIC>::IterateAndDiscoverReferences(GC *gc, ObjectHeader *obj, Handler *handler) in IterateAndDiscoverReferences()
104 …erator<LANG_TYPE_STATIC>::IterateAndDiscoverReferences(GC *gc, ObjectHeader *obj, Handler *handler, in IterateAndDiscoverReferences()
120 bool ObjectIterator<LANG_TYPE_STATIC>::Iterate(Class *cls, ObjectHeader *obj, Handler *handler) in Iterate()
139 bool ObjectIterator<LANG_TYPE_STATIC>::Iterate(Class *cls, ObjectHeader *obj, Handler *handler, voi… in Iterate()
162 bool ObjectIterator<LANG_TYPE_STATIC>::IterateClassReferences(Class *cls, Handler *handler) in IterateClassReferences()
177 bool ObjectIterator<LANG_TYPE_STATIC>::IterateClassReferences(Class *cls, Handler *handler, void *b… in IterateClassReferences()
192 …LANG_TYPE_STATIC>::IterateObjectReferences(ObjectHeader *object, Class *objClass, Handler *handler) in IterateObjectReferences()
[all …]
Dobject_helpers-inl.h35 bool GCStaticObjectHelpers::TraverseClass(Class *cls, Handler &handler) in TraverseClass()
66 bool GCStaticObjectHelpers::TraverseObject(ObjectHeader *object, Class *cls, Handler &handler) in TraverseObject()
104 Handler &handler) in TraverseArray()
141 bool GCStaticObjectHelpers::TraverseAllObjectsWithInfo(ObjectHeader *objectHeader, Handler &handler in TraverseAllObjectsWithInfo()
167 bool GCDynamicObjectHelpers::TraverseClass(coretypes::DynClass *dynClass, Handler &handler) in TraverseClass()
189 bool GCDynamicObjectHelpers::TraverseObject(ObjectHeader *object, HClass *cls, Handler &handler) in TraverseObject()
219 void *end, Handler &handler) in TraverseArray()
255 …bjectHelpers::TraverseAllObjectsWithInfo(ObjectHeader *objectHeader, Handler &handler, void *begin, in TraverseAllObjectsWithInfo()
/arkcompiler/runtime_core/static_core/verification/util/
Dsaturated_enum.h64 void EnumerateValues(Handler &&handler) const in EnumerateValues()
88 void Enumerate(Handler &&handler, bool prevSet) const in Enumerate()
129 void EnumerateValues(Handler &&handler) const in EnumerateValues()
157 void Enumerate(Handler &&handler, bool prevSet) const in Enumerate()
Dflags.h72 void EnumerateFlags(Handler &&handler) const in EnumerateFlags()
131 void EnumerateFlags(Handler &&handler) const in EnumerateFlags()
Dsynchronized.h135 auto Apply(Handler &&handler) in Apply()
142 auto Apply(Handler &&handler) const in Apply()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/
Dinspector_server.cpp37 void OnValidate([[maybe_unused]] std::function<void()> &&handler) override {}; in OnValidate()
38 void OnOpen([[maybe_unused]] std::function<void()> &&handler) override {}; in OnOpen()
39 void OnFail([[maybe_unused]] std::function<void()> &&handler) override {}; in OnFail()
49 …std::function<void(const std::string &, JsonObjectBuilder &, const JsonObject &)> &&handler) overr… in OnCall()
124 …L(server1, OnCallMock("Debugger.enable", testing::_)).WillOnce([&](testing::Unused, auto handler) { in TEST_F()
134 static auto g_simpleHandler = []([[maybe_unused]] auto unused, auto handler) { in __anond968ae700302()
160 .WillOnce([&](testing::Unused, auto handler) { in TEST_F()
176 .WillOnce([&](testing::Unused, auto handler) { in TEST_F()
194 …ver, OnCallMock("Debugger.restartFrame", testing::_)).WillOnce([&](testing::Unused, auto handler) { in TEST_F()
205 …ver, OnCallMock("Debugger.restartFrame", testing::_)).WillOnce([&](testing::Unused, auto handler) { in TEST_F()
[all …]
/arkcompiler/toolchain/tooling/test/
Ddebugger_service_test.cpp55 ProtocolHandler *handler = ecmaVm->GetJsDebuggerManager()->GetDebuggerHandler(); in HWTEST_F_L0() local
71 ProtocolHandler *handler = ecmaVm->GetJsDebuggerManager()->GetDebuggerHandler(); in HWTEST_F_L0() local
83 ProtocolHandler *handler = ecmaVm->GetJsDebuggerManager()->GetDebuggerHandler(); in HWTEST_F_L0() local
101 ProtocolHandler *handler = ecmaVm->GetJsDebuggerManager()->GetDebuggerHandler(); in HWTEST_F_L0() local
108 ProtocolHandler *handler = ecmaVm->GetJsDebuggerManager()->GetDebuggerHandler(); in HWTEST_F_L0() local
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Dinspector_server.cpp50 void InspectorServer::OnValidate(std::function<void()> &&handler) in OnValidate()
62 void InspectorServer::OnOpen(std::function<void()> &&handler) in OnOpen()
78 void InspectorServer::OnFail(std::function<void()> &&handler) in OnFail()
218 std::function<void(PtThread, std::string_view, size_t)> &&handler) in OnCallDebuggerContinueToLocation()
235 std::function<std::set<size_t>(std::string_view, size_t, size_t, bool)> &&handler) in OnCallDebuggerGetPossibleBreakpoints()
275 …d InspectorServer::OnCallDebuggerGetScriptSource(std::function<std::string(std::string_view)> &&ha… in OnCallDebuggerGetScriptSource()
288 void InspectorServer::OnCallDebuggerPause(std::function<void(PtThread)> &&handler) in OnCallDebuggerPause()
296 …pectorServer::OnCallDebuggerRemoveBreakpoint(std::function<void(PtThread, BreakpointId)> &&handler) in OnCallDebuggerRemoveBreakpoint()
308 void InspectorServer::OnCallDebuggerRestartFrame(std::function<void(PtThread, FrameId)> &&handler) in OnCallDebuggerRestartFrame()
328 void InspectorServer::OnCallDebuggerResume(std::function<void(PtThread)> &&handler) in OnCallDebuggerResume()
[all …]
Ddebug_info_cache.h58 void EnumerateLineEntries(PFF &&pandaFileFilter, MF &&methodFilter, H &&handler) in EnumerateLineEntries()
79 … panda_file::File::EntityId methodId, H &&handler) REQUIRES(debugInfosMutex_) in EnumerateLineEntries()
/arkcompiler/ets_runtime/test/aottest/proxy2/
Dproxy2.ts17 const handler = { constant
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_layout.cpp182 void HClassLayoutDesc::InsertKeyAndDesc(const PGOHandler &handler, PropertyDesc &desc) in InsertKeyAndDesc()
224 void RootHClassLayoutDesc::InsertKeyAndDesc(const CString &key, const PGOHandler &handler) in InsertKeyAndDesc()
231 bool RootHClassLayoutDesc::UpdateKeyAndDesc(const CString &key, const PGOHandler &handler) in UpdateKeyAndDesc()
252 void ChildHClassLayoutDesc::InsertKeyAndDesc(const CString &key, const PGOHandler &handler) in InsertKeyAndDesc()
259 bool ChildHClassLayoutDesc::UpdateKeyAndDesc(const CString &key, const PGOHandler &handler) in UpdateKeyAndDesc()
/arkcompiler/ets_runtime/ecmascript/
Djs_proxy.cpp26 const JSHandle<JSTaggedValue> &handler) in ProxyCreate()
53 JSHandle<JSTaggedValue> handler(thread, proxy->GetHandler()); in GetPrototype() local
115 JSTaggedValue handler = proxy->GetHandler(); in SetPrototype() local
176 JSTaggedValue handler = proxy->GetHandler(); in IsExtensible() local
234 JSTaggedValue handler = proxy->GetHandler(); in PreventExtensions() local
288 JSTaggedValue handler = proxy->GetHandler(); in GetOwnProperty() local
381 JSTaggedValue handler = proxy->GetHandler(); in DefineOwnProperty() local
464 JSTaggedValue handler = proxy->GetHandler(); in HasProperty() local
524 JSTaggedValue handler = proxy->GetHandler(); in GetProperty() local
599 JSTaggedValue handler = proxy->GetHandler(); in SetProperty() local
[all …]
/arkcompiler/runtime_core/static_core/runtime/tooling/
Ddefault_inspector_extension.h54 void EnumerateGlobals([[maybe_unused]] const PropertyHandler &handler) override {} in EnumerateGlobals()
/arkcompiler/runtime_core/static_core/verification/type/
Dtype_system.cpp47 Job::ErrorHandler handler; in __anon2bc6fec60102() local
72 Job::ErrorHandler handler; in DescriptorToClass() local
168 void TypeSystem::DisplayTypeSystem(std::function<void(PandaString const &)> const &handler) in DisplayTypeSystem()
195 …tem::DisplaySubtyping(std::function<void(PandaString const &, PandaString const &)> const &handler) in DisplaySubtyping()
/arkcompiler/runtime_core/static_core/runtime/tests/
Dobject_helpers_test.cpp139 auto handler = [&found]([[maybe_unused]] ObjectHeader *obj, [[maybe_unused]] ObjectHeader *ref, in TEST_F() local
165 …auto handler = [klass, &count, expected](ObjectHeader *obj, ObjectHeader *ref, uint32_t offset, bo… in TEST_F() local
194 …auto handler = [klass, &count, expected](ObjectHeader *obj, ObjectHeader *ref, uint32_t offset, bo… in TEST_F() local
225 …auto handler = [object, &count, expected](ObjectHeader *obj, ObjectHeader *ref, uint32_t offset, b… in TEST_F() local
256 …auto handler = [object, &count, expected](ObjectHeader *obj, ObjectHeader *ref, uint32_t offset, b… in TEST_F() local
277 …auto handler = [array, &count, expected](ObjectHeader *obj, ObjectHeader *ref, uint32_t offset, bo… in TEST_F() local
/arkcompiler/runtime_core/static_core/verification/jobs/
Djob.h102 void ForAllCachedTypes(Handler &&handler) const in ForAllCachedTypes()
110 void ForAllCachedMethods(Handler &&handler) const in ForAllCachedMethods()
118 void ForAllCachedFields(Handler &&handler) const in ForAllCachedFields()
/arkcompiler/ets_runtime/test/aottest/exception_case7/
Dexception_case7.js17 const handler = { variable
/arkcompiler/runtime_core/static_core/verification/config/handlers/
Dliteral_parser.h28 const auto &LiteralParser(Handler &handler) in LiteralParser()
/arkcompiler/ets_runtime/test/aottest/proxy/
Dproxy.ts23 const handler = { constant
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_proxy_test.cpp51 JSHandle<JSObject> handler = BuiltinsTestProxyCreate(thread); in HWTEST_F_L0() local
71 JSHandle<JSObject> handler = BuiltinsTestProxyCreate(thread); in HWTEST_F_L0() local

12345