Searched defs:opt (Results 1 - 7 of 7) sorted by relevance
/lxc/src/lxc/ |
H A D | arguments.c | 42 const struct option *opt; local 48 for (opt = a_options; opt->name; opt++) { 50 if (!isascii(opt->val)) 54 a_shortopts[i++] = opt->val; 58 if (opt->has_arg == no_argument) 66 if (opt->has_arg == required_argument) 93 const struct option *opt; local 97 for (opt [all...] |
H A D | commands.c | 947 int opt = 1, ret = -1, connection; local 961 SO_PASSCRED, &opt, sizeof(opt))) {
|
H A D | conf.c | 1666 static void parse_mntopt(char *opt, unsigned long *flags, char **data) argument 1670 /* If opt is found in mount_opt, set or clear flags. 1674 if (!strncmp(opt, mo->name, strlen(mo->name))) { 1685 strcat(*data, opt);
|
/lxc/src/lxc/tools/ |
H A D | lxc_init.c | 84 int opt; local 87 while ((opt = getopt_long(argc, argv, "n:l:qP:", options, NULL)) != -1) { 88 switch(opt) {
|
H A D | lxc_unshare.c | 156 int opt, status; local 172 while ((opt = getopt(argc, argv, "s:u:hH:i:dM")) != -1) { 173 switch (opt) {
|
/lxc/src/tests/ |
H A D | concurrent.c | 147 int i, j, iter, opt; local 157 while ((opt = getopt_long(argc, argv, "j:i:t:d:m:qD", options, NULL)) != -1) { 158 switch(opt) {
|
/lxc/src/include/ |
H A D | lxcmntent.c | 175 char *hasmntopt (const struct mntent *mnt, const char *opt) argument 177 const size_t optlen = strlen (opt); 180 while ((p = strstr (rest, opt)) != NULL)
|
Completed in 27 milliseconds