Searched refs:strlen (Results 51 - 75 of 1926) sorted by relevance

1234567891011>>

/linux-master/arch/powerpc/lib/
H A Dstrlen_32.S3 * strlen() for PPC32
46 _GLOBAL(strlen)
78 EXPORT_SYMBOL(strlen)
/linux-master/tools/testing/selftests/powerpc/stringloops/
H A Dstrlen_32.S3 * strlen() for PPC32
46 _GLOBAL(strlen)
78 EXPORT_SYMBOL(strlen)
/linux-master/lib/
H A Dglobtest.c147 p += strlen(p) + 1;
149 p += strlen(p) + 1;
/linux-master/tools/testing/selftests/proc/
H A Dsetns-dcache.c124 assert(rv == strlen(S));
125 assert(memcmp(buf, S, strlen(S)) == 0);
/linux-master/samples/rpmsg/
H A Drpmsg_client_sample.c44 ret = rpmsg_send(rpdev->ept, MSG, strlen(MSG));
66 ret = rpmsg_send(rpdev->ept, MSG, strlen(MSG));
/linux-master/tools/perf/util/
H A Dlevenshtein.c47 int len1 = strlen(string1), len2 = strlen(string2);
/linux-master/arch/um/os-Linux/
H A Dexecvp.c56 len = strlen(file) + 1;
57 pathlen = strlen(path);
/linux-master/arch/csky/abiv2/
H A DMakefile12 obj-y += strlen.o
/linux-master/drivers/macintosh/
H A Dvia-pmu-led.c99 if (strncmp(model, "PowerBook", strlen("PowerBook")) != 0 &&
100 strncmp(model, "iBook", strlen("iBook")) != 0 &&
/linux-master/tools/testing/selftests/kvm/lib/
H A Dassert.c34 char cmd[strlen(addr2line) + strlen(pipeline) +
/linux-master/drivers/acpi/
H A Dacpi_pnp.c320 if (strlen(idstr) != strlen(list_id))
/linux-master/drivers/acpi/acpica/
H A Dtbfind.c51 if ((strlen(oem_id) > ACPI_OEM_ID_SIZE) ||
52 (strlen(oem_table_id) > ACPI_OEM_TABLE_ID_SIZE)) {
/linux-master/fs/smb/client/
H A Ddns_resolve.c41 len = strlen(unc);
78 rc = cifs_convert_address(ip_addr, ip, strlen(ip));
/linux-master/tools/testing/selftests/tty/
H A Dtty_tstamp_update.c18 if (strlen(tty) < MIN_TTY_PATH_LEN)
38 if (r != strlen("hello, world!\n"))
/linux-master/tools/testing/selftests/lsm/
H A Dcommon.c26 len = strlen(PROCATTR) + strlen(attr) + 1;
/linux-master/kernel/
H A Dcrash_reserve.c203 if (strncmp(cur, suffix, strlen(suffix))) {
207 cur += strlen(suffix);
229 end_p = p + strlen(p);
236 q = end_p - strlen(suffix_tbl[i]);
238 strlen(suffix_tbl[i])))
243 q = end_p - strlen(suffix);
244 if (!strncmp(q, suffix, strlen(suffix)))
272 ck_cmdline += strlen(name);
/linux-master/tools/testing/selftests/exec/
H A Drecursion-depth.c57 if (write(fd, S, strlen(S)) != strlen(S))
/linux-master/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_hwinfo.c111 key = val + strlen(val) + 1) {
113 val = key + strlen(key) + 1;
119 if (val + strlen(val) + 1 > end) {
265 key = val + strlen(val) + 1) {
267 val = key + strlen(key) + 1;
/linux-master/drivers/video/fbdev/omap2/omapfb/dss/
H A Domapdss-boot-init.c39 l = strlen(p) + 1;
66 size_t l = strlen(src) + 1;
69 dst += strlen(prefix);
96 if (strncmp(prefix, prop->value, strlen(prefix)) == 0)
101 new_len = prop->length + strlen(prefix) * num_strs;
/linux-master/usr/
H A Dgen_init_cpio.c40 unsigned int name_len = strlen(name) + 1;
57 unsigned int name_len = strlen(name) + 1;
97 (unsigned)strlen(name)+1, /* namesize */
124 (unsigned)strlen(target)+1, /* filesize */
129 (unsigned)strlen(name) + 1,/* namesize */
178 (unsigned)strlen(name) + 1,/* namesize */
272 (unsigned)strlen(name) + 1,/* namesize */
388 namesize = strlen(name) + 1;
479 dname = malloc(strlen(line));
485 dname_len = strlen(nam
[all...]
/linux-master/scripts/dtc/
H A Dutil.c28 int len = strlen(s) + 1;
55 size = strlen(p);
66 return strlen(p);
97 int lenp = strlen(path);
98 int lenn = strlen(name);
398 s += strlen(s) + 1;
433 size_t a_arg_len = strlen(a_arg) + 1;
446 int l = strlen(long_opts[i].name) + 1;
468 (int)(optlen - strlen(long_opts[i].name) - a_arg_len), "");
/linux-master/samples/seccomp/
H A Dbpf-fancy.c97 syscall(__NR_write, STDOUT_FILENO, msg1, strlen(msg1));
100 syscall(__NR_write, STDERR_FILENO, msg2, strlen(msg2));
103 syscall(__NR_write, STDERR_FILENO, msg2, strlen(msg2)+2);
/linux-master/tools/laptop/freefall/
H A Dfreefall.c31 if (strlen(device) <= 5 || strncmp(device, "/dev/", 5) != 0)
65 if (write(fd, buf, strlen(buf)) != strlen(buf)) {
/linux-master/drivers/misc/lkdtm/
H A Dfortify.c48 size = strlen(src) + 1;
113 size = strlen(src) + 1;
195 * Use strlen here so size cannot be known at compile time and there is
198 strscpy(dst, src, strlen(src));
/linux-master/drivers/firmware/efi/libstub/
H A Dstring.c16 * strlen - Find the length of a string
19 size_t strlen(const char *s) function
54 l2 = strlen(s2);
57 l1 = strlen(s1);

Completed in 214 milliseconds

1234567891011>>