Home
last modified time | relevance | path

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

123

/arkcompiler/ets_runtime/ecmascript/ic/
Dic_handler.h45 static inline bool IsAccessor(uint32_t handler) in IsAccessor()
50 static inline bool IsInternalAccessor(uint32_t handler) in IsInternalAccessor()
55 static inline bool IsNonExist(uint32_t handler) in IsNonExist()
60 static inline bool IsField(uint32_t handler) in IsField()
65 static inline bool IsElement(uint32_t handler) in IsElement()
70 static inline bool IsDictionary(uint32_t handler) in IsDictionary()
75 static inline bool IsInlinedProps(uint32_t handler) in IsInlinedProps()
80 static inline HandlerKind GetKind(uint32_t handler) in GetKind()
85 static inline bool IsJSArray(uint32_t handler) in IsJSArray()
90 static inline int GetOffset(uint32_t handler) in GetOffset()
[all …]
Dic_runtime_stub-inl.h42 JSTaggedValue handler = profileTypeInfo->Get(slotId); in LoadGlobalICByName() local
58 JSTaggedValue handler = profileTypeInfo->Get(slotId); in StoreGlobalICByName() local
195 … JSTaggedValue value, JSTaggedValue handler) in StoreICWithHandler()
228 JSTaggedValue value, JSTaggedValue handler) in StorePrototype()
245 JSTaggedValue value, JSTaggedValue handler) in StoreWithTS()
269 JSTaggedValue handler, bool withPrototype) in StoreWithTransition()
318 JSTaggedValue handler) in StoreTransWithProto()
334 …untimeStub::StoreField(JSThread *thread, JSObject *receiver, JSTaggedValue value, uint32_t handler) in StoreField()
356 ARK_INLINE JSTaggedValue ICRuntimeStub::LoadGlobal(JSTaggedValue handler) in LoadGlobal()
368 …aggedValue ICRuntimeStub::StoreGlobal(JSThread *thread, JSTaggedValue value, JSTaggedValue handler) in StoreGlobal()
[all …]
/arkcompiler/toolchain/tooling/
Ddebugger_service.cpp27 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in InitializeDebugger() local
37 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in UninitializeDebugger() local
44 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in WaitForDebugger() local
52 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in OnMessage() local
60 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in ProcessMessage() local
68 ProtocolHandler *handler = vm->GetJsDebuggerManager()->GetDebuggerHandler(); in GetDispatchStatus() local
/arkcompiler/runtime_core/verification/type/
Dtype_type_inl.h29 void Type::ForAllSupertypes(Handler &&handler) const in ForAllSupertypes()
35 void Type::ForAllSupertypesOfSort(SortIdx sort, Handler &&handler) const in ForAllSupertypesOfSort()
46 void Type::ForAllSubtypes(Handler &&handler) const in ForAllSubtypes()
52 void Type::ForAllSubtypesOfSort(SortIdx sort, Handler &&handler) const in ForAllSubtypesOfSort()
Dtype_set.h94 bool ForAll(Handler &&handler) const in ForAll()
100 bool Exists(Handler &&handler) const in Exists()
Dtype_params.h47 void ForEach(Handler &&handler) const in ForEach()
/arkcompiler/runtime_core/verification/util/
Dsaturated_enum.h63 void EnumerateValues(Handler &&handler) const in EnumerateValues()
87 void Enumerate(Handler &&handler, bool prev_set) const in Enumerate()
126 void EnumerateValues(Handler &&handler) const in EnumerateValues()
154 void Enumerate(Handler &&handler, bool prev_set) const in Enumerate()
Dflags.h64 void EnumerateFlags(Handler &&handler) const in EnumerateFlags()
122 void EnumerateFlags(Handler &&handler) const in EnumerateFlags()
Drelation.h89 void ForAllFrom(RelIndex from, Handler &&handler) const in ForAllFrom()
96 void ForAllTo(RelIndex to, Handler &&handler) const in ForAllTo()
103 void ForAllBetween(RelIndex from, RelIndex to, Handler &&handler) const in ForAllBetween()
Dsynchronized.h131 auto Apply(Handler &&handler) in Apply()
138 auto Apply(Handler &&handler) const in Apply()
/arkcompiler/runtime_core/runtime/mem/
Dobject_helpers-inl.h30 void GCStaticObjectHelpers::TraverseClass(Class *cls, Handler &handler) in TraverseClass()
57 void GCStaticObjectHelpers::TraverseObject(ObjectHeader *object, Class *cls, Handler &handler) in TraverseObject()
89 …bjectHelpers::TraverseArray(coretypes::Array *array, [[maybe_unused]] Class *cls, Handler &handler) in TraverseArray()
107 …id GCStaticObjectHelpers::TraverseAllObjectsWithInfo(ObjectHeader *object_header, Handler &handler) in TraverseAllObjectsWithInfo()
126 void GCDynamicObjectHelpers::TraverseClass(coretypes::DynClass *dyn_class, Handler &handler) in TraverseClass()
144 void GCDynamicObjectHelpers::TraverseObject(ObjectHeader *object, HClass *cls, Handler &handler) in TraverseObject()
169 …jectHelpers::TraverseArray(coretypes::Array *array, [[maybe_unused]] HClass *cls, Handler &handler) in TraverseArray()
189 …d GCDynamicObjectHelpers::TraverseAllObjectsWithInfo(ObjectHeader *object_header, Handler &handler) in TraverseAllObjectsWithInfo()
/arkcompiler/runtime_core/verification/config/options/
Dmethod_options.h102 …void IfInMsgClassThen(VerifierMessage msg_num, MethodOption::MsgClass klass, Handler &&handler) co… in IfInMsgClassThen()
110 …IfNotInMsgClassThen(VerifierMessage msg_num, MethodOption::MsgClass klass, Handler &&handler) const in IfNotInMsgClassThen()
146 void IfError(Handler &&handler) const in IfError()
152 void IfNotError(Handler &&handler) const in IfNotError()
158 void IfWarning(Handler &&handler) const in IfWarning()
164 void IfNotWarning(Handler &&handler) const in IfNotWarning()
170 void IfHidden(Handler &&handler) const in IfHidden()
176 void IfNotHidden(Handler &&handler) const in IfNotHidden()
192 void If(MethodOption::MsgClass klass, Handler &&handler) const in If()
198 void IfNot(MethodOption::MsgClass klass, Handler &&handler) const in IfNot()
/arkcompiler/runtime_core/runtime/tooling/inspector/
Dendpoint.cpp39 if (auto handler = methodHandlers_.find(*method); handler != methodHandlers_.end()) { in HandleMessage() local
55 if (auto handler = resultHandlers_.extract(*id)) { in HandleMessage() local
Dendpoint.h49 void OnCall(const char *method, MethodHandler &&handler) in OnCall()
57 void OnResult(Id id, ResultHandler &&handler) in OnResult()
Dserver_endpoint-inl.h55 … std::function<void(JsonObjectBuilder &, const JsonObject &)> &&handler) in OnCall()
/arkcompiler/runtime_core/runtime/tooling/inspector/tests/
Dclient.h52 void Call(const char *method, std::function<void(const JsonObject & /* result */)> &&handler) in Call()
63 void OnCall(const char *method, MethodHandler &&handler) in OnCall()
Dinspector_test_base.h55 …CallSync(const char *method, std::function<void(JsonObjectBuilder &)> &&params, Function &&handler) in CallSync()
69 …CallSync(const char *method, std::function<void(JsonObjectBuilder &)> &&params, Function &&handler) in CallSync()
Dtest_server.h38 void OnConnect(std::function<void()> &&handler) in OnConnect()
/arkcompiler/ets_runtime/ecmascript/
Djs_proxy.cpp28 const JSHandle<JSTaggedValue> &handler) in ProxyCreate()
54 JSHandle<JSTaggedValue> handler(thread, proxy->GetHandler()); in GetPrototype() local
115 JSTaggedValue handler = proxy->GetHandler(); in SetPrototype() local
175 JSTaggedValue handler = proxy->GetHandler(); in IsExtensible() local
232 JSTaggedValue handler = proxy->GetHandler(); in PreventExtensions() local
285 JSTaggedValue handler = proxy->GetHandler(); in GetOwnProperty() local
381 JSTaggedValue handler = proxy->GetHandler(); in DefineOwnProperty() local
469 JSTaggedValue handler = proxy->GetHandler(); in HasProperty() local
528 JSTaggedValue handler = proxy->GetHandler(); in GetProperty() local
602 JSTaggedValue handler = proxy->GetHandler(); in SetProperty() local
[all …]
/arkcompiler/runtime_core/verification/jobs/
Djob.h82 void ForAllCachedClasses(Handler &&handler) const in ForAllCachedClasses()
90 void ForAllCachedMethods(Handler &&handler) const in ForAllCachedMethods()
98 void ForAllCachedFields(Handler &&handler) const in ForAllCachedFields()
/arkcompiler/ets_runtime/test/aottest/proxy/
Dproxy.ts9 const handler = { constant
/arkcompiler/runtime_core/runtime/tests/
Dobject_helpers_test.cpp137 auto handler = [&found]([[maybe_unused]] ObjectHeader *obj, [[maybe_unused]] ObjectHeader *ref, in TEST_F() local
163 …auto handler = [klass, &count, expected](ObjectHeader *obj, ObjectHeader *ref, uint32_t offset, bo… in TEST_F() local
192 …auto handler = [klass, &count, expected](ObjectHeader *obj, ObjectHeader *ref, uint32_t offset, bo… in TEST_F() local
223 …auto handler = [object, &count, expected](ObjectHeader *obj, ObjectHeader *ref, uint32_t offset, b… in TEST_F() local
254 …auto handler = [object, &count, expected](ObjectHeader *obj, ObjectHeader *ref, uint32_t offset, b… in TEST_F() local
275 …auto handler = [array, &count, expected](ObjectHeader *obj, ObjectHeader *ref, uint32_t offset, bo… in TEST_F() local
/arkcompiler/runtime_core/verification/absint/
Dpanda_types.h295 void ForSubtypesOf(const Type &type, Handler &&handler) const in ForSubtypesOf()
300 void ForSupertypesOf(const Type &type, Handler &&handler) const in ForSupertypesOf()
323 void DisplayMethods(Handler handler) in DisplayMethods()
336 void DisplayClasses(Handler handler) in DisplayClasses()
343 void DisplaySubtyping(Handler handler) in DisplaySubtyping()
354 void DisplayTypeSystem(Handler handler) in DisplayTypeSystem()
/arkcompiler/runtime_core/verification/cflow/
Dcflow_check.cpp61 for (const CflowExcHandlerInfo &handler : cflow_info.ExcHandlers()) { in IsExceptionHanlderStart() local
100 for (const CflowExcHandlerInfo &handler : cflow_info.ExcHandlers()) { in CheckInvalidCatchBlockEnter() local
/arkcompiler/runtime_core/verification/config/handlers/
Dliteral_parser.h28 const auto &LiteralParser(Handler &handler) in LiteralParser()

123