Home
last modified time | relevance | path

Searched refs:opt (Results 1 – 25 of 29) sorted by relevance

12

/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/statfs/
A Dinternal_statvfs.c81 char *opt; variable
83 while ((opt = strsep (&cp, ",")) != NULL)
84 if (strcmp (opt, "ro") == 0)
86 else if (strcmp (opt, "nosuid") == 0)
89 else if (strcmp (opt, "noexec") == 0)
91 else if (strcmp (opt, "nodev") == 0)
93 else if (strcmp (opt, "sync") == 0)
95 else if (strcmp (opt, "mand") == 0)
97 else if (strcmp (opt, "noatime") == 0)
99 else if (strcmp (opt, "nodiratime") == 0)
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/unistd/
A Dgetsubopt-susv3.c11 int getsubopt(char **opt, char *const *keys, char **val) in getsubopt() argument
13 char *s = *opt; in getsubopt()
17 *opt = strchr(s, ','); in getsubopt()
18 if (*opt) *(*opt)++ = 0; in getsubopt()
19 else *opt = s + strlen(s); in getsubopt()
A Dgetopt_long-simple.c21 char *opt = argv[optind]+2; in __getopt_long() local
22 while (*name && *name++ == *opt++); in __getopt_long()
23 if (*name || (*opt && *opt != '=')) continue; in __getopt_long()
24 if (*opt == '=') { in __getopt_long()
26 optarg = opt+1; in __getopt_long()
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/locale/programs/
A Dcategories.def225 DEFINE_ELEMENT (ERA, "era", opt, stringlist, 0, 100)
226 DEFINE_ELEMENT (ERA_YEAR, "era_year", opt, string)
227 DEFINE_ELEMENT (ERA_D_FMT, "era_d_fmt", opt, string)
229 DEFINE_ELEMENT (ERA_D_T_FMT, "era_d_t_fmt", opt, string)
230 DEFINE_ELEMENT (ERA_T_FMT, "era_t_fmt", opt, string)
243 DEFINE_ELEMENT (_NL_WERA_YEAR, "wide-era_year", opt, wstring)
244 DEFINE_ELEMENT (_NL_WERA_D_FMT, "wide-era_d_fmt", opt, wstring)
246 DEFINE_ELEMENT (_NL_WERA_D_T_FMT, "wide-era_d_t_fmt", opt, wstring)
247 DEFINE_ELEMENT (_NL_WERA_T_FMT, "wide-era_t_fmt", opt, wstring)
268 DEFINE_ELEMENT (YESSTR, "yesstr", opt, string)
[all …]
A Dlocale.c94 enum { std, opt } status; enumerator
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/filesystem/
A Dops-common.h134 copy_file_options(copy_options opt) in _GLIBCXX_VISIBILITY()
138 is_set(opt, copy_options::skip_existing), in _GLIBCXX_VISIBILITY()
139 is_set(opt, copy_options::update_existing), in _GLIBCXX_VISIBILITY()
140 is_set(opt, copy_options::overwrite_existing) in _GLIBCXX_VISIBILITY()
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/scripts/
A DMAKEALL20 local opt=$1
28 -e "/${opt}=/s:=.*:=$*:" \
30 echo " ## setconfig ${opt} $*"
A Dunifdef.c256 int opt; in main() local
258 while ((opt = getopt(argc, argv, "i:D:U:f:I:M:o:x:bBcdehKklmnsStV")) != -1) in main()
259 switch (opt) { in main()
266 opt = *optarg++; in main()
267 if (opt == 'D') in main()
269 else if (opt == 'U') in main()
/l4re-core-master/moe/server/src/
A Dmain.cc373 cxx::String const &opt) in parse_flags() argument
400 opt.len(), opt.start(), a.len(), a.start()); in parse_flags()
443 for (Get_opt const *opt = _options; opt->tag; ++opt) in parse_long_option() local
445 if (o.starts_with(opt->tag)) in parse_long_option()
447 opt->hdl(o.substr(strlen(opt->tag))); in parse_long_option()
A Dboot_fs.cc73 static bool options_contains(cxx::String const &opts, cxx::String const &opt) in options_contains() argument
77 if (opt == a.first) in options_contains()
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/
A Dconf.c518 int opt; in main() local
530 while ((opt = getopt_long(ac, av, "", long_opts, NULL)) != -1) in main()
533 while ((opt = getopt(ac, av, "asonymArD:S:ldh")) != -1) in main()
536 char *x = memchr(gch, opt, strlen(gch)); in main()
538 opt = '?'; in main()
540 opt = x - gch; in main()
541 input_mode = (enum input_mode)opt; in main()
542 switch (opt) { in main()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/m68k/
A DREADME.m68k22 KERNEL_SOURCE=/opt/uClinux/linux
26 INSTALL_DIR = /opt/uClinux/m68k-pic-coff
34 /opt/uClinux/m68k-pic-coff/include, but I recommend cleaning
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/mntent/
A Dmntent.c95 char *hasmntopt(const struct mntent *mnt, const char *opt) in hasmntopt() argument
97 return strstr(mnt->mnt_opts, opt); in hasmntopt()
/l4re-core-master/ned/server/src/
A Dlua.cc225 int opt; in lua() local
227 while ((opt = getopt_long(argc, const_cast<char *const*>(argv), in lua()
230 switch (opt) in lua()
/l4re-core-master/uclibc/lib/contrib/uclibc/test/
A Dtest-skeleton.c220 int opt; in main() local
237 while ((opt = getopt_long (argc, argv, "+", options, NULL)) != -1) in main()
238 switch (opt) in main()
/l4re-core-master/lua/lib/contrib/src/
A Dlstrlib.c1438 int opt = *((*fmt)++); in getoption() local
1440 switch (opt) { in getoption()
1469 default: luaL_error(h->L, "invalid format option '%c'", opt); in getoption()
1486 KOption opt = getoption(h, fmt, psize); in getdetails() local
1492 if (align <= 1 || opt == Kchar) /* need no alignment? */ in getdetails()
1501 return opt; in getdetails()
1560 switch (opt) { in str_pack()
1651 luaL_argcheck(L, opt != Kstring && opt != Kzstr, 1, in str_packsize()
1708 KOption opt = getdetails(&h, pos, &fmt, &size, &ntoalign); in str_unpack() local
1715 switch (opt) { in str_unpack()
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/filesystem/
A Dops-common.h304 copy_file_options(copy_options opt) in _GLIBCXX_VISIBILITY()
308 is_set(opt, copy_options::skip_existing), in _GLIBCXX_VISIBILITY()
309 is_set(opt, copy_options::update_existing), in _GLIBCXX_VISIBILITY()
310 is_set(opt, copy_options::overwrite_existing) in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/filesystem/
A Dops-common.h304 copy_file_options(copy_options opt) in _GLIBCXX_VISIBILITY()
308 is_set(opt, copy_options::skip_existing), in _GLIBCXX_VISIBILITY()
309 is_set(opt, copy_options::update_existing), in _GLIBCXX_VISIBILITY()
310 is_set(opt, copy_options::overwrite_existing) in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/filesystem/
A Dops-common.h295 copy_file_options(copy_options opt) in _GLIBCXX_VISIBILITY()
299 is_set(opt, copy_options::skip_existing), in _GLIBCXX_VISIBILITY()
300 is_set(opt, copy_options::update_existing), in _GLIBCXX_VISIBILITY()
301 is_set(opt, copy_options::overwrite_existing) in _GLIBCXX_VISIBILITY()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/cris/
A Dmemmove.c39 #warning REMINDER: Cris arch-opt memmove assumes memcpy does forward copying! in memmove()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/fts/
A Dfts.c79 #define CLR(opt) (sp->fts_options &= ~(opt)) argument
80 #define ISSET(opt) (sp->fts_options & (opt)) argument
81 #define SET(opt) (sp->fts_options |= (opt)) argument
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/fnmatch/
A Dfnmatch_loop.c24 static int EXT (INT opt, const CHAR *pattern, const CHAR *string,
1018 EXT (INT opt, const CHAR *pattern, const CHAR *string, const CHAR *string_end, in EXT() argument
1070 if (opt == L('?') || opt == L('@')) \ in EXT()
1095 switch (opt) in EXT()
/l4re-core-master/libstdc++-headers/include-std/
A DMakefile85 $(call install_cpu_header, opt/bits/opt_random.h)
/l4re-core-master/l4re_vfs/include/
A Dvfs.h381 virtual int getsockopt(int level, int opt, void *, socklen_t *) throw() = 0;
382 virtual int setsockopt(int level, int opt, void const *, socklen_t) throw() = 0;
/l4re-core-master/ldscripts/ARCH-mips/
A Dmain_rel.ld8 * /opt/CodeSourcery/Sourcery_G++_Lite/mips-sde-elf/lib/ldscripts/elf32ltsmip.xsc

Completed in 30 milliseconds

12