OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:strlen
(Results
176 - 200
of
2808
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/bluetooth/glib/gio/tests/
memory-input-stream.c
46
len =
strlen
(data1) +
strlen
(data2);
/external/clang/lib/Frontend/
LayoutOverrideSource.cpp
61
LineStr = LineStr.substr(Pos +
strlen
("struct "));
63
LineStr = LineStr.substr(Pos +
strlen
("class "));
65
LineStr = LineStr.substr(Pos +
strlen
("union "));
79
LineStr = LineStr.substr(Pos +
strlen
(" Size:"));
91
LineStr = LineStr.substr(Pos +
strlen
("Alignment:"));
103
LineStr = LineStr.substr(Pos +
strlen
("sizeof="));
113
LineStr = LineStr.substr(Pos +
strlen
("align="));
129
LineStr = LineStr.substr(Pos +
strlen
("FieldOffsets: ["));
/external/clang/test/Sema/
warn-strlcpycat-size.c
6
size_t
strlen
(const char *s);
23
strlcpy(s1, s3,
strlen
(s3)+1); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
/external/dropbear/
cli-algo.c
79
len =
strlen
(localalgos[j].name);
81
if (len ==
strlen
(remotealgos[i])
svr-algo.c
79
len =
strlen
(remotealgos[i]);
83
if (len ==
strlen
(localalgos[j].name) &&
/external/e2fsprogs/intl/
relocatable.c
117
orig_prefix_len =
strlen
(orig_prefix_arg);
118
curr_prefix_len =
strlen
(curr_prefix_arg);
184
if (strncmp (orig_installprefix, orig_installdir,
strlen
(orig_installprefix))
188
rel_installdir = orig_installdir +
strlen
(orig_installprefix);
193
const char *p = curr_pathname +
strlen
(curr_pathname);
216
const char *rp = rel_installdir +
strlen
(rel_installdir);
217
const char *cp = curr_installdir +
strlen
(curr_installdir);
433
(char *) xmalloc (curr_prefix_len +
strlen
(pathname_tail) + 1);
/external/icu4c/test/intltest/
rndmcoll.cpp
153
logln(UnicodeString(rule,
strlen
(rule)));
158
fwrite(rule,
strlen
(rule),1,stdout);
/external/icu4c/tools/tzcode/
asctime.c
111
((
strlen
(year) <= 4) ? ASCTIME_FMT : ASCTIME_FMT_B),
116
if (
strlen
(result) < STD_ASCTIME_BUF_SIZE || buf == buf_asctime) {
ialloc.c
53
newsize = (new == NULL) ? 0 :
strlen
(new);
58
else oldsize =
strlen
(old);
/external/linux-tools-perf/util/
levenshtein.c
44
int len1 =
strlen
(string1), len2 =
strlen
(string2);
/external/llvm/lib/Support/
regerror.c
101
assert(
strlen
(r->name) < sizeof(convbuf));
111
len =
strlen
(s) + 1;
/external/openssl/crypto/buffer/
buf_str.c
66
return BUF_strndup(str,
strlen
(str));
110
return l +
strlen
(src);
/external/openssl/crypto/ripemd/
rmdtest.c
116
ebcdic2ascii((char *)*P, (char *)*P,
strlen
((char *)*P));
118
EVP_Digest(&(P[0][0]),
strlen
((char *)*P),md,NULL,EVP_ripemd160(), NULL);
/external/oprofile/libop/
op_config.c
41
session_dir_len =
strlen
(session_dir);
43
if (session_dir_len +
strlen
("/samples/oprofiled.log") > PATH_MAX) {
/external/oprofile/libop/tests/
mangle_tests.c
53
char * expect = xmalloc(
strlen
(test->result) +
54
strlen
(op_samples_current_dir) + 1);
/external/ppp/pppd/plugins/pppoatm/
misc.c
28
ref_len =
strlen
(*pos);
32
len =
strlen
(value);
/external/qemu/android/
core-init-utils.c
56
socket_send(fd, msg,
strlen
(msg) + 1);
81
vbufprint(msg +
strlen
(msg), msg + sizeof(msg), fmt, args);
/external/stlport/test/unit/
setinter_test.cpp
72
set_intersection(word1, word1 + ::
strlen
(word1), word2, word2 + ::
strlen
(word2),
setunion_test.cpp
75
set_union(word1, word1 + ::
strlen
(word1), word2, word2 + ::
strlen
(word2),
/external/v8/src/
utils.cc
50
ASSERT(static_cast<size_t>(n) <=
strlen
(s));
86
ASSERT(
strlen
(buffer_.start()) == static_cast<size_t>(position_));
/frameworks/native/libs/utils/
StringArray.cpp
63
int len =
strlen
(str);
107
int len =
strlen
(str);
/hardware/libhardware_legacy/power/
power.c
111
return write(fd, id,
strlen
(id));
123
ssize_t len = write(g_fds[RELEASE_WAKE_LOCK], id,
strlen
(id));
/hardware/ti/omap4xxx/security/smc_pa_ctrl/
smc_pa_ctrl.c
117
pConfFileName = malloc(
strlen
(argv[0]) + 1);
149
pPAFileName = malloc(
strlen
(argv[0]) + 1);
/ndk/sources/cxx-stl/gabi++/include/
cstring
56
using ::
strlen
;