Lines Matching refs:function
81 BIO_meth_get_write_ex() and BIO_meth_set_write_ex() get and set the function
82 used for writing arbitrary length data to the BIO respectively. This function
84 BIO_write(). The parameters for the function have the same meaning as for
88 when the function was set with BIO_meth_set_write_ex().
90 BIO_meth_get_read_ex() and BIO_meth_set_read_ex() get and set the function used
91 for reading arbitrary length data from the BIO respectively. This function will
93 The parameters for the function have the same meaning as for BIO_read_ex().
96 or call BIO_meth_get_read() when the function was set with
99 BIO_meth_get_puts() and BIO_meth_set_puts() get and set the function used for
100 writing a NULL terminated string to the BIO respectively. This function will be
102 the function have the same meaning as for BIO_puts().
104 BIO_meth_get_gets() and BIO_meth_set_gets() get and set the function typically
106 page for more information). This function will be called in response to the
107 application calling BIO_gets(). The parameters for the function have the same
110 BIO_meth_get_ctrl() and BIO_meth_set_ctrl() get and set the function used for
112 more information. This function will be called in response to the application
113 calling BIO_ctrl(). The parameters for the function have the same meaning as for
116 BIO_meth_get_create() and BIO_meth_set_create() get and set the function used
117 for creating a new instance of the BIO respectively. This function will be
119 in a pointer to the current BIO_METHOD. The BIO_new() function will allocate the
121 be passed as a parameter to the function.
123 BIO_meth_get_destroy() and BIO_meth_set_destroy() get and set the function used
124 for destroying an instance of a BIO respectively. This function will be
126 to be destroyed is passed as a parameter. The destroy function should be used
128 this function.
131 function used for processing callback ctrl messages in the BIO respectively. See
132 the L<BIO_callback_ctrl(3)> page for more information. This function will be called
134 the function have the same meaning as for BIO_callback_ctrl().
145 The B<BIO_meth_get> functions return the corresponding function pointers.