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

/dovecot/src/lib/
H A Dtest-ostream-escaped.c47 const char *partial_input = "\x15!\x01?#&"; local
48 ssize_t ret = o_stream_send_str(os_encode, partial_input);
52 ret += o_stream_send_str(os_encode, partial_input + ret);
53 test_assert(ret == (ssize_t)strlen(partial_input));
H A Dtest-ostream-buffer.c78 const char *partial_input = "01234567890123456789"; local
79 ssize_t ret = o_stream_send_str(output, partial_input);
90 ret += o_stream_send_str(output, partial_input + ret);
91 test_assert(ret == (ssize_t)strlen(partial_input));
97 test_assert(strcmp(str_c(str), partial_input) == 0);

Completed in 10 milliseconds