Lines Matching defs:callInfo
103 EcmaRuntimeCallInfo *callInfo = CreateEcmaRuntimeCallInfo(thread, 8); // 8 : means the argv length
104 callInfo->SetFunction(JSTaggedValue::Undefined());
105 callInfo->SetThis(queue.GetTaggedValue());
106 callInfo->SetCallArg(0, JSTaggedValue(input));
107 ContainersQueue::Add(callInfo);
111 EcmaRuntimeCallInfo *callInfo = CreateEcmaRuntimeCallInfo(thread, 6); // 6 : means the argv length
112 callInfo->SetFunction(JSTaggedValue::Undefined());
113 callInfo->SetThis(queue.GetTaggedValue());
114 callInfo->SetCallArg(0, JSTaggedValue(input));
115 ContainersQueue::GetFirst(callInfo);