Lines Matching defs:table
2290 zfs_command_t *table;
2307 (void) fprintf(fp, "%-*s ", width, cpp->table[cpp->entry].name);
2460 zfs_command_list(FILE *fp, const char *progname, zfs_command_t *table)
2467 for (i = 0; table[i].func != NULL; i++) {
2468 int cmd_len = strlen(table[i].name);
2476 qsort(table, count, sizeof (zfs_command_t), command_compare);
2483 cp.table = table;
2489 zfs_command_find(const char *command, zfs_command_t *table, int *idx)
2491 for (int i = 0; table[i].func != NULL; i++) {
2492 if (strcmp(command, table[i].name) == 0) {