Home | History | Annotate | Download | only in ui

Lines Matching refs:method

84 UI *UI_new_method(const UI_METHOD *method);
160 UI won't look at those, but will pass them on to the method routines. They
199 Note that the UI_OpenSSL() method completely ignores the user data.
241 /* The method with all the built-in thingies */
245 /* ---------- For method writers ---------- */
246 /* A method contains a number of functions that implement the low level
283 All method functions take a UI as argument. Additionally, the writer and
294 This is only needed by method authors. */
308 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui));
309 int UI_method_set_writer(UI_METHOD *method, int (*writer)(UI *ui, UI_STRING *uis));
310 int UI_method_set_flusher(UI_METHOD *method, int (*flusher)(UI *ui));
311 int UI_method_set_reader(UI_METHOD *method, int (*reader)(UI *ui, UI_STRING *uis));
312 int UI_method_set_closer(UI_METHOD *method, int (*closer)(UI *ui));
313 int (*UI_method_get_opener(UI_METHOD *method))(UI*);
314 int (*UI_method_get_writer(UI_METHOD *method))(UI*,UI_STRING*);
315 int (*UI_method_get_flusher(UI_METHOD *method))(UI*);
316 int (*UI_method_get_reader(UI_METHOD *method))(UI*,UI_STRING*);
317 int (*UI_method_get_closer(UI_METHOD *method))(UI*);
319 /* The following functions are helpers for method writers to access relevant