Lines Matching defs:nopts
383 size_t nopts = *noptsp;
385 if ((opts = recallocarray(opts, nopts, nopts + 2, /* extra for NULL */
391 *noptsp = nopts + 1;
392 if ((opts[nopts] = calloc(1, sizeof(**opts))) == NULL) {
396 if ((opts[nopts]->name = strdup(name)) == NULL ||
397 (opts[nopts]->value = strdup(value)) == NULL) {
401 opts[nopts]->required = required;
410 size_t nopts = 0;
414 (r = sshsk_add_option(&opts, &nopts, "device", device, 0)) != 0) {
419 (r = sshsk_add_option(&opts, &nopts, "user", user_id, 0)) != 0) {
426 nopts = 0;