Home
last modified time | relevance | path

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

12

/external/python/cpython3/Modules/
Dreadline.c232 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in readline_read_init_file_impl()
263 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in readline_read_history_file_impl()
297 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in readline_write_history_file_impl()
338 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in readline_append_history_file_impl()
D_posixsubprocess.c811 if (PyUnicode_FSConverter(borrowed_arg, &converted_arg) == 0) in subprocess_fork_exec()
830 if (PyUnicode_FSConverter(cwd_obj, &cwd_obj2) == 0) in subprocess_fork_exec()
D_localemodule.c729 if (!PyUnicode_FSConverter(dirname_obj, &dirname_bytes)) in _locale_bindtextdomain_impl()
D_ssl.c3836 if (!PyUnicode_FSConverter(certfile, &certfile_bytes)) { in _ssl__SSLContext_load_cert_chain_impl()
3843 if (keyfile && !PyUnicode_FSConverter(keyfile, &keyfile_bytes)) { in _ssl__SSLContext_load_cert_chain_impl()
4047 if (cafile && !PyUnicode_FSConverter(cafile, &cafile_bytes)) { in _ssl__SSLContext_load_verify_locations_impl()
4054 if (capath && !PyUnicode_FSConverter(capath, &capath_bytes)) { in _ssl__SSLContext_load_verify_locations_impl()
4330 if (!PyUnicode_FSConverter(name, &name_bytes)) in _ssl__SSLContext_set_ecdh_curve()
Dsocketmodule.c2126 PyUnicode_FSConverter, &interfaceName)) in getsockaddrarg()
2169 if (!PyArg_ParseTuple(args, "O&kk", PyUnicode_FSConverter, in getsockaddrarg()
2216 if (!PyArg_ParseTuple(args, "O&KIB", PyUnicode_FSConverter, in getsockaddrarg()
2275 PyUnicode_FSConverter, &ctl_name)) { in getsockaddrarg()
5451 PyUnicode_FSConverter, &hnobj))
6795 PyUnicode_FSConverter, &oname))
Dposixmodule.c1237 if (!PyUnicode_FSConverter(o, &bytes)) { in path_converter()
5573 if (!PyUnicode_FSConverter(o, &ub)) in fsconvert_strdup()
5643 if (!PyUnicode_FSConverter(key, &key2)) in parse_envlist()
5645 if (!PyUnicode_FSConverter(val, &val2)) { in parse_envlist()
6063 &tag_obj, &fd, PyUnicode_FSConverter, &path, in parse_file_actions()
13492 if (!PyUnicode_FSConverter(self->path, &ub)) in DirEntry_fetch_stat()
D_testcapimodule.c1773 if (!PyUnicode_FSConverter(o, (void *)(converted + i))) { in parse_tuple_and_keywords()
3417 PyUnicode_FSConverter, &str1, in argparsing()
/external/python/cpython3/Misc/
Dvalgrind-python.supp475 fun:PyUnicode_FSConverter
497 fun:PyUnicode_FSConverter
Dstable_abi.txt1414 function PyUnicode_FSConverter
/external/python/cpython3/Include/
Dunicodeobject.h768 PyAPI_FUNC(int) PyUnicode_FSConverter(PyObject*, void*);
/external/python/cpython3/Modules/_ctypes/
Dcallproc.c1484 if (PyUnicode_FSConverter(name, &name2) == 0) in py_dyld_shared_cache_contains_path()
1520 if (PyUnicode_FSConverter(name, &name2) == 0) in py_dl_open()
/external/python/cpython3/Modules/_io/
Dfileio.c284 if (!PyUnicode_FSConverter(nameobj, &stringobj)) {
/external/python/cpython3/Modules/clinic/
Dposixmodule.c.h1784 if (!PyUnicode_FSConverter(args[0], &command)) { in os_system()
3345 if (!PyUnicode_FSConverter(args[0], &oname)) { in os_initgroups()
3391 if (!PyUnicode_FSConverter(args[0], &oname)) { in os_initgroups()
6353 if (!PyUnicode_FSConverter(args[0], &name)) { in os_putenv()
6356 if (!PyUnicode_FSConverter(args[1], &value)) { in os_putenv()
6428 if (!PyUnicode_FSConverter(arg, &name)) { in os_unsetenv()
7797 if (!PyUnicode_FSConverter(args[0], &name)) { in os_memfd_create()
D_ssl.c.h39 if (!PyUnicode_FSConverter(arg, &path)) { in _ssl__test_decode_cert()
/external/python/cpython3/PC/
Dpython3dll.c665 EXPORT_FUNC(PyUnicode_FSConverter)
/external/python/cpython3/Doc/data/
Dstable_abi.dat729 function,PyUnicode_FSConverter,3.2,
Drefcounts.dat2831 PyUnicode_FSConverter:int:::
2832 PyUnicode_FSConverter:PyObject*:obj:0:
2833 PyUnicode_FSConverter:void*:result::
/external/python/cpython3/Python/
Dfileutils.c1675 if (!PyUnicode_FSConverter(path, &bytes)) in _Py_fopen_obj()
/external/python/cpython3/Modules/_sqlite/
Dconnection.c82 PyUnicode_FSConverter, &database_obj, &timeout, &detect_types, in pysqlite_connection_init()
/external/python/cpython3/Doc/c-api/
Dunicode.rst849 :c:func:`PyUnicode_FSConverter` as the conversion function:
851 .. c:function:: int PyUnicode_FSConverter(PyObject* obj, void* result)
1001 :c:func:`PyUnicode_FSConverter` for encoding file names. This uses the
Darg.rst78 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.c4129 PyUnicode_FSConverter(PyObject* arg, void* addr) in PyUnicode_FSConverter() function

12