Lines Matching defs:new_table
26 register ss_data *new_table;
31 new_table = (ss_data *) malloc(sizeof(ss_data));
43 table[sci_idx] = new_table;
45 new_table->subsystem_name = subsystem_name;
46 new_table->subsystem_version = version_string;
47 new_table->argv = (char **)NULL;
48 new_table->current_request = (char *)NULL;
49 new_table->info_dirs = (char **)malloc(sizeof(char *));
50 *new_table->info_dirs = (char *)NULL;
51 new_table->info_ptr = info_ptr;
53 new_table->prompt = malloc((unsigned)strlen(subsystem_name)+3);
54 strcpy(new_table->prompt, subsystem_name);
55 strcat(new_table->prompt, ": ");
57 new_table->abbrev_info = ss_abbrev_initialize("/etc/passwd", code_ptr);
59 new_table->abbrev_info = NULL;
61 new_table->flags.escape_disabled = 0;
62 new_table->flags.abbrevs_disabled = 0;
63 new_table->rqt_tables =
65 *(new_table->rqt_tables) = request_table_ptr;
66 *(new_table->rqt_tables+1) = (ss_request_table *) NULL;