Home | History | Annotate | Download | only in ss

Lines Matching full:info

25 static void ss_release_readline(ss_data *info)
27 if (!info->readline_handle)
30 info->readline = 0;
31 info->add_history = 0;
32 info->redisplay = 0;
33 info->rl_completion_matches = 0;
34 dlclose(info->readline_handle);
35 info->readline_handle = 0;
46 ss_data *info = ss_info(sci_idx);
51 if (info->readline_handle)
79 info->readline_handle = handle;
80 info->readline = (char *(*)(const char *))
82 info->add_history = (void (*)(const char *))
84 info->redisplay = (void (*)(void))
86 info->rl_completion_matches = (char **(*)(const char *,
90 *t = info->subsystem_name;
94 info->readline_shutdown = ss_release_readline;