• Home
  • Raw
  • Download

Lines Matching full:next

96     void Reset([[maybe_unused]] JSThread *thread, Node *next, JSTaggedType value, bool isUsing)  in Reset()  argument
99 SetNext(next); in Reset()
103 memtrace((void *)next, sizeof(Node), "ArkJsGlobalHandle", isUsing); in Reset()
118 void Reset(JSThread *thread, Node *next, JSTaggedType value, bool isUsing) in Reset() argument
120 Node::Reset(thread, next, value, isUsing); in Reset()
331 inline void SetNext(NodeList *next) in SetNext() argument
333 next_ = next; in SetNext()
349 inline void SetFreeNext(NodeList<T> *next) in SetFreeNext() argument
351 freeNext_ = next; in SetFreeNext()
370 T *next = usedList_; in IterateUsageGlobal() local
372 while (next != nullptr) { in IterateUsageGlobal()
373 current = next; in IterateUsageGlobal()
374 next = reinterpret_cast<T *>(current->GetNext()); in IterateUsageGlobal()
375 ASSERT(current != next); in IterateUsageGlobal()
420 auto *next = topGlobalNodes_; in ~EcmaGlobalStorage() local
422 while (next != nullptr) { in ~EcmaGlobalStorage()
423 current = next; in ~EcmaGlobalStorage()
424 next = current->GetNext(); in ~EcmaGlobalStorage()
481 NodeList<T> *next = topGlobalNodes_; in IterateUsageGlobal() local
483 while (next != nullptr) { in IterateUsageGlobal()
484 current = next; in IterateUsageGlobal()
485 next = current->GetNext(); in IterateUsageGlobal()
486 ASSERT(current != next); in IterateUsageGlobal()
494 NodeList<WeakNode> *next = topWeakGlobalNodes_; in IterateWeakUsageGlobal() local
496 while (next != nullptr) { in IterateWeakUsageGlobal()
497 current = next; in IterateWeakUsageGlobal()
498 next = current->GetNext(); in IterateWeakUsageGlobal()
499 ASSERT(current != next); in IterateWeakUsageGlobal()
557 auto next = (*freeList)->GetFreeNext(); in NewGlobalHandleImplement() local
560 if (next != nullptr) { in NewGlobalHandleImplement()
561 next->SetFreePrev(nullptr); in NewGlobalHandleImplement()
563 *freeList = next; in NewGlobalHandleImplement()