Lines Matching refs:bytes
78 PyObject **bytes);
92 static int nxt_python_write(nxt_python_ctx_t *pctx, PyObject *bytes);
1061 nxt_python_str_buf(PyObject *str, char **buf, uint32_t *len, PyObject **bytes) in nxt_python_str_buf() argument
1066 *bytes = NULL; in nxt_python_str_buf()
1069 *bytes = PyUnicode_AsLatin1String(str); in nxt_python_str_buf()
1070 if (nxt_slow_path(*bytes == NULL)) { in nxt_python_str_buf()
1074 *buf = PyBytes_AS_STRING(*bytes); in nxt_python_str_buf()
1075 *len = PyBytes_GET_SIZE(*bytes); in nxt_python_str_buf()
1312 nxt_python_write(nxt_python_ctx_t *pctx, PyObject *bytes) in nxt_python_write() argument
1318 str_buf = PyBytes_AS_STRING(bytes); in nxt_python_write()
1319 str_length = PyBytes_GET_SIZE(bytes); in nxt_python_write()