HomeSort by relevance Sort by last modified time
    Searched refs:strlcat (Results 26 - 50 of 130) sorted by null

12 3 4 5 6

  /external/ipsec-tools/src/racoon/
misc.h 67 #define strlcat(d,s,l) strncat(d,s,(l)-strlen(d)-1) macro
  /external/libpcap/
portability.h 91 #define strlcat(x, y, z) \ macro
pcap-new.c 681 strlcat(source, name, PCAP_BUF_SIZE);
700 strlcat(source, "[", PCAP_BUF_SIZE);
701 strlcat(source, host, PCAP_BUF_SIZE);
702 strlcat(source, "]", PCAP_BUF_SIZE);
705 strlcat(source, host, PCAP_BUF_SIZE);
709 strlcat(source, ":", PCAP_BUF_SIZE);
710 strlcat(source, port, PCAP_BUF_SIZE);
713 strlcat(source, "/", PCAP_BUF_SIZE);
722 strlcat(source, name, PCAP_BUF_SIZE);
732 strlcat(source, name, PCAP_BUF_SIZE)
    [all...]
  /external/syslinux/com32/include/
string.h 33 __extern size_t strlcat(char *, const char *, size_t);
  /hardware/qcom/gps/msm8084/platform_lib_abstractions/
platform_lib_macros.h 49 #define strlcat g_strlcat macro
  /hardware/qcom/gps/msm8909/utils/platform_lib_abstractions/
platform_lib_macros.h 49 #define strlcat g_strlcat macro
  /hardware/qcom/gps/msm8960/platform_lib_abstractions/
platform_lib_macros.h 49 #define strlcat g_strlcat macro
  /hardware/qcom/gps/msm8994/platform_lib_abstractions/
platform_lib_macros.h 49 #define strlcat g_strlcat macro
  /hardware/qcom/gps/msm8996/utils/platform_lib_abstractions/
platform_lib_macros.h 49 #define strlcat g_strlcat macro
  /hardware/qcom/gps/platform_lib_abstractions/
platform_lib_macros.h 49 #define strlcat g_strlcat macro
  /hardware/qcom/display/msm8084/liboverlay/
overlayUtils.cpp 414 strlcat(buf, str, len);
427 strlcat(buf, str_src, len);
436 strlcat(buf, str_rect, len);
445 strlcat(buf, str, len);
455 strlcat(buf, str_data, len);
464 strlcat(buf, str, len);
476 strlcat(buf, str, len);
overlayRotator.cpp 178 strlcat(buf, str, len);
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
realpath.c 157 resolved_len = strlcat(resolved, next_token, PATH_MAX);
210 left_len = strlcat(symlink, left,
  /external/libcups/cups/
langprintf.c 77 strlcat(buffer, "\n", sizeof(buffer));
187 strlcat(buffer, "\n", sizeof(buffer));
string-private.h 169 # define strlcat _cups_strlcat macro
tls-gnutls.c     [all...]
  /external/clang/test/SemaCXX/
warn-memsize-comparison.cpp 15 extern "C" size_t strlcat(char *dst, const char *src, size_t size);
79 if (strlcat(b1, b2, sizeof(b1) != 0)) {} // \
80 expected-warning{{size argument in 'strlcat' call is a comparison}} \
83 if (strlcat(b1, b2, sizeof(b1)) != 0) {}
  /hardware/qcom/audio/legacy/libalsa-intf/
alsa_pcm.c 25 #define strlcat g_strlcat macro
782 strlcat(dname, tmp, (2+strlen(dname))) ;
784 strlcat(dname, "D", (sizeof("D")+strlen(dname)));
789 strlcat(dname, tmp, (3+strlen(dname)));
791 strlcat(dname, tmp, (2+strlen(dname)));
792 strlcat(dname, "c", (sizeof("c")+strlen(dname)));
796 strlcat(dname, tmp, (2+strlen(dname))) ;
798 strlcat(dname, "D", (sizeof("D")+strlen(dname)));
803 strlcat(dname, tmp, (3+strlen(dname)));
805 strlcat(dname, tmp, (2+strlen(dname)))
    [all...]
  /bionic/libc/include/bits/fortify/
string.h 175 size_t strlcat(char* const dst __pass_object_size, const char* src, size_t size) __overloadable {
179 return __call_bypassing_fortify(strlcat)(dst, src, size);
239 __RENAME(strlcat);
348 size_t strlcat(char* dst, const char* src, size_t size) {
  /device/linaro/bootloader/edk2/StdLib/Include/
string.h 73 size_t strlcat (char *destination, const char *source, size_t size);
466 size_t strlcat(char *destination, const char *source, size_t size);
  /frameworks/av/media/libmedia/
CharacterEncodingDetector.cpp 105 strlcat(buf, value, sizeof(buf));
107 strlcat(buf, " ", sizeof(buf));
141 strlcat(buf, value, sizeof(buf));
142 strlcat(buf, " ", sizeof(buf));
  /hardware/qcom/audio/hal/msm8916/
hw_info.c 118 CHECK(strlcat(device_name, my_data->dev_extn,
  /hardware/qcom/audio/hal/msm8974/
hw_info.c 144 CHECK(strlcat(device_name, my_data->dev_extn,
  /bootable/recovery/bootloader_message/
bootloader_message.cpp 187 strlcat(boot->recovery, s.c_str(), sizeof(boot->recovery));
189 strlcat(boot->recovery, "\n", sizeof(boot->recovery));
  /external/clang/test/Sema/
builtins.c 1 // RUN: %clang_cc1 %s -fsyntax-only -verify -pedantic -Wstrlcpy-strlcat-size -Wno-string-plus-int -triple=i686-apple-darwin9
213 size_t strlcat(char * restrict dst, const char * restrict src, size_t size);
226 strlcat(buf, b, sizeof(b)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} \

Completed in 1277 milliseconds

12 3 4 5 6