Lines Matching defs:options

122  * Add new options here
195 * list of objects, subcommands, valid short options, required flag and
198 * If it's not here, there are no options for that object.
574 * mpathadm modify mpath-support [options] <mpath-support name>, ...
578 * options - pointer to option list from user
583 modifyMpathSupport(int operandLen, char *operand[], cmdOptions_t *options)
590 cmdOptions_t *optionList = options;
634 /* now change the options requested */
726 * mpathadm list {logical-unit | LU} [options] [<logical-unit name>, ...]
730 * options - pointer to option list from user
735 listLogicalUnit(int operandLen, char *operand[], cmdOptions_t *options)
746 cmdOptions_t *optionList = options;
750 /* count number of options */
762 /* list to keep track of multiple options */
763 optionList = options;
768 optionList = options;
770 /* if no operands or options, list everything we find */
830 } else { /* we have operands and/or options */
926 /* check options */
930 optionList = options;
995 } /* loop through options */
1000 * if no options,
1034 optionList = options;
1050 } /* we have operands and/or options */
1526 * mpathadm modify {logical-unit | LU} [options] <logical-unit name>, ...
1530 * options - pointer to option list from user
1535 modifyLogicalUnit(int operandLen, char *operand[], cmdOptions_t *options)
1539 cmdOptions_t *optionList = options;
1553 /* we found the lu oid, now change the options requested */
2174 * options - pointer to option list from user
2179 enablePath(cmdOptions_t *options)
2184 cmdOptions_t *optionList = options;
2226 if (B_FALSE == getPathOid(options, &pathOid)) {
2257 * options - pointer to option list from user
2262 disablePath(cmdOptions_t *options)
2267 cmdOptions_t *optionList = options;
2310 if (B_FALSE == getPathOid(options, &pathOid)) {
2342 * options - pointer to option list from user
2347 overridePath(cmdOptions_t *options)
2353 cmdOptions_t *optionList = options;
2406 if (B_FALSE == getPathOid(options, &pathOid)) {
2441 * options - pointer to option list from user
2446 getPathOid(cmdOptions_t *options, MP_OID *pPathOid)
2463 cmdOptions_t *optionList = options;
3163 listFunc(int operandLen, char *operand[], int object, cmdOptions_t *options,
3173 ret = listLogicalUnit(operandLen, operand, options);
3199 showFunc(int operandLen, char *operand[], int object, cmdOptions_t *options,
3234 modifyFunc(int operandLen, char *operand[], int object, cmdOptions_t *options,
3241 ret = modifyMpathSupport(operandLen, operand, options);
3244 ret = modifyLogicalUnit(operandLen, operand, options);
3266 enableFunc(int operandLen, char *operand[], int object, cmdOptions_t *options,
3273 ret = enablePath(options);
3294 disableFunc(int operandLen, char *operand[], int object, cmdOptions_t *options,
3301 ret = disablePath(options);
3322 failoverFunc(int operandLen, char *operand[], int object, cmdOptions_t *options,
3351 int object, cmdOptions_t *options,
3358 ret = overridePath(options);