Lines Matching refs:frame
1027 _PyEval_EvalFrameDefault(), tstate->frame is not reset to its
1032 "PyThreadState_Clear: warning: thread still has a frame\n");
1286 PyFrameObject *frame = _PyFrame_GetFrameObject(f);
1287 if (frame == NULL) {
1290 Py_XINCREF(frame);
1291 return frame;
1399 * if t's frame isn't NULL, map t's id to its frame
1409 _PyInterpreterFrame *frame = t->cframe->current_frame;
1410 while (frame && _PyFrame_IsIncomplete(frame)) {
1411 frame = frame->previous;
1413 if (frame == NULL) {
1420 PyObject *frameobj = (PyObject *)_PyFrame_GetFrameObject(frame);
1460 * if t's frame isn't NULL, map t's id to its frame
2218 _PyThreadState_PopFrame(PyThreadState *tstate, _PyInterpreterFrame * frame)
2221 PyObject **base = (PyObject **)frame;