Searched refs:getopt_long_only (Results 1 - 25 of 30) sorted by relevance

12

/external/fio/lib/
H A Dgetopt.h23 int getopt_long_only(int, char *const *, const char *, const struct option *, int *);
H A Dgetopt_long.c42 int getopt_long_only(int argc, char *const *argv, const char *optstring, function
/external/tcpdump/win32/Include/
H A Dgetopt.h66 The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
117 extern int getopt_long_only (int argc, char *const *argv,
129 extern int getopt_long_only ();
/external/chromium_org/third_party/mesa/src/src/getopt/
H A Dgetopt.h63 int getopt_long_only(int, char * const *, const char *,
H A Dgetopt_long.c68 #define FLAG_LONGONLY 0x04 /* operate as getopt_long_only */
390 * 3) either the arg starts with -- we are getopt_long_only()
501 * getopt_long_only --
505 getopt_long_only(int nargc, char * const *nargv, const char *options, function
/external/mesa3d/src/getopt/
H A Dgetopt.h63 int getopt_long_only(int, char * const *, const char *,
H A Dgetopt_long.c68 #define FLAG_LONGONLY 0x04 /* operate as getopt_long_only */
390 * 3) either the arg starts with -- we are getopt_long_only()
501 * getopt_long_only --
505 getopt_long_only(int nargc, char * const *nargv, const char *options, function
/external/e2fsprogs/include/nonunix/
H A Dgetopt.h63 The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
114 extern int getopt_long_only (int argc, char *const *argv,
126 extern int getopt_long_only ();
/external/bison/darwin-lib/
H A Dgetopt.h60 # undef getopt_long_only macro
71 # define getopt_long_only __GETOPT_ID (getopt_long_only) macro
81 getopt_long_only; they declare "char **argv". libc uses prototypes
83 getopt_long_only can permute argv; this is required for backward
92 of getopt_long and getopt_long_only below, but these are visible
175 The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
249 extern int getopt_long_only (int ___argc, char *__getopt_argv_const *___argv,
/external/bison/lib/
H A Dgetopt.in.h59 # undef getopt_long_only macro
70 # define getopt_long_only __GETOPT_ID (getopt_long_only) macro
80 getopt_long_only; they declare "char **argv". libc uses prototypes
82 getopt_long_only can permute argv; this is required for backward
91 of getopt_long and getopt_long_only below, but these are visible
164 The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
238 extern int getopt_long_only (int ___argc, char *__getopt_argv_const *___argv,
H A Dgetopt1.c1 /* getopt_long and getopt_long_only entry points for GNU getopt.
63 getopt_long_only (int argc, char *__getopt_argv_const *argv,
62 getopt_long_only (int argc, char *__getopt_argv_const *argv, function
/external/fio/os/
H A Dos-netbsd.h62 /* XXX NetBSD doesn't have getopt_long_only */
63 #define getopt_long_only getopt_long macro
/external/lldb/examples/lookup/
H A Dmain.cpp133 while ((ch = getopt_long_only(argc, (char * const *)argv, short_options.c_str(), g_long_options, 0)) != -1)
/external/lldb/tools/lldb-platform/
H A Dlldb-platform.cpp35 // option descriptors for getopt_long_only()
120 while ((ch = getopt_long_only(argc, argv, "l:f:L:", g_long_options, &long_option_index)) != -1)
180 // Skip any options we consumed with getopt_long_only
/external/fio/
H A Dconfigure903 # getopt_long_only() probe
904 getopt_long_only="no"
911 int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
915 if compile_prog "" "" "getopt_long_only"; then
916 getopt_long_only="yes"
918 echo "getopt_long_only() $getopt_long_only"
1268 if test "$getopt_long_only" = "yes" ; then
H A Dinit.c1718 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
/external/lldb/examples/functions/
H A Dmain.cpp138 while ((ch = getopt_long_only(argc, (char * const *)argv, short_options.c_str(), g_long_options, 0)) != -1)
/external/lldb/tools/darwin-debug/
H A Ddarwin-debug.cpp189 while ((ch = getopt_long_only(argc, argv, "a:deE:hsu:?", g_long_options, NULL)) != -1)
/external/lldb/tools/lldb-perf/common/clang/
H A Dlldb_perf_clang.cpp336 // Prepare for & make calls to getopt_long_only.
354 const int short_option = ::getopt_long_only (argc,
/external/lldb/tools/lldb-perf/common/stepping/
H A Dlldb-perf-stepping.cpp226 // Prepare for & make calls to getopt_long_only.
244 const int short_option = ::getopt_long_only (argc,
/external/lldb/tools/lldb-perf/lib/
H A DTestCase.cpp77 const int short_option = ::getopt_long_only (argc,
/external/lldb/source/Interpreter/
H A DArgs.cpp658 val = ::getopt_long_only(GetArgumentCount(),
1317 val = ::getopt_long_only (GetArgumentCount(),
1498 // Fooey... getopt_long_only permutes the GetArgumentVector to move the options to the front.
1499 // So we have to build another Arg and pass that to getopt_long_only so it doesn't
1512 val = ::getopt_long_only (dummy_vec.size() - 1,
1530 // I let it pass to getopt_long_only which will terminate the option parsing.
1646 // the option_element_vector, but only if it is not after the "--". But it turns out that getopt_long_only just ignores
/external/ltrace/etc/
H A Dlibc.so.conf94 int getopt_long_only(int,addr,string,addr,addr);
/external/lldb/tools/debugserver/source/
H A Ddebugserver.cpp763 // option descriptors for getopt_long_only()
881 while ((ch = getopt_long_only(argc, argv, short_options, g_long_options, &long_option_index)) != -1)
1103 // Skip any options we consumed with getopt_long_only
/external/lldb/tools/driver/
H A DDriver.cpp516 // Build the option_string argument for call to getopt_long_only.
547 // Prepare for & make calls to getopt_long_only.
558 val = ::getopt_long_only (argc, const_cast<char **>(argv), option_string.c_str(), long_options, &long_options_index);
748 // Skip any options we consumed with getopt_long_only
765 // Skip any options we consumed with getopt_long_only

Completed in 445 milliseconds

12