lib/libcam/camlib.c
352
ccb.cdm.matches = (struct dev_match_result *)malloc(bufsize);
lib/libcam/camlib.c
353
if (ccb.cdm.matches == NULL) {
lib/libcam/camlib.c
369
free(ccb.cdm.matches);
lib/libcam/camlib.c
420
switch(ccb.cdm.matches[0].type) {
lib/libcam/camlib.c
426
periph_result = &ccb.cdm.matches[0].result.periph_result;
lib/libcam/camlib.c
428
free(ccb.cdm.matches);
lib/libcam/camlib.c
444
free(ccb.cdm.matches);
lib/libdevstat/devstat.c
421
struct devstat_match *matches, int num_matches,
lib/libdevstat/devstat.c
580
if ((matches[i].match_fields == DEVSTAT_MATCH_NONE)
lib/libdevstat/devstat.c
581
|| (matches[i].num_match_categories <= 0))
lib/libdevstat/devstat.c
587
num_match_categories = matches[i].num_match_categories;
lib/libdevstat/devstat.c
602
if ((((matches[i].match_fields & DEVSTAT_MATCH_TYPE)!=0)
lib/libdevstat/devstat.c
604
(matches[i].device_type & DEVSTAT_TYPE_MASK))
lib/libdevstat/devstat.c
605
&&(((matches[i].match_fields & DEVSTAT_MATCH_PASS)!=0)
lib/libdevstat/devstat.c
609
|| (((matches[i].match_fields & DEVSTAT_MATCH_IF) != 0)
lib/libdevstat/devstat.c
611
(matches[i].device_type & DEVSTAT_TYPE_IF_MASK))
lib/libdevstat/devstat.c
612
&&(((matches[i].match_fields & DEVSTAT_MATCH_PASS)!=0)
lib/libdevstat/devstat.c
616
|| (((matches[i].match_fields & DEVSTAT_MATCH_PASS)!=0)
lib/libdevstat/devstat.c
872
buildmatch(const char *match_str, struct devstat_match **matches,
lib/libdevstat/devstat.c
917
*matches = (struct devstat_match *)malloc(
lib/libdevstat/devstat.c
920
*matches = (struct devstat_match *)realloc(*matches,
lib/libdevstat/devstat.c
924
bzero(&matches[0][*num_matches], sizeof(struct devstat_match));
lib/libdevstat/devstat.c
971
if (((*matches)[*num_matches].match_fields &
lib/libdevstat/devstat.c
984
(*matches)[*num_matches].match_fields |=
lib/libdevstat/devstat.c
986
(*matches)[*num_matches].device_type |=
lib/libdevstat/devstat.c
988
(*matches)[*num_matches].num_match_categories++;
lib/libdevstat/devstat.c
997
if ((*matches)[*num_matches].num_match_categories != (i + 1)) {
lib/libdevstat/devstat.h
101
int buildmatch(const char *match_str, struct devstat_match **matches,
lib/libdevstat/devstat.h
97
struct devstat_match *matches, int num_matches,
sbin/camcontrol/camcontrol.c
1173
matchccb.cdm.matches=(struct dev_match_result *)malloc(bufsize);
sbin/camcontrol/camcontrol.c
1174
if (matchccb.cdm.matches == NULL) {
sbin/camcontrol/camcontrol.c
1216
if (matchccb.cdm.matches[i].type != DEV_MATCH_BUS)
sbin/camcontrol/camcontrol.c
1219
bus_result = &matchccb.cdm.matches[i].result.bus_result;
sbin/camcontrol/camcontrol.c
1271
if (matchccb.cdm.matches != NULL)
sbin/camcontrol/camcontrol.c
1272
free(matchccb.cdm.matches);
sbin/camcontrol/camcontrol.c
374
ccb.cdm.matches = (struct dev_match_result *)malloc(bufsize);
sbin/camcontrol/camcontrol.c
375
if (ccb.cdm.matches == NULL) {
sbin/camcontrol/camcontrol.c
410
switch (ccb.cdm.matches[i].type) {
sbin/camcontrol/camcontrol.c
423
&ccb.cdm.matches[i].result.bus_result;
sbin/camcontrol/camcontrol.c
447
&ccb.cdm.matches[i].result.device_result;
sbin/camcontrol/camcontrol.c
490
&ccb.cdm.matches[i].result.periph_result;
sbin/devd/devd.cc
764
if ((*i)->matches(*this)) {
sbin/devd/devd.hh
134
bool matches(config &) const;
sbin/hammer2/zlib/hammer2_zlib_deflate.h
240
uInt matches; /* number of string matches in current block */
sbin/hammer2/zlib/hammer2_zlib_trees.c
1027
s->matches++;
sbin/hammer2/zlib/hammer2_zlib_trees.c
1053
if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
sbin/hammer2/zlib/hammer2_zlib_trees.c
425
s->last_lit = s->matches = 0;
sys/bus/cam/cam_ccb.h
484
struct dev_match_result *matches;
sys/bus/cam/cam_periph.c
664
data_ptrs[1] = (void *)&ccb->cdm.matches;
sys/bus/cam/cam_periph.c
669
data_ptrs[0] = (void *)&ccb->cdm.matches;
sys/bus/cam/cam_periph.c
797
data_ptrs[0] = (void *)&ccb->cdm.matches;
sys/bus/cam/cam_periph.c
800
data_ptrs[1] = (void *)&ccb->cdm.matches;
sys/bus/cam/cam_xpt.c
2158
cdm->matches[j].type = DEV_MATCH_BUS;
sys/bus/cam/cam_xpt.c
2159
cdm->matches[j].result.bus_result.path_id = bus->path_id;
sys/bus/cam/cam_xpt.c
2160
cdm->matches[j].result.bus_result.bus_id = bus->sim->bus_id;
sys/bus/cam/cam_xpt.c
2161
cdm->matches[j].result.bus_result.unit_number =
sys/bus/cam/cam_xpt.c
2163
strncpy(cdm->matches[j].result.bus_result.dev_name,
sys/bus/cam/cam_xpt.c
2296
cdm->matches[j].type = DEV_MATCH_DEVICE;
sys/bus/cam/cam_xpt.c
2297
cdm->matches[j].result.device_result.path_id =
sys/bus/cam/cam_xpt.c
2299
cdm->matches[j].result.device_result.target_id =
sys/bus/cam/cam_xpt.c
2301
cdm->matches[j].result.device_result.target_lun =
sys/bus/cam/cam_xpt.c
2304
&cdm->matches[j].result.device_result.inq_data,
sys/bus/cam/cam_xpt.c
2309
cdm->matches[j].result.device_result.flags =
sys/bus/cam/cam_xpt.c
2312
cdm->matches[j].result.device_result.flags =
sys/bus/cam/cam_xpt.c
2410
cdm->matches[j].type = DEV_MATCH_PERIPH;
sys/bus/cam/cam_xpt.c
2411
cdm->matches[j].result.periph_result.path_id =
sys/bus/cam/cam_xpt.c
2413
cdm->matches[j].result.periph_result.target_id =
sys/bus/cam/cam_xpt.c
2415
cdm->matches[j].result.periph_result.target_lun =
sys/bus/cam/cam_xpt.c
2417
cdm->matches[j].result.periph_result.unit_number =
sys/bus/cam/cam_xpt.c
2419
strncpy(cdm->matches[j].result.periph_result.periph_name,
sys/bus/cam/cam_xpt.c
2563
cdm->matches[j].type = DEV_MATCH_PERIPH;
sys/bus/cam/cam_xpt.c
2564
cdm->matches[j].result.periph_result.path_id =
sys/bus/cam/cam_xpt.c
2572
cdm->matches[j].result.periph_result.target_id =
sys/bus/cam/cam_xpt.c
2575
cdm->matches[j].result.periph_result.target_id = -1;
sys/bus/cam/cam_xpt.c
2578
cdm->matches[j].result.periph_result.target_lun =
sys/bus/cam/cam_xpt.c
2581
cdm->matches[j].result.periph_result.target_lun = -1;
sys/bus/cam/cam_xpt.c
2583
cdm->matches[j].result.periph_result.unit_number =
sys/bus/cam/cam_xpt.c
2585
strncpy(cdm->matches[j].result.periph_result.periph_name,
sys/bus/pccard/pccard.c
334
int matches;
sys/bus/pccard/pccard.c
356
matches = 1;
sys/bus/pccard/pccard.c
367
if (matches && ent->pp_vendor != PCCARD_VENDOR_ANY &&
sys/bus/pccard/pccard.c
369
matches = 0;
sys/bus/pccard/pccard.c
370
if (matches && ent->pp_product != PCCARD_PRODUCT_ANY &&
sys/bus/pccard/pccard.c
372
matches = 0;
sys/bus/pccard/pccard.c
373
if (matches && ent->pp_cis[0] &&
sys/bus/pccard/pccard.c
376
matches = 0;
sys/bus/pccard/pccard.c
377
if (matches && ent->pp_cis[1] &&
sys/bus/pccard/pccard.c
380
matches = 0;
sys/bus/pccard/pccard.c
381
if (matches && ent->pp_cis[2] &&
sys/bus/pccard/pccard.c
384
matches = 0;
sys/bus/pccard/pccard.c
385
if (matches && ent->pp_cis[3] &&
sys/bus/pccard/pccard.c
388
matches = 0;
sys/bus/pccard/pccard.c
390
matches = (*matchfn)(dev, ent, matches);
sys/bus/pccard/pccard.c
391
if (matches)
sys/bus/pci/pci_user.c
107
pci_conf_match(struct pci_match_conf *matches, int num_matches,
sys/bus/pci/pci_user.c
112
if ((matches == NULL) || (match_buf == NULL) || (num_matches <= 0))
sys/bus/pci/pci_user.c
119
if (matches[i].flags == PCI_GETCONF_NO_MATCH)
sys/bus/pci/pci_user.c
127
if (((matches[i].flags & PCI_GETCONF_MATCH_DOMAIN) != 0)
sys/bus/pci/pci_user.c
129
matches[i].pc_sel.pc_domain))
sys/bus/pci/pci_user.c
132
if (((matches[i].flags & PCI_GETCONF_MATCH_BUS) != 0)
sys/bus/pci/pci_user.c
133
&& (match_buf->pc_sel.pc_bus != matches[i].pc_sel.pc_bus))
sys/bus/pci/pci_user.c
136
if (((matches[i].flags & PCI_GETCONF_MATCH_DEV) != 0)
sys/bus/pci/pci_user.c
137
&& (match_buf->pc_sel.pc_dev != matches[i].pc_sel.pc_dev))
sys/bus/pci/pci_user.c
140
if (((matches[i].flags & PCI_GETCONF_MATCH_FUNC) != 0)
sys/bus/pci/pci_user.c
141
&& (match_buf->pc_sel.pc_func != matches[i].pc_sel.pc_func))
sys/bus/pci/pci_user.c
144
if (((matches[i].flags & PCI_GETCONF_MATCH_VENDOR) != 0)
sys/bus/pci/pci_user.c
145
&& (match_buf->pc_vendor != matches[i].pc_vendor))
sys/bus/pci/pci_user.c
148
if (((matches[i].flags & PCI_GETCONF_MATCH_DEVICE) != 0)
sys/bus/pci/pci_user.c
149
&& (match_buf->pc_device != matches[i].pc_device))
sys/bus/pci/pci_user.c
152
if (((matches[i].flags & PCI_GETCONF_MATCH_CLASS) != 0)
sys/bus/pci/pci_user.c
153
&& (match_buf->pc_class != matches[i].pc_class))
sys/bus/pci/pci_user.c
156
if (((matches[i].flags & PCI_GETCONF_MATCH_UNIT) != 0)
sys/bus/pci/pci_user.c
157
&& (match_buf->pd_unit != matches[i].pd_unit))
sys/bus/pci/pci_user.c
160
if (((matches[i].flags & PCI_GETCONF_MATCH_NAME) != 0)
sys/bus/pci/pci_user.c
161
&& (strncmp(matches[i].pd_name, match_buf->pd_name,
sys/bus/pci/pci_user.c
231
static int pci_conf_match_old(struct pci_match_conf_old *matches,
sys/bus/pci/pci_user.c
235
pci_conf_match_old(struct pci_match_conf_old *matches, int num_matches,
sys/bus/pci/pci_user.c
240
if ((matches == NULL) || (match_buf == NULL) || (num_matches <= 0))
sys/bus/pci/pci_user.c
250
if (matches[i].flags == PCI_GETCONF_NO_MATCH_OLD)
sys/bus/pci/pci_user.c
258
if (((matches[i].flags & PCI_GETCONF_MATCH_BUS_OLD) != 0)
sys/bus/pci/pci_user.c
259
&& (match_buf->pc_sel.pc_bus != matches[i].pc_sel.pc_bus))
sys/bus/pci/pci_user.c
262
if (((matches[i].flags & PCI_GETCONF_MATCH_DEV_OLD) != 0)
sys/bus/pci/pci_user.c
263
&& (match_buf->pc_sel.pc_dev != matches[i].pc_sel.pc_dev))
sys/bus/pci/pci_user.c
266
if (((matches[i].flags & PCI_GETCONF_MATCH_FUNC_OLD) != 0)
sys/bus/pci/pci_user.c
267
&& (match_buf->pc_sel.pc_func != matches[i].pc_sel.pc_func))
sys/bus/pci/pci_user.c
270
if (((matches[i].flags & PCI_GETCONF_MATCH_VENDOR_OLD) != 0)
sys/bus/pci/pci_user.c
271
&& (match_buf->pc_vendor != matches[i].pc_vendor))
sys/bus/pci/pci_user.c
274
if (((matches[i].flags & PCI_GETCONF_MATCH_DEVICE_OLD) != 0)
sys/bus/pci/pci_user.c
275
&& (match_buf->pc_device != matches[i].pc_device))
sys/bus/pci/pci_user.c
278
if (((matches[i].flags & PCI_GETCONF_MATCH_CLASS_OLD) != 0)
sys/bus/pci/pci_user.c
279
&& (match_buf->pc_class != matches[i].pc_class))
sys/bus/pci/pci_user.c
282
if (((matches[i].flags & PCI_GETCONF_MATCH_UNIT_OLD) != 0)
sys/bus/pci/pci_user.c
283
&& (match_buf->pd_unit != matches[i].pd_unit))
sys/bus/pci/pci_user.c
286
if (((matches[i].flags & PCI_GETCONF_MATCH_NAME_OLD) != 0)
sys/bus/pci/pci_user.c
287
&& (strncmp(matches[i].pd_name, match_buf->pd_name,
sys/bus/pci/pci_user.c
549
(caddr_t)cio->matches +
sys/bus/pci/pci_user.c
63
static int pci_conf_match(struct pci_match_conf *matches, int num_matches,
sys/dev/drm/drm_drv.c
1293
for (i = 0; i < NELEM(dsi->matches); i++) {
sys/dev/drm/drm_drv.c
1294
slot = dsi->matches[i].slot;
sys/dev/drm/drm_drv.c
1300
!strcmp(sys_vendor, dsi->matches[i].substr))
sys/dev/drm/drm_drv.c
1306
!strcmp(board_vendor, dsi->matches[i].substr))
sys/dev/drm/drm_drv.c
1312
!strcmp(product_name, dsi->matches[i].substr))
sys/dev/drm/drm_drv.c
1318
!strcmp(board_name, dsi->matches[i].substr))
sys/dev/drm/drm_drv.c
1346
for (dsi = sysid; dsi->matches[0].slot != 0 ; dsi++) {
sys/dev/drm/drm_panel_orientation_quirks.c
102
.matches = {
sys/dev/drm/drm_panel_orientation_quirks.c
110
.matches = {
sys/dev/drm/drm_panel_orientation_quirks.c
122
.matches = {
sys/dev/drm/drm_panel_orientation_quirks.c
129
.matches = {
sys/dev/drm/drm_panel_orientation_quirks.c
136
.matches = {
sys/dev/drm/drm_panel_orientation_quirks.c
77
.matches = {
sys/dev/drm/drm_panel_orientation_quirks.c
83
.matches = {
sys/dev/drm/drm_panel_orientation_quirks.c
94
.matches = {
sys/dev/drm/i915/intel_crt.c
753
.matches = {
sys/dev/drm/i915/intel_crt.c
761
.matches = {
sys/dev/drm/i915/intel_display.c
15054
.matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
sys/dev/drm/i915/intel_lvds.c
535
.matches = {
sys/dev/drm/i915/intel_lvds.c
543
.matches = {
sys/dev/drm/i915/intel_lvds.c
551
.matches = {
sys/dev/drm/i915/intel_lvds.c
559
.matches = {
sys/dev/drm/i915/intel_lvds.c
567
.matches = {
sys/dev/drm/i915/intel_lvds.c
575
.matches = {
sys/dev/drm/i915/intel_lvds.c
583
.matches = {
sys/dev/drm/i915/intel_lvds.c
591
.matches = {
sys/dev/drm/i915/intel_lvds.c
599
.matches = {
sys/dev/drm/i915/intel_lvds.c
607
.matches = {
sys/dev/drm/i915/intel_lvds.c
614
.matches = {
sys/dev/drm/i915/intel_lvds.c
622
.matches = {
sys/dev/drm/i915/intel_lvds.c
630
.matches = {
sys/dev/drm/i915/intel_lvds.c
638
.matches = {
sys/dev/drm/i915/intel_lvds.c
646
.matches = {
sys/dev/drm/i915/intel_lvds.c
654
.matches = {
sys/dev/drm/i915/intel_lvds.c
662
.matches = {
sys/dev/drm/i915/intel_lvds.c
670
.matches = {
sys/dev/drm/i915/intel_lvds.c
678
.matches = {
sys/dev/drm/i915/intel_lvds.c
686
.matches = {
sys/dev/drm/i915/intel_lvds.c
694
.matches = {
sys/dev/drm/i915/intel_lvds.c
702
.matches = {
sys/dev/drm/i915/intel_lvds.c
710
.matches = {
sys/dev/drm/i915/intel_lvds.c
718
.matches = {
sys/dev/drm/i915/intel_lvds.c
726
.matches = {
sys/dev/drm/i915/intel_lvds.c
734
.matches = {
sys/dev/drm/i915/intel_lvds.c
753
.matches = {
sys/dev/drm/i915/intel_lvds.c
761
.matches = {
sys/dev/drm/i915/intel_lvds.c
769
.matches = {
sys/dev/drm/i915/intel_opregion.c
1082
.matches = {DMI_MATCH(DMI_SYS_VENDOR, "Conrac GmbH"),
sys/dev/drm/i915/intel_opregion.c
916
.matches = {
sys/dev/drm/include/linux/mod_devicetable.h
48
struct dmi_strmatch matches[4];
sys/dev/netif/iwm/if_iwmreg.h
6107
struct iwm_scan_offload_profile_match matches[IWM_SCAN_MAX_PROFILES];
sys/net/zlib.c
2173
s->last_lit = s->matches = 0;
sys/net/zlib.c
2821
s->matches++;
sys/net/zlib.c
2846
if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
sys/net/zlib.c
506
uInt matches; /* number of string matches in current block */
sys/sys/pciio.h
104
struct pci_conf *matches; /* match buffer */
sys/sys/sleepqueue.h
108
void sleepq_chains_remove_matching(bool (*matches)(struct thread *));
sys/sys/sleepqueue.h
111
bool (*matches)(struct thread *), int pri);
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.h
240
uInt matches; /* number of string matches in current block */
sys/vfs/hammer2/zlib/hammer2_zlib_trees.c
1027
s->matches++;
sys/vfs/hammer2/zlib/hammer2_zlib_trees.c
1053
if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
sys/vfs/hammer2/zlib/hammer2_zlib_trees.c
425
s->last_lit = s->matches = 0;
usr.bin/systat/devs.c
180
matches : NULL,
usr.bin/systat/devs.c
247
free(matches);
usr.bin/systat/devs.c
248
matches = NULL;
usr.bin/systat/devs.c
253
if (buildmatch(tstr[i], &matches, &num_matches) != 0) {
usr.bin/systat/devs.c
264
s1->dinfo->devices, num_devices, matches,
usr.bin/systat/devs.c
89
struct devstat_match *matches = NULL;
usr.bin/vmstat/vmstat.c
107
struct devstat_match *matches;
usr.bin/vmstat/vmstat.c
211
if (buildmatch(optarg, &matches, &num_matches) != 0)
usr.bin/vmstat/vmstat.c
379
if (buildmatch("da", &matches, &num_matches) != 0)
usr.bin/vmstat/vmstat.c
393
num_devices, matches, num_matches, specified_devices,
usr.bin/vmstat/vmstat.c
459
num_devices, matches, num_matches,
usr.bin/whereis/whereis.c
365
regmatch_t matches[2];
usr.bin/whereis/whereis.c
483
matches, 0) == 0 &&
usr.bin/whereis/whereis.c
484
(rlen = matches[1].rm_eo -
usr.bin/whereis/whereis.c
485
matches[1].rm_so) > 0) {
usr.bin/whereis/whereis.c
495
buf + matches[1].rm_so,
usr.sbin/iostat/iostat.c
151
struct devstat_match *matches;
usr.sbin/iostat/iostat.c
164
matches = NULL;
usr.sbin/iostat/iostat.c
205
if (buildmatch(optarg, &matches,
usr.sbin/iostat/iostat.c
317
matches, num_matches,
usr.sbin/iostat/iostat.c
333
matches, num_matches,
usr.sbin/iostat/iostat.c
429
num_devices, matches, num_matches,
usr.sbin/iostat/iostat.c
460
num_devices, matches, num_matches,
usr.sbin/kbdmap/kbdmap.c
211
int a, b, matches;
usr.sbin/kbdmap/kbdmap.c
216
matches = sscanf(line,
usr.sbin/kbdmap/kbdmap.c
219
if (matches==3) {
usr.sbin/kbdmap/kbdmap.c
588
int matches;
usr.sbin/kbdmap/kbdmap.c
601
matches = sscanf(p, "%64[^:]:%64[^:]:%64[^:\n]",
usr.sbin/kbdmap/kbdmap.c
603
if (matches == 3) {
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.h
240
uInt matches; /* number of string matches in current block */
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_trees.c
1027
s->matches++;
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_trees.c
1053
if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_trees.c
425
s->last_lit = s->matches = 0;
usr.sbin/mptutil/mpt_cam.c
105
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
111
ccb.cdm.matches[0].type != DEV_MATCH_BUS) {
usr.sbin/mptutil/mpt_cam.c
112
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
115
*path_id = ccb.cdm.matches[0].result.bus_result.path_id;
usr.sbin/mptutil/mpt_cam.c
116
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
152
ccb.cdm.matches = calloc(1, bufsize);
usr.sbin/mptutil/mpt_cam.c
169
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
179
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
189
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
195
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
198
if (ccb.cdm.matches[0].type != DEV_MATCH_PERIPH) {
usr.sbin/mptutil/mpt_cam.c
200
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
205
r = &ccb.cdm.matches[1].result.periph_result;
usr.sbin/mptutil/mpt_cam.c
208
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
420
ccb.cdm.matches = calloc(1, bufsize);
usr.sbin/mptutil/mpt_cam.c
436
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
444
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
450
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
456
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
464
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
472
if (ccb.cdm.matches[i].type != DEV_MATCH_PERIPH) {
usr.sbin/mptutil/mpt_cam.c
474
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
490
r = &ccb.cdm.matches[i].result.periph_result;
usr.sbin/mptutil/mpt_cam.c
506
free(ccb.cdm.matches);
usr.sbin/mptutil/mpt_cam.c
78
ccb.cdm.matches = calloc(1, bufsize);
usr.sbin/mptutil/mpt_cam.c
95
free(ccb.cdm.matches);
usr.sbin/pciconf/pciconf.c
192
pc.matches = conf;
usr.sbin/usbconfig/usbconfig.c
315
uint32_t matches = 0;
usr.sbin/usbconfig/usbconfig.c
381
matches++;
usr.sbin/usbconfig/usbconfig.c
518
if (matches == 0) {