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

1 2 3 45 6 7 8 91011>>

  /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);
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/
ml_sysfs_helper.c 84 strlen(ent->d_name) > strlen(type) &&
85 strncmp(ent->d_name, type, strlen(type)) == 0) {
86 numstrlen = sscanf(ent->d_name + strlen(type),
90 if (strncmp(ent->d_name + strlen(type) + numstrlen,
93 filename = malloc(strlen(iio_dir)
94 + strlen(type)
157 if(!memcmp(&line[i], chip_name[j], strlen(chip_name[j]))){
164 if(!memcmp(&line[i], name, strlen(name))){
237 for (i=0; i<strlen(chip_name[j]); i++)
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/
iio_utils.h 302 if (strcmp(ent->d_name + strlen(ent->d_name) - strlen("_en"),
333 if (strcmp(ent->d_name + strlen(ent->d_name) - strlen("_en"),
362 strlen(ent->d_name) -
363 strlen("_en"));
439 //char *temp = malloc(strlen(basedir) + strlen(filename) + 2);
495 //char *temp = malloc(strlen(basedir) + strlen(filename) + 2)
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
ml_sysfs_helper.c 76 strlen(ent->d_name) > strlen(type) &&
77 strncmp(ent->d_name, type, strlen(type)) == 0) {
78 numstrlen = sscanf(ent->d_name + strlen(type),
82 if (strncmp(ent->d_name + strlen(type) + numstrlen,
85 filename = malloc(strlen(iio_dir)
86 + strlen(type)
149 if(!memcmp(&line[i], chip_name[j], strlen(chip_name[j]))){
156 if(!memcmp(&line[i], name, strlen(name))){
229 for (i=0; i<strlen(chip_name[j]); i++)
    [all...]
  /art/runtime/jdwp/
jdwp_expand_buf.cc 153 static void SetUtf8String(uint8_t* buf, const char* str, size_t strLen) {
154 Set4BE(buf, strLen);
155 memcpy(buf + sizeof(uint32_t), str, strLen);
167 int strLen = strlen(s);
168 ensureSpace(pBuf, sizeof(uint32_t) + strLen);
169 SetUtf8String(pBuf->storage + pBuf->curLen, s, strLen);
170 pBuf->curLen += sizeof(uint32_t) + strLen;
  /bionic/libc/arch-x86/atom/string/
sse2-strnlen-atom.S 32 #define STRLEN strnlen
33 #include "sse2-strlen-atom.S"
  /external/clang/test/CodeGen/
stack-protector.c 13 size_t strlen(const char *s);
17 char a[strlen(msg) + 1];
  /external/compiler-rt/test/asan/TestCases/Posix/
glob.cc 27 printf("%zu\n", strlen(globbuf.gl_pathv[0]));
28 printf("%zu\n", strlen(globbuf.gl_pathv[1]));
  /external/compiler-rt/test/msan/Linux/
glob.cc 22 printf("%zu\n", strlen(globbuf.gl_pathv[0]));
23 printf("%zu\n", strlen(globbuf.gl_pathv[1]));
  /external/compiler-rt/test/msan/
iconv.cc 20 size_t inbytesleft = strlen(inbuf_);
44 assert(memcmp(inbuf_, outbuf_, strlen(inbuf_)) == 0);
  /external/libnfc-nci/src/adaptation/
libmain.c 94 strncat(filename2, sNfaStorageBin, sizeof(filename2)-strlen(filename2)-1);
95 if (strlen(filename2) > 200)
153 strncat(filename2, sNfaStorageBin, sizeof(filename2)-strlen(filename2)-1);
154 if (strlen(filename2) > 200)
214 strncat(filename2, sNfaStorageBin, sizeof(filename2)-strlen(filename2)-1);
215 if (strlen(filename2) > 200)
252 strncat(filename2, sNfaStorageBin, sizeof(filename2)-strlen(filename2)-1);
253 if (strlen(filename2) > 200)
  /external/llvm/test/Transforms/FunctionAttrs/
annotate-1.ll 7 declare i8 @strlen(i8*)
8 ; CHECK: declare i8 @strlen(i8* nocapture) [[G1:#[0-9]]]
  /external/ppp/pppd/plugins/pppoatm/
misc.c 28 ref_len = strlen(*pos);
32 len = strlen(value);
  /external/selinux/libselinux/src/
matchmediacon.c 27 if (current_line[strlen(current_line) - 1])
28 current_line[strlen(current_line) - 1] = 0;
  /external/toybox/lib/
getmountlist.c 19 if (atold[strlen(atold)-1] == ',') comma = "";
37 *len = strlen(*list);
72 int optlen = strlen(opt), len, no, got = 0;
81 if (clean) memmove(s, optlist, strlen(optlist)+1);
151 mt = xzalloc(sizeof(struct mtab_list) + strlen(me->mnt_fsname) +
152 strlen(me->mnt_dir) + strlen(me->mnt_type) + strlen(me->mnt_opts) + 4);
  /external/toybox/toys/android/
setprop.c 28 size_t name_len = strlen(name), value_len = strlen(value);
  /frameworks/av/media/libmedia/
MediaScanner.cpp 59 if (!mSkipList || (strlen(mSkipList) == 0)) {
72 mSkipIndex[i++] = strlen(path);
83 int pathLength = strlen(path);
111 int len = strlen(path);
117 // no point to match path name if strlen mismatch
134 char* fileSpot = path + strlen(path);
143 if (pathRemaining >= 8 /* strlen(".nomedia") */ ) {
183 int nameLength = strlen(name);
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioPolicyMix.cpp 117 if (strncmp(attributes.tags, "addr=", strlen("addr=")) == 0 &&
118 strncmp(attributes.tags + strlen("addr="),
120 AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - strlen("addr=") - 1) == 0) {
127 strncmp(attributes.tags, "addr=", strlen("addr=")) == 0 &&
128 strncmp(attributes.tags + strlen("addr="),
130 AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - strlen("addr=") - 1) == 0) {
172 if (strncmp(attr.tags, "addr=", strlen("addr=")) != 0) {
175 String8 address(attr.tags + strlen("addr="));
  /frameworks/base/tools/aapt/
AaptUtil.cpp 32 parts.add(String8(p, strlen(p)));
50 String8 val(p, strlen(p));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
un.h 38 # include <string.h> /* For prototype of `strlen'. */
42 + strlen ((ptr)->sun_path))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
un.h 38 # include <string.h> /* For prototype of `strlen'. */
42 + strlen ((ptr)->sun_path))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
un.h 38 # include <string.h> /* For prototype of `strlen'. */
42 + strlen ((ptr)->sun_path))
  /system/bt/hci/test/
hci_hal_h4_test.cpp 61 int length = strlen(packet_data);
117 if (reentry_i == (int)strlen(sample_data3)) {
173 int length = strlen(data) + 1; // + 1 for data type code
191 write(fd, data, strlen(data));
197 int length = strlen(data);
208 hal->transmit_data(DATA_TYPE_COMMAND, (uint8_t *)(sample_data1 + 1), strlen(sample_data1 + 1));
212 hal->transmit_data(DATA_TYPE_ACL, (uint8_t *)(sample_data2 + 1), strlen(sample_data2 + 1));
216 hal->transmit_data(DATA_TYPE_SCO, (uint8_t *)(sample_data3 + 1), strlen(sample_data3 + 1));

Completed in 490 milliseconds

1 2 3 45 6 7 8 91011>>