Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dreadline.c183 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in read_init_file()
209 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in read_history_file()
238 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in write_history_file()
274 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in append_history_file()
D_posixsubprocess.c648 if (PyUnicode_FSConverter(borrowed_arg, &converted_arg) == 0) in subprocess_fork_exec()
667 if (PyUnicode_FSConverter(cwd_obj, &cwd_obj2) == 0) in subprocess_fork_exec()
D_localemodule.c638 if (!PyUnicode_FSConverter(dirname_obj, &dirname_bytes)) in PyIntl_bindtextdomain()
D_ssl.c3790 if (!PyUnicode_FSConverter(certfile, &certfile_bytes)) { in _ssl__SSLContext_load_cert_chain_impl()
3795 if (keyfile && !PyUnicode_FSConverter(keyfile, &keyfile_bytes)) { in _ssl__SSLContext_load_cert_chain_impl()
3988 if (cafile && !PyUnicode_FSConverter(cafile, &cafile_bytes)) { in _ssl__SSLContext_load_verify_locations_impl()
3993 if (capath && !PyUnicode_FSConverter(capath, &capath_bytes)) { in _ssl__SSLContext_load_verify_locations_impl()
4259 if (!PyUnicode_FSConverter(name, &name_bytes)) in _ssl__SSLContext_set_ecdh_curve()
Dposixmodule.c1033 if (!PyUnicode_FSConverter(o, &bytes)) { in path_converter()
4844 if (!PyUnicode_FSConverter(o, &ub)) in fsconvert_strdup()
4914 if (!PyUnicode_FSConverter(key, &key2)) in parse_envlist()
4916 if (!PyUnicode_FSConverter(val, &val2)) { in parse_envlist()
6337 PyUnicode_FSConverter, &oname, in posix_initgroups()
6341 PyUnicode_FSConverter, &oname, in posix_initgroups()
11650 if (!PyUnicode_FSConverter(self->path, &ub)) in DirEntry_fetch_stat()
Dsocketmodule.c2013 if (!PyArg_ParseTuple(args, "O&", PyUnicode_FSConverter, in getsockaddrarg()
2056 if (!PyArg_ParseTuple(args, "O&kk", PyUnicode_FSConverter, in getsockaddrarg()
2115 PyUnicode_FSConverter, &ctl_name)) { in getsockaddrarg()
5218 PyUnicode_FSConverter, &hnobj))
6515 PyUnicode_FSConverter, &oname))
D_testcapimodule.c1608 if (!PyUnicode_FSConverter(o, (void *)(converted + i))) { in parse_tuple_and_keywords()
2908 PyUnicode_FSConverter, &str1, in argparsing()
/external/python/cpython3/Misc/
Dvalgrind-python.supp456 fun:PyUnicode_FSConverter
478 fun:PyUnicode_FSConverter
DHISTORY12802 - Issue #8485: PyUnicode_FSConverter() doesn't accept byteearray objects
/external/python/cpython3/Modules/clinic/
D_ssl.c.h39 if (!PyArg_Parse(arg, "O&:_test_decode_cert", PyUnicode_FSConverter, &path)) { in _ssl__test_decode_cert()
998 if (!PyArg_Parse(arg, "O&:RAND_egd", PyUnicode_FSConverter, &path)) { in _ssl_RAND_egd()
Dposixmodule.c.h1404 PyUnicode_FSConverter, &command)) { in os_system()
4500 PyUnicode_FSConverter, &name, PyUnicode_FSConverter, &value)) { in os_putenv()
4536 if (!PyArg_Parse(arg, "O&:unsetenv", PyUnicode_FSConverter, &name)) { in os_unsetenv()
/external/python/cpython3/PC/
Dpython3.def679 PyUnicode_FSConverter=python37.PyUnicode_FSConverter
/external/python/cpython3/Modules/_io/
Dfileio.c281 if (!PyUnicode_FSConverter(nameobj, &stringobj)) {
/external/python/cpython3/Lib/test/
Dclinic.test10 b: object(converter="PyUnicode_FSConverter")
39 &a, PyUnicode_FSConverter, &b, &PyUnicode_Type, &c, &d)) {
/external/python/cpython3/Include/
Dunicodeobject.h1820 PyAPI_FUNC(int) PyUnicode_FSConverter(PyObject*, void*);
/external/python/cpython3/Python/
Dfileutils.c1341 if (!PyUnicode_FSConverter(path, &bytes)) in _Py_fopen_obj()
/external/python/cpython3/Doc/data/
Drefcounts.dat2813 PyUnicode_FSConverter:int:::
2814 PyUnicode_FSConverter:PyObject*:obj:0:
2815 PyUnicode_FSConverter:void*:result::
/external/python/cpython3/Modules/_ctypes/
Dcallproc.c1355 if (PyUnicode_FSConverter(name, &name2) == 0) in py_dl_open()
/external/python/cpython3/Modules/_sqlite/
Dconnection.c94 PyUnicode_FSConverter, &database_obj, &timeout, &detect_types, in pysqlite_connection_init()
/external/python/cpython3/Doc/c-api/
Dunicode.rst834 :c:func:`PyUnicode_FSConverter` as the conversion function:
836 .. c:function:: int PyUnicode_FSConverter(PyObject* obj, void* result)
987 :c:func:`PyUnicode_FSConverter` for encoding file names. This uses the
Darg.rst80 preferable to use the ``O&`` format with :c:func:`PyUnicode_FSConverter`
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b1.rst1342 Add support for path-like objects in PyUnicode_FSConverter() &
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1905 * The :c:func:`PyUnicode_FSConverter` and :c:func:`PyUnicode_FSDecoder`
/external/python/cpython3/Objects/
Dunicodeobject.c3699 PyUnicode_FSConverter(PyObject* arg, void* addr) in PyUnicode_FSConverter() function