Home
last modified time | relevance | path

Searched refs:BUFMAX (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Modules/_io/
Dwinconsoleio.c41 #define BUFMAX (32*1024*1024) macro
644 if (len > BUFMAX) { in readinto()
645 PyErr_Format(PyExc_ValueError, "cannot read more than %d bytes", BUFMAX); in readinto()
800 if (newsize > BUFMAX) in _io__WindowsConsoleIO_readall_impl()
917 if (size > BUFMAX) { in _io__WindowsConsoleIO_read_impl()
918 PyErr_Format(PyExc_ValueError, "cannot read more than %d bytes", BUFMAX); in _io__WindowsConsoleIO_read_impl()
974 if (b->len > BUFMAX) in _io__WindowsConsoleIO_write_impl()
975 len = BUFMAX; in _io__WindowsConsoleIO_write_impl()
/third_party/ltp/testcases/kernel/syscalls/symlink/
Dsymlink01.c271 #define BUFMAX 512 macro
501 char test_msg[BUFMAX];
1355 TEST(readlink(tc_ptr->fn_arg[0], test_msg, BUFMAX)); in do_EINVAL()