Lines Matching refs:options

110 	{ "get        -o <options> <path> <connector>", "get", cmd_getpriv },
111 { "set -o <options> <path> <connector>", "set", cmd_setpriv }
120 * Define tables of command line options.
141 { "options", required_argument, 0, 'o' },
252 /* Parse command line options */
302 /* Parse command line options */
363 /* Parse command line options */
419 /* Parse command line options */
475 /* Parse command line options */
540 /* Parse command line options */
605 /* Parse command line options */
650 * Subcommand to get and display bus private options.
658 char *options = NULL;
662 /* Parse command line options */
664 parse_options(argc, argv, &options, usage_str);
668 if ((options == NULL) || (path == NULL) || (connection == NULL)) {
689 rv = hp_get_private(root, options, &results);
714 * Subcommand to set bus private options.
722 char *options = NULL;
726 /* Parse command line options */
728 parse_options(argc, argv, &options, usage_str);
732 if ((options == NULL) || (path == NULL) || (connection == NULL)) {
753 rv = hp_set_private(root, options, &results);
793 /* Parse command line options */
856 * Parse command line options that are common to the
922 * Parse command line options common to the bus private set and
970 * Routine to handle bad command line options.
1136 * Parse and display bus private options. The options are
1143 print_options(const char *options)
1148 /* Do nothing if options string is empty */
1149 if ((len = strlen(options)) == 0)
1154 (void) printf("%s\n", options);
1157 (void) strlcpy(buf, options, len + 1);