HomeSort by relevance Sort by last modified time
    Searched defs:getopt (Results 1 - 25 of 28) sorted by null

1 2

  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
getopt.c 45 getopt(int nargc, char **nargv, char *ostr) function
  /onnv/onnv-gate/usr/src/cmd/bnu/
getopt.c 26 #ident "%Z%%M% %I% %E% SMI" /* from SVR4 bnu:getopt.c 2.3 */
30 /* @(#)getopt.c 1.2 */
48 getopt(argc, argv, opts) function
  /onnv/onnv-gate/usr/src/cmd/mdb/common/libstand/
getopt.c 50 getopt(int argc, char *const *argv, const char *opts) function
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Getopt/
Std.pm 1 package Getopt::Std;
7 getopt, getopts - Process single-character switches with switch clustering
11 use Getopt::Std;
13 getopt('oDI'); # -o, -D & -I take arg. Sets $opt_* as a side effect.
14 getopt('oDI', \%opts); # -o, -D & -I take arg. Values in %opts
21 The getopt() function processes single-character switches with switch
38 For those of you who don't like additional global variables being created, getopt()
59 Note that due to excessive paranoia, if $Getopt::Std::STANDARD_HELP_VERSION
63 to set $Getopt::Std::STANDARD_HELP_VERSION to true.
66 $Getopt::Std::OUTPUT_HELP_VERSION. One can print the messages of C<--help
87 sub getopt (;$$) { subroutine
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
getopt.c 33 * See getopt(3C) and SUS/XPG getopt() for function definition and
42 #pragma weak _getopt = getopt
70 * _sp is required to keep state between successive calls to getopt() while
71 * extracting aggregated short-options (ie: -abcd). Hence, getopt() is not
110 * optstring The entire optstring passed to getopt() by the caller
165 * The old getopt() accepts it and treats it as a
179 getopt(int argc, char *const *argv, const char *optstring) function
190 * If, when getopt() is called:
194 * getopt() returns -1 without changing optind. I
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsasl/lib/
canonusr.c 91 sasl_getopt_t *getopt; local
138 &getopt, &context);
139 if(result == SASL_OK && getopt) {
140 getopt(context, NULL, "canon_user_plugin", &plugin_name, NULL);
checkpw.c 508 sasl_getopt_t *getopt; local
517 if (_sasl_getcallback(conn, SASL_CB_GETOPT, &getopt, &context) == SASL_OK) {
518 getopt(context, NULL, "saslauthd_path", &p, NULL);
saslutil.c 516 * MODULE NAME : GETOPT.C
548 * getopt()
550 * The getopt() function is a command line parser. It returns the next
560 * argument on return from getopt().
562 * The getopt() function places in optind the argv index of the next argument
564 * 1 before the first call to getopt().
567 * argument), getopt() returns EOF. The special option "--" may be used to
571 * The getopt() function returns a question mark (?) when it encounters an
586 /* static (global) variables that are specified as exported by getopt() */
595 int getopt(int argc, char *argv[], char *opstring) function
    [all...]
auxprop.c 957 sasl_getopt_t *getopt; local
968 SASL_CB_GETOPT, &getopt, &context) == SASL_OK) {
969 ret = getopt(context, NULL, "auxprop_plugin", &plist, NULL);
server.c 338 sasl_getopt_t *getopt; local
346 if (_sasl_getcallback(NULL, SASL_CB_GETOPT, &getopt, &context) == SASL_OK)
347 (void)getopt(&gctx->server_global_callbacks, NULL,
974 * getopt callback
1006 sasl_getopt_t *getopt; local
1140 if (_sasl_getcallback(NULL, SASL_CB_GETOPT, &getopt, &context)
1144 ret = getopt(&global_callbacks, NULL, "plugin_list", &pluginfile, NULL);
1214 sasl_getopt_t *getopt; local
1225 if (_sasl_getcallback(conn, SASL_CB_GETOPT, &getopt, &context) == SASL_OK)
1227 getopt(context, NULL, "auto_transition", &dotrans, NULL)
1293 sasl_getopt_t *getopt; local
1428 sasl_getopt_t *getopt; local
    [all...]
common.c 741 sasl_getopt_t *getopt; local
764 result = _sasl_getcallback(conn, SASL_CB_GETOPT, &getopt, &context);
    [all...]
  /onnv/onnv-gate/usr/src/lib/libparted/common/lib/
getopt.c 0 /* Getopt for GNU.
2 NOTE: getopt is now part of the C library, so if you don't know what
28 #include "getopt.h"
54 /* Unlike standard Unix `getopt', functions like `getopt_long'
61 Using `getopt' or setting the environment variable POSIXLY_CORRECT
70 /* For communication from `getopt' to the caller.
71 When `getopt' finds an option that takes an argument,
80 and for communication between successive calls to `getopt'.
82 On entry to `getopt', zero means this is the first call; initialize.
84 When `getopt' returns -1, this is the index of the first of th
1116 getopt (int argc, char *const *argv, const char *optstring) function
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/cli/dhtadm/
DhtAdm.java 125 GetOpt getopt = new GetOpt(args, optString); local
128 while ((option = getopt.getNextOption()) != -1) {
129 processArg(option, getopt.getOptionArg());
132 int lastIndex = getopt.getNextOptionIndex();
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/cli/pntadm/
PntAdm.java 124 GetOpt getopt = new GetOpt(args, optString); local
127 while ((option = getopt.getNextOption()) != -1) {
128 processArg(option, getopt.getOptionArg());
131 int networkIndex = getopt.getNextOptionIndex();
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/cmd/jdtrace/
Getopt.java 36 * A Java port of Solaris {@code lib/libc/port/gen/getopt.c}, which is a
37 * port of System V UNIX getopt. See <b>getopt(3C)</b> and SUS/XPG
38 * getopt() for function definition and requirements. Unlike that
42 public class Getopt {
56 * getopt() while extracting aggregated short-options (ie: -abcd).
61 * Creates a {Code Getopt} instance to parse the given command-line
66 public Getopt(String programName, String[] args,
70 // No defensive copy; Getopt is expected to modify the given
170 * Getopt} constructo
309 getopt() method in class:Getopt
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/lib/
getopt.c 0 /* Getopt for GNU.
2 NOTE: getopt is now part of the C library, so if you don't know what
28 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
71 contain conflicting prototypes for getopt. */
94 /* This version of `getopt' appears to the caller like standard Unix `getopt'
98 As `getopt' works, it permutes the elements of ARGV so that,
108 #include "getopt.h"
110 /* For communication from `getopt' to the caller.
111 When `getopt' finds an option that takes an argument
970 getopt (argc, argv, optstring) function
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/cli/dhcpconfig/
DhcpCfg.java 131 GetOpt getopt = new GetOpt(args, optString); local
134 while ((option = getopt.getNextOption()) != -1) {
135 processArg(option, getopt.getOptionArg());
138 int lastIndex = getopt.getNextOptionIndex();
  /onnv/onnv-gate/usr/src/lib/libsasl/include/
saslplug.h 74 sasl_getopt_t *getopt; member in struct:sasl_utils
  /onnv/onnv-gate/usr/src/cmd/ssh/include/
defines.h 475 #undef getopt macro
481 #define getopt(ac, av, o) BSDgetopt(ac, av, o) macro
  /onnv/onnv-gate/usr/src/lib/libast/amd64/include/ast/
ast_map.h 137 #undef getopt macro
138 #define getopt _ast_getopt macro
  /onnv/onnv-gate/usr/src/lib/libast/amd64/src/lib/libast/
ast_map.h 116 #undef getopt macro
117 #define getopt _ast_getopt macro
  /onnv/onnv-gate/usr/src/lib/libast/i386/include/ast/
ast_map.h 137 #undef getopt macro
138 #define getopt _ast_getopt macro
  /onnv/onnv-gate/usr/src/lib/libast/i386/src/lib/libast/
ast_map.h 116 #undef getopt macro
117 #define getopt _ast_getopt macro
  /onnv/onnv-gate/usr/src/lib/libast/sparc/include/ast/
ast_map.h 137 #undef getopt macro
138 #define getopt _ast_getopt macro
  /onnv/onnv-gate/usr/src/lib/libast/sparc/src/lib/libast/
ast_map.h 116 #undef getopt macro
117 #define getopt _ast_getopt macro

Completed in 480 milliseconds

1 2