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