/freebsd/stand/i386/libi386/ |
H A D | comconsole.c | 55 static int comc_pcidev_handle(uint32_t locator); 83 uint32_t locator; in comc_probe() local 123 locator = comc_parse_pcidev(env); in comc_probe() 124 if (locator != 0) in comc_probe() 125 comc_pcidev_handle(locator); in comc_probe() 220 uint32_t locator; in comc_parse_pcidev() 249 locator = (bar << 16) | biospci_locator(bus, dev, func); in comc_parse_pcidev() 250 return (locator); in comc_parse_pcidev() 255 comc_pcidev_handle(uint32_t locator) in comc_pcidev_handle() argument 264 if (biospci_read_config(locator & 0xffff, in comc_pcidev_handle() [all …]
|
H A D | biospci.c | 261 uint32_t locator, devid; in biospci_enumerate() local 278 device_index, &locator); in biospci_enumerate() 283 err = biospci_read_config(locator, 0, BIOSPCI_32BITS, &devid); in biospci_enumerate() 323 biospci_find_devclass(uint32_t class, int index, uint32_t *locator) in biospci_find_devclass() argument 336 *locator = v86.ebx; in biospci_find_devclass() 341 biospci_find_device(uint32_t devid, int index, uint32_t *locator) in biospci_find_device() argument 355 *locator = v86.ebx; in biospci_find_device() 363 biospci_write_config(uint32_t locator, int offset, int width, uint32_t val) in biospci_write_config() argument 368 v86.ebx = locator; in biospci_write_config() 381 biospci_read_config(uint32_t locator, int offset, int width, uint32_t *val) in biospci_read_config() argument [all …]
|
H A D | libi386.h | 134 int biospci_find_devclass(uint32_t class, int index, uint32_t *locator); 135 int biospci_read_config(uint32_t locator, int offset, int width, uint32_t *val); 137 int biospci_write_config(uint32_t locator, int offset, int width, uint32_t val);
|
/freebsd/sys/dev/acpica/ |
H A D | acpi_pci.c | 83 device_t child, const char *locator, struct sbuf *sb); 200 acpi_pci_get_device_path(device_t bus, device_t child, const char *locator, struct sbuf *sb) in acpi_pci_get_device_path() argument 203 if (strcmp(locator, BUS_LOCATOR_ACPI) == 0) in acpi_pci_get_device_path() 204 return (acpi_get_acpi_device_path(bus, child, locator, sb)); in acpi_pci_get_device_path() 207 return (pci_get_device_path_method(bus, child, locator, sb)); in acpi_pci_get_device_path()
|
H A D | acpi.c | 953 acpi_get_acpi_device_path(device_t bus, device_t child, const char *locator, struct sbuf *sb) in acpi_get_acpi_device_path() argument 955 if (strcmp(locator, BUS_LOCATOR_ACPI) == 0) { in acpi_get_acpi_device_path() 963 return (bus_generic_get_device_path(bus, child, locator, sb)); in acpi_get_acpi_device_path() 967 acpi_get_device_path(device_t bus, device_t child, const char *locator, struct sbuf *sb) in acpi_get_device_path() argument 971 if (strcmp(locator, BUS_LOCATOR_ACPI) == 0) in acpi_get_device_path() 972 return (acpi_get_acpi_device_path(bus, child, locator, sb)); in acpi_get_device_path() 974 if (strcmp(locator, BUS_LOCATOR_UEFI) == 0) { in acpi_get_device_path() 1021 return (bus_generic_get_device_path(bus, child, locator, sb)); in acpi_get_device_path()
|
H A D | acpivar.h | 524 const char *locator, struct sbuf *sb);
|
/freebsd/lib/libdevctl/ |
H A D | devctl.c | 171 devctl_getpath(const char *device, const char *locator, char **buffer) in devctl_getpath() argument 192 strlcpy(req.dr_buffer.buffer, locator, req.dr_buffer.length); in devctl_getpath()
|
H A D | devctl.h | 45 int devctl_getpath(const char *device, const char *locator, char **buffer);
|
/freebsd/sys/dev/usb/ |
H A D | usb_hub_acpi.c | 556 acpi_uhub_get_device_path(device_t bus, device_t child, const char *locator, struct sbuf *sb) in acpi_uhub_get_device_path() argument 558 if (strcmp(locator, BUS_LOCATOR_ACPI) == 0) in acpi_uhub_get_device_path() 559 return (acpi_get_acpi_device_path(bus, child, locator, sb)); in acpi_uhub_get_device_path() 562 return (uhub_get_device_path(bus, child, locator, sb)); in acpi_uhub_get_device_path()
|
H A D | usb_hub.c | 1688 uhub_get_device_path(device_t bus, device_t child, const char *locator, in uhub_get_device_path() argument 1696 if (strcmp(locator, BUS_LOCATOR_UEFI) == 0) { in uhub_get_device_path() 1697 rv = bus_generic_get_device_path(device_get_parent(bus), bus, locator, sb); in uhub_get_device_path() 1717 return (bus_generic_get_device_path(bus, child, locator, sb)); in uhub_get_device_path()
|
/freebsd/crypto/openssl/crypto/ocsp/ |
H A D | v3_ocsp.c | 250 for (i = 0; i < sk_ACCESS_DESCRIPTION_num(a->locator); i++) { in i2r_ocsp_serviceloc() 251 ad = sk_ACCESS_DESCRIPTION_value(a->locator, i); in i2r_ocsp_serviceloc()
|
H A D | ocsp_local.h | 217 STACK_OF(ACCESS_DESCRIPTION) *locator;
|
H A D | ocsp_ext.c | 446 && (sloc->locator = sk_ACCESS_DESCRIPTION_new_null()) == NULL) in OCSP_url_svcloc_new() 461 if (!sk_ACCESS_DESCRIPTION_push(sloc->locator, ad)) in OCSP_url_svcloc_new()
|
H A D | ocsp_asn.c | 132 ASN1_SEQUENCE_OF_OPT(OCSP_SERVICELOC, locator, ACCESS_DESCRIPTION)
|
/freebsd/sys/kern/ |
H A D | subr_bus.c | 4534 bus_generic_get_device_path(device_t bus, device_t child, const char *locator, in bus_generic_get_device_path() argument 4550 if (parent != NULL && strcmp(locator, BUS_LOCATOR_ACPI) != 0) { in bus_generic_get_device_path() 4551 rv = BUS_GET_DEVICE_PATH(parent, bus, locator, sb); in bus_generic_get_device_path() 4553 if (strcmp(locator, BUS_LOCATOR_FREEBSD) == 0) { in bus_generic_get_device_path() 5703 device_get_path(device_t dev, const char *locator, struct sbuf *sb) in device_get_path() argument 5713 error = BUS_GET_DEVICE_PATH(parent, dev, locator, sb); in device_get_path() 5992 char locator[64]; in devctl2_ioctl() local 5995 error = copyinstr(req->dr_buffer.buffer, locator, in devctl2_ioctl() 5996 sizeof(locator), NULL); in devctl2_ioctl() 6001 error = device_get_path(dev, locator, sb); in devctl2_ioctl() [all …]
|
H A D | bus_if.m | 966 * @param _locator locator name
|
/freebsd/lib/libc/iconv/ |
H A D | citrus_lookup.c | 60 struct _db_locator locator; member 71 #define cl_dblocator u.db.locator
|
/freebsd/sys/dev/ofw/ |
H A D | ofw_bus_subr.c | 106 ofw_bus_gen_get_device_path(device_t cbdev, device_t child, const char *locator, in ofw_bus_gen_get_device_path() argument 111 if ( strcmp(locator, BUS_LOCATOR_OFW) == 0){ in ofw_bus_gen_get_device_path() 112 rv = bus_generic_get_device_path(cbdev, child, locator, sb); in ofw_bus_gen_get_device_path() 118 return (bus_generic_get_device_path(cbdev, child, locator, sb)); in ofw_bus_gen_get_device_path()
|
/freebsd/crypto/heimdal/lib/hx509/ |
H A D | ocsp.asn1 | 109 -- id-pkix-ocsp-service-locator OBJECT IDENTIFIER ::= { id-pkix-ocsp 7 }
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | sa.c | 142 sa_data_op_t action, sa_data_locator_t *locator, void *datastart, 1910 sa_data_op_t action, sa_data_locator_t *locator, void *datastart, in sa_modify_attrs() argument 2018 locator, datastart, buflen); in sa_modify_attrs() 2037 SA_ADD_BULK_ATTR(attr_desc, j, newattr, locator, in sa_modify_attrs()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | CoreProperties.td | 7 …locator plugins that, if configured properly, will also attempt to acquire symbols. The debuginfod…
|
/freebsd/stand/kshim/ |
H A D | bsd_kernel.h | 393 typedef int bus_get_device_path_t (device_t bus, device_t child, const char *locator, struct sbuf *…
|
/freebsd/sys/sys/ |
H A D | bus.h | 520 int bus_generic_get_device_path(device_t bus, device_t child, const char *locator,
|
/freebsd/sys/dev/pci/ |
H A D | pci.c | 6068 pci_get_device_path_method(device_t bus, device_t child, const char *locator, in pci_get_device_path_method() argument 6074 if (strcmp(locator, BUS_LOCATOR_UEFI) == 0) { in pci_get_device_path_method() 6075 rv = bus_generic_get_device_path(parent, bus, locator, sb); in pci_get_device_path_method() 6082 return (bus_generic_get_device_path(bus, child, locator, sb)); in pci_get_device_path_method()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_read_support_format_xar.c | 3148 xmlTextReaderLocatorPtr locator) in xml2_error_hdr() argument 3152 (void)locator; /* UNUSED */ in xml2_error_hdr()
|