Lines Matching defs:text
313 int UI_add_info_string(UI *ui, const char *text)
315 return general_allocate_string(ui, text, 0, UIT_INFO, 0, NULL, 0, 0,
319 int UI_dup_info_string(UI *ui, const char *text)
323 if (text != NULL) {
324 text_copy = OPENSSL_strdup(text);
335 int UI_add_error_string(UI *ui, const char *text)
337 return general_allocate_string(ui, text, 0, UIT_ERROR, 0, NULL, 0, 0,
341 int UI_dup_error_string(UI *ui, const char *text)
345 if (text != NULL) {
346 text_copy = OPENSSL_strdup(text);