/system/core/debuggerd/ |
getevent.cpp | 123 filename = devname + strlen(devname); 152 filename = devname + strlen(devname);
|
/system/core/libcutils/ |
qtaguid.c | 71 res = TEMP_FAILURE_RETRY(write(fd, cmd, strlen(cmd))); 93 res = TEMP_FAILURE_RETRY(write(param_fd, value, strlen(value)));
|
/system/core/libsuspend/ |
autosuspend_earlysuspend.c | 103 ret = write(sPowerStatefd, pwr_state_mem, strlen(pwr_state_mem)); 133 ret = TEMP_FAILURE_RETRY(write(sPowerStatefd, pwr_state_on, strlen(pwr_state_on)));
|
/system/core/libsysutils/src/ |
SocketClient.cpp | 115 int len = strlen(arg); 146 if (sendData(msg, strlen(msg) + 1) != 0) {
|
/system/core/metricsd/ |
metrics_library.cc | 79 // 0..strlen(device_name)-1 -- this offset in device_name is next to match 80 // strlen(device_name) -- matched full name, just need a space.
|
/system/nativepower/daemon/ |
power_manager.cc | 113 strlen(kPowerStateSuspend)) != 114 static_cast<int>(strlen(kPowerStateSuspend))) {
|
/system/netd/server/ |
SoftapController.cpp | 225 if (PKCS5_PBKDF2_HMAC_SHA1(passphrase, strlen(passphrase), 227 strlen(ssid), 4096, SHA256_DIGEST_LENGTH,
|
main.cpp | 152 if (write(fd, pid_buf, strlen(pid_buf)) != (ssize_t)strlen(pid_buf)) {
|
/toolchain/binutils/binutils-2.25/ld/emultempl/ |
vms.em | 63 string = (char *) xmalloc (strlen (search->name) 64 + strlen (entry->filename)
|
/toolchain/binutils/binutils-2.25/libiberty/ |
concat.c | 65 length += strlen (arg); 78 unsigned long length = strlen (arg);
|
/external/toybox/toys/pending/ |
dhcp.c | 354 write(pidfile, pidbuf, strlen(pidbuf)); 456 options_list[count].len = strlen(valstr); 887 int size = strlen(hname); 1014 pend = dhcpc_addstropt(pend, DHCP_OPTION_VENDOR, vendor, strlen(vendor)); 1015 if (toys.optflags & FLAG_H) pend = dhcpc_addstropt(pend, DHCP_OPTION_HOST_NAME, TT.hostname, strlen(TT.hostname)); 1029 pend = dhcpc_addstropt(pend, DHCP_OPTION_VENDOR, vendor, strlen(vendor)); 1030 if (toys.optflags & FLAG_H) pend = dhcpc_addstropt(pend, DHCP_OPTION_HOST_NAME, TT.hostname, strlen(TT.hostname)); [all...] |
/hardware/qcom/audio/legacy/alsa_sound/ |
alsa_default.cpp | 284 if (!strncmp(handle->useCase, SND_USE_CASE_VERB_HIFI_REC, strlen(SND_USE_CASE_VERB_HIFI_REC)) 285 || !strncmp(handle->useCase, SND_USE_CASE_MOD_CAPTURE_MUSIC, strlen(SND_USE_CASE_MOD_CAPTURE_MUSIC))) { 360 if (!strncmp(handle->useCase, SND_USE_CASE_VERB_HIFI_REC, strlen(SND_USE_CASE_VERB_HIFI_REC)) 361 || !strncmp(handle->useCase, SND_USE_CASE_MOD_CAPTURE_MUSIC, strlen(SND_USE_CASE_MOD_CAPTURE_MUSIC))) { 456 if (!strncmp(handle->useCase, SND_USE_CASE_VERB_HIFI_REC, strlen(SND_USE_CASE_VERB_HIFI_REC)) 457 || !strncmp(handle->useCase, SND_USE_CASE_MOD_CAPTURE_MUSIC, strlen(SND_USE_CASE_MOD_CAPTURE_MUSIC))) { 495 strlen(SND_USE_CASE_VERB_INACTIVE)))) { 522 strlen(SND_USE_CASE_VERB_INACTIVE)))) { 562 strlen(SND_USE_CASE_VERB_INACTIVE))) && (!strncmp(use_case, it->useCase, MAX_UC_LEN))) { 684 if (!strncmp(handle->useCase, SND_USE_CASE_VERB_HIFI_REC, strlen(SND_USE_CASE_VERB_HIFI_REC) [all...] |
/bionic/libc/arch-x86/atom/string/ |
sse2-strlen-atom.S | 33 # ifndef STRLEN 34 # define STRLEN strlen 101 ENTRY (STRLEN) 748 END (STRLEN)
|
/build/libs/host/ |
CopyFile.c | 305 srcRsrcName = malloc(strlen(src) + 5 + 1); 309 dstRsrcName = malloc(strlen(dst) + 5 + 1); 499 nameLen = strlen(ent->d_name); 500 srcLen = strlen(src); 501 dstLen = strlen(dst);
|
/external/compiler-rt/lib/profile/ |
GCDAProfiling.c | 129 return (strlen(s) / 4) + 1; 135 write_bytes(s, strlen(s)); 136 write_bytes("\0\0\0\0", 4 - (strlen(s) % 4)); 193 filename_len = strlen(fname); 194 prefix_len = strlen(prefix);
|
/external/dhcpcd-6.8.2/dbus/ |
rpc-dbus.c | 253 lp = strlen(prefix); 257 l = strlen(dhop->var); 334 char *p = config_prefix + strlen(config_prefix) - 1; 410 char *p = config_prefix + strlen(config_prefix) - 1; 638 strlen(new_owner) == 0) {
|
/external/dng_sdk/source/ |
dng_date_time.cpp | 247 uint32 len = (uint32) strlen (s); 483 if (strlen (s) == 8) 538 if (strlen (s) == 11) 591 else if (strlen (s) == 6) 613 else if (strlen (s) == 4)
|
/external/libmicrohttpd/doc/examples/ |
sessions.c | 306 response = MHD_create_response_from_buffer (strlen (form), 348 response = MHD_create_response_from_buffer (strlen (reply), 391 response = MHD_create_response_from_buffer (strlen (reply), 424 response = MHD_create_response_from_buffer (strlen (NOT_FOUND_ERROR), 640 response = MHD_create_response_from_buffer (strlen (METHOD_ERROR),
|
/external/libmicrohttpd/src/microspdy/ |
applicationlayer.c | 143 if(NULL == method || strlen(method) == 0 144 || NULL == path || strlen(path) == 0 145 || NULL == version || strlen(version) == 0 146 || NULL == host || strlen(host) == 0 147 || NULL == scheme || strlen(scheme) == 0
|
/external/libmicrohttpd/src/testcurl/ |
test_post_loop.c | 101 if (strlen (POST_DATA) != *upload_data_size) 138 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA)); 202 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA)); 267 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA)); 350 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
|
/external/opencv3/3rdparty/zlib/ |
gzlib.c | 199 len = strlen((const char *)path); 601 if ((state->msg = (char *)malloc(strlen(state->path) + strlen(msg) + 3)) == 607 snprintf(state->msg, strlen(state->path) + strlen(msg) + 3,
|
/external/pdfium/third_party/zlib_v128/ |
gzlib.c | 199 len = strlen((const char *)path); 601 if ((state->msg = (char *)malloc(strlen(state->path) + strlen(msg) + 3)) == 607 snprintf(state->msg, strlen(state->path) + strlen(msg) + 3,
|
/external/selinux/checkpolicy/test/ |
dispol.c | 463 ans[strlen(ans) - 1] = 0; 465 name = malloc((strlen(ans) + 1) * sizeof(char)); 478 ans[strlen(ans) - 1] = 0; 509 OutfileName[strlen(OutfileName) - 1] = '\0'; /* fix_string (remove LF) */ 510 if (strlen(OutfileName) == 0)
|
/external/selinux/libselinux/src/ |
matchpathcon.c | 184 fl->file = malloc(strlen(file) + 1); 201 fl->file = malloc(strlen(file) + 1); 217 fl->file = malloc(strlen(file) + 1); 391 len = strlen(p); 392 if (len + strlen(last_component) + 2 > PATH_MAX) {
|
/external/skia/src/ports/ |
SkFontConfigInterface_direct.cpp | 53 uint32_t strLen, weight, width; 54 (void)buffer.readU32(&strLen); 61 fString.resize(strLen); 62 (void)buffer.read(fString.writable_str(), strLen); 578 *sizes.append() = strlen(famName) + 1;
|