Lines Matching defs:cpath
1263 char *cpath;
1270 if (PyBytes_AsStringAndSize(bytes, &cpath, NULL) == -1) {
1275 ret = stat(cpath, statbuf);
1606 char *cpath;
1614 cpath = _Py_EncodeLocaleRaw(path, NULL);
1615 if (cpath == NULL) {
1618 f = fopen(cpath, cmode);
1619 PyMem_RawFree(cpath);
1920 char *cpath;
1927 cpath = _Py_EncodeLocaleRaw(path, NULL);
1928 if (cpath == NULL) {
1932 res = readlink(cpath, cbuf, cbuf_len);
1933 PyMem_RawFree(cpath);
1970 char *cpath;
1975 cpath = _Py_EncodeLocaleRaw(path, NULL);
1976 if (cpath == NULL) {
1980 res = realpath(cpath, cresolved_path);
1981 PyMem_RawFree(cpath);