Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dposixmodule.c4658 static int _PyPclose(FILE *file);
4973 if ((p_f[0] = PyFile_FromFile(p_s[0], cmdstring, wr_mode, _PyPclose)) != NULL) in _PyPopen()
4975 if ((p_f[1] = PyFile_FromFile(p_s[1], cmdstring, rd_mode, _PyPclose)) != NULL) in _PyPopen()
4979 if ((p_f[2] = PyFile_FromFile(p_s[2], cmdstring, rd_mode, _PyPclose)) != NULL) in _PyPopen()
5110 static int _PyPclose(FILE *file) in _PyPclose() function
5219 static int _PyPclose(FILE *file);
5607 f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose); in _PyPopen()
5618 f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose); in _PyPopen()
5629 f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose); in _PyPopen()
5640 f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose); in _PyPopen()
[all …]