• Home
  • Raw
  • Download

Lines Matching +full:no +full:- +full:ui

10 - User interface string parsing
14 #include <openssl/ui.h>
22 UIT_BOOLEAN, /* Prompt for a yes/no response */
36 int UI_set_result(UI *ui, UI_STRING *uis, const char *result);
37 int UI_set_result_ex(UI *ui, UI_STRING *uis, const char *result, int len);
41 The B<UI_STRING> gets created internally and added to a B<UI> whenever
47 For a B<UI_METHOD> user, there's no need to know more.
69 and UI_get_result_string_length() returns -1.
79 For all other B<UI_STRING> types, -1 is returned.
82 For B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, this sets the
86 For B<UIT_BOOLEAN> type UI strings, this sets the first character of
102 UI_get_string_type() returns the UI string type.
104 UI_get_input_flags() returns the UI string flags.
106 UI_get0_output_string() returns the UI string output string.
108 UI_get0_action_string() returns the UI string action description
109 string for B<UIT_BOOLEAN> type UI strings, NULL for any other type.
111 UI_get0_result_string() returns the UI string result buffer for
112 B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, NULL for any other
115 UI_get_result_string_length() returns the UI string result buffer's
116 content length for B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings,
117 -1 for any other type.
119 UI_get0_test_string() returns the UI string action description
120 string for B<UIT_VERIFY> type UI strings, NULL for any other type.
123 the UI string for B<UIT_PROMPT> and B<UIT_VERIFY> type strings,
124 -1 for any other type.
127 the UI string for B<UIT_PROMPT> and B<UIT_VERIFY> type strings,
128 -1 for any other type.
130 UI_set_result() returns 0 on success or when the UI string is of any
131 type other than B<UIT_PROMPT>, B<UIT_VERIFY> or B<UIT_BOOLEAN>, -1 on
136 L<UI(3)>
140 Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.