Lines Matching defs:operand
171 * reqOpCmd -> subcommands that must have an operand
172 * optOpCmd -> subcommands that may have an operand
173 * noOpCmd -> subcommands that will have no operand
176 * operandDefinition -> Usage definition for the operand of this object
219 * operand - pointer to operand list from user
224 listMpathSupport(int operandLen, char *operand[])
268 /* if there is an operand... */
271 strcmp(operand[op],
282 operand[op]);
301 * operand - pointer to operand list from user
306 showMpathSupport(int operandLen, char *operand[])
347 /* if no operand, list it */
352 strcmp(operand[op],
558 operand[op]);
563 } /* for each operand */
577 * operand - pointer to operand list from user
583 modifyMpathSupport(int operandLen, char *operand[], cmdOptions_t *options)
618 if (0 == strcmp(operand[op],
716 } /* for each operand */
729 * operand - pointer to operand list from user
735 listLogicalUnit(int operandLen, char *operand[], cmdOptions_t *options)
911 * compare operand - is it a match?
919 operand[opoffset],
1024 /* option/operand combo not found */
1029 operand[opoffset]);
1194 * operand - pointer to operand list from user
1199 showLogicalUnit(int operandLen, char *operand[])
1212 if (B_TRUE == getLogicalUnitOid(operand[op], &luOid)) {
1250 operand[op]);
1254 } /* for each operand */
1529 * operand - pointer to operand list from user
1535 modifyLogicalUnit(int operandLen, char *operand[], cmdOptions_t *options)
1544 if (B_TRUE != getLogicalUnitOid(operand[op], &luOid)) {
1548 operand[op]);
1619 } /* for each operand */
1630 * operand - pointer to operand list from user
1635 failoverLogicalUnit(char *operand[])
1647 if (B_TRUE != getLogicalUnitOid(operand[0], &luOid)) {
1651 operand[0]);
1887 * operand - pointer to operand list from user
1892 listInitiatorPort(int operandLen, char *operand[])
1957 /* check each operand */
1963 strcmp(operand[ol],
1994 operand[ol]);
2035 * operand - pointer to operand list from user
2040 showInitiatorPort(int operandLen, char *operand[])
2097 if (0 == strcmp(operand[op],
2125 operand[op]);
2129 } /* for each operand */
2440 * operand - pointer to operand list from user
3163 listFunc(int operandLen, char *operand[], int object, cmdOptions_t *options,
3170 ret = listMpathSupport(operandLen, operand);
3173 ret = listLogicalUnit(operandLen, operand, options);
3176 ret = listInitiatorPort(operandLen, operand);
3199 showFunc(int operandLen, char *operand[], int object, cmdOptions_t *options,
3206 ret = showMpathSupport(operandLen, operand);
3209 ret = showLogicalUnit(operandLen, operand);
3212 ret = showInitiatorPort(operandLen, operand);
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,
3294 disableFunc(int operandLen, char *operand[], int object, cmdOptions_t *options,
3322 failoverFunc(int operandLen, char *operand[], int object, cmdOptions_t *options,
3329 ret = failoverLogicalUnit(operand);
3350 overrideFunc(int operandLen, char *operand[],