Lines Matching refs:intObj
5004 PyObject *procObj, *pidObj, *intObj, *fileObj[3]; in _PyPopen() local
5012 intObj = PyInt_FromLong((long) file_count); in _PyPopen()
5014 if (procObj && pidObj && intObj) in _PyPopen()
5017 PyList_SetItem(procObj, 1, intObj); in _PyPopen()
5115 PyObject *procObj, *pidObj, *intObj, *fileObj; in _PyPclose() local
5135 (intObj = PyList_GetItem(procObj,1)) != NULL) in _PyPclose()
5138 file_count = (int) PyInt_AsLong(intObj); in _PyPclose()
5750 PyObject *procObj, *hProcessObj, *intObj, *fileObj[3]; in _PyPopen() local
5758 intObj = PyInt_FromLong(file_count); in _PyPopen()
5760 if (procObj && hProcessObj && intObj) { in _PyPopen()
5762 PyList_SetItem(procObj,1,intObj); in _PyPopen()
5868 PyObject *procObj, *hProcessObj, *intObj, *fileObj; in _PyPclose() local
5886 (intObj = PyList_GetItem(procObj,1)) != NULL) { in _PyPclose()
5889 file_count = PyInt_AsLong(intObj); in _PyPclose()