/third_party/musl/src/network/ |
H A D | getnameinfo.c | 58 memcpy(line, fixed_hosts[*i], strlen(fixed_hosts[*i])); in get_hosts_str() 209 if (strlen(buf) >= nodelen) return EAI_OVERFLOW; in getnameinfo() 221 if (strlen(p) >= servlen) in getnameinfo()
|
/third_party/musl/porting/linux/user/src/network/ |
H A D | getnameinfo.c | 58 memcpy(line, fixed_hosts[*i], strlen(fixed_hosts[*i])); in get_hosts_str() 206 if (strlen(buf) >= nodelen) return EAI_OVERFLOW; in getnameinfo() 218 if (strlen(p) >= servlen) in getnameinfo()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | double-conversion-utils.h | 255 size_t length = strlen(string); in StrLength() 338 // Add an entire string to the builder. Uses strlen() internally to 348 DOUBLE_CONVERSION_ASSERT(static_cast<size_t>(n) <= strlen(s)); 368 DOUBLE_CONVERSION_ASSERT(strlen(buffer_.start()) == static_cast<size_t>(position_));
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | tracetst.c | 86 if (strlen(result) >= sizeof(expectedResult)) { in test_format() 155 if (strlen(buf) == 0) { in testTraceExit() 184 if (strlen(buf) == 0) { in testTraceData()
|
/third_party/ltp/utils/sctp/func_tests/ |
H A D | test_assoc_abort.c | 141 out_iov.iov_len = strlen(message) + 1; in main() 147 test_sendmsg(clt_sk[i], &outmessage, 0, strlen(message) + 1); in main() 179 test_check_msg_data(&inmessage, error, strlen(message) + 1, in main()
|
H A D | test_assoc_shutdown.c | 141 out_iov.iov_len = strlen(message) + 1; in main() 147 test_sendmsg(clt_sk[i], &outmessage, 0, strlen(message)+1); in main() 179 test_check_msg_data(&inmessage, error, strlen(message)+1, in main()
|
/third_party/libwebsockets/lib/roles/raw-skt/ |
H A D | ops-raw-skt.c | 42 lws_inform_client_conn_fail(wsi, (void *)cce, strlen(cce)); 54 strlen(ccebuf)); 155 lws_inform_client_conn_fail(wsi, (void *)cce, strlen(cce));
|
/third_party/node/deps/v8/src/profiler/ |
H A D | strings-storage.cc | 32 int len = static_cast<int>(strlen(src)); in GetCopy() 122 int cons_length = actual_length + static_cast<int>(strlen(prefix)) + 1; in GetConsName() 145 int len = static_cast<int>(strlen(str)); in Release()
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | ec.c | 270 strlen(passout)); in ec_main() 290 OPENSSL_clear_free(passin, strlen(passin)); in ec_main() 292 OPENSSL_clear_free(passout, strlen(passout)); in ec_main()
|
/third_party/node/deps/uv/src/unix/ |
H A D | getaddrinfo.c | 163 hostname + strlen(hostname), in uv_getaddrinfo() 172 hostname_len = hostname ? strlen(hostname) + 1 : 0; in uv_getaddrinfo() 173 service_len = service ? strlen(service) + 1 : 0; in uv_getaddrinfo()
|
/third_party/openssl/apps/ |
H A D | ec.c | 270 strlen(passout)); in ec_main() 290 OPENSSL_clear_free(passin, strlen(passin)); in ec_main() 292 OPENSSL_clear_free(passout, strlen(passout)); in ec_main()
|
/third_party/skia/third_party/externals/angle2/samples/sample_util/ |
H A D | SampleApplication.cpp | 99 if (strncmp(argv[argIndex], kUseAngleArg, strlen(kUseAngleArg)) == 0) in SampleApplication() 101 const char *arg = argv[argIndex] + strlen(kUseAngleArg); in SampleApplication() 106 if (strncmp(argv[argIndex], kUseGlArg, strlen(kUseGlArg)) == 0) in SampleApplication()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | double-conversion-utils.h | 209 size_t length = strlen(string); in StrLength() 292 // Add an entire string to the builder. Uses strlen() internally to 302 DOUBLE_CONVERSION_ASSERT(static_cast<size_t>(n) <= strlen(s)); 322 DOUBLE_CONVERSION_ASSERT(strlen(buffer_.start()) == static_cast<size_t>(position_));
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
H A D | test_parse_cookies.c | 98 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo() 228 if (cbc.pos != strlen ("/hello_world")) in testExternalGet() 230 if (0 != strncmp ("/hello_world", cbc.buf, strlen ("/hello_world"))) in testExternalGet()
|
H A D | test_process_arguments.c | 100 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo() 227 if (cbc.pos != strlen ("/hello+world")) in testExternalGet() 229 if (0 != strncmp ("/hello+world", cbc.buf, strlen ("/hello+world"))) in testExternalGet()
|
H A D | test_timeout.c | 152 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo() 210 if (cbc.pos != strlen ("/hello_world")) in testWithoutTimeout() 212 if (0 != strncmp ("/hello_world", cbc.buf, strlen ("/hello_world"))) in testWithoutTimeout()
|
/third_party/optimized-routines/string/ |
H A D | Dir.mk | 40 build/bin/test/strlen \ 46 build/bin/bench/strlen 102 $(EMULATOR) build/bin/bench/strlen
|
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/ |
H A D | tinystr.h | 80 init( static_cast<size_type>( strlen(copy) )); in TiXmlString() 99 return assign( copy, (size_type)strlen(copy)); in operator =() 111 return append(suffix, static_cast<size_type>( strlen(suffix) )); in operator +=()
|
/third_party/toybox/porting/liteos_a/toys/lsb/ |
H A D | mount.c | 130 i = *more ? strlen(*more) : 0; in flag_opts() 131 *more = xrealloc(*more, i + strlen(new) + 2); in flag_opts() 219 i = strlen(type); in mount_filesystem()
|
/third_party/toybox/toys/pending/ |
H A D | mdev.c | 130 || off.rm_eo!=strlen(device_name)) in make_device() 227 if(custom_name[strlen(custom_name) - 1] == '/') { in make_device() 247 char *symlink_name = malloc(sizeof("/dev/") + strlen(device_name) + 1); in make_device()
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | apps.c | 461 && strncmp(uri, OSSL_HTTP_PREFIX, strlen(OSSL_HTTP_PREFIX)) == 0) 463 && strncmp(uri, OSSL_HTTPS_PREFIX, strlen(OSSL_HTTPS_PREFIX)) == 0) 539 OPENSSL_cleanse(str, strlen(str)); in cleanse() 545 OPENSSL_clear_free(str, strlen(str)); in clear_free() 1527 j = strlen(serialfile); in save_serial() 1529 j = strlen(serialfile) + strlen(suffix) + 1; in save_serial() 1574 i = strlen(serialfile) + strlen(old_suffix); in rotate_serial() 1575 j = strlen(serialfil in rotate_serial() [all...] |
/third_party/openssl/apps/lib/ |
H A D | apps.c | 461 && strncmp(uri, OSSL_HTTP_PREFIX, strlen(OSSL_HTTP_PREFIX)) == 0) 463 && strncmp(uri, OSSL_HTTPS_PREFIX, strlen(OSSL_HTTPS_PREFIX)) == 0) 539 OPENSSL_cleanse(str, strlen(str)); in cleanse() 545 OPENSSL_clear_free(str, strlen(str)); in clear_free() 1525 j = strlen(serialfile); in save_serial() 1527 j = strlen(serialfile) + strlen(suffix) + 1; in save_serial() 1572 i = strlen(serialfile) + strlen(old_suffix); in rotate_serial() 1573 j = strlen(serialfil in rotate_serial() [all...] |
/third_party/backends/backend/pixma/ |
H A D | pixma_bjnp.c | 148 if ((match[strlen(cfg->model)] == ' ') || in lookup_scanner() 149 (match[strlen(cfg->model)] == '\0') || in lookup_scanner() 150 (match[strlen(cfg->model)] == '-')) in lookup_scanner() 348 if (strncmp (tok, "MDL:", strlen("MDL:")) == 0) in parse_IEEE1284_to_model() 350 model_str = tok + strlen("MDL:"); in parse_IEEE1284_to_model() 445 if (strlen (copy) >= SERIAL_MAX) in determine_scanner_serial() 455 if (strlen(copy) >= SERIAL_MAX) in determine_scanner_serial() 555 if ((strlen(start) == 0) || (strlen(start) >= BJNP_PORT_MAX ) ) in split_uri() 570 i = strlen(star in split_uri() [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | sdp.c | 189 memcpy(psets, pset_string, strlen(pset_string)); in extradata2psets() 190 p = psets + strlen(pset_string); in extradata2psets() 203 if (p != (psets + strlen(pset_string))) { in extradata2psets() 219 p += strlen(p); in extradata2psets() 222 if (sps && sps_end - sps >= 4 && p - psets <= MAX_PSET_SIZE - strlen(profile_string) - 7) { in extradata2psets() 223 memcpy(p, profile_string, strlen(profile_string)); in extradata2psets() 224 p += strlen(p); in extradata2psets() 325 strpos = strlen(psets); in extradata2psets_hevc()
|
/third_party/curl/lib/ |
H A D | hostip.c | 169 size_t len = nlen ? nlen : strlen(name); in create_hostcache_id() 492 hostlen = strlen(hostname); in Curl_cache_addr() 532 const size_t hostlen = strlen(name); in get_localhost6() 570 const size_t hostlen = strlen(name); in get_localhost() 660 size_t plen = strlen(part); in tailmatch() 661 size_t flen = strlen(full); in tailmatch() 695 size_t hostname_len = strlen(hostname); in Curl_resolv() 1192 addr_end = addr_begin + strlen(addr_begin); in Curl_loadhostpairs()
|