/src/sys/lib/libkern/ |
strnvisx.c | 1 /* $NetBSD: strnvisx.c,v 1.1 2016/05/02 19:18:29 christos Exp $ */ 41 strnvisx(char *dst, size_t dlen, const char *src, size_t slen, int flags) function in typeref:typename:int
|
libkern.h | 501 int strnvisx(char *, size_t, const char *, size_t, int);
|
/src/include/ |
vis.h | 102 int strnvisx(char *, size_t, const char *, size_t, int);
|
/src/sys/dev/usb/ |
umass_scsipi.c | 566 strnvisx(vendor, sizeof(vendor), inqbuf.vendor, 8, 568 strnvisx(product, sizeof(product), inqbuf.product, 16, 570 strnvisx(revision, sizeof(revision), inqbuf.revision, 4,
|
/src/sys/dev/ic/ |
mpt_netbsd.c | 1856 strnvisx(vendor, sizeof(vendor), 1859 strnvisx(product, sizeof(product), 1862 strnvisx(revision, sizeof(revision), 1929 strnvisx(vendor_id, sizeof(vendor_id), 1932 strnvisx(product_id, sizeof(product_id), 1935 strnvisx(product_rev_level, sizeof(product_rev_level),
|
siisata.c | 1672 strnvisx(model, sizeof(model), id->atap_model, 40, 1674 strnvisx(serial_number, sizeof(serial_number), 1676 strnvisx(firmware_revision, sizeof(firmware_revision),
|
ahcisata_core.c | 2167 strnvisx(model, sizeof(model), id->atap_model, 40, 2169 strnvisx(serial_number, sizeof(serial_number), id->atap_serial, 2171 strnvisx(firmware_revision, sizeof(firmware_revision),
|
nvme.c | 1611 strnvisx(sn, sizeof(sn), (const char *)sc->sc_identify.sn, 1613 strnvisx(mn, sizeof(mn), (const char *)sc->sc_identify.mn, 1615 strnvisx(fr, sizeof(fr), (const char *)sc->sc_identify.fr,
|
mvsata.c | 820 strnvisx(model, sizeof(model), id->atap_model, 40, 822 strnvisx(serial_number, sizeof(serial_number), id->atap_serial, 824 strnvisx(firmware_revision, sizeof(firmware_revision),
|
/src/usr.bin/finger/ |
lprint.c | 117 int len = strnvisx(buf, blen, str, strlen(str), VIS_WHITE|VIS_CSTYLE);
|
/src/tests/lib/libutil/ |
t_snprintb.c | 48 int rv = strnvisx(buf + 1, bufsize - 2, arr, arrsize,
|
/src/sys/dev/scsipi/ |
scsiconf.c | 572 strnvisx(vendor, sizeof(vendor), inqbuf->vendor, 8, 574 strnvisx(product, sizeof(product), inqbuf->product, 16, 576 strnvisx(revision, sizeof(revision), inqbuf->revision, 4,
|
atapi_wdc.c | 321 strnvisx(model, sizeof(model), id->atap_model, 323 strnvisx(serial_number, sizeof(serial_number), 326 strnvisx(firmware_revision, sizeof(firmware_revision),
|
/src/sys/dev/ata/ |
ld_ataraid.c | 712 strnvisx(serial, sizeof(serial), wd->sc_params.atap_serial, 714 strnvisx(model, sizeof(model), wd->sc_params.atap_model, 716 strnvisx(rev, sizeof(rev), wd->sc_params.atap_revision,
|
/src/sys/dev/pci/ |
arcmsr.c | 700 strnvisx(string, sizeof(string), fwinfo.vendor, sizeof(fwinfo.vendor), 705 strnvisx(string, sizeof(string), fwinfo.model, sizeof(fwinfo.model), 710 strnvisx(string, sizeof(string), fwinfo.fw_version, 1396 strnvisx(bv->bv_vendor, sizeof(bv->bv_vendor), volinfo->set_name, 1485 strnvisx(model, sizeof(model), diskinfo->model, 1487 strnvisx(serial, sizeof(serial), diskinfo->serial, 1489 strnvisx(rev, sizeof(rev), diskinfo->firmware_rev,
|
mpii.c | 3785 strnvisx(bd->bd_vendor, sizeof(bd->bd_vendor), 3790 strnvisx(&bd->bd_vendor[len + 1], sizeof(ppg->vendor_id) - len - 1, 3793 strnvisx(bd->bd_serial, sizeof(bd->bd_serial),
|
/src/sys/net/ |
if_pppoe.c | 722 strnvisx(error, dlen, 793 strnvisx(error, dlen,
|
/src/sys/dev/hyperv/ |
hvs.c | 761 strnvisx(vendor, sizeof(vendor), inq->vendor, sizeof(vendor),
|
/src/tests/lib/libcurses/director/ |
testlang_parse.y | 491 if (strnvisx(dst, dstlen, data, datalen, VIS_WHITE | VIS_OCTAL) == -1) 492 err(1, "strnvisx");
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 8671 INTERCEPTOR(int, strnvisx, char *dst, SIZE_T dlen, const char *src, SIZE_T len, 8674 COMMON_INTERCEPTOR_ENTER(ctx, strnvisx, dst, dlen, src, len, flag); 8677 int ret = REAL(strnvisx)(dst, dlen, src, len, flag); 8854 COMMON_INTERCEPT_FUNCTION(strnvisx); \
|