Searched refs:strlcat (Results 51 - 75 of 140) sorted by relevance

123456

/linux-master/drivers/input/tablet/
H A Dpegasus_notetaker.c333 strlcat(pegasus->name, " ", sizeof(pegasus->name));
334 strlcat(pegasus->name, dev->product, sizeof(pegasus->name));
344 strlcat(pegasus->phys, "/input0", sizeof(pegasus->phys));
H A Dkbtab.c141 strlcat(kbtab->phys, "/input0", sizeof(kbtab->phys));
/linux-master/drivers/iio/imu/inv_mpu6050/
H A Dinv_mpu_acpi.c166 strlcat(info.type, "-client",
/linux-master/arch/s390/include/asm/
H A Dstring.h43 size_t strlcat(char *dest, const char *src, size_t n);
/linux-master/include/linux/
H A Dfortify-string.h31 macro(strlcat), \
315 extern size_t __real_strlcat(char *p, const char *q, size_t avail) __RENAME(strlcat); variable
317 * strlcat - Append a string to an existing string
341 size_t strlcat(char * const POS p, const char * const POS q, size_t avail) function
378 /* Defined after fortified strlcat() to reuse it. */
398 const size_t wanted = strlcat(p, q, p_size);
/linux-master/block/partitions/
H A Dcmdline.c270 strlcat(state->pp_buf, tmp, PAGE_SIZE);
404 strlcat(state->pp_buf, "\n", PAGE_SIZE);
/linux-master/drivers/input/serio/
H A Di8042-acpipnpio.h1387 strlcat(dst, " ", dst_size);
1388 strlcat(dst, id->id, dst_size);
1406 strlcat(i8042_pnp_kbd_name, ":", sizeof(i8042_pnp_kbd_name));
1407 strlcat(i8042_pnp_kbd_name, pnp_dev_name(dev), sizeof(i8042_pnp_kbd_name));
1433 strlcat(i8042_pnp_aux_name, ":", sizeof(i8042_pnp_aux_name));
1434 strlcat(i8042_pnp_aux_name, pnp_dev_name(dev), sizeof(i8042_pnp_aux_name));
/linux-master/lib/
H A Dfortify_kunit.c748 /* Legitimate strlcat() using less than half max size. */
749 KUNIT_ASSERT_EQ(test, strlcat(pad.buf, src, len), partial);
752 /* Legitimate strlcat() now 2 bytes shy of end. */
753 KUNIT_ASSERT_EQ(test, strlcat(pad.buf, src, len), partial * 2);
762 KUNIT_ASSERT_EQ(test, strlcat(pad.buf, "Q", len), partial * 2 + 1);
771 KUNIT_ASSERT_EQ(test, strlcat(pad.buf, "V", len * 2), len);
781 KUNIT_ASSERT_EQ(test, strlcat(pad.buf, "QQ", len * 2), len + 1);
792 KUNIT_ASSERT_EQ(test, strlcat(pad.buf, "TT", len * 2), len + 2);
793 /* This will have tripped both strlen() and strlcat(). */
805 KUNIT_ASSERT_EQ(test, strlcat(pa
[all...]
H A Dstring.c234 size_t strlcat(char *dest, const char *src, size_t count) function
251 EXPORT_SYMBOL(strlcat); variable
/linux-master/drivers/infiniband/hw/qib/
H A Dqib_sysfs.c174 if (any && strlcat(buf, " ", PAGE_SIZE) >= PAGE_SIZE)
176 if (strlcat(buf, qib_status_str[i], PAGE_SIZE) >=
184 strlcat(buf, "\n", PAGE_SIZE);
/linux-master/drivers/input/misc/
H A Dkeyspan_remote.c492 strlcat(remote->name, " ", sizeof(remote->name));
493 strlcat(remote->name, udev->product, sizeof(remote->name));
503 strlcat(remote->phys, "/input0", sizeof(remote->phys));
/linux-master/drivers/char/hw_random/
H A Dcore.c403 strlcat(buf, rng->name, PAGE_SIZE);
404 strlcat(buf, " ", PAGE_SIZE);
406 strlcat(buf, "\n", PAGE_SIZE);
/linux-master/sound/core/
H A Djack.c253 strlcat(buf, " ", buf_size);
254 strlcat(buf, jack_events_name[i], buf_size);
256 strlcat(buf, "\n", buf_size);
/linux-master/net/netfilter/
H A Dx_tables.c1832 strlcat(buf, FORMAT_TABLES, sizeof(buf));
1842 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
1852 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
1867 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
1872 strlcat(buf, FORMAT_TABLES, sizeof(buf));
1886 strlcat(buf, FORMAT_TABLES, sizeof(buf));
1890 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
1894 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
/linux-master/drivers/scsi/lpfc/
H A Dlpfc_debugfs.c489 if (strlcat(buf, tmp, size) >= size)
506 if (strlcat(buf, tmp, size) >= size)
516 if (strlcat(buf, tmp, size) >= size)
521 if (strlcat(buf, tmp, size) >= size)
539 if (strlcat(buf, tmp, size) >= size)
550 if (strlcat(buf, tmp, size) >= size)
558 if (strlcat(buf, tmp, size) >= size)
563 if (strlcat(buf, tmp, size) >= size)
1278 if (strlcat(buf, tmp, size) >= size)
1283 if (strlcat(bu
[all...]
/linux-master/drivers/comedi/drivers/
H A Dcomedi_bond.c259 strlcat(devpriv->name, buf,
/linux-master/drivers/media/rc/
H A Dxbox_remote.c232 strlcat(xbox_remote->rc_phys, "/input0", sizeof(xbox_remote->rc_phys));
/linux-master/drivers/media/usb/uvc/
H A Duvc_status.c55 strlcat(dev->input_phys, "/button", sizeof(dev->input_phys));
/linux-master/tools/include/nolibc/
H A Dstring.h188 size_t strlcat(char *dst, const char *src, size_t size) function
/linux-master/drivers/input/joystick/
H A Dpxrc.c173 strlcat(pxrc->phys, "/input0", sizeof(pxrc->phys));
/linux-master/net/sunrpc/
H A Daddr.c290 if (strlcat(addrbuf, portbuf, sizeof(addrbuf)) >= sizeof(addrbuf))
/linux-master/arch/mips/kernel/
H A Dsetup.c523 strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
525 strlcat(boot_command_line, s, max);
/linux-master/sound/core/seq/
H A Dseq_ump_client.c315 strlcat(group->name, ", ", sizeof(group->name));
316 strlcat(group->name, fb->info.name,
/linux-master/arch/x86/kernel/
H A Dsetup.c841 strlcat(builtin_cmdline, " ", COMMAND_LINE_SIZE);
842 strlcat(builtin_cmdline, boot_command_line, COMMAND_LINE_SIZE);
/linux-master/arch/arc/kernel/
H A Dsetup.c502 strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
503 strlcat(boot_command_line, uboot_arg, COMMAND_LINE_SIZE);

Completed in 253 milliseconds

123456