Searched refs:init_buf (Results 1 – 15 of 15) sorted by relevance
/external/boringssl/src/ssl/ |
D | s3_both.c | 510 if (!BUF_MEM_reserve(ssl->init_buf, length)) { in extend_handshake_buffer() 513 while (ssl->init_buf->length < length) { in extend_handshake_buffer() 515 ssl, (uint8_t *)ssl->init_buf->data + ssl->init_buf->length, in extend_handshake_buffer() 516 length - ssl->init_buf->length); in extend_handshake_buffer() 520 ssl->init_buf->length += (size_t)ret; in extend_handshake_buffer() 629 if (!BUF_MEM_reserve(ssl->init_buf, max_v3_client_hello) || in read_v2_client_hello() 630 !CBB_init_fixed(&client_hello, (uint8_t *)ssl->init_buf->data, in read_v2_client_hello() 631 ssl->init_buf->max) || in read_v2_client_hello() 666 !CBB_finish(&client_hello, NULL, &ssl->init_buf->length)) { in read_v2_client_hello() 684 if (ssl->init_buf == NULL) { in ssl3_get_message() [all …]
|
D | s3_pkt.c | 338 int has_hs_data = ssl->init_buf != NULL && ssl->init_buf->length > 0; in ssl3_read_app_data()
|
D | ssl_lib.c | 473 BUF_MEM_free(ssl->init_buf); in SSL_free() 2554 BUF_MEM_free(ssl->init_buf); in SSL_clear() 2555 ssl->init_buf = NULL; in SSL_clear()
|
D | internal.h | 1837 BUF_MEM *init_buf; /* buffer used during init */ in OPENSSL_MSVC_PRAGMA() member
|
/external/ltp/testcases/kernel/syscalls/ipc/msgsnd/ |
D | msgsnd06.c | 108 init_buf(&msg_buf, MSGTYPE, MSGSIZE); in main() 162 init_buf(&msg_buf, MSGTYPE, MSGSIZE); in do_child()
|
D | msgsnd05.c | 182 init_buf(&msg_buf, MSGTYPE, MSGSIZE); in do_child_uclinux() 215 init_buf(&msg_buf, MSGTYPE, MSGSIZE); in setup()
|
D | msgsnd04.c | 136 init_buf(&msg_buf, MSGTYPE, MSGSIZE); in setup()
|
D | msgsnd01.c | 155 init_buf(&msg_buf, MSGTYPE, MSGSIZE); in setup()
|
/external/ltp/testcases/kernel/syscalls/ipc/msgrcv/ |
D | msgrcv01.c | 157 init_buf(&cmp_buf, MSGTYPE, MSGSIZE); in do_child() 196 init_buf(&snd_buf, MSGTYPE, MSGSIZE); in setup()
|
D | msgrcv04.c | 162 init_buf(&snd_buf, MSGTYPE, MSGSIZE); in setup()
|
D | msgrcv02.c | 177 init_buf(&snd_buf, MSGTYPE, MSGSIZE); in setup()
|
/external/ltp/testcases/kernel/syscalls/ipc/lib/ |
D | ipcmsg.h | 59 void init_buf(MSGBUF *, int, int);
|
D | libipc.c | 100 void init_buf(MSGBUF * m_buf, int type, int size) in init_buf() function
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | socket_ops.hpp | 113 ASIO_DECL void init_buf(buf& b, void* data, size_t size); 115 ASIO_DECL void init_buf(buf& b, const void* data, size_t size);
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
D | socket_ops.ipp | 529 void init_buf(buf& b, void* data, size_t size) 535 void init_buf(buf& b, const void* data, size_t size)
|