Home
last modified time | relevance | path

Searched refs:new_next (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/handles/
Dpersistent-handles.cc137 Address* new_next = impl_->GetSpareOrNewBlock(); in PersistentHandlesScope() local
138 Address* new_limit = &new_next[kHandleBlockSize]; in PersistentHandlesScope()
144 impl_->blocks()->push_back(new_next); in PersistentHandlesScope()
152 data->next = new_next; in PersistentHandlesScope()
/third_party/python/Python/
Dtraceback.c108 tb_next_set(PyTracebackObject *self, PyObject *new_next, void *Py_UNUSED(_)) in tb_next_set() argument
110 if (!new_next) { in tb_next_set()
117 if (new_next == Py_None) { in tb_next_set()
118 new_next = NULL; in tb_next_set()
119 } else if (!PyTraceBack_Check(new_next)) { in tb_next_set()
122 Py_TYPE(new_next)->tp_name); in tb_next_set()
127 PyTracebackObject *cursor = (PyTracebackObject *)new_next; in tb_next_set()
137 Py_XINCREF(new_next); in tb_next_set()
138 self->tb_next = (PyTracebackObject *)new_next; in tb_next_set()