Searched refs:optvalue (Results 1 – 3 of 3) sorted by relevance
72 if (self->optvalue) { in argparse_getvalue()73 *(const char **)opt->value = self->optvalue; in argparse_getvalue()74 self->optvalue = NULL; in argparse_getvalue()84 if (self->optvalue) { in argparse_getvalue()85 *(int *)opt->value = strtol(self->optvalue, (char **)&s, 0); // NOLINT in argparse_getvalue()86 self->optvalue = NULL; in argparse_getvalue()100 if (self->optvalue) { in argparse_getvalue()101 *(float *)opt->value = strtof(self->optvalue, (char **)&s); // NOLINT in argparse_getvalue()102 self->optvalue = NULL; in argparse_getvalue()147 if (options->short_name == *self->optvalue) { in argparse_short_opt()[all …]
557 int optvalue = 0; in test_detach_bpf() local560 &optvalue, sizeof(optvalue)); in test_detach_bpf()565 &optvalue, sizeof(optvalue)); in test_detach_bpf()
105 const char *optvalue; // current option value member