Home
last modified time | relevance | path

Searched refs:UI (Results 1 – 25 of 328) sorted by relevance

12345678910>>...14

/netbsd/crypto/external/bsd/openssl.old/dist/include/openssl/
H A Dui.h42 UI *UI_new(void);
43 UI *UI_new_method(const UI_METHOD *method);
44 void UI_free(UI *ui);
152 char *UI_construct_prompt(UI *ui_method,
174 void *UI_get0_user_data(UI *ui);
177 const char *UI_get0_result(UI *ui, int i);
178 int UI_get_result_length(UI *ui, int i);
181 int UI_process(UI *ui);
211 void *UI_get_ex_data(UI *r, int idx);
216 const UI_METHOD *UI_get_method(UI *ui);
[all …]
/netbsd/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DUI_new.pod5 UI,
19 typedef struct ui_st UI;
21 UI *UI_new(void);
23 void UI_free(UI *ui);
51 void *UI_get0_user_data(UI *ui);
56 int UI_process(UI *ui);
62 const UI_METHOD *UI_get_method(UI *ui);
99 UI_new() creates a new UI using the default UI method. When done with
102 UI_new_method() creates a new UI using the given UI method. When done with
197 UI_get_method() returns the UI method associated with a given UI.
[all …]
H A DUI_create_method.pod26 int (*writer) (UI *ui, UI_STRING *uis));
29 int (*reader) (UI *ui, UI_STRING *uis));
41 int (*UI_method_get_opener(const UI_METHOD *method)) (UI *);
43 int (*UI_method_get_flusher(const UI_METHOD *method)) (UI *);
45 int (*UI_method_get_closer(const UI_METHOD *method)) (UI *);
47 (UI *, const char *, const char *);
67 This function takes a reference to a UI and a UI String, and writes
82 This function takes a reference to a UI and a UI string and reads off
128 For every UI String associated with the UI, call the writer function
139 For every UI String associated with the UI, call the reader function
[all …]
H A DUI_STRING.pod36 int UI_set_result(UI *ui, UI_STRING *uis, const char *result);
82 For B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, this sets the
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
111 UI_get0_result_string() returns the UI string result buffer for
119 UI_get0_test_string() returns the UI string action description
123 the UI string for B<UIT_PROMPT> and B<UIT_VERIFY> type strings,
127 the UI string for B<UIT_PROMPT> and B<UIT_VERIFY> type strings,
[all …]
/netbsd/crypto/external/bsd/openssl/dist/doc/man3/
H A DUI_new.pod5 UI,
19 typedef struct ui_st UI;
21 UI *UI_new(void);
23 void UI_free(UI *ui);
51 void *UI_get0_user_data(UI *ui);
56 int UI_process(UI *ui);
62 const UI_METHOD *UI_get_method(UI *ui);
99 UI_new() creates a new UI using the default UI method. When done with
102 UI_new_method() creates a new UI using the given UI method. When done with
199 UI_get_method() returns the UI method associated with a given UI.
[all …]
H A DUI_create_method.pod26 int (*writer) (UI *ui, UI_STRING *uis));
29 int (*reader) (UI *ui, UI_STRING *uis));
41 int (*UI_method_get_opener(const UI_METHOD *method)) (UI *);
43 int (*UI_method_get_flusher(const UI_METHOD *method)) (UI *);
45 int (*UI_method_get_closer(const UI_METHOD *method)) (UI *);
47 (UI *, const char *, const char *);
67 This function takes a reference to a UI and a UI String, and writes
82 This function takes a reference to a UI and a UI string and reads off
128 For every UI String associated with the UI, call the writer function
139 For every UI String associated with the UI, call the reader function
[all …]
H A DUI_STRING.pod36 int UI_set_result(UI *ui, UI_STRING *uis, const char *result);
82 For B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, this sets the
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
111 UI_get0_result_string() returns the UI string result buffer for
119 UI_get0_test_string() returns the UI string action description
123 the UI string for B<UIT_PROMPT> and B<UIT_VERIFY> type strings,
127 the UI string for B<UIT_PROMPT> and B<UIT_VERIFY> type strings,
[all …]
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/ui/
H A Dui_lib.c18 UI *UI_new(void) in UI_new()
23 UI *UI_new_method(const UI_METHOD *method) in UI_new_method()
25 UI *ret = OPENSSL_zalloc(sizeof(*ret)); in UI_new_method()
73 void UI_free(UI *ui) in UI_free()
86 static int allocate_string_stack(UI *ui) in allocate_string_stack()
427 void *UI_get0_user_data(UI *ui) in UI_get0_user_data()
445 int UI_get_result_length(UI *ui, int i) in UI_get_result_length()
472 int UI_process(UI *ui) in UI_process()
581 void *UI_get_ex_data(UI *r, int idx) in UI_get_ex_data()
586 const UI_METHOD *UI_get_method(UI *ui) in UI_get_method()
[all …]
H A Dui_local.h31 int (*ui_open_session) (UI *ui);
32 int (*ui_write_string) (UI *ui, UI_STRING *uis);
37 int (*ui_flush) (UI *ui);
38 int (*ui_read_string) (UI *ui, UI_STRING *uis);
39 int (*ui_close_session) (UI *ui);
44 void *(*ui_duplicate_data) (UI *ui, void *ui_data);
45 void (*ui_destroy_data) (UI *ui, void *ui_data);
53 char *(*ui_construct_prompt) (UI *ui, const char *object_desc,
H A Dui_openssl.c195 static int read_string(UI *ui, UI_STRING *uis);
198 static int open_console(UI *ui);
199 static int echo_console(UI *ui);
200 static int noecho_console(UI *ui);
201 static int close_console(UI *ui);
207 static int write_string(UI *ui, UI_STRING *uis) in write_string()
224 static int read_string(UI *ui, UI_STRING *uis) in read_string()
377 static int open_console(UI *ui) in open_console()
494 static int noecho_console(UI *ui) in noecho_console()
536 static int echo_console(UI *ui) in echo_console()
[all …]
H A Dui_util.c36 UI *ui; in UI_UTIL_read_pw()
99 static int ui_open(UI *ui) in ui_open()
103 static int ui_read(UI *ui, UI_STRING *uis) in ui_read()
133 static int ui_write(UI *ui, UI_STRING *uis) in ui_write()
137 static int ui_close(UI *ui) in ui_close()
/netbsd/crypto/external/bsd/openssl/dist/crypto/ui/
H A Dui_lib.c18 UI *UI_new(void) in UI_new()
23 UI *UI_new_method(const UI_METHOD *method) in UI_new_method()
25 UI *ret = OPENSSL_zalloc(sizeof(*ret)); in UI_new_method()
73 void UI_free(UI *ui) in UI_free()
86 static int allocate_string_stack(UI *ui) in allocate_string_stack()
146 static int general_allocate_boolean(UI *ui, in general_allocate_boolean()
426 void *UI_get0_user_data(UI *ui) in UI_get0_user_data()
444 int UI_get_result_length(UI *ui, int i) in UI_get_result_length()
471 int UI_process(UI *ui) in UI_process()
587 const UI_METHOD *UI_get_method(UI *ui) in UI_get_method()
[all …]
H A Dui_local.h31 int (*ui_open_session) (UI *ui);
32 int (*ui_write_string) (UI *ui, UI_STRING *uis);
37 int (*ui_flush) (UI *ui);
38 int (*ui_read_string) (UI *ui, UI_STRING *uis);
39 int (*ui_close_session) (UI *ui);
44 void *(*ui_duplicate_data) (UI *ui, void *ui_data);
45 void (*ui_destroy_data) (UI *ui, void *ui_data);
53 char *(*ui_construct_prompt) (UI *ui, const char *object_desc,
H A Dui_openssl.c191 static int read_string(UI *ui, UI_STRING *uis);
194 static int open_console(UI *ui);
195 static int echo_console(UI *ui);
196 static int noecho_console(UI *ui);
197 static int close_console(UI *ui);
203 static int write_string(UI *ui, UI_STRING *uis) in write_string()
220 static int read_string(UI *ui, UI_STRING *uis) in read_string()
373 static int open_console(UI *ui) in open_console()
485 static int noecho_console(UI *ui) in noecho_console()
521 static int echo_console(UI *ui) in echo_console()
[all …]
H A Dui_util.c36 UI *ui; in UI_UTIL_read_pw()
99 static int ui_open(UI *ui) in ui_open()
103 static int ui_read(UI *ui, UI_STRING *uis) in ui_read()
133 static int ui_write(UI *ui, UI_STRING *uis) in ui_write()
137 static int ui_close(UI *ui) in ui_close()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp44 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) { in getOffsetOfLSDA() argument
46 - reinterpret_cast<const char*>(&UI); in getOffsetOfLSDA()
240 if (UI.getFrameRegister() == 0) in printUnwindCode()
278 SW.printNumber("Version", UI.getVersion()); in printUnwindInfo()
280 SW.printNumber("PrologSize", UI.PrologSize); in printUnwindInfo()
281 if (UI.getFrameRegister()) { in printUnwindInfo()
290 SW.printNumber("UnwindCodeCount", UI.NumCodes); in printUnwindInfo()
293 ArrayRef<UnwindCode> UC(&UI.UnwindCodes[0], UI.NumCodes); in printUnwindInfo()
301 printUnwindCode(UI, makeArrayRef(UCI, UCE)); in printUnwindInfo()
311 } else if (UI.getFlags() & UNW_ChainInfo) { in printUnwindInfo()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSpeculateAroundPHIs.cpp65 if (UI->getParent() != PhiBB) { in isSafeToSpeculatePHIUsers()
84 if (mayBeMemoryDependent(*UI)) { in isSafeToSpeculatePHIUsers()
92 Visited.insert(UI); in isSafeToSpeculatePHIUsers()
93 DFSStack.push_back({UI, UI->value_op_begin()}); in isSafeToSpeculatePHIUsers()
155 UI = OpI; in isSafeToSpeculatePHIUsers()
161 PotentialSpecSet.insert(UI); in isSafeToSpeculatePHIUsers()
356 if (IsVisited(UI)) in visitPHIUsersAndDepsInPostOrder()
362 DFSStack.push_back({UI, UI->value_op_begin()}); in visitPHIUsersAndDepsInPostOrder()
380 UI = OpI; in visitPHIUsersAndDepsInPostOrder()
386 Visit(UI); in visitPHIUsersAndDepsInPostOrder()
[all …]
/netbsd/crypto/external/bsd/openssl/dist/include/openssl/
H A Dui.h.in54 UI *UI_new(void);
55 UI *UI_new_method(const UI_METHOD *method);
56 void UI_free(UI *ui);
165 char *UI_construct_prompt(UI *ui_method,
187 void *UI_get0_user_data(UI *ui);
191 int UI_get_result_length(UI *ui, int i);
194 int UI_process(UI *ui);
199 * used to get information from a UI.
229 const UI_METHOD *UI_get_method(UI *ui);
282 them back into the UI strings.
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonOptimizeSZextends.cpp77 for (auto UI = Arg.use_begin(); UI != Arg.use_end();) { in runOnFunction() local
78 if (isa<SExtInst>(*UI)) { in runOnFunction()
79 Instruction* Use = cast<Instruction>(*UI); in runOnFunction()
83 ++UI; in runOnFunction()
89 ++UI; in runOnFunction()
131 for (auto UI = Ashr->user_begin(), UE = Ashr->user_end(); in runOnFunction() local
132 UI != UE; ++UI) { in runOnFunction()
133 const Use &TheUse = UI.getUse(); in runOnFunction()
/netbsd/external/bsd/tcpdump/dist/tests/
H A Dq933-heapoverflow-2.out2 UI 00! Q.922, hdr-len 4, DLCI 5769024, Flags [none], NLPID unknown (0x11), length 41:
5 UI 00! Q.922, hdr-len 4, DLCI 5769024, Flags [none], NLPID unknown (0x14), length 160:
8 UI 00! Q.922, hdr-len 4, DLCI 5801792, Flags [none], NLPID unknown (0x11), length 179:
11 UI 00! Q.922, hdr-len 4, DLCI 5769024, Flags [none], NLPID unknown (0x14), length 30:
14 UI 00! Q.922, hdr-len 4, DLCI 1856, Flags [none], NLPID unknown (0x11), length 85:
18 UI 00! Q.922, hdr-len 4, DLCI 526144, Flags [none], NLPID unknown (0x14), length 46:
21 UI 2c! Pad! Q.922, hdr-len 2, DLCI 288, Flags [none], NLPID NULL (0x00), length 24:
24 UI 2c! Pad! Q.933, CCITT, codeset 0[|q.933]
H A Desis_snpa_asan-4.out1 UI 22! ES-IS, length 65565
6 UI 22! ES-IS, length 65565
11 UI 32! ES-IS, length 65565
16 UI 22! ES-IS, length 4244701213
/netbsd/crypto/external/bsd/openssl/dist/apps/lib/
H A Dapps_ui.c18 static int ui_open(UI *ui) in ui_open()
20 int (*opener)(UI *ui) = UI_method_get_opener(ui_base_method); in ui_open()
27 static int ui_read(UI *ui, UI_STRING *uis) in ui_read()
29 int (*reader)(UI *ui, UI_STRING *uis) = NULL; in ui_read()
62 static int ui_write(UI *ui, UI_STRING *uis) in ui_write()
64 int (*writer)(UI *ui, UI_STRING *uis) = NULL; in ui_write()
93 static int ui_close(UI *ui) in ui_close()
95 int (*closer)(UI *ui) = UI_method_get_closer(ui_base_method); in ui_close()
103 static char *ui_prompt_construct(UI *ui, const char *phrase_desc, in ui_prompt_construct()
167 UI *ui; in password_callback()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp488 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { in printWin64EHUnwindInfo() argument
493 outs() << " Flags: " << static_cast<int>(UI->getFlags()); in printWin64EHUnwindInfo()
494 if (UI->getFlags()) { in printWin64EHUnwindInfo()
495 if (UI->getFlags() & UNW_ExceptionHandler) in printWin64EHUnwindInfo()
497 if (UI->getFlags() & UNW_TerminateHandler) in printWin64EHUnwindInfo()
499 if (UI->getFlags() & UNW_ChainInfo) in printWin64EHUnwindInfo()
506 if (UI->getFrameRegister()) { in printWin64EHUnwindInfo()
515 } else if (UI->getFlags() & UNW_ChainInfo) { in printWin64EHUnwindInfo()
519 if (UI->NumCodes) in printWin64EHUnwindInfo()
522 printAllUnwindCodes(makeArrayRef(&UI->UnwindCodes[0], UI->NumCodes)); in printWin64EHUnwindInfo()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/tools/opt/
H A DAnalysisWrappers.cpp39 Instruction *UI = dyn_cast<Instruction>(U); in runOnModule() local
40 if (!UI) continue; in runOnModule()
42 CallBase *CB = dyn_cast<CallBase>(UI); in runOnModule()
53 errs() << *UI; in runOnModule()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DValue.h171 use_iterator_impl<Use> UI; variable
172 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl()
184 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; }
191 ++UI;
203 return UI->getUser();
209 return user_iterator_impl<const UserTy>(*UI);
212 Use &getUse() const { return *UI; } in getUse()
321 for (use_iterator UI = use_begin(), E = use_end(); UI != E;) { in replaceUsesWithIf() local
322 Use &U = *UI; in replaceUsesWithIf()
323 ++UI; in replaceUsesWithIf()

12345678910>>...14