Lines Matching defs:table
371 char **table;
377 * message to he table.
383 char **table = sumarg->table;
390 (void) strcat(*table, "\n");
391 (void) sprintf(&((*table)[strlen(*table)]),
399 * the rcm_info_t data in the form of a table to the given character pointer.
402 pci_rcm_info_table(hp_node_t node, char **table)
419 if (table == NULL)
422 /* Set localized table header strings */
456 /* Allocate space for the table */
458 if (*table == NULL) {
460 *table = calloc(table_size, sizeof (char));
461 if (*table == NULL)
464 newtable = realloc(*table, strlen(*table) + table_size);
468 *table = newtable;
471 /* Place a table header into the string */
474 (void) strcat(*table, "\n");
477 (void) strcat(*table, " ");
478 (void) strcat(*table, rsrc);
480 (void) strcat(*table, " ");
483 (void) strcat(*table, " ");
486 (void) strcat(*table, " ");
487 (void) strcat(*table, info);
489 (void) strcat(*table, " ");
491 (void) strcat(*table, "\n");
493 (void) strcat(*table, "-");
494 (void) strcat(*table, " ");
496 (void) strcat(*table, "-");
502 /* Add the tuples to the table string */
503 sumarg.table = table;