Home | History | Annotate | Download | only in ss

Lines Matching defs:new_table

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