Lines Matching defs:object

90  *  object - object value
95 * object. On failure, the contents of opCmd is unspecified.
103 getObjectRules(uint_t object, objectRules_t **objectRules)
108 if (sp->value == object) {
118 * arg - pointer to array of char containing object string
121 * object - pointer to object_t structure pointer
122 * on success, contains the matching object structure based on
123 * input object name
131 getObject(char *arg, object_t **object)
141 *object = op;
179 * object - object for which to get options
183 * on success, optionsProp_t pointer to structure matching input object
188 getOptions(uint_t object, uint_t subcommand)
193 if ((currObject == object) &&
292 * iterate through object table
293 * For each object, print appropriate usage
303 * Print usage for a subcommand and object.
328 * no object entry in object
344 /* print object */
394 /* print options for subcommand, object */
506 * subcommand and object usage respectively.
512 * command subcommand object [<options>] [<operand>]
560 object_t *object;
686 commandName, gettext("missing object"));
720 * object is always in the third argument. If there is no
721 * recognized object in the third argument, print error,
724 if (getObject(argv[2], &object) != 0) {
726 commandName, gettext("invalid object"));
732 if (getObjectRules(object->value, &objRules) != 0) {
735 * no object entry in object table
743 * Is command valid for this object?
747 gettext("invalid subcommand for"), object->name);
787 * Once all options are retrieved, check against object
797 subcommand, object);
833 /* get option string for this object and subcommand */
834 availOptions = getOptions(object->value, subcommand->value);
840 subUsageObject(HELP_USAGE, subcommand, object);
862 object);
879 object);
891 object);
904 object->name, gettext("requires an operand"));
906 subUsageObject(HELP_USAGE, subcommand, object);
919 object->name, gettext("takes no operands"));
920 subUsageObject(HELP_USAGE, subcommand, object);
931 commandName, subcommand->name, object->name,
933 subUsageObject(HELP_USAGE, subcommand, object);
943 object->value, &cmdOptions[0], callArgs, funcRet));