/external/squashfs-tools/squashfs-tools/ |
xattr.c | 137 if(strncmp(xattr->full_name, p->prefix, strlen(p->prefix)) == 0) 142 xattr->name = xattr->full_name + strlen(prefix_table[i].prefix); 143 xattr->size = strlen(xattr->name); 168 xattrs->vsize = strlen(attr_val); 235 p += strlen(p) + 1; 374 strlen(xattr->full_name), checksum); 469 size += strlen(xattr_list[i].full_name) + 1 +
|
/external/zlib/src/test/ |
example.c | 93 uLong len = (uLong)strlen(hello)+1; 123 int len = (int)strlen(hello)+1; 180 if (strlen((char*)uncompr) != 7) { /* " hello!" */ 206 uLong len = (uLong)strlen(hello)+1; 381 uInt len = (uInt)strlen(hello)+1; 480 c_stream.avail_in = (uInt)strlen(hello)+1; 576 argc = strlen(argv[0]);
|
/ndk/sources/host-tools/make-3.81/ |
vmsify.c | 48 is determined by calling strlen(). */ 50 #define INIT_DSC_CSTRING(dsc, s) INIT_DSC_S(dsc, s, strlen(s)) 323 s1 = s + strlen (s); 453 s2 = s1 + strlen (s1) - 1; 835 vptr += strlen (vptr); 874 vptr += strlen (vptr); 928 p += strlen (p);
|
vmsjobs.c | 65 desc->dsc$w_length = strlen(fname); 306 char *cmd = alloca (strlen (argv) + 512), *p, *q; 327 pnamedsc.dsc$w_length = strlen(procname); 374 efiledsc.dsc$w_length = strlen(efile); 468 if (strlen (cmd) > MAXCMDLEN 477 if (strlen (cmd) == 0) 571 cmddsc.dsc$w_length = strlen(cmd);
|
/ndk/sources/host-tools/nawk-20071023/ |
lib.c | 188 if (strlen(*FS) >= sizeof(inputFS)) 268 n = strlen(r); 277 if (strlen(inputFS) > 1) { /* it's a regular expression */ 318 if (strlen(*RS) > 0) 415 n = strlen(rec); 464 if (!adjbuf(&record, &recsize, 1+strlen(p)+r-record, recsize, &r, "recbld 1")) 469 if (!adjbuf(&record, &recsize, 2+strlen(*OFS)+r-record, recsize, &r, "recbld 2"))
|
/system/core/init/ |
devices.cpp | 143 if (strncmp(upath, dp->name + 4, strlen(dp->name + 4))) 153 if ((strlen(upath) + strlen(dp->attr) + 6) > sizeof(buf)) 177 if (strncmp(path, dp->name, strlen(dp->name)) == 0) 276 int path_len = strlen(path); 302 int path_len = strlen(path); 585 if(strlen(name) > len) {
|
/system/core/libsysutils/src/ |
NetlinkEvent.cpp | 464 static const size_t kTagLength = strlen(kServerTag); 468 INET6_ADDRSTRLEN + strlen("%") + IFNAMSIZ + strlen(","); 484 pos += strlen(buf + pos); 573 /* Same as strlen(x) for constant string literals ONLY */ 625 s += strlen(s) + 1; 640 size_t len = strlen(paramName);
|
/toolchain/binutils/binutils-2.25/bfd/ |
elf-attrs.c | 68 size += strlen ((char *)attr->s) + 1; 108 ? size + 10 + strlen (vendor_name) 159 len = strlen (attr->s) + 1; 178 size_t vendor_length = strlen (vendor_name) + 1; 310 len = strlen (s) + 1; 516 p += strlen ((char *)p) + 1; 521 p += strlen ((char *)p) + 1;
|
/toolchain/binutils/binutils-2.25/binutils/ |
nlmheader.y | 170 len = strlen ($2); 212 len = strlen ($2); 315 len = strlen ($2); 348 len = strlen ($2); 471 $$ = xmalloc (strlen (symbol_prefix) + strlen ($1) + 2); 960 len = strlen (s);
|
/toolchain/binutils/binutils-2.25/libiberty/ |
simple-object-coff.c | 564 namelen = strlen (name); 705 sflen = strlen (source_filename); 716 name_offset += strlen (source_filename) + 1; 744 namelen = strlen (section->name); 764 strlen (section->name)); 765 memset (&syms[0].sym.e.e_name[strlen (section->name)], 0, 766 E_SYMNMLEN - strlen (section->name));
|
simple-object-xcoff.c | 648 namelen = strlen (name); 799 sflen = strlen (source_filename); 810 name_offset += strlen (source_filename) + 1; 838 namelen = strlen (section->name); 858 strlen (section->name)); 859 memset (&syms[0].sym.u.xcoff32.n.n_name[strlen (section->name)], 0, 860 N_SYMNMLEN - strlen (section->name));
|
/external/selinux/policycoreutils/newrole/ |
newrole.c | 125 if (!range || !strlen(range) || !newlevel || !strlen(newlevel)) 138 len = strlen(newlevel) + 1 + strlen(tmpptr + 1) + 1; 148 len = strlen(newlevel) + 1 + strlen(range) + 1; 239 size = strlen(keyp); 338 #include <string.h> /* for strlen(), memset() */ 379 memset(unencrypted_password_s, 0, strlen(unencrypted_password_s)); [all...] |
/ndk/build/gmsl/ |
gmsl-tests | 182 $(call start_test,strlen) 183 $(call test_assert,$(call strlen,),0) 184 $(call test_assert,$(call strlen,a),1) 185 $(call test_assert,$(call strlen,a b),3) 186 $(call test_assert,$(call strlen,a ),2) 187 $(call test_assert,$(call strlen, a),2) 188 $(call test_assert,$(call strlen, ),2) 189 $(call test_assert,$(call strlen, ),3) 190 $(call test_assert,$(call strlen, ),4)
|
/system/sepolicy/tools/ |
check_seapp.c | 324 strlen(tomatch), 0, 0, NULL, 0); 338 * characters ^ and $ and the null byte. Hence strlen(km->data) + 3 340 size = strlen(km->data) + 3; 748 int key_len = strlen(k->key); 749 int val_len = strlen(k->value); 750 int l = (new_map->key) ? strlen(new_map->key) : 0; 1054 len = strlen(line_buf); 1060 if (!strncasecmp(p, "neverallow", strlen("neverallow"))) { 1061 p += strlen("neverallow");
|
/toolchain/binutils/binutils-2.25/opcodes/ |
i386-gen.c | 640 size_t last = strlen (str); 780 last = flag + strlen (flag); 810 last = flag + strlen (flag); 854 last = mod + strlen (mod); 905 last = op + strlen (op); 949 i = strlen (str); 1101 last = p + strlen (p); 1156 last = str + strlen (str); 1223 last = p + strlen (p); [all...] |
/art/cmdline/ |
cmdline.h | 143 boot_image_location_ = option.substr(strlen("--boot-image=")).data(); 145 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); 153 output_name_ = option.substr(strlen("--output=")).ToString();
|
/art/profman/ |
profman.cc | 151 profile_files_.push_back(option.substr(strlen("--profile-file=")).ToString()); 155 reference_profile_file_ = option.substr(strlen("--reference-profile-file=")).ToString(); 159 dex_locations_.push_back(option.substr(strlen("--dex-location=")).ToString());
|
/build/tools/ijar/ |
zip_main.cc | 74 int len1 = strlen(path1); 120 isdir = filename[strlen(filename)-1] == '/'; 208 size_t len = strlen(path);
|
/external/avahi/avahi-daemon/ |
sd-daemon.c | 311 length = strlen(path); 370 iovec.iov_len = strlen(state); 374 msghdr.msg_namelen = offsetof(struct sockaddr_un, sun_path) + strlen(e);
|
/external/curl/lib/ |
cookie.c | 118 size_t cookie_domain_len = strlen(cooke_domain); 119 size_t hostname_len = strlen(hostname); 154 cookie_path_len = strlen(cookie_path); 168 if(0 == strlen(uri_path) || uri_path[0] != '/') { 184 uri_path_len = strlen(uri_path); 227 len = strlen(new_path); 420 size_t len=strlen(what); 421 const char *endofn = &ptr[ strlen(name) ]; 971 l1 = c1->path ? strlen(c1->path) : 0; 972 l2 = c2->path ? strlen(c2->path) : 0 [all...] |
curl_sasl_gssapi.c | 115 spn_token.length = strlen(spn); 132 if(strlen(chlg64) && *chlg64 != '=') { 226 if(strlen(chlg64) && *chlg64 != '=') {
|
/external/dbus/dbus/ |
sd-daemon.c | 306 length = strlen(path); 365 iovec.iov_len = strlen(state); 369 msghdr.msg_namelen = sizeof(sa_family_t) + strlen(e);
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkBinaryRegistry.cpp | 92 const size_t strLen = combinedStr.size(); 93 const size_t numWords = strLen/4 + 1; // Must always end up with at least one 0 byte 96 deMemcpy(&words[0], combinedStr.c_str(), strLen);
|
/external/deqp/framework/delibs/debase/ |
deSha1.c | 379 deSha1_compute(&result, strlen(stringHashPairs[ndx].data), stringHashPairs[ndx].data); 393 const size_t size = strlen(data); 406 deSha1_compute(&result, strlen(stringHashPairs[ndx].data), stringHashPairs[ndx].data);
|
/external/dhcpcd-6.8.2/ |
control.c | 49 (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path)) 133 len = strlen(p); 362 l = strlen(argv[i]) + 1;
|