Searched refs:strlen (Results 126 - 150 of 1926) sorted by relevance

1234567891011>>

/linux-master/security/integrity/evm/
H A Devm_secfs.c49 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
146 size += strlen(xattr->name) + 1;
160 offset += strlen(xattr->name) + 1;
164 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
218 len = strlen(xattr->name);
/linux-master/tools/perf/util/
H A Dstring.c202 int i1 = strlen(s1);
203 int i2 = strlen(s2);
290 memmove(d, s, strlen(s) + 1);
314 int replace_len = strlen(replace);
327 new_s = malloc(strlen(haystack) + (num * (replace_len - 1) + 1));
H A Ddemangle-java.c53 end = str + strlen(str);
175 len = strlen(str) * 3 + 1;
190 l1 = strlen(buf);
H A Ddemangle-rust.c84 len = strlen(sym);
193 end = sym + strlen(sym) - (hash_prefix_len + hash_len);
258 size_t len = strlen(seq);
/linux-master/scripts/mod/
H A Dfile2alias.c93 sprintf(str + strlen(str), \
99 sprintf(str + strlen(str), "*"); \
105 int len = strlen(str);
113 int len = strlen(str);
124 int len = strlen(str);
195 sprintf(alias + strlen(alias), "%0*X",
198 sprintf(alias + strlen(alias), "%X", range_lo);
201 sprintf(alias + strlen(alias),
206 sprintf(alias + strlen(alias),
209 sprintf(alias + strlen(alia
[all...]
/linux-master/arch/um/drivers/
H A Dpty.c84 pty = &line[strlen("/dev/ptyp")];
86 line[strlen("/dev/pty")] = *bank;
96 char *tp = &line[strlen("/dev/")];
/linux-master/drivers/iio/
H A Dindustrialio-sw-device.c49 iter = __iio_find_sw_device_type(d->name, strlen(d->name));
73 iter = __iio_find_sw_device_type(dt->name, strlen(dt->name));
88 dt = __iio_find_sw_device_type(name, strlen(name));
H A Dindustrialio-sw-trigger.c49 iter = __iio_find_sw_trigger_type(t->name, strlen(t->name));
77 iter = __iio_find_sw_trigger_type(t->name, strlen(t->name));
92 t = __iio_find_sw_trigger_type(name, strlen(name));
/linux-master/tools/lib/bpf/
H A Dstrset.c66 for (off = 0; off < set->strs_data_len; off += strlen(set->strs_data + off) + 1) {
122 len = strlen(s) + 1;
156 len = strlen(s) + 1;
/linux-master/arch/s390/include/asm/
H A Dstring.h58 #define strlen(s) __strlen(s) macro
165 static inline size_t __no_sanitize_prefix_strfunc(strlen)(const char *s) function
202 size_t strlen(const char *s);
/linux-master/arch/xtensa/lib/
H A Dstrncpy_user.S9 * buffer filled, else strlen.
94 sub a2, a11, a2 # compute strlen
149 sub a2, a11, a2 # compute strlen
156 sub a2, a11, a2 # compute strlen
164 sub a2, a11, a2 # compute strlen
174 sub a2, a11, a2 # compute strlen
200 sub a2, a11, a2 # compute strlen
/linux-master/tools/lib/subcmd/
H A Dexec-cmd.c68 if (strlen(cwd) + strlen(path) + 2 >= sz)
95 slash = argv0 + strlen(argv0);
/linux-master/arch/riscv/purgatory/
H A DMakefile5 purgatory-y += strcmp.o strlen.o strncmp.o
25 $(obj)/strlen.o: $(srctree)/arch/riscv/lib/strlen.S FORCE
/linux-master/lib/
H A Dcmdline_kunit.c81 offset = strlen(in) - strlen(str) + !!(rc == 2);
102 offset = rc ? strlen(in) : !!(*str == '-');
H A Dcmdline.c206 if (!strncmp(str, option, strlen(option))) {
207 str += strlen(option);
/linux-master/net/rose/
H A Drose_subr.c498 *p++ = strlen(callsign) + 10;
499 *p++ = (strlen(callsign) + 9) * 2; /* ??? */
506 memcpy(p, callsign, strlen(callsign));
507 p += strlen(callsign);
513 *p++ = strlen(callsign) + 10;
514 *p++ = (strlen(callsign) + 9) * 2; /* ??? */
521 memcpy(p, callsign, strlen(callsign));
522 p += strlen(callsign);
/linux-master/arch/sparc/kernel/
H A Dprom_common.c107 l = strlen(list) + 1;
123 if (!name || strlen(name) == 0)
/linux-master/tools/testing/selftests/pidfd/
H A Dpidfd_open_test.c81 buffer += char_left_gc(buffer, strlen(buffer));
82 buffer[char_right_gc(buffer, strlen(buffer))] = '\0';
/linux-master/arch/powerpc/xmon/
H A Dnonstdio.c57 udbg_write(msg, strlen(msg));
187 xmon_write(str, strlen(str));
/linux-master/tools/lib/
H A Dstring.c105 size_t ret = strlen(src);
144 size = strlen(s);
/linux-master/arch/x86/lib/
H A Dstring_32.c166 size_t strlen(const char *s) function
177 EXPORT_SYMBOL(strlen); variable
/linux-master/tools/bpf/bpftool/
H A Dtracelog.c47 src_len = strlen(mntpt);
82 PATH_MAX - strlen(pipe_name) - 1);
/linux-master/tools/testing/selftests/net/
H A Dsctp_hello.c64 ret = send(csk, buf, strlen(buf) + 1, 0);
102 argv[5], strlen(argv[5]) + 1);
/linux-master/arch/powerpc/platforms/pseries/
H A Dfirmware.c86 for (s = hypertas; s < hypertas + len; s += strlen(s) + 1) {
95 size = strlen(name);
/linux-master/drivers/misc/
H A Dhmc6352.c40 if (val >= strlen(map))
42 val = array_index_nospec(val, strlen(map));

Completed in 208 milliseconds

1234567891011>>