Lines Matching refs:num_options
31 num_options; /* Number of options */ in main() local
47 num_options = cupsParseOptions("foo=1234 " in main()
56 if (num_options != 6) in main()
58 printf("FAIL (num_options=%d, expected 6)\n", num_options); in main()
61 else if ((value = cupsGetOption("foo", num_options, options)) == NULL || in main()
67 else if ((value = cupsGetOption("bar", num_options, options)) == NULL || in main()
74 else if ((value = cupsGetOption("baz", num_options, options)) == NULL || in main()
80 else if ((value = cupsGetOption("foobar", num_options, options)) == NULL || in main()
86 else if ((value = cupsGetOption("barfoo", num_options, options)) == NULL || in main()
92 else if ((value = cupsGetOption("auth-info", num_options, options)) == NULL || in main()
105 cupsEncodeOptions2(request, num_options, options, IPP_TAG_JOB); in main()
166 num_options = cupsParseOptions(argv[1], 0, &options); in main()
168 for (i = 0, option = options; i < num_options; i ++, option ++) in main()