Home | History | Annotate | Download | only in ss

Lines Matching refs:new_table

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