Home
last modified time | relevance | path

Searched refs:device (Results 1 – 25 of 581) sorted by relevance

12345678910>>...24

/titanic_52/usr/src/cmd/hal/hald/
H A Ddevice.h4 * 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...]
H A Ddevice.c4 * device.c : HalDevice methods
35 #include "device.h"
59 HalDevice *device = HAL_DEVICE (obj); in hal_device_finalize() local
61 runner_device_finalized (device); in hal_device_finalize()
65 printf ("************* in finalize for udi=%s\n", device->udi); in hal_device_finalize()
69 g_slist_foreach (device->properties, (GFunc) hal_property_free, NULL); in hal_device_finalize()
71 g_slist_free (device->properties); in hal_device_finalize()
73 g_free (device->udi); in hal_device_finalize()
135 hal_device_init (HalDevice *device) in hal_device_init() argument
139 device in hal_device_init()
175 HalDevice *device; hal_device_new() local
416 hal_device_get_udi(HalDevice * device) hal_device_get_udi() argument
422 hal_device_set_udi(HalDevice * device,const char * udi) hal_device_set_udi() argument
430 hal_device_add_capability(HalDevice * device,const char * capability) hal_device_add_capability() argument
437 hal_device_has_capability(HalDevice * device,const char * capability) hal_device_has_capability() argument
459 hal_device_has_property(HalDevice * device,const char * key) hal_device_has_property() argument
468 hal_device_num_properties(HalDevice * device) hal_device_num_properties() argument
476 hal_device_property_find(HalDevice * device,const char * key) hal_device_property_find() argument
494 hal_device_property_to_string(HalDevice * device,const char * key) hal_device_property_to_string() argument
506 hal_device_property_foreach(HalDevice * device,HalDevicePropertyForeachFn callback,gpointer user_data) hal_device_property_foreach() argument
527 hal_device_property_get_type(HalDevice * device,const char * key) hal_device_property_get_type() argument
543 hal_device_property_get_string(HalDevice * device,const char * key) hal_device_property_get_string() argument
559 hal_device_property_get_as_string(HalDevice * device,const char * key,char * buf,size_t bufsize) hal_device_property_get_as_string() argument
623 hal_device_property_get_int(HalDevice * device,const char * key) hal_device_property_get_int() argument
639 hal_device_property_get_uint64(HalDevice * device,const char * key) hal_device_property_get_uint64() argument
655 hal_device_property_get_bool(HalDevice * device,const char * key) hal_device_property_get_bool() argument
671 hal_device_property_get_double(HalDevice * device,const char * key) hal_device_property_get_double() argument
687 hal_device_property_set_string(HalDevice * device,const char * key,const char * value) hal_device_property_set_string() argument
723 hal_device_property_set_int(HalDevice * device,const char * key,dbus_int32_t value) hal_device_property_set_int() argument
757 hal_device_property_set_uint64(HalDevice * device,const char * key,dbus_uint64_t value) hal_device_property_set_uint64() argument
791 hal_device_property_set_bool(HalDevice * device,const char * key,dbus_bool_t value) hal_device_property_set_bool() argument
825 hal_device_property_set_double(HalDevice * device,const char * key,double value) hal_device_property_set_double() argument
894 hal_device_property_remove(HalDevice * device,const char * key) hal_device_property_remove() argument
914 hal_device_property_set_attribute(HalDevice * device,const char * key,enum PropertyAttribute attr,gboolean val) hal_device_property_set_attribute() argument
930 hal_device_print(HalDevice * device) hal_device_print() argument
984 HalDevice *device; global() member
1003 prop_changed_cb(HalDevice * device,const char * key,gboolean removed,gboolean added,gpointer user_data) prop_changed_cb() argument
1036 hal_device_async_wait_property(HalDevice * device,const char * key,HalDeviceAsyncCallback callback,gpointer user_data,int timeout) hal_device_async_wait_property() argument
1068 hal_device_callouts_finished(HalDevice * device) hal_device_callouts_finished() argument
1076 hal_device_cancel(HalDevice * device) hal_device_cancel() argument
1086 hal_device_property_get_strlist(HalDevice * device,const char * key) hal_device_property_get_strlist() argument
1103 hal_device_property_get_strlist_elem(HalDevice * device,const char * key,guint index) hal_device_property_get_strlist_elem() argument
1122 hal_device_property_strlist_append(HalDevice * device,const char * key,const char * value) hal_device_property_strlist_append() argument
1154 hal_device_property_strlist_prepend(HalDevice * device,const char * key,const char * value) hal_device_property_strlist_prepend() argument
1186 hal_device_property_strlist_remove_elem(HalDevice * device,const char * key,guint index) hal_device_property_strlist_remove_elem() argument
1211 hal_device_property_strlist_clear(HalDevice * device,const char * key) hal_device_property_strlist_clear() argument
1244 hal_device_property_strlist_add(HalDevice * device,const char * key,const char * value) hal_device_property_strlist_add() argument
1283 hal_device_property_strlist_remove(HalDevice * device,const char * key,const char * value) hal_device_property_strlist_remove() argument
1307 hal_device_property_strlist_is_empty(HalDevice * device,const char * key) hal_device_property_strlist_is_empty() argument
1326 hal_device_inc_num_addons(HalDevice * device) hal_device_inc_num_addons() argument
1332 hal_device_inc_num_ready_addons(HalDevice * device) hal_device_inc_num_ready_addons() argument
1345 hal_device_are_all_addons_ready(HalDevice * device) hal_device_are_all_addons_ready() argument
[all...]
H A Ddevice_store.c109 hal_device_store_init (HalDeviceStore *device) in hal_device_store_init() argument
149 emit_device_property_changed (HalDevice *device, in emit_device_property_changed() argument
158 device, key, added, removed); in emit_device_property_changed()
162 emit_device_capability_added (HalDevice *device, in emit_device_capability_added() argument
169 device, capability); in emit_device_capability_added()
173 hal_device_store_add (HalDeviceStore *store, HalDevice *device) in hal_device_store_add() argument
177 if (strncmp(device->udi, buf, sizeof (buf) - 1) != 0) { in hal_device_store_add()
184 g_object_ref (device)); in hal_device_store_add()
186 g_signal_connect (device, "property_changed", in hal_device_store_add()
188 g_signal_connect (device, "capability_adde in hal_device_store_add()
198 hal_device_store_remove(HalDeviceStore * store,HalDevice * device) hal_device_store_remove() argument
257 hal_device_store_print_foreach_fn(HalDeviceStore * store,HalDevice * device,gpointer user_data) hal_device_store_print_foreach_fn() argument
396 match_device_async(HalDeviceStore * store,HalDevice * device,const char * key,gboolean removed,gboolean added,gpointer user_data) match_device_async() argument
421 store_changed(HalDeviceStore * store,HalDevice * device,gboolean added,gpointer user_data) store_changed() argument
461 HalDevice *device; hal_device_store_match_key_value_string_async() local
[all...]
H A Dhald.c68 * @brief The HAL daemon manages persistent device objects available through
78 addon_terminated (HalDevice *device, guint32 exit_type, in addon_terminated() argument
82 HAL_INFO (("in addon_terminated for udi=%s", device->udi)); in addon_terminated()
89 if (hal_device_inc_num_ready_addons (device)) { in addon_terminated()
90 if (hal_device_are_all_addons_ready (device)) { in addon_terminated()
91 manager_send_signal_device_added (device); in addon_terminated()
100 gdl_store_changed (HalDeviceStore *store, HalDevice *device, in gdl_store_changed() argument
106 HAL_INFO (("Added device to GDL; udi=%s", hal_device_get_udi(device))); in gdl_store_changed()
108 if ((addons = hal_device_property_get_strlist (device, "inf in gdl_store_changed()
145 gdl_property_changed(HalDeviceStore * store,HalDevice * device,const char * key,gboolean added,gboolean removed,gpointer user_data) gdl_property_changed() argument
159 gdl_capability_added(HalDeviceStore * store,HalDevice * device,const char * capability,gpointer user_data) gdl_capability_added() argument
[all...]
/titanic_52/usr/src/cmd/boot/installboot/i386/
H A Dinstallboot.c236 read_bootblock_from_disk(ib_device_t *device, ib_bootblock_t *bblock, in read_bootblock_from_disk() argument
245 assert(device != NULL); in read_bootblock_from_disk()
248 if (device->target.fstype == IG_FS_ZFS) { in read_bootblock_from_disk()
249 dev_fd = device->target.fd; in read_bootblock_from_disk()
251 *path = device->target.path; in read_bootblock_from_disk()
253 dev_fd = device->stage.fd; in read_bootblock_from_disk()
254 offset = device->stage.offset * SECTOR_SIZE; in read_bootblock_from_disk()
255 *path = device->stage.path; in read_bootblock_from_disk()
327 ib_device_t *device = &data->device; in is_update_necessary() local
416 ib_device_t *device; prepare_stage1() local
461 ib_device_t *device; prepare_bootblock() local
485 ib_device_t *device = &data->device; write_bootblock() local
559 ib_device_t *device = &data->device; write_stage1() local
640 get_start_sector(ib_device_t * device) get_start_sector() argument
886 get_boot_partition(ib_device_t * device,struct mboot * mbr) get_boot_partition() argument
941 get_boot_slice(ib_device_t * device,struct dk_gpt * vtoc) get_boot_slice() argument
976 init_device(ib_device_t * device,char * path) init_device() argument
1139 cleanup_device(ib_device_t * device) cleanup_device() argument
1332 ib_device_t device; handle_getinfo() local
[all...]
/titanic_52/usr/src/cmd/boot/installgrub/
H A Dinstallgrub.c103 static int get_disk_fd(ig_device_t *device);
267 * Install a new stage1/stage2 pair on the specified device. handle_install()
269 * the target device).
299 BOOT_DEBUG("stage1 path: %s, stage2 path: %s, device: %s\n", in handle_install()
302 if (init_device(&install_data.device, device_path) != BC_SUCCESS) { in handle_install()
303 (void) fprintf(stderr, gettext("Unable to gather device " in handle_install()
322 if (is_bootpar(install_data.device.type) && do_version) in handle_install()
349 cleanup_device(&install_data.device); in handle_install()
358 * Retrieves from a device the extended information (einfo) associated to the
360 * Expects one parameter, the device pat
371 ig_device_t *device = &data.device; handle_getinfo() local
634 init_device(ig_device_t * device,char * path) init_device() argument
700 cleanup_device(ig_device_t * device) cleanup_device() argument
726 get_start_sector(ig_device_t * device) get_start_sector() argument
886 get_disk_fd(ig_device_t * device) get_disk_fd() argument
979 ig_device_t *device = &install->device; write_stage2() local
1037 ig_device_t *device = &install->device; write_stage1() local
1103 ig_device_t *device = &dest->device; read_stage2_from_file() local
1174 ig_device_t *device = &install->device; prepare_stage1() local
1294 ig_device_t *device = &data->device; is_update_necessary() local
1347 ig_device_t *device = &install->device; prepare_stage2() local
1469 get_raw_partition_path(ig_device_t * device) get_raw_partition_path() argument
1520 get_raw_partition_fd(ig_device_t * device) get_raw_partition_fd() argument
[all...]
/titanic_52/usr/src/cmd/fm/dicts/
H A DPCIEX.dict29 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
[all...]
H A DPCIEX.po28 # keys: fault.io.pciex.device-interr
35 msgstr "A problem was detected for a PCIEX device.\n Refer to %s for more information."
37 msgstr "One or more device instances may be disabled\n"
39 msgstr "Loss of services provided by the device instances associated with this fault\n"
41 msgstr "Schedule a repair procedure to replace the affected device. Use fmadm faulty to identify the device or contact Sun for support.\n"
44 # keys: fault.io.pciex.device-interr fault.io.pciex.device-invreq
51 msgstr "Either the transmitting device sent an invalid request or the receiving device i
[all...]
H A DPCI.po37 msgstr "One or more of device instances may be disabled."
39 msgstr "Loss of services provided by the device instances associated with this problem."
53 msgstr "One or more device instances may be disabled."
55 msgstr "Loss of services provided by the device instances associated with this fault."
57 msgstr "Schedule a repair procedure to replace the affected device. Use fmdump -v -u <EVENT_ID> to identify the device or contact Sun for support."
71 msgstr "Possible loss of devices that may be attached to the system via this device/bus and/or system downtime."
73 msgstr "Use fmdump -v -u <EVENT_ID> to identify the \nsuspected device(s)or driver(s).\n\nCheck for patches to identified device drivers, schedule a repair for \nindicated hardware.\n"
76 # keys: fault.io.pci.device
[all...]
H A DSUN4U.dict69 fault.io.datapath fault.io.pci.device=40
70 defect.io.pci.driver fault.io.datapath fault.io.pci.device=41
71 fault.io.datapath fault.io.pci.bus fault.io.pci.device=42
72 defect.io.pci.driver fault.io.datapath fault.io.pci.bus fault.io.pci.device=43
77 fault.io.hbus fault.io.pci.device=48
78 defect.io.pci.driver fault.io.hbus fault.io.pci.device=49
79 fault.io.hbus fault.io.pci.bus fault.io.pci.device=50
80 defect.io.pci.driver fault.io.hbus fault.io.pci.bus fault.io.pci.device=51
85 fault.io.datapath fault.io.hbus fault.io.pci.device=56
86 defect.io.pci.driver fault.io.datapath fault.io.hbus fault.io.pci.device
[all...]
H A DPCI.dict32 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
[all...]
/titanic_52/usr/src/uts/i86pc/os/
H A Dpci_mech1.c48 pci_mech1_getb(int bus, int device, int function, int reg) in pci_mech1_getb() argument
51 if (device == PCI_MECH1_SPEC_CYCLE_DEV && in pci_mech1_getb()
57 outl(PCI_CONFADD, PCI_CADDR1(bus, device, function, reg)); in pci_mech1_getb()
64 pci_mech1_getw(int bus, int device, int function, int reg) in pci_mech1_getw() argument
68 if (device == PCI_MECH1_SPEC_CYCLE_DEV && in pci_mech1_getw()
74 outl(PCI_CONFADD, PCI_CADDR1(bus, device, function, reg)); in pci_mech1_getw()
81 pci_mech1_getl(int bus, int device, int function, int reg) in pci_mech1_getl() argument
85 if (device == PCI_MECH1_SPEC_CYCLE_DEV && in pci_mech1_getl()
91 outl(PCI_CONFADD, PCI_CADDR1(bus, device, function, reg)); in pci_mech1_getl()
98 pci_mech1_putb(int bus, int device, in argument
112 pci_mech1_putw(int bus,int device,int function,int reg,uint16_t val) pci_mech1_putw() argument
126 pci_mech1_putl(int bus,int device,int function,int reg,uint32_t val) pci_mech1_putl() argument
[all...]
H A Dpci_mech2.c39 * The "mechanism 2" interface only has 4 bits for device number. To
73 pci_mech2_getb(int bus, int device, int function, int reg) in pci_mech2_getb() argument
78 if (device >= PCI_MAX_DEVS_2) in pci_mech2_getb()
82 val = inb(PCI_CADDR2(device, reg)); in pci_mech2_getb()
89 pci_mech2_getw(int bus, int device, int function, int reg) in pci_mech2_getw() argument
94 if (device >= PCI_MAX_DEVS_2) in pci_mech2_getw()
98 val = inw(PCI_CADDR2(device, reg)); in pci_mech2_getw()
105 pci_mech2_getl(int bus, int device, int function, int reg) in pci_mech2_getl() argument
110 if (device >= PCI_MAX_DEVS_2) in pci_mech2_getl()
114 val = inl(PCI_CADDR2(device, re in pci_mech2_getl()
121 pci_mech2_putb(int bus,int device,int function,int reg,uint8_t val) pci_mech2_putb() argument
134 pci_mech2_putw(int bus,int device,int function,int reg,uint16_t val) pci_mech2_putw() argument
147 pci_mech2_putl(int bus,int device,int function,int reg,uint32_t val) pci_mech2_putl() argument
[all...]
H A Dpci_mech1_amd.c95 pci_mech1_amd_getb(int bus, int device, int function, int reg) in pci_mech1_amd_getb() argument
99 if (device == PCI_MECH1_SPEC_CYCLE_DEV && in pci_mech1_amd_getb()
105 outl(PCI_CONFADD, PCI_CADDR1_ECS(bus, device, function, reg)); in pci_mech1_amd_getb()
112 pci_mech1_amd_getw(int bus, int device, int function, int reg) in pci_mech1_amd_getw() argument
116 if (device == PCI_MECH1_SPEC_CYCLE_DEV && in pci_mech1_amd_getw()
122 outl(PCI_CONFADD, PCI_CADDR1_ECS(bus, device, function, reg)); in pci_mech1_amd_getw()
129 pci_mech1_amd_getl(int bus, int device, int function, int reg) in pci_mech1_amd_getl() argument
133 if (device == PCI_MECH1_SPEC_CYCLE_DEV && in pci_mech1_amd_getl()
139 outl(PCI_CONFADD, PCI_CADDR1_ECS(bus, device, function, reg)); in pci_mech1_amd_getl()
146 pci_mech1_amd_putb(int bus, int device, in argument
160 pci_mech1_amd_putw(int bus,int device,int function,int reg,uint16_t val) pci_mech1_amd_putw() argument
174 pci_mech1_amd_putl(int bus,int device,int function,int reg,uint32_t val) pci_mech1_amd_putl() argument
[all...]
H A Dpci_neptune.c65 * First check the vendor and device ids of the Host to in pci_check_neptune()
67 * because the same device ID can refer to either in pci_check_neptune()
71 /* check the vendor id, the device id, and the revision id */ in pci_check_neptune()
104 /* check the vendor and device id's of the Host to PCI bridge */ in pci_check_neptune()
140 pci_neptune_getb(int bus, int device, int function, int reg) in pci_neptune_getb() argument
146 val = pci_mech1_getb(bus, device, function, reg); in pci_neptune_getb()
153 pci_neptune_getw(int bus, int device, int function, int reg) in pci_neptune_getw() argument
159 val = pci_mech1_getw(bus, device, function, reg); in pci_neptune_getw()
166 pci_neptune_getl(int bus, int device, int function, int reg) in pci_neptune_getl() argument
172 val = pci_mech1_getl(bus, device, functio in pci_neptune_getl()
179 pci_neptune_putb(int bus,int device,int function,int reg,uint8_t val) pci_neptune_putb() argument
189 pci_neptune_putw(int bus,int device,int function,int reg,uint16_t val) pci_neptune_putw() argument
199 pci_neptune_putl(int bus,int device,int function,int reg,uint32_t val) pci_neptune_putl() argument
[all...]
/titanic_52/usr/src/cmd/boot/installboot/sparc/
H A Dinstallboot.c90 ib_device_t *device = &data->device; in read_bootblock_from_file() local
117 if (!is_zfs(device->type)) { in read_bootblock_from_file()
152 if (!is_zfs(device->type)) { in read_bootblock_from_file()
268 ib_device_t *device = &data->device; in is_update_necessary() local
269 int dev_fd = device->fd; in is_update_necessary()
272 assert(device->fd != -1); in is_update_necessary()
275 if (!is_zfs(device->type)) in is_update_necessary()
281 BOOT_DEBUG("Unable to read bootblock from %s\n", device in is_update_necessary()
338 ib_device_t *device = &data->device; prepare_bootblock() local
386 ib_device_t *device = &data->device; write_zfs_bootblock() local
426 ib_device_t *device = &data->device; write_bootblock() local
452 open_device(ib_device_t * device) open_device() argument
480 init_device(ib_device_t * device,char * path) init_device() argument
499 cleanup_device(ib_device_t * device) cleanup_device() argument
675 ib_device_t *device = &data.device; handle_getinfo() local
[all...]
/titanic_52/usr/src/cmd/lp/cmd/lpsched/
H A Dports.c159 char *device; in open_direct() local
184 device = pp->device; in open_direct()
185 if (is_printer_uri(device) == 0) { in open_direct()
187 * if it's a device uri and the endpoint contains a valid in open_direct()
190 * local device, so use /dev/null. in open_direct()
192 device = strstr(device, "://"); in open_direct()
193 if (device != NULL) in open_direct()
194 device in open_direct()
323 push_module(int fd,char * device,char * module) push_module() argument
[all...]
/titanic_52/usr/src/uts/common/io/ib/clients/of/sol_ofs/
H A Dsol_kverbs.c109 ib_device_t *device; in get_device() local
119 device = entry->ptr; in get_device()
120 if (device->node_guid == htonll(guid)) { in get_device()
121 ASSERT(device->reg_state == IB_DEV_CLOSE); in get_device()
122 ASSERT(device->node_type == RDMA_NODE_IB_CA); in get_device()
123 ASSERT(device->clnt_hdl == (ofs_client_p_t)ofs_client); in get_device()
124 return (device); in get_device()
203 ib_device_t *device; in ofs_async_handler() local
206 /* re-use the device once it was created */ in ofs_async_handler()
208 device in ofs_async_handler()
262 struct ib_device *device; ofs_async_handler() local
317 ib_device_t *device; ib_register_client() local
514 ib_device_t *device; ib_unregister_client() local
612 ib_get_client_data(struct ib_device * device,struct ib_client * client) ib_get_client_data() argument
666 ib_set_client_data(struct ib_device * device,struct ib_client * client,void * data) ib_set_client_data() argument
714 ib_query_device(struct ib_device * device,struct ib_device_attr * attr) ib_query_device() argument
807 ib_alloc_pd(struct ib_device * device) ib_alloc_pd() argument
938 ib_create_cq(struct ib_device * device,ib_comp_handler comp_handler,void (* event_handler)(struct ib_event *,void *),void * cq_context,int cqe,void * comp_vector) ib_create_cq() argument
2314 ib_get_ibt_hca_hdl(struct ib_device * device) ib_get_ibt_hca_hdl() argument
[all...]
/titanic_52/usr/src/cmd/devinfo/
H A Ddevinfo.c62 static void partinfo(int fd, char *device);
63 static void devinfo(struct dk_geom *geom, int fd, char *device);
73 char *device; in main() local
82 device = optarg; in main()
86 device = optarg; in main()
101 if ((fd = open(device, O_RDONLY)) < 0) { in main()
103 device, strerror(errno)); in main()
110 (void) warn(device, in main()
113 (void) warn(device, in main()
119 devinfo(&geom, fd, device); in main()
128 partinfo(int fd,char * device) partinfo() argument
166 devinfo(struct dk_geom * geom,int fd,char * device) devinfo() argument
[all...]
/titanic_52/usr/src/uts/common/io/
H A Ddcopy.c55 /* device state for register/unregister */
57 /* DMA device drivers private pointer */
60 /* to track list of channels from this DMA device */
66 * before it's safe to allow the DMA device driver to detach.
91 /* shortcut to device callbacks */
96 * it's safe to free up this channel so the DMA device driver can
113 /* pointer back to our device */
155 static void dcopy_device_cleanup(dcopy_device_handle_t device,
218 /* Initialize the list we use to track device register/unregister */ in dcopy_init()
298 * can happen if there aren't any DMA device registere in dcopy_alloc()
328 dcopy_device_handle_t device; dcopy_free() local
605 struct dcopy_device_s *device; dcopy_device_register() local
724 dcopy_device_handle_t device; dcopy_device_unregister() local
777 dcopy_device_cleanup(dcopy_device_handle_t device,boolean_t do_callback) dcopy_device_cleanup() argument
[all...]
/titanic_52/usr/src/lib/libpkg/common/
H A Ddstream.c51 extern char *devattr(char *device, char *attribute);
54 extern int getvol(char *device, char *label, int options, char *prompt);
61 /* device types */
75 #define G_FILE 28 /* file, not a device */
76 #define G_NO_DEV 29 /* device does not require special treatment */
77 #define G_DEV_MAX 30 /* last valid device type */
95 int ds_next(char *device, char *instdir);
96 int ds_ginit(char *device);
100 static int ds_realfd = -1; /* file descriptor for real device */
111 static int ds_getnextvol(char *device);
183 ds_readbuf(char * device) ds_readbuf() argument
292 ds_init(char * device,char ** pkg,char * norewind) ds_init() argument
519 ds_findpkg(char * device,char * pkg) ds_findpkg() argument
583 ds_getpkg(char * device,int n,char * dstdir) ds_getpkg() argument
615 ds_getnextvol(char * device) ds_getnextvol() argument
642 ds_skip(char * device,int nskip) ds_skip() argument
670 ds_skiptoend(char * device) ds_skiptoend() argument
677 ds_next(char * device,char * instdir) ds_next() argument
734 BIO_ds_dump(PKG_ERR * err,char * device,BIO * bio) BIO_ds_dump() argument
793 ds_ginit(char * device) ds_ginit() argument
[all...]
/titanic_52/usr/src/cmd/fm/eversholt/files/sparc/sun4v/
H A Dn2piu.esc145 event ereport.io.device.inval_state@niu/niufn{within(5s)};
146 event ereport.io.device.no_response@niu/niufn{within(5s)};
147 event ereport.io.device.stall@niu/niufn{within(5s)};
148 event ereport.io.device.badint_limit@niu/niufn{within(5s)};
149 event ereport.io.device.intern_corr@niu/niufn{within(5s)};
150 event ereport.io.device.intern_uncorr@niu/niufn{within(5s)};
151 event ereport.io.device.nf-device@niu/niufn;
225 event error.io.device.f-device
[all...]
/titanic_52/usr/src/cmd/fm/eversholt/files/common/
H A Dstorage.esc35 event fault.device.controller.fail@controller;
36 event fault.device.ethernet.fail@controller;
37 event fault.device.ethernet.fail@sas-expander;
38 event fault.device.fan.fail@fan;
39 event fault.device.fan.fail@fanmodule;
40 event fault.device.psu.fail@psu;
41 event fault.device.psu.fail@psu;
42 event fault.device.sas-expander.fail@sas-expander;
43 event fault.device.unusable-chassis-id@fanboard;
77 event ereport.chassis.device
[all...]
/titanic_52/usr/src/cmd/acct/lib/
H A Ddevtolin.c32 * convert device to linename (as in /dev/linename)
34 * device must be character device
49 dev_t tdev; /* device */
65 devtolin(device) in devtolin() argument
66 dev_t device; in devtolin()
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;
120 srch_dir(device,path,depth,skip_dirs) srch_dir() argument
[all...]
/titanic_52/usr/src/cmd/rcm_daemon/common/
H A Drcm_lock.c56 int type; /* resource(device) type */
58 char device[MAXPATHLEN]; /* name of device or resource */ member
175 find_req_entry(char *device, uint_t flag, int seq_num, req_list_t *list) in find_req_entry() argument
197 if ((strcmp(device, list->req[i].device) != 0) || in find_req_entry()
254 (void) strcpy((*listp)->req[i].device, ""); in get_req_entry()
266 if (((*listp)->req[i].device[0] == '\0') || in get_req_entry()
290 char *device; in info_req_add() local
296 device in info_req_add()
365 check_lock(char * device,uint_t flag,int cflag,rcm_info_t ** info) check_lock() argument
441 char *device; rsrc_check_lock_conflicts() local
478 dr_req_update_entry(char * device,pid_t pid,uint_t flag,int state,int seq_num,timespec_t * interval,rcm_info_t ** infop) dr_req_update_entry() argument
675 char *device; dr_req_add() local
759 char *device = resolve_name(rsrcname); dr_req_update() local
824 char *device = resolve_name(rsrcname); dr_req_remove() local
[all...]

12345678910>>...24