Lines Matching refs:function

105 BIO_meth_get_write_ex() and BIO_meth_set_write_ex() get and set the function
106 used for writing arbitrary length data to the BIO respectively. This function
108 BIO_write(). The parameters for the function have the same meaning as for
112 when the function was set with BIO_meth_set_write_ex().
114 BIO_meth_get_read_ex() and BIO_meth_set_read_ex() get and set the function used
115 for reading arbitrary length data from the BIO respectively. This function will
117 The parameters for the function have the same meaning as for BIO_read_ex().
120 or call BIO_meth_get_read() when the function was set with
123 BIO_meth_get_puts() and BIO_meth_set_puts() get and set the function used for
124 writing a NULL terminated string to the BIO respectively. This function will be
126 the function have the same meaning as for BIO_puts().
128 BIO_meth_get_gets() and BIO_meth_set_gets() get and set the function typically
130 page for more information). This function will be called in response to the
131 application calling BIO_gets(). The parameters for the function have the same
134 BIO_meth_get_ctrl() and BIO_meth_set_ctrl() get and set the function used for
136 more information. This function will be called in response to the application
137 calling BIO_ctrl(). The parameters for the function have the same meaning as for
140 BIO_meth_get_create() and BIO_meth_set_create() get and set the function used
141 for creating a new instance of the BIO respectively. This function will be
143 in a pointer to the current BIO_METHOD. The BIO_new() function will allocate the
145 be passed as a parameter to the function. If a create function is set,
147 L<BIO_set_init(3)> must then be called either by the create function, or later,
148 by a BIO ctrl function, once BIO initialisation is complete.
150 BIO_meth_get_destroy() and BIO_meth_set_destroy() get and set the function used
151 for destroying an instance of a BIO respectively. This function will be
153 to be destroyed is passed as a parameter. The destroy function should be used
155 this function.
158 function used for processing callback ctrl messages in the BIO respectively. See
159 the L<BIO_callback_ctrl(3)> page for more information. This function will be called
161 the function have the same meaning as for BIO_callback_ctrl().
177 The B<BIO_meth_get> functions return the corresponding function pointers.