Home | History | Annotate | Download | only in ss

Lines Matching defs:new_table

30 	register ss_data *new_table;
35 new_table = (ss_data *) malloc(sizeof(ss_data));
49 free(new_table);
53 table[sci_idx] = new_table;
55 new_table->subsystem_name = subsystem_name;
56 new_table->subsystem_version = version_string;
57 new_table->argv = (char **)NULL;
58 new_table->current_request = (char *)NULL;
59 new_table->info_dirs = (char **)malloc(sizeof(char *));
60 *new_table->info_dirs = (char *)NULL;
61 new_table->info_ptr = info_ptr;
62 new_table->prompt = malloc((unsigned)strlen(subsystem_name)+4);
63 strcpy(new_table->prompt, subsystem_name);
64 strcat(new_table->prompt, ": ");
66 new_table->abbrev_info = ss_abbrev_initialize("/etc/passwd", code_ptr);
68 new_table->abbrev_info = NULL;
70 new_table->flags.escape_disabled = 0;
71 new_table->flags.abbrevs_disabled = 0;
72 new_table->rqt_tables =
74 *(new_table->rqt_tables) = request_table_ptr;
75 *(new_table->rqt_tables+1) = (ss_request_table *) NULL;
77 new_table->readline_handle = 0;
78 new_table->readline_shutdown = 0;
79 new_table->readline = 0;
80 new_table->add_history = 0;
81 new_table->redisplay = 0;
82 new_table->rl_completion_matches = 0;