HomeSort by relevance Sort by last modified time
    Searched refs:devid (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /netvirt/usr/src/uts/common/io/sata/adapters/nv_sata/
nv_sata.conf 28 use-cmdk-devid-format=1;
  /netvirt/usr/src/lib/libdevid/
inc.flg 29 find_files "s.*" usr/src/common/devid
Makefile.com 30 OBJECTS= deviceid.o devid.o devid_scsi.o
35 SRCS = ../deviceid.c $(SRC)/common/devid/devid.c \
36 $(SRC)/common/devid/devid_scsi.c
54 pics/devid.o: $(SRC)/common/devid/devid.c
55 $(COMPILE.c) -o $@ $(SRC)/common/devid/devid.c
58 pics/devid_scsi.o: $(SRC)/common/devid/devid_scsi.
    [all...]
libdevid.h 37 #include <devid.h>
  /netvirt/usr/src/head/
devid.h 30 #pragma ident "@(#)devid.h 1.15 07/12/28 SMI"
48 extern void devid_free(ddi_devid_t devid);
50 extern size_t devid_sizeof(ddi_devid_t devid);
52 extern int devid_deviceid_to_nmlist(char *search_path, ddi_devid_t devid,
55 extern int devid_valid(ddi_devid_t devid);
56 extern char *devid_str_encode(ddi_devid_t devid, char *minor_name);
64 extern char *devid_to_guid(ddi_devid_t devid);
  /netvirt/usr/src/uts/common/io/chxge/com/
ch_compat.h 132 unsigned short devid; member in struct:pci_device_id
137 #define CH_DEVICE_COMMON(devid, ssid, idx) { devid, ssid, idx }
138 #define CH_DEVICE(devid, ssid, idx) CH_DEVICE_COMMON(devid, ssid, idx)
  /netvirt/usr/src/common/devid/
devid.c 26 #pragma ident "@(#)devid.c 1.6 05/06/08 SMI"
45 ddi_devid_valid(ddi_devid_t devid)
47 devid_valid(ddi_devid_t devid)
50 impl_devid_t *id = (impl_devid_t *)devid;
53 DEVID_ASSERT(devid != NULL);
75 * Return the sizeof a device id. If called with NULL devid it returns
80 ddi_devid_sizeof(ddi_devid_t devid)
82 devid_sizeof(ddi_devid_t devid)
85 impl_devid_t *id = (impl_devid_t *)devid;
90 DEVID_ASSERT(DEVID_FUNC(devid_valid)(devid) == DEVID_RET_VALID)
    [all...]
devid_impl.h 66 #include <devid.h>
  /netvirt/usr/src/uts/common/io/cardbus/
cardbus_parse.h 46 uint16_t devid; member in struct:cb_deviceset_props
  /netvirt/usr/src/lib/libdiskmgt/common/
path.c 183 ddi_devid_t devid; local
188 if (devid_str_decode(dp->name, &devid, NULL) != 0) {
195 if (pp->disks[i]->devid != NULL &&
196 devid_compare(pp->disks[i]->devid, devid) == 0) {
206 devid_free(devid);
221 ddi_devid_t devid; local
226 if (devid_str_decode(dp->name, &devid, NULL) != 0) {
233 if (pp->disks[i]->devid != NULL &&
234 devid_compare(pp->disks[i]->devid, devid) == 0)
    [all...]
partition.h 39 #include <devid.h>
  /netvirt/usr/src/lib/fm/topo/libtopo/common/
dev.c 35 #include <devid.h>
124 char *devid = NULL; local
143 /* Get devid, if present */
144 err = nvlist_lookup_string(nvl, FM_FMRI_DEV_ID, &devid);
202 /* device-id part, topo_fmristr_build does nothing if devid is NULL */
204 buf, buflen, devid, "/:" FM_FMRI_DEV_ID "=", NULL);
252 char *devid = NULL; local
275 devid = alloca(len + 1);
276 (void) memcpy(devid, devpath + 7, len);
277 devid[len] = 0
309 const char *devid; member in struct:walkinfo
318 ddi_devid_t devid; local
365 char *devid = NULL; local
    [all...]
  /netvirt/usr/src/uts/common/sys/
vuid_event.h 175 #define vuid_first(devid) ((devid) << 8)
176 #define vuid_last(devid) (((devid) << 8)+VUID_SEG_SIZE-1)
177 #define vuid_in_range(devid, id) \
178 ((id >= vuid_first(devid)) && (id <= vuid_last(devid)))
  /netvirt/usr/src/uts/common/os/
devid_cache.c 49 * instances, to search for the device referenced by a devid. Obviously,
52 * discovery at the devid cache level.
84 * devid cache backing store. Probably there's no reason to ever
110 * Devid cache will continue to operate normally but
115 * Any updates to the devid cache will not be preserved across a reboot.
118 * Set to 1 to enable some error messages related to devid
121 * The devid is packed in the cache file as a byte array. For
138 * State to manage discovery of devices providing a devid
165 * devid cache file registration for cache reads and updates
176 * handle to registered devid cache handler
    [all...]
  /netvirt/usr/src/uts/sun4u/sys/
opl_cfg.h 55 #define OPL_CPUID_TO_LSB(devid) ((devid >> 5) & OPL_LSBID_MASK)
56 #define OPL_CPU_CHIP(devid) ((devid >> 3) & 0x3)
57 #define OPL_CORE(devid) ((devid >> 1) & 0x3)
58 #define OPL_CPU(devid) ((devid & 0x001))
  /netvirt/usr/src/cmd/oplhpd/
scf_notify.c 254 unsigned int devid, funcid; /* bus addr */ local
291 if (sscanf(tmp, "%x,%x", &devid, &funcid) != 2) {
293 if (sscanf(tmp, "%x", &devid) != 1) {
294 devid = 0;
311 * Case 1. devid > sdevid
312 * Case 2. devid == sdevid && funcid > sfuncid
314 if ((devid > sdevid) || ((devid == sdevid) &&
317 devid = sdevid;
324 * Case 1. devid >= sdevi
    [all...]
  /netvirt/usr/src/cmd/syseventd/modules/zfs_mod/
zfs_mod.c 36 * 1. Search for any vdevs whose devid matches that of the newly added
66 #include <devid.h>
95 * The device associated with the given vdev (either by devid or physical path)
116 char *devid = NULL; local
123 (void) nvlist_lookup_string(vdev, ZPOOL_CONFIG_DEVID, &devid);
179 * path/devid/wholedisk to keep it simple.
191 (devid && nvlist_add_string(newvd, ZPOOL_CONFIG_DEVID,
192 devid) != 0) ||
262 * <path/> This is a devid for a whole disk, and
315 * Given a /devices path, lookup the corresponding devid for each minor node
329 ddi_devid_t devid; local
    [all...]
  /netvirt/usr/src/grub/grub-0.95/netboot/
config.c 54 dev->devid.bus_type = PCI_BUS_TYPE;
55 dev->devid.vendor_id = htons(state->dev.vendor);
56 dev->devid.device_id = htons(state->dev.dev_id);
103 dev->devid.bus_type = ISA_BUS_TYPE;
dev.h 49 struct dev_id devid; /* device ID string (sent to DHCP server) */ member in struct:dev
  /netvirt/usr/src/lib/lvm/libmeta/common/
meta_se_notify.c 200 do_mdnotify(char *se_subclass, uint32_t tag, set_t setno, md_dev64_t devid)
222 NOTIFY_MD(md_tag, setno, devid, ev_type);
324 md_dev64_t devid
333 do_mdnotify(se_subclass, tag, setno, devid);
365 (uint64_t)devid);
371 devname = obj2devname(tag, setno, devid);
meta_print.c 365 * meta_print_devid: print out the devid information, given a mddevid_t list.
384 char *devid = ""; local
419 devid = "-";
423 devid = devid_str_encode(did, NULL);
430 reloc, devid) < 0)
436 devid_str_free(devid);
meta_set_tkr.c 59 ddi_devid_t devid; local
88 if ((p->dd_dnp->devid != NULL) &&
90 (void) devid_str_decode(p->dd_dnp->devid,
91 &devid, NULL);
92 if ((devid_compare(devid, r->r_devid) == 0) ||
96 devid_free(devid);
330 ddi_devid_t devid = NULL; local
381 /* if devid_str_decode fails, make sure devid is null */
382 if (devid_str_decode(dnp->devid, &devid, NULL) != 0)
    [all...]
  /netvirt/usr/src/cmd/wbem/provider/c/filesystems/wbem_nfs/assoc/
Solaris_NFSMount.c 283 * will do a second check to make sure it did and to get the devid.
1586 char *devid; local
1699 char *devid; local
1781 devidStr, devid); local
1837 char *devid; local
1876 char *devid; local
    [all...]
  /netvirt/usr/src/lib/libipmi/common/
ipmi_sunoem.c 72 ipmi_deviceid_t *devid; local
74 if ((devid = ipmi_get_deviceid(ihp)) == NULL)
77 if (ipmi_devid_manufacturer(devid) != IPMI_OEM_SUN)
  /netvirt/usr/src/cmd/stat/common/
dsr.c 55 #include <devid.h>
62 static di_node_t di_root; /* from di_init: for devid */
126 char *devid; local
261 if (devidp) { /* lookup the devid */
275 /* and lookup devid property on the node */
277 DEVID_PROP_NAME, &devid) != -1)
278 *devidp = devid;
353 char *devid = NULL; local
408 &devpath, &adevpath, want_devid ? &devid : NULL) == 0) {
438 entry->devidstr = devid;
    [all...]

Completed in 1799 milliseconds

1 2 3 4 5