XEN_BUS_ID_SIZE    44 drivers/xen/xenbus/xenbus.h 	int (*get_bus_id)(char bus_id[XEN_BUS_ID_SIZE], const char *nodename);
XEN_BUS_ID_SIZE   435 drivers/xen/xenbus/xenbus_probe.c 	char devname[XEN_BUS_ID_SIZE];
XEN_BUS_ID_SIZE   560 drivers/xen/xenbus/xenbus_probe.c 	char type[XEN_BUS_ID_SIZE];
XEN_BUS_ID_SIZE   574 drivers/xen/xenbus/xenbus_probe.c 	snprintf(type, XEN_BUS_ID_SIZE, "%.*s", (int)strcspn(p, "/"), p);
XEN_BUS_ID_SIZE   575 drivers/xen/xenbus/xenbus_probe.c 	type[XEN_BUS_ID_SIZE-1] = '\0';
XEN_BUS_ID_SIZE    59 drivers/xen/xenbus/xenbus_probe_backend.c static int backend_bus_id(char bus_id[XEN_BUS_ID_SIZE], const char *nodename)
XEN_BUS_ID_SIZE    89 drivers/xen/xenbus/xenbus_probe_backend.c 	if (snprintf(bus_id, XEN_BUS_ID_SIZE, "%.*s-%i-%s",
XEN_BUS_ID_SIZE    90 drivers/xen/xenbus/xenbus_probe_backend.c 		     typelen, type, domid, devid) >= XEN_BUS_ID_SIZE)
XEN_BUS_ID_SIZE    36 drivers/xen/xenbus/xenbus_probe_frontend.c static int frontend_bus_id(char bus_id[XEN_BUS_ID_SIZE], const char *nodename)
XEN_BUS_ID_SIZE    39 drivers/xen/xenbus/xenbus_probe_frontend.c 	if (!nodename || strlen(nodename + 1) >= XEN_BUS_ID_SIZE) {
XEN_BUS_ID_SIZE    44 drivers/xen/xenbus/xenbus_probe_frontend.c 	strlcpy(bus_id, nodename + 1, XEN_BUS_ID_SIZE);