Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dreadline.c187 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in read_init_file()
213 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in read_history_file()
242 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in write_history_file()
278 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in append_history_file()
D_posixsubprocess.c727 if (PyUnicode_FSConverter(borrowed_arg, &converted_arg) == 0) in subprocess_fork_exec()
746 if (PyUnicode_FSConverter(cwd_obj, &cwd_obj2) == 0) in subprocess_fork_exec()
D_localemodule.c670 if (!PyUnicode_FSConverter(dirname_obj, &dirname_bytes)) in PyIntl_bindtextdomain()
Dsocketmodule.c2171 PyUnicode_FSConverter, &interfaceName)) in getsockaddrarg()
2214 if (!PyArg_ParseTuple(args, "O&kk", PyUnicode_FSConverter, in getsockaddrarg()
2261 if (!PyArg_ParseTuple(args, "O&KkB", PyUnicode_FSConverter, in getsockaddrarg()
2320 PyUnicode_FSConverter, &ctl_name)) { in getsockaddrarg()
5502 PyUnicode_FSConverter, &hnobj))
6866 PyUnicode_FSConverter, &oname))
D_ssl.c3984 if (!PyUnicode_FSConverter(certfile, &certfile_bytes)) { in _ssl__SSLContext_load_cert_chain_impl()
3991 if (keyfile && !PyUnicode_FSConverter(keyfile, &keyfile_bytes)) { in _ssl__SSLContext_load_cert_chain_impl()
4186 if (cafile && !PyUnicode_FSConverter(cafile, &cafile_bytes)) { in _ssl__SSLContext_load_verify_locations_impl()
4193 if (capath && !PyUnicode_FSConverter(capath, &capath_bytes)) { in _ssl__SSLContext_load_verify_locations_impl()
4470 if (!PyUnicode_FSConverter(name, &name_bytes)) in _ssl__SSLContext_set_ecdh_curve()
Dposixmodule.c1174 if (!PyUnicode_FSConverter(o, &bytes)) { in path_converter()
5446 if (!PyUnicode_FSConverter(o, &ub)) in fsconvert_strdup()
5516 if (!PyUnicode_FSConverter(key, &key2)) in parse_envlist()
5518 if (!PyUnicode_FSConverter(val, &val2)) { in parse_envlist()
5928 &tag_obj, &fd, PyUnicode_FSConverter, &path, in parse_file_actions()
13237 if (!PyUnicode_FSConverter(self->path, &ub)) in DirEntry_fetch_stat()
D_testcapimodule.c1643 if (!PyUnicode_FSConverter(o, (void *)(converted + i))) { in parse_tuple_and_keywords()
3269 PyUnicode_FSConverter, &str1, in argparsing()
/external/python/cpython3/Misc/
Dvalgrind-python.supp475 fun:PyUnicode_FSConverter
497 fun:PyUnicode_FSConverter
DHISTORY12802 - Issue #8485: PyUnicode_FSConverter() doesn't accept byteearray objects
/external/python/cpython3/Include/
Dunicodeobject.h748 PyAPI_FUNC(int) PyUnicode_FSConverter(PyObject*, void*);
/external/python/cpython3/Modules/clinic/
D_ssl.c.h39 if (!PyUnicode_FSConverter(arg, &path)) { in _ssl__test_decode_cert()
1230 if (!PyUnicode_FSConverter(arg, &path)) { in _ssl_RAND_egd()
Dposixmodule.c.h1795 if (!PyUnicode_FSConverter(args[0], &command)) { in os_system()
3411 if (!PyUnicode_FSConverter(args[0], &oname)) { in os_initgroups()
3462 if (!PyUnicode_FSConverter(args[0], &oname)) { in os_initgroups()
6593 if (!PyUnicode_FSConverter(args[0], &name)) { in os_putenv()
6596 if (!PyUnicode_FSConverter(args[1], &value)) { in os_putenv()
6668 if (!PyUnicode_FSConverter(arg, &name)) { in os_unsetenv()
8028 if (!PyUnicode_FSConverter(args[0], &name)) { in os_memfd_create()
/external/python/cpython3/Modules/_ctypes/
Dcallproc.c1478 if (PyUnicode_FSConverter(name, &name2) == 0) in py_dyld_shared_cache_contains_path()
1514 if (PyUnicode_FSConverter(name, &name2) == 0) in py_dl_open()
/external/python/cpython3/PC/
Dpython3.def679 PyUnicode_FSConverter=python39.PyUnicode_FSConverter
/external/python/cpython3/Modules/_io/
Dfileio.c283 if (!PyUnicode_FSConverter(nameobj, &stringobj)) {
/external/python/cpython3/Doc/data/
Drefcounts.dat2854 PyUnicode_FSConverter:int:::
2855 PyUnicode_FSConverter:PyObject*:obj:0:
2856 PyUnicode_FSConverter:void*:result::
/external/python/cpython3/Python/
Dfileutils.c1474 if (!PyUnicode_FSConverter(path, &bytes)) in _Py_fopen_obj()
/external/python/cpython3/Modules/_sqlite/
Dconnection.c92 PyUnicode_FSConverter, &database_obj, &timeout, &detect_types, in pysqlite_connection_init()
/external/python/cpython3/Doc/c-api/
Dunicode.rst862 :c:func:`PyUnicode_FSConverter` as the conversion function:
864 .. c:function:: int PyUnicode_FSConverter(PyObject* obj, void* result)
1015 :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/Lib/test/
Dclinic.test11 b: object(converter="PyUnicode_FSConverter")
43 if (!PyUnicode_FSConverter(args[1], &b)) {
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1905 * The :c:func:`PyUnicode_FSConverter` and :c:func:`PyUnicode_FSDecoder`
/external/python/cpython3/Objects/
Dunicodeobject.c3931 PyUnicode_FSConverter(PyObject* arg, void* addr) in PyUnicode_FSConverter() function