Lines Matching refs:new_frame
2251 _PyInterpreterFrame *new_frame = _PyThreadState_BumpFramePointer(tstate, size);
2252 if (new_frame == NULL) {
2257 _PyFrame_InitializeSpecials(new_frame, getitem,
2260 new_frame->localsplus[0] = container;
2261 new_frame->localsplus[1] = sub;
2263 new_frame->localsplus[i] = NULL;
2268 new_frame->previous = frame;
2269 frame = cframe.current_frame = new_frame;
4747 _PyInterpreterFrame *new_frame = _PyEvalFramePushAndInit(
4755 if (new_frame == NULL) {
4761 new_frame->previous = frame;
4762 cframe.current_frame = frame = new_frame;
4854 _PyInterpreterFrame *new_frame = _PyFrame_Push(tstate, func);
4855 if (new_frame == NULL) {
4861 new_frame->localsplus[i] = stack_pointer[i];
4864 new_frame->localsplus[i] = NULL;
4870 new_frame->previous = frame;
4871 frame = cframe.current_frame = new_frame;
4890 _PyInterpreterFrame *new_frame = _PyFrame_Push(tstate, func);
4891 if (new_frame == NULL) {
4897 new_frame->localsplus[i] = stack_pointer[i];
4903 new_frame->localsplus[i] = def;
4906 new_frame->localsplus[i] = NULL;
4912 new_frame->previous = frame;
4913 frame = cframe.current_frame = new_frame;