Searched refs:PyBytes_AsStringAndSize (Results 1 – 25 of 28) sorted by relevance
12
/third_party/python/Include/ |
D | bytesobject.h | 54 PyAPI_FUNC(int) PyBytes_AsStringAndSize(
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | descriptor_database.cc | 93 if (PyBytes_AsStringAndSize(serialized_pb.get(), &str, &len) < 0) { in GetFileDescriptorProto()
|
D | message_factory.cc | 50 : PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
|
D | descriptor_pool.cc | 56 : PyBytes_AsStringAndSize(ob, (charpp), (sizep))) 585 if (PyBytes_AsStringAndSize(serialized_pb, &message_type, &message_len) < 0) { in AddSerializedFile()
|
D | extension_dict.cc | 59 : PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
|
D | map_container.cc | 118 if (PyBytes_AsStringAndSize(py_string, &value, &value_len) < 0) { in PyStringToSTL()
|
D | message.cc | 97 : PyBytes_AsStringAndSize(ob, (charpp), (sizep))) 808 if (PyBytes_AsStringAndSize(encoded_string.get(), &value, &value_len) < 0) { in CheckAndSetString()
|
D | descriptor_containers.cc | 72 : PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
|
D | descriptor.cc | 63 : PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
|
/third_party/python/Modules/ |
D | spwdmodule.c | 148 if (PyBytes_AsStringAndSize(bytes, &name, NULL) == -1) in spwd_getspnam_impl()
|
D | grpmodule.c | 201 if (PyBytes_AsStringAndSize(bytes, &name_chars, NULL) == -1) in grp_getgrnam_impl()
|
D | pwdmodule.c | 225 if (PyBytes_AsStringAndSize(bytes, &name_chars, NULL) == -1) in pwd_getpwnam_impl()
|
D | nismodule.c | 206 if (PyBytes_AsStringAndSize(bkey, &key, &keylen) == -1) { in nis_match()
|
D | _cursesmodule.c | 380 if (PyBytes_AsStringAndSize(*bytes, &str, NULL) < 0) { in PyCurses_ConvertToString() 390 if (PyBytes_AsStringAndSize(*bytes, &str, NULL) < 0) { in PyCurses_ConvertToString()
|
/third_party/python/Doc/c-api/ |
D | bytes.rst | 157 .. c:function:: int PyBytes_AsStringAndSize(PyObject *obj, char **buffer, Py_ssize_t *length) 170 *obj* is not a bytes object at all, :c:func:`PyBytes_AsStringAndSize`
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 113 PyBytes_AsStringAndSize:int::: 114 PyBytes_AsStringAndSize:PyObject*:obj:0: 115 PyBytes_AsStringAndSize:char**:buffer:: 116 PyBytes_AsStringAndSize:Py_ssize_t*:length::
|
D | stable_abi.dat | 23 function,PyBytes_AsStringAndSize,3.2,
|
/third_party/python/PC/ |
D | python3dll.c | 109 EXPORT_FUNC(PyBytes_AsStringAndSize)
|
/third_party/python/Doc/faq/ |
D | extending.rst | 88 :c:func:`PyBytes_AsStringAndSize` provides a pointer to its value and its
|
/third_party/python/Python/ |
D | fileutils.c | 1246 if (PyBytes_AsStringAndSize(bytes, &cpath, NULL) == -1) { in _Py_stat()
|
D | pystate.c | 1822 if (PyBytes_AsStringAndSize(obj, &shared->bytes, &shared->len) < 0) { in _bytes_shared()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 334 function PyBytes_AsStringAndSize
|
/third_party/flutter/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 786 PyBytes_AsStringAndSize(str, &cstr, &len); in SWIG_Python_str_AsChar() 3068 PyBytes_AsStringAndSize(obj, &cstr, &len); in SWIG_AsCharPtrAndSize()
|
/third_party/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 790 PyBytes_AsStringAndSize(str, &cstr, &len); in SWIG_Python_str_AsChar() 3089 PyBytes_AsStringAndSize(obj, &cstr, &len); in SWIG_AsCharPtrAndSize()
|
/third_party/python/Objects/ |
D | abstract.c | 2953 if (PyBytes_AsStringAndSize(item, &data, NULL) < 0) { in _PySequence_BytesToCharpArray()
|
12