Home
last modified time | relevance | path

Searched refs:PyTryBlock (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Modules/
Dcdmodule.c263 long PyTryBlock; in CD_seek() local
268 PyTryBlock = CDseek(self->ob_cdplayer, min, sec, frame); in CD_seek()
269 if (PyTryBlock == -1) { in CD_seek()
274 return PyInt_FromLong(PyTryBlock); in CD_seek()
281 long PyTryBlock; in CD_seektrack() local
286 PyTryBlock = CDseektrack(self->ob_cdplayer, track); in CD_seektrack()
287 if (PyTryBlock == -1) { in CD_seektrack()
292 return PyInt_FromLong(PyTryBlock); in CD_seektrack()
298 unsigned long PyTryBlock; in CD_seekblock() local
300 if (!PyArg_ParseTuple(args, "l:seekblock", &PyTryBlock)) in CD_seekblock()
[all …]
/external/python/cpython2/Include/
Dframeobject.h14 } PyTryBlock; typedef
48 PyTryBlock f_blockstack[CO_MAXBLOCKS]; /* for try and loop blocks */
70 PyAPI_FUNC(PyTryBlock *) PyFrame_BlockPop(PyFrameObject *);
/external/python/cpython3/Include/
Dframeobject.h15 } PyTryBlock; typedef
45 PyTryBlock f_blockstack[CO_MAXBLOCKS]; /* for try and loop blocks */
69 PyAPI_FUNC(PyTryBlock *) PyFrame_BlockPop(PyFrameObject *);
/external/python/cpython3/Objects/
Dframeobject.c354 PyTryBlock *b = &f->f_blockstack[--f->f_iblock]; in frame_setlineno()
798 PyTryBlock *b; in PyFrame_BlockSetup()
807 PyTryBlock *
810 PyTryBlock *b; in PyFrame_BlockPop()
Dlongobject.c116 #define SIGCHECK(PyTryBlock) \ argument
118 if (PyErr_CheckSignals()) PyTryBlock \
/external/python/cpython2/Objects/
Dframeobject.c369 PyTryBlock *b = &f->f_blockstack[--f->f_iblock]; in frame_setlineno()
787 PyTryBlock *b; in PyFrame_BlockSetup()
796 PyTryBlock *
799 PyTryBlock *b; in PyFrame_BlockPop()
Dlongobject.c34 #define SIGCHECK(PyTryBlock) \ argument
38 if (PyErr_CheckSignals()) PyTryBlock \
/external/python/cpython3/Python/
Dceval.c1836 PyTryBlock *b = PyFrame_BlockPop(f); in _PyEval_EvalFrameDefault()
1848 PyTryBlock *b = PyFrame_BlockPop(f); in _PyEval_EvalFrameDefault()
1867 PyTryBlock *b = PyFrame_BlockPop(f); in _PyEval_EvalFrameDefault()
2975 PyTryBlock *block; in _PyEval_EvalFrameDefault()
3364 PyTryBlock *b = &f->f_blockstack[f->f_iblock - 1]; in _PyEval_EvalFrameDefault()
/external/python/cpython2/Python/
Dceval.c2129 PyTryBlock *b = PyFrame_BlockPop(f); in PyEval_EvalFrameEx()
3231 PyTryBlock *b = &f->f_blockstack[f->f_iblock - 1]; in PyEval_EvalFrameEx()