Lines Matching refs:JSValueRef
32 Local<JSValueRef> DebuggerExecutor::DebuggerGetValue(JsiRuntimeCallInfo *runtimeCallInfo) in DebuggerGetValue()
37 return JSValueRef::Undefined(vm); in DebuggerGetValue()
39 Local<JSValueRef> name = runtimeCallInfo->GetCallArgRef(0); in DebuggerGetValue()
41 return JSValueRef::Undefined(vm); in DebuggerGetValue()
43 Local<JSValueRef> isThrow = runtimeCallInfo->GetCallArgRef(1); in DebuggerGetValue()
48 Local<JSValueRef> value = GetValue(vm, frameHandler.get(), Local<StringRef>(name)); in DebuggerGetValue()
55 return JSValueRef::Undefined(vm); in DebuggerGetValue()
60 return Local<JSValueRef>(); in DebuggerGetValue()
63 Local<JSValueRef> DebuggerExecutor::DebuggerSetValue(JsiRuntimeCallInfo *runtimeCallInfo) in DebuggerSetValue()
68 return JSValueRef::Undefined(vm); in DebuggerSetValue()
70 Local<JSValueRef> name = runtimeCallInfo->GetCallArgRef(0); in DebuggerSetValue()
72 return JSValueRef::Undefined(vm); in DebuggerSetValue()
74 Local<JSValueRef> value = runtimeCallInfo->GetCallArgRef(1); in DebuggerSetValue()
85 return Local<JSValueRef>(); in DebuggerSetValue()
88 Local<JSValueRef> DebuggerExecutor::GetValue(const EcmaVM *vm, const FrameHandler *frameHandler, Lo… in GetValue()
90 Local<JSValueRef> value; in GetValue()
108 return Local<JSValueRef>(); in GetValue()
112 Local<StringRef> name, Local<JSValueRef> value) in SetValue()
133 Local<JSValueRef> exception = Exception::ReferenceError(vm, msg); in ThrowException()
137 Local<JSValueRef> DebuggerExecutor::GetLocalValue(const EcmaVM *vm, const FrameHandler *frameHandle… in GetLocalValue()
140 Local<JSValueRef> result; in GetLocalValue()
152 Local<StringRef> name, Local<JSValueRef> value) in SetLocalValue()
165 Local<JSValueRef> DebuggerExecutor::GetLexicalValue(const EcmaVM *vm, const FrameHandler *frameHand… in GetLexicalValue()
168 Local<JSValueRef> result; in GetLexicalValue()
180 Local<StringRef> name, Local<JSValueRef> value) in SetLexicalValue()
193 Local<JSValueRef> DebuggerExecutor::GetGlobalValue(const EcmaVM *vm, Local<StringRef> name) in GetGlobalValue()
198 bool DebuggerExecutor::SetGlobalValue(const EcmaVM *vm, Local<StringRef> name, Local<JSValueRef> va… in SetGlobalValue()
203 Local<JSValueRef> DebuggerExecutor::GetModuleValue(const EcmaVM *vm, const FrameHandler *frameHandl… in GetModuleValue()
206 Local<JSValueRef> result; in GetModuleValue()
222 Local<StringRef> name, Local<JSValueRef> value) in SetModuleValue()