Home
last modified time | relevance | path

Searched refs:short_opts (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/contrib/openzfs/cmd/
H A Dztest.c826 static char *short_opts = NULL; variable
832 ASSERT3P(short_opts, ==, NULL); in init_options()
837 short_opts = umem_alloc(sizeof (char) * 2 * count, UMEM_NOFAIL); in init_options()
846 short_opts[short_opt_index++] = option_table[i].short_opt; in init_options()
848 short_opts[short_opt_index++] = ':'; in init_options()
859 umem_free(short_opts, sizeof (char) * 2 * count); in fini_options()
862 short_opts = NULL; in fini_options()
969 while ((opt = getopt_long(argc, argv, short_opts, long_opts, in process_options()