Lines Matching defs:asyncCtxt
37 JSHandle<JSTaggedValue> asyncCtxt(thread, asyncFuncObj->GetGeneratorContext());
68 fulFunc->SetAsyncContext(thread, asyncCtxt);
69 rejFunc->SetAsyncContext(thread, asyncCtxt);
97 JSHandle<JSTaggedValue> asyncCtxt;
102 asyncCtxt = JSHandle<JSTaggedValue>(thread, asyncGen->GetGeneratorContext());
107 asyncCtxt = JSHandle<JSTaggedValue>(thread, asyncFun->GetGeneratorContext());
127 fulFunc->SetAsyncContext(thread, asyncCtxt);
128 rejFunc->SetAsyncContext(thread, asyncCtxt);
155 JSHandle<GeneratorContext> asyncCtxt(thread, func->GetAsyncContext());
157 JSHandle<JSTaggedValue> tagVal(thread, asyncCtxt->GetGeneratorObject());
159 AsyncGeneratorHelper::Next(thread, asyncCtxt, value.GetTaggedValue());
167 GeneratorHelper::Next(thread, asyncCtxt, value.GetTaggedValue());
180 JSHandle<GeneratorContext> asyncCtxt(thread, func->GetAsyncContext());
182 JSHandle<JSTaggedValue> tagVal(thread, asyncCtxt->GetGeneratorObject());
187 AsyncGeneratorHelper::Throw(thread, asyncCtxt, completionRecord);
197 JSHandle<JSObject> result = GeneratorHelper::Throw(thread, asyncCtxt, reason.GetTaggedValue());