HomeSort by relevance Sort by last modified time
    Searched full:strlen (Results 101 - 125 of 5643) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/selinux/libselinux/src/
compute_user.c 40 ret = write(fd, buf, strlen(buf));
60 ptr = buf + strlen(buf) + 1;
68 ptr += strlen(ptr) + 1;
disable.c 30 ret = write(fd, buf, strlen(buf));
setenforce.c 29 ret = write(fd, buf, strlen(buf));
  /external/skia/tools/skiaserve/urlhandlers/
InfoHandler.cpp 20 0 == strncmp(url, kBaseName, strlen(kBaseName));
57 // We don't want the null terminator so strlen is correct
58 SkAutoTUnref<SkData> data(SkData::NewWithCopy(json.c_str(), strlen(json.c_str())));
  /external/tlsdate/src/
conf-unittest.c 24 /* strlen(str) instead of strlen(str) + 1 because files shouldn't appear
27 return fmemopen ( (char *) str, strlen (str), "r");
  /external/valgrind/none/tests/darwin/
access_extended.c 18 strlen(name1) + 1 +
19 strlen(name2) + 1;
22 char* string2 = string1 + strlen(name1) + 1;
  /external/compiler-rt/test/msan/
backtrace.cc 20 printf("%d\n", (int)strlen(s[i]));
strerror_r-non-gnu.c 16 volatile int z = strlen(buf);
unpoison_string.cc 14 assert(__msan_test_shadow(s, sizeof(s)) == strlen("string") + 1);
  /external/iproute2/tc/
emp_ematch.l 21 if (max_size <= strlen(*ematch_argv) + 1) { \
26 result = strlen(*ematch_argv) + 1; \
60 memcpy(strbuf + strbuf_index, s, strlen(s));
61 strbuf_index += strlen(s);
  /external/libchrome/sandbox/win/src/
sandbox_nt_types.h 32 strlenFunction strlen; member in struct:sandbox::NtExports
  /external/libselinux/src/
check_context.c 27 ret = write(fd, con, strlen(con) + 1);
disable.c 30 ret = write(fd, buf, strlen(buf));
setenforce.c 29 ret = write(fd, buf, strlen(buf));
  /external/skia/src/svg/parser/
SkSVGUse.cpp 28 parser._addAttributeLen("use", start, strlen(start) - 1);
  /external/srtp/crypto/test/
aes_calc.c 57 if (strlen(argv[1]) > AES_KEY_LEN*2) {
61 AES_KEY_LEN*2, (unsigned)strlen(argv[1]));
75 if (strlen(argv[2]) > 16*2) {
79 16*2, (unsigned)strlen(argv[2]));
  /external/svox/pico/tts/
svox_ssml_parser.cpp 83 int doclen = (int)strlen(ssmldoc) + 1;
112 if (strlen(m_data) > 0)
133 m_docLanguage = new char[strlen(attributes[i+1])+1];
142 if (strlen(m_data) + 4 > (size_t)m_datasize)
154 if (strlen(m_data) + 4 > (size_t)m_datasize)
209 xsampasize = strlen(xsampastr);
216 char* phonstr = createPhonemeString(xsampastr, strlen(xsampastr) + 1);
219 xsampastr = (char*)malloc(strlen(phonstr) + 1);
228 if (strlen(m_data) + strlen(xsampastr) + 1 > (size_t)m_datasize
    [all...]
  /external/toybox/toys/lsb/
hostname.c 25 if (sethostname(hostname, strlen(hostname)))
  /external/valgrind/memcheck/tests/amd64/
insn-pcmpistri.c 34 /* Compute strlen(s). Arrange for result to be valid or invalid
39 const size_t len = strlen(s) + 1;
71 printf("strlen(\"%s\")=%d\n", s, test_strlen(s, 1));
73 fprintf(stderr, "strlen(\"%s\")=%s\n", s,
  /external/valgrind/none/tests/
procfs-cmdline-exe.c 59 if (strncmp(buf, cwd, strlen(cwd)) == 0)
60 p += strlen(cwd);
79 if (strncmp(buf, cwd, strlen(cwd)) == 0)
80 p += strlen(cwd);
  /frameworks/native/libs/binder/
TextOutput.cpp 51 to.print(buf, strlen(buf));
59 to.print(buf, strlen(buf));
67 to.print(buf, strlen(buf));
75 to.print(buf, strlen(buf));
83 to.print(buf, strlen(buf));
91 to.print(buf, strlen(buf));
103 to.print(buf, strlen(buf));
121 to.print(buf, strlen(buf));
139 ((TextOutput*)cookie)->print(txt, strlen(txt));
  /ndk/sources/host-tools/make-3.81/
amiga.c 40 len += strlen (*aptr) + 4;
56 ptr += strlen (ptr);
67 ptr += strlen (ptr);
108 strlen (apath->ap_Buf));
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
file_utils.cpp 99 return strlen(filePath) + strlen(suffix) + 1 /* terminator */;
109 return strlen(dirPath) + 1 /* '/' */ + strlen(fileName) + 1 /* terminator */;
119 const int filePathLength = strlen(filePath);
120 const int suffixLength = strlen(suffix);
142 for (int i = strlen(filePath) - 1; i >= 0; --i) {
158 const int filePathBufSize = strlen(filePath) + 1 /* terminator */;
162 const int baseNameLength = strlen(baseName);
  /toolchain/binutils/binutils-2.25/libiberty/
strnlen.c 8 Returns the length of @var{s}, as with @code{strlen}, but never looks
  /external/dbus/tools/
dbus-launch-x11.c 59 plen = strlen (prefix);
63 memmove (s, s + plen, strlen (s) - plen + 1);
154 result = malloc (strlen (home) + strlen (prefix) + strlen (machine) +
155 strlen (display) + 2);
183 dir = malloc (strlen (home) + strlen (DBUS_DIR) + strlen (DBUS_SESSION_BUS_DIR) + 3);
256 atom_name = malloc (strlen (machine) + strlen (user_name) + 2
    [all...]

Completed in 3430 milliseconds

1 2 3 45 6 7 8 91011>>