Searched defs:outbytes (Results 1 - 2 of 2) sorted by relevance

/external/kernel-headers/original/uapi/linux/
H A Dip_vs.h169 __u64 outbytes; /* outgoing bytes */ member in struct:ip_vs_stats_user
/external/python/cpython3/Objects/
H A Dunicodeobject.c7411 encode_code_page_strict(UINT code_page, PyObject **outbytes, argument
7456 if (*outbytes == NULL) {
7458 *outbytes = PyBytes_FromStringAndSize(NULL, outsize);
7459 if (*outbytes == NULL) {
7463 out = PyBytes_AS_STRING(*outbytes);
7467 const Py_ssize_t n = PyBytes_Size(*outbytes);
7473 if (_PyBytes_Resize(outbytes, n + outsize) < 0) {
7477 out = PyBytes_AS_STRING(*outbytes) + n;
7508 encode_code_page_errors(UINT code_page, PyObject **outbytes, argument
7560 if (*outbytes
7694 PyObject *outbytes = NULL; local
[all...]

Completed in 151 milliseconds