Home | History | Annotate | Download | only in ss

Lines Matching refs:info

23 static void ss_release_readline(ss_data *info)
26 if (!info->readline_handle)
29 info->readline = 0;
30 info->add_history = 0;
31 info->redisplay = 0;
32 info->rl_completion_matches = 0;
33 dlclose(info->readline_handle);
34 info->readline_handle = 0;
45 ss_data *info = ss_info(sci_idx);
50 if (info->readline_handle)
78 info->readline_handle = handle;
79 info->readline = (char *(*)(const char *))
81 info->add_history = (void (*)(const char *))
83 info->redisplay = (void (*)(void))
85 info->rl_completion_matches = (char **(*)(const char *,
89 *t = info->subsystem_name;
93 info->readline_shutdown = ss_release_readline;