Searched refs:PyOS_vsnprintf (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython2/Python/ |
D | mysnprintf.c | 48 rc = PyOS_vsnprintf(str, size, format, va); in PyOS_snprintf() 54 PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va) in PyOS_vsnprintf() function
|
D | sysmodule.c | 1765 const int written = PyOS_vsnprintf(buffer, sizeof(buffer), in mywrite()
|
/external/python/cpython3/Python/ |
D | mysnprintf.c | 49 rc = PyOS_vsnprintf(str, size, format, va); in PyOS_snprintf() 55 PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va) in PyOS_vsnprintf() function
|
D | sysmodule.c | 3255 written = PyOS_vsnprintf(buffer, sizeof(buffer), format, va); in sys_write()
|
/external/python/cpython3/Doc/c-api/ |
D | conversion.rst | 17 .. c:function:: int PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va) 23 :c:func:`PyOS_snprintf` and :c:func:`PyOS_vsnprintf` wrap the Standard C library
|
/external/python/cpython2/Doc/c-api/ |
D | conversion.rst | 17 .. c:function:: int PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va) 23 :c:func:`PyOS_snprintf` and :c:func:`PyOS_vsnprintf` wrap the Standard C library
|
/external/python/cpython3/Include/ |
D | pyerrors.h | 314 PyAPI_FUNC(int) PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va)
|
/external/python/cpython2/Include/ |
D | pyerrors.h | 323 PyAPI_FUNC(int) PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va)
|
/external/python/cpython3/Modules/_ctypes/ |
D | callbacks.c | 89 PyOS_vsnprintf(buf, sizeof(buf), msg, marker); in PrintError()
|
/external/python/cpython3/PC/ |
D | python3.def | 444 PyOS_vsnprintf=python39.PyOS_vsnprintf
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 1011 "PyOS_vsnprintf"
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.2.rst | 1114 * Two new wrapper functions, :c:func:`PyOS_snprintf` and :c:func:`PyOS_vsnprintf`
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.2.rst | 1114 * Two new wrapper functions, :c:func:`PyOS_snprintf` and :c:func:`PyOS_vsnprintf`
|
/external/python/cpython2/Misc/ |
D | HISTORY | 7173 - Two new APIs PyOS_snprintf() and PyOS_vsnprintf() were added
|
/external/python/cpython3/Misc/ |
D | HISTORY | 24552 - Two new APIs PyOS_snprintf() and PyOS_vsnprintf() were added
|