| /onnv/onnv-gate/usr/src/cmd/hal/hald/ |
| device.h | 4 * device.c : HalDevice methods 53 void (*property_changed) (HalDevice *device, 58 void (*capability_added) (HalDevice *device, 61 void (*callouts_finished) (HalDevice *device); 63 void (*cancelled) (HalDevice *device); 76 typedef void (*HalDeviceAsyncCallback) (HalDevice *device, 81 typedef gboolean (*HalDevicePropertyForeachFn) (HalDevice *device, 101 const char *hal_device_get_udi (HalDevice *device); 102 void hal_device_set_udi (HalDevice *device, 105 void hal_device_add_capability (HalDevice *device, [all...] |
| device.c | 4 * device.c : HalDevice methods 35 #include "device.h" 59 HalDevice *device = HAL_DEVICE (obj); local 61 runner_device_finalized (device); 65 printf ("************* in finalize for udi=%s\n", device->udi); 69 g_slist_foreach (device->properties, (GFunc) hal_property_free, NULL); 71 g_slist_free (device->properties); 73 g_free (device->udi); 135 hal_device_init (HalDevice *device) 139 device->udi = g_strdup_printf ("/org/freedesktop/Hal/devices/temp/%d" 175 HalDevice *device; local 984 HalDevice *device; member in struct:__anon588 [all...] |
| hald_runner.h | 30 #include "device.h" 57 hald_runner_start (HalDevice *device, const gchar *command_line, char **extra_env, 63 hald_runner_run(HalDevice *device, 69 hald_runner_run_method(HalDevice *device, 76 void hald_runner_kill_device(HalDevice *device); 79 /* called by the core to tell the runner a device was finalized */ 80 void runner_device_finalized (HalDevice *device);
|
| /onnv/onnv-gate/usr/src/cmd/fm/dicts/ |
| PCIEX.dict | 29 fault.io.pciex.device-interr=0 30 fault.io.pciex.device-interr fault.io.pciex.device-invreq=1 31 fault.io.pciex.bus-noresp fault.io.pciex.device-noresp=2 32 fault.io.pciex.bus-linkerr fault.io.pciex.device-interr=3 33 fault.io.pci.bus-linkerr fault.io.pciex.device-interr=4 34 fault.io.pci.device-invreq=5 35 fault.io.pci.device-invreq fault.io.pciex.device-interr=6 36 fault.io.pci.device-interr fault.io.pciex.device-invreq= [all...] |
| PCI.dict | 32 fault.io.pci.device=3 33 defect.io.pci.driver fault.io.pci.device=4 34 fault.io.pci.bus fault.io.pci.device=5 35 defect.io.pci.driver fault.io.pci.bus fault.io.pci.device=6 36 fault.io.pci.device-interr=7 37 fault.io.pci.bus-linkerr fault.io.pci.device-interr=8 38 fault.io.pci.device-invreq fault.io.pci.device-noresp=9 39 fault.io.pci.device-interr fault.io.pci.device-invreq=1 [all...] |
| ZFS.dict | 32 ereport.fs.zfs.device.missing_r=2 33 ereport.fs.zfs.device.missing_nr=3 34 ereport.fs.zfs.device.corrupt_label_r=4 35 ereport.fs.zfs.device.corrupt_label_nr=5 39 ereport.fs.zfs.device.failing=9 40 ereport.fs.zfs.device.version_mismatch=10 42 fault.fs.zfs.device=12
|
| SUN4.dict | 35 fault.io.fire.pciex.device=4 38 fault.io.fire.asic fault.io.fire.pciex.device=7 40 fault.io.fire.pci.device fault.io.fire.pciex.device=9 41 fault.io.fire.pci.device=10 43 fault.io.fire.asic fault.io.fire.pci.device fault.io.fire.pciex.device=12 44 fault.io.fire.asic fault.io.fire.pci.device=13
|
| /onnv/onnv-gate/usr/src/uts/i86pc/os/ |
| pci_mech1.c | 48 pci_mech1_getb(int bus, int device, int function, int reg) 51 if (device == PCI_MECH1_SPEC_CYCLE_DEV && 57 outl(PCI_CONFADD, PCI_CADDR1(bus, device, function, reg)); 64 pci_mech1_getw(int bus, int device, int function, int reg) 68 if (device == PCI_MECH1_SPEC_CYCLE_DEV && 74 outl(PCI_CONFADD, PCI_CADDR1(bus, device, function, reg)); 81 pci_mech1_getl(int bus, int device, int function, int reg) 85 if (device == PCI_MECH1_SPEC_CYCLE_DEV && 91 outl(PCI_CONFADD, PCI_CADDR1(bus, device, function, reg)); 98 pci_mech1_putb(int bus, int device, int function, int reg, uint8_t val [all...] |
| pci_mech2.c | 39 * The "mechanism 2" interface only has 4 bits for device number. To 73 pci_mech2_getb(int bus, int device, int function, int reg) 78 if (device >= PCI_MAX_DEVS_2) 82 val = inb(PCI_CADDR2(device, reg)); 89 pci_mech2_getw(int bus, int device, int function, int reg) 94 if (device >= PCI_MAX_DEVS_2) 98 val = inw(PCI_CADDR2(device, reg)); 105 pci_mech2_getl(int bus, int device, int function, int reg) 110 if (device >= PCI_MAX_DEVS_2) 114 val = inl(PCI_CADDR2(device, reg)) [all...] |
| pci_neptune.c | 65 * First check the vendor and device ids of the Host to 67 * because the same device ID can refer to either 71 /* check the vendor id, the device id, and the revision id */ 104 /* check the vendor and device id's of the Host to PCI bridge */ 140 pci_neptune_getb(int bus, int device, int function, int reg) 146 val = pci_mech1_getb(bus, device, function, reg); 153 pci_neptune_getw(int bus, int device, int function, int reg) 159 val = pci_mech1_getw(bus, device, function, reg); 166 pci_neptune_getl(int bus, int device, int function, int reg) 172 val = pci_mech1_getl(bus, device, function, reg) [all...] |
| /onnv/onnv-gate/usr/src/cmd/ssh/sshd/ |
| auth-chall.c | 37 static KbdintDevice *device; variable 46 device = devices[0]; /* we always use the 1st device for protocol 1 */ 47 if (device == NULL) 49 if ((authctxt->kbdintctxt = device->init_ctx(authctxt)) == NULL) 51 if (device->query(authctxt->kbdintctxt, &name, &info, 53 device->free_ctx(authctxt->kbdintctxt); 75 if (device == NULL) 80 res = device->respond(authctxt->kbdintctxt, 1, resp); 81 device->free_ctx(authctxt->kbdintctxt) [all...] |
| /onnv/onnv-gate/usr/src/cmd/power/ |
| power.conf.i386 | 32 device-dependency-property removable-media /dev/fb
|
| power.conf.sparc | 32 device-dependency-property removable-media /dev/fb
|
| /onnv/onnv-gate/usr/src/lib/libsecdb/ |
| policy.conf | 31 AUTHS_GRANTED=solaris.device.cdrw
|
| /onnv/onnv-gate/usr/src/cmd/fm/eversholt/files/common/ |
| neptune_xaui.esc | 38 event fault.io.pciex.device-interr@pciexbus/pciexdev/pciexfn, 42 event error.io.device.nxge.xaui-err@pciexbus/pciexdev/pciexfn; 43 event ereport.io.device.nxge.xaui-err@pciexbus/pciexdev/pciexfn {within(10s)}; 46 prop fault.io.pciex.device-interr@pciexbus/pciexdev/pciexfn (0) -> 47 error.io.device.nxge.xaui-err@pciexbus/pciexdev/pciexfn; 49 prop error.io.device.nxge.xaui-err@pciexbus/pciexdev/pciexfn (2) -> 50 ereport.io.device.nxge.xaui-err@pciexbus/pciexdev/pciexfn,
|
| neptune_xfp.esc | 48 event error.io.device.nxge.xfp-err@pciexbus/pciexdev/pciexfn; 49 event ereport.io.device.nxge.xfp-err@pciexbus/pciexdev/pciexfn {within(10s)}; 53 * Events ereport.io.device.nxge.xfp-err and ereport.io.service.lost are 55 * generating the xfp-err ereport. A internal error.io.device.nxge.xfp-err 56 * is generated only after the FMD has received both ereport.io.device. 60 * (associated with ereport.io.device.nxge.xfp-err and ereport.io.service.lost 64 error.io.device.nxge.xfp-err@pciexbus/pciexdev/pciexfn; 66 prop error.io.device.nxge.xfp-err@pciexbus/pciexdev/pciexfn (2) -> 67 ereport.io.device.nxge.xfp-err@pciexbus/pciexdev/pciexfn,
|
| sca1000.esc | 61 event error.io.sca1000.hw.device@P; /* DMA device errors */ 62 event error.io.sca1000.hw.timeout@P; /* Device hang */ 67 event ereport.io.sca1000.hw.device@P; 74 -> error.io.sca1000.hw.device@P, 77 prop error.io.sca1000.hw.device@P 78 -> ereport.io.sca1000.hw.device@P;
|
| sca500.esc | 62 event error.io.sca500.hw.device@P; /* DMA device errors */ 63 event error.io.sca500.hw.timeout@P; /* Device hang */ 68 event ereport.io.sca500.hw.device@P; 75 -> error.io.sca500.hw.device@P, 78 prop error.io.sca500.hw.device@P 79 -> ereport.io.sca500.hw.device@P;
|
| /onnv/onnv-gate/usr/src/cmd/allocate/ |
| devalloc_defaults | 25 # Default device_allocation attributes for device types. 26 # Device types supported - 30 # device-type:\ 33 # auths=<comma separated list of device authorizations>;\ 37 # e.g.: minlabel="TS A B";maxlabel="TS AB";auths=solaris.device.allocate;\ 40 audio:minlabel=admin_low;maxlabel=admin_high;auths=solaris.device.allocate;cleanscript=/etc/security/lib/audio_clean 41 fd:minlabel=admin_low;maxlabel=admin_high;auths=solaris.device.allocate;cleanscript=/etc/security/lib/disk_clean 42 sr:minlabel=admin_low;maxlabel=admin_high;auths=solaris.device.allocate;cleanscript=/etc/security/lib/disk_clean 43 st:minlabel=admin_low;maxlabel=admin_high;auths=solaris.device.allocate;cleanscript=/etc/security/lib/tape_clean 44 rmdisk:minlabel=admin_low;maxlabel=admin_high;auths=solaris.device.allocate;cleanscript=/etc/security/lib/disk_clea [all...] |
| /onnv/onnv-gate/usr/src/cmd/devinfo/ |
| devinfo.c | 62 static void partinfo(int fd, char *device); 63 static void devinfo(struct dk_geom *geom, int fd, char *device); 73 char *device; local 82 device = optarg; 86 device = optarg; 101 if ((fd = open(device, O_RDONLY)) < 0) { 103 device, strerror(errno)); 110 (void) warn(device, 113 (void) warn(device, 119 devinfo(&geom, fd, device); [all...] |
| /onnv/onnv-gate/usr/src/cmd/lp/cmd/lpsched/ |
| ports.c | 159 char *device; local 184 device = pp->device; 185 if (is_printer_uri(device) == 0) { 187 * if it's a device uri and the endpoint contains a valid 190 * local device, so use /dev/null. 192 device = strstr(device, "://"); 193 if (device != NULL) 194 device = strchr(device + 3, '/') [all...] |
| /onnv/onnv-gate/usr/src/cmd/lvm/metassist/common/ |
| volume_devconfig.h | 101 * Enumeration defining physical or logical device types 139 * devconfig_t - struct to hold a device configuration hierarchy 143 /* Attributes of this device */ 147 * Available devices for use in construction of this device 153 * Unavailable devices for use in construction of this device 159 * Subcomponents (devconfig_t) of this device 196 * Check the type of the given device. 198 * @param device 199 * the device whose type to check 202 * the type of the device against which to compar [all...] |
| /onnv/onnv-gate/usr/src/cmd/ntfsprogs/ |
| ntfscat.h | 32 char *device; /* Device/File to work with */ member in struct:options
|
| /onnv/onnv-gate/usr/src/cmd/acct/lib/ |
| devtolin.c | 32 * convert device to linename (as in /dev/linename) 34 * device must be character device 49 dev_t tdev; /* device */ 65 devtolin(device) 66 dev_t device; 74 if (device == tp->tdev) 83 found = srch_dir(device, srch_dirs[dirno], 94 found = srch_dir(device, dev_dir, 0, srch_dirs); 101 tp->tdev = device; [all...] |
| /onnv/onnv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/server/tests/ |
| template | 13 device=
|