| /src/usr.bin/make/unit-tests/ | 
| deptgt-silent-jobs.mk | 15 all: compat jobs 16 .PHONY: all compat jobs test
 24 # expect: compat: testing 1
 25 # expect: compat: testing 2
 26 # expect: compat: testing 3
 27 compat:  target
 28 	@${MAKE} -r -f ${MAKEFILE} test VARIANT=compat
 
 | 
| varname-make_stack_trace.mk | 15 	@${MAKE} -f ${MAKEFILE} disabled-compat || : 17 	@MAKE_STACK_TRACE=yes ${MAKE} -f ${MAKEFILE} enabled-compat || :
 20 # expect-not: in target "disabled-compat"
 21 disabled-compat: .PHONY
 28 # expect: in target "enabled-compat"
 29 enabled-compat: .PHONY
 
 | 
| cmd-interrupt.mk | 24 all: interrupt-compat 29 	@rm -f cmd-interrupt-precious cmd-interrupt-compat
 46 interrupt-compat:
 47 	@${MAKE} -f ${MAKEFILE} cmd-interrupt-compat || true
 48 	@echo ${.TARGET} ${exists(././cmd-interrupt-compat) :? expected-fail : unexpected-ok }
 62 # When the make process (and not the process group) is interrupted in compat
 67 cmd-interrupt-compat:
 
 | 
| /src/sys/arch/macppc/macppc/ | 
| interrupts.c | 58 const char *compat[] = {  variable in typeref:typename:const char * [] 84 	while ((pic != 0) && !of_compatible(pic, compat))
 
 | 
| pic_heathrow.c | 74 static const char *compat[] = {  variable in typeref:typename:const char * [] 91 	if (! of_compatible(heathrow, compat))
 
 | 
| /src/etc/mtree/ | 
| Makefile | 14 # The compat specific files 17 .include "${NETBSDSRCDIR}/compat/archdirs.mk"
 18 .if exists(NetBSD.compat.${MTREE_MACHINE_ARCH})
 19 EXTRA_DIST_FILES+=	NetBSD.compat.${MTREE_MACHINE_ARCH}
 21 EXTRA_DIST_FILES+=	NetBSD.dist.compat	# autogenerated
 56 EXTRA_DIST_FILES+=	NetBSD.dist.tests.compat
 86 NetBSD.dist.compat: NetBSD.dist.compat.in mkcompat.awk
 96 NetBSD.dist.tests.compat: NetBSD.dist.tests mkcompattree.awk
 140 CLEANFILES+=	NetBSD.dist.compat
 [all...]
 | 
| /src/tools/ | 
| Makefile | 76 # All of host-mkdep, compat, and binstall are needed before anything 85 .ORDER: dependall-host-mkdep dependall-compat dependall-binstall \
 87 .if make(dependall-host-mkdep) && make(dependall-compat)
 88 dependall-compat: dependall-host-mkdep
 90 .if make(dependall-compat) && make(dependall-binstall)
 91 dependall-binstall: dependall-compat
 94 dependall-date: dependall-host-mkdep dependall-compat
 98 # See above for special treatment for host-mkdep, compat, and binstall.
 100 SUBDIR=	host-mkdep compat binstall .WAIT date \
 
 | 
| /src/sys/arch/sparc64/dev/ | 
| pcfiic_ebus.c | 64 	char				compat[32];  local in function:pcfiic_ebus_match 73 	if (OF_getprop(ea->ea_node, "compatible", compat, sizeof(compat)) == -1)
 76 	if (strcmp(compat, "pcf8584") == 0 ||
 77 	    strcmp(compat, "i2cpcf,8584") == 0 ||
 78 	    strcmp(compat, "SUNW,i2c-pic16f747") == 0 ||
 79 	    strcmp(compat, "SUNW,bbc-i2c") == 0)
 91 	char				compat[32];  local in function:pcfiic_ebus_attach
 107 	if (OF_getprop(ea->ea_node, "compatible", compat, sizeof(compat)) > 0 &
 [all...]
 | 
| com_ebus.c | 81 		char *compat;  local in function:com_ebus_match 84 		compat = prom_getpropstring(ea->ea_node, "compatible");
 85 		if (strcmp(compat, "su16550") == 0 ||
 86 		    strcmp(compat, "su16552") == 0 ||
 87 		    strcmp(compat, "su") == 0 ||
 88 		    strcmp(compat, "FJSV,su") == 0) {
 
 | 
| jbus-i2c.c | 140 	char name[64], compat[256];  local in function:jbusi2c_setup_i2c 160 		memset(compat, 0, sizeof(compat));
 162 		    compat, 255) <= 0)
 171 		prop_dictionary_set_data(dev, "compatible", compat,
 172 		    strlen(compat)+1);
 
 | 
| vpci.c | 134 	char compat[32];  local in function:vpci_match 139 	if (OF_getprop(ma->ma_node, "compatible", compat, sizeof(compat)) == -1)
 142 	if (strcmp(compat, "SUNW,sun4v-pci") == 0)
 
 | 
| /src/sys/dev/i2c/ | 
| i2c_enum.h | 44 	const char *compat;  member in struct:i2c_deventry 89 		    entry->compat, 0, entry->addr,
 
 | 
| fan53555.c | 93 	{ .compat = "silergy,syr827",	.value = FAN_VENDOR_SILERGY }, 94 	{ .compat = "silergy,syr828",	.value = FAN_VENDOR_SILERGY },
 304 	const struct device_compatible_entry *compat;  local in function:fan53555_attach
 312 	compat = iic_compatible_lookup(ia, compat_data);
 313 	KASSERT(compat != NULL);
 315 	if (fan53555_init(sc, compat->value) != 0)
 
 | 
| /src/sys/arch/macppc/dev/ | 
| smuiic.c | 78 	char compat[256];  local in function:smuiic_attach 101 		    compat, 256) <= 0)
 108 		data = prop_data_create_copy(compat, strlen(compat)+1);
 
 | 
| uni-n.c | 81 	char compat[32];  local in function:uni_n_match 87 	memset(compat, 0, sizeof(compat));
 89 	OF_getprop(ca->ca_node, "compatible", compat, sizeof(compat));
 90 	if (strcmp(compat, "uni-north") != 0)
 
 | 
| /src/tools/compat/ | 
| Makefile | 128 HOST_INCINSTFILES+= ${HOST_INCSDIR}/compat/${_f} 129 ${HOST_INCSDIR}/compat/${_f}: ${_f}
 135 HOST_INCINSTDIRS+= ${HOST_INCSDIR}/compat/${_d}
 136 ${HOST_INCSDIR}/compat/${_d}:
 141 # Install include files in ${TOOLDIR}/include/compat
 144 	    ${HOST_INSTALL_FILE} $$f ${HOST_INCSDIR}/compat/$$f ; \
 148 # Install defs.mk in ${TOOLDIR}/share/compat
 149 install.defs.mk: .PHONY ${HOST_SHAREDIR}/compat/defs.mk
 150 ${HOST_SHAREDIR}/compat/defs.mk: defs.mk
 153 	${HOST_INSTALL_DIR} ${HOST_SHAREDIR}/compat
 [all...]
 | 
| /src/sys/arch/amd64/stand/prekern/ | 
| locore.S | 535 	jmp	compat 536 compat:  label
 
 | 
| /src/sys/arch/macppc/pci/ | 
| grackle.c | 63 	char compat[32];  local in function:grackle_match 68 	memset(compat, 0, sizeof(compat));
 69 	OF_getprop(ca->ca_node, "compatible", compat, sizeof(compat));
 70 	if (strcmp(compat, "grackle") != 0)
 
 | 
| u3.c | 78 	char compat[32];  local in function:ibmcpc_match 83 	memset(compat, 0, sizeof(compat));
 84 	OF_getprop(ca->ca_node, "compatible", compat, sizeof(compat));
 86 	if (strcmp(compat, "u3-ht") != 0)
 
 | 
| uninorth.c | 66 	char compat[32];  local in function:uninorth_match 71 	memset(compat, 0, sizeof(compat));
 72 	OF_getprop(ca->ca_node, "compatible", compat, sizeof(compat));
 73 	if (strcmp(compat, "uni-north") != 0 &&
 74 	    strcmp(compat, "u3-agp") != 0 &&
 75 	    strcmp(compat, "u4-pcie") != 0)
 90 	char compat[32];  local in function:uninorth_attach
 101 	memset(compat, 0, sizeof(compat))
 [all...]
 | 
| /src/sys/dev/ebus/ | 
| cs4231_ebus.c | 141 	char *compat;  local in function:cs4231_ebus_match 148 	compat = NULL;
 149 	if (prom_getprop(ea->ea_node, "compatible", 1, &total_size, &compat) == 0) {
 151 			if (strcmp(compat, AUDIOCS_PROM_NAME) == 0)
 156 			if (strcmp(compat, "cs4231") == 0)
 159 			len = strlen(compat) + 1;
 161 			compat += len;
 
 | 
| /src/usr.bin/fmt/ | 
| fmt.c | 105 	int compat = 1;  local in function:main 124 			compat = 0;
 129 			compat = 0;
 144 	if (compat && argc > 0 && getnum(*argv, "goal", &goal_length, 0)) {
 
 | 
| /src/usr.sbin/nfsd/ | 
| nfsd.c | 426 	int s, compat;  local in function:main 432 	compat = reregister = 0;
 474 			compat |= 2;
 479 			compat |= 1;
 491 	if (compat == 3) {
 
 | 
| /src/sys/dev/pci/ | 
| pciidevar.h | 138 		int		compat;	/* is it compat? */  member in struct:pciide_softc::pciide_channel 139 		void		*ih;	/* compat or pci handle */
 227 /* Attach compat interrupt handler, returning handle or NULL if failed. */
 
 | 
| /src/sys/dev/fdt/ | 
| fdtbus.c | 91 	{ .compat = "simple-bus" }, 92 	{ .compat = "simple-pm-bus" },
 587 		const char *compat = fdt_getprop(fdtbus_get_data(),  local in function:fdtbus_print
 591 			aprint_debug(" <%s>", compat);
 592 			len -= (strlen(compat) + 1);
 593 			compat += (strlen(compat) + 1);
 
 |