Lines Matching defs:out
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
638 static bool DecodeBase64(std::vector<uint8_t> *out, const char *in) {
645 out->resize(len);
646 if (!EVP_DecodeBase64(out->data(), &len, len, (const uint8_t *)in,
651 out->resize(len);
833 // Swap out the ticket for a garbage one.
851 static bool GetClientHello(SSL *ssl, std::vector<uint8_t> *out) {
871 *out = std::vector<uint8_t>(client_hello, client_hello + client_hello_len);
993 std::vector<SSL_SESSION*> *out =
995 out->push_back(session);
2209 out, const SSL_SESSION *session) {
2245 *out = server_session->time;
2733 [](SSL *ssl, const uint8_t **out, uint8_t *out_len, const uint8_t *in,
3352 static int ssl_test_ticket_aead_seal(SSL *ssl, uint8_t *out, size_t *out_len,
3363 OPENSSL_memmove(out, in, in_len);
3364 out[in_len] = 0xff;
3371 SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out_len,
3403 OPENSSL_memmove(out, in, in_len - 1);