Home
last modified time | relevance | path

Searched refs:sfunc (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/io/scsi/conf/
H A Dscsi_confsubr.c1396 int tgt, lun, sfunc; in scsi_hba_ua_get_reportdev() local
1413 sfunc = scsi_device_prop_get_int(sd, SCSI_DEVICE_PROP_PATH, in scsi_hba_ua_get_reportdev()
1421 if (sfunc == -1) in scsi_hba_ua_get_reportdev()
1428 SCSI_ADDR_PROP_TARGET_PORT, tgt_port, lun64, sfunc); in scsi_hba_ua_get_reportdev()
1431 if (sfunc == -1) in scsi_hba_ua_get_reportdev()
1438 SCSI_ADDR_PROP_TARGET, tgt, lun64, sfunc); in scsi_hba_ua_get_reportdev()
1480 int tgt, lun, sfunc; in scsi_hba_ua_get() local
1500 if (sfunc == -1) in scsi_hba_ua_get()
1505 tgt_port, lun64, sfunc); in scsi_hba_ua_get()
1508 if (sfunc == -1) in scsi_hba_ua_get()
[all …]
/illumos-gate/usr/src/uts/common/io/scsi/impl/
H A Dscsi_hba.c1868 int sfunc; in scsi_busctl_initchild() local
3443 int sfunc; in scsi_addr_to_sfunc() local
3460 sfunc = (sfunc << 4) + (*s - '0'); in scsi_addr_to_sfunc()
3462 sfunc = (sfunc << 4) + 10 + (*s - 'A'); in scsi_addr_to_sfunc()
3464 sfunc = (sfunc << 4) + 10 + (*s - 'a'); in scsi_addr_to_sfunc()
3471 sfunc = -1; in scsi_addr_to_sfunc()
3472 return (sfunc); in scsi_addr_to_sfunc()
4752 int sfunc; in scsi_hba_ua_set() local
4804 sfunc = (sfunc << 4) + (*p - '0'); in scsi_hba_ua_set()
4806 sfunc = (sfunc << 4) + 10 + (*p - 'a'); in scsi_hba_ua_set()
[all …]
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_aggregate.c1527 int (*sfunc)(const void *, const void *)) in dt_aggregate_walk_sorted()
1564 if (sfunc == NULL) { in dt_aggregate_walk_sorted()
1573 qsort(sorted, nentries, sizeof (dt_ahashent_t *), sfunc); in dt_aggregate_walk_sorted()