• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/IOKitTools-89.1.1/ioreg.tproj/

Lines Matching refs:options

38 struct options
62 struct options options;
98 struct options options ) CF_RETURNS_RETAINED;
102 struct options options ) CF_RETURNS_RETAINED;
108 struct options options ) CF_RETURNS_RETAINED;
111 struct options options );
121 struct options options );
127 struct options options );
132 struct options options );
147 struct options options;
156 options.archive = FALSE;
157 options.bold = FALSE;
158 options.format = FALSE;
159 options.hex = FALSE;
160 options.inheritance = FALSE;
161 options.list = FALSE;
162 options.root = FALSE;
163 options.tree = FALSE;
165 options.class = 0;
166 options.depth = 0;
167 options.key = 0;
168 options.name = 0;
169 options.plane = kIOServicePlane;
170 options.root = 0;
171 options.width = 0;
179 options.width = winsize.ws_col;
190 options.archive = TRUE;
193 options.bold = TRUE;
196 options.class = optarg;
199 options.depth = atoi(optarg);
202 options.format = TRUE;
205 options.inheritance = TRUE;
208 options.key = optarg;
211 options.list = TRUE;
214 options.name = optarg;
217 options.plane = optarg;
220 options.root = TRUE;
227 options.tree = TRUE;
230 options.width = atoi(optarg);
233 options.hex = TRUE;
243 cfshowinit(options.hex);
245 printinit(options.width);
247 if (options.bold) boldinit();
256 if (options.archive)
258 if (options.root)
264 /* options */ options );
270 /* options */ options );
290 /* options */ 0,
302 if (options.root)
308 /* options */ options );
316 /* options */ options );
332 struct options options )
347 if (options.list || compare(service, options))
368 status = IORegistryEntryGetNameInPlane(service, options.plane, name);
379 status = IORegistryEntryGetLocationInPlane(service, options.plane, location);
454 struct options options )
466 status = IORegistryEntryGetChildIterator(service, options.plane, &children);
473 dictionary = archive(service, options);
477 if (options.depth == 0 || options.depth > serviceDepth + 1)
491 /* options */ options );
517 struct options options )
531 if (serviceHasMatchedDepth < serviceDepth + 1 && compare(service, options))
533 if (options.depth)
535 serviceHasMatchedDepth = serviceDepth + options.depth;
542 if (options.tree)
544 if (options.depth) options.depth += serviceDepth;
548 /* options */ options );
550 if (options.depth) options.depth -= serviceDepth;
554 dictionary2 = archive(stackOfObjects[index - 1], options);
567 /* options */ options );
583 status = IORegistryEntryGetChildIterator(service, options.plane, &children);
599 /* options */ options );
625 struct options options )
636 if (options.class)
638 if (IOObjectConformsTo(service, options.class) == FALSE)
648 if (options.key)
651 options.key,
674 if (options.name)
678 status = IORegistryEntryGetNameInPlane(service, options.plane, name);
681 if (strchr(options.name, '@'))
687 status = IORegistryEntryGetLocationInPlane(service, options.plane, location);
691 if (strcmp(options.name, name))
708 struct options options )
717 status = IORegistryEntryGetChildIterator(service, options.plane, &children);
731 if (options.depth == 0 || options.depth > serviceDepth + 1)
741 show(service, serviceDepth, stackOfBits, options);
745 if (options.depth == 0 || options.depth > serviceDepth + 1)
756 /* options */ options );
772 struct options options )
782 if (serviceHasMatchedDepth < serviceDepth + 1 && compare(service, options))
784 if (options.depth)
786 serviceHasMatchedDepth = serviceDepth + options.depth;
793 if (options.tree)
797 show(stackOfObjects[index], index, (2 << index), options);
800 if (options.depth) options.depth += serviceDepth;
806 /* options */ options );
808 if (options.depth) options.depth -= serviceDepth;
816 /* options */ options );
828 status = IORegistryEntryGetChildIterator(service, options.plane, &children);
844 /* options */ options );
858 struct options options )
861 struct context context = { service, serviceDepth, stackOfBits, options };
872 status = IORegistryEntryGetNameInPlane(service, options.plane, name);
877 if (options.bold) boldon();
881 if (options.bold) boldoff();
885 status = IORegistryEntryGetLocationInPlane(service, options.plane, location);
892 if (options.inheritance)
960 if (options.list || compare(service, options))
1001 if (context->options.format)
1042 "where options are:\n"
2098 bytesPerLine = (context->options.width - 20 - (2*context->serviceDepth))/4;