HomeSort by relevance Sort by last modified time
    Searched defs:strlcpy (Results 1 - 23 of 23) sorted by null

  /external/chromium/third_party/libevent/
strlcpy-internal.h 15 #define strlcpy _event_strlcpy macro
  /external/mksh/src/
strlcpy.c 21 __RCSID("$MirOS: src/bin/mksh/strlcpy.c,v 1.7 2009/06/10 18:12:50 tg Rel $");
29 strlcpy(char *dst, const char *src, size_t siz) function
  /bionic/libc/string/
strlcpy.c 1 /* $OpenBSD: strlcpy.c,v 1.11 2006/05/05 15:27:38 millert Exp $ */
28 strlcpy(char *dst, const char *src, size_t siz) function
  /external/dhcpcd/compat/
strlcpy.c 30 #include "strlcpy.h"
33 strlcpy(char *dst, const char *src, size_t size) function
  /external/openssh/openbsd-compat/
strlcpy.c 1 /* $OpenBSD: strlcpy.c,v 1.10 2005/08/08 08:05:37 espie Exp $ */
19 /* OPENBSD ORIGINAL: lib/libc/string/strlcpy.c */
33 strlcpy(char *dst, const char *src, size_t siz) function
  /external/tcpdump/missing/
strlcpy.c 1 /* $NetBSD: strlcpy.c,v 1.5 1999/09/20 04:39:47 lukem Exp $ */
2 /* from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp */
33 "@(#) $Header: /tcpdump/master/tcpdump/missing/strlcpy.c,v 1.5 2003/11/16 09:36:52 guy Exp $ (LBL)";
50 strlcpy(char *dst, const char *src, size_t siz) function
  /external/ipsec-tools/src/racoon/
misc.h 63 #define strlcpy(d,s,l) (strncpy(d,s,l), (d)[(l)-1] = '\0') macro
  /system/core/libcutils/
memory.c 59 /* Implementation of strlcpy() for platforms that don't already have it. */
67 strlcpy(char *dst, const char *src, size_t siz) function
  /bionic/libc/include/
string.h 75 extern size_t strlcpy(char *, const char *, size_t);
143 __asm__(__USER_LABEL_PREFIX__ "strlcpy");
145 __attribute__((__error__("strlcpy called with size bigger than buffer")));
149 size_t strlcpy(char *dest, const char *src, size_t size) { function
  /external/clang/test/CodeGen/
inline.c 15 // CHECK1: define i{{..}} @strlcpy
37 // CHECK2: define available_externally i{{..}} @strlcpy
113 // PR11062; the fact that the function is named strlcpy matters here.
114 inline __typeof(sizeof(int)) strlcpy(char *dest, const char *src, __typeof(sizeof(int)) size) { return 3; } function
115 void test8() { strlcpy(0,0,0); }
  /external/dropbear/
compat.c 93 size_t strlcpy(char *dst, const char *src, size_t size) { function
  /external/linux-tools-perf/util/
path.c 26 size_t strlcpy(char *dest, const char *src, size_t size) function
74 strlcpy(buf, bad_path, n);
  /hardware/qcom/media/mm-video/vidc/venc/src/
omx_video_encoder.cpp 40 #define strlcpy g_strlcpy macro
108 strlcpy((char *)m_nkind,role,OMX_MAX_STRINGNAME_SIZE);
113 strlcpy((char *)m_cRole, "video_encoder.mpeg4",\
120 strlcpy((char *)m_cRole, "video_encoder.h263",OMX_MAX_STRINGNAME_SIZE);
126 strlcpy((char *)m_cRole, "video_encoder.avc",OMX_MAX_STRINGNAME_SIZE);
132 strlcpy((char *)m_cRole, "video_encoder.avc",OMX_MAX_STRINGNAME_SIZE);
831 strlcpy((char*)m_cRole,"video_encoder.avc",OMX_MAX_STRINGNAME_SIZE);
843 strlcpy((char*)m_cRole,"video_encoder.mpeg4",OMX_MAX_STRINGNAME_SIZE);
855 strlcpy((char*)m_cRole,"video_encoder.h263",OMX_MAX_STRINGNAME_SIZE);
    [all...]
omx_video_base.cpp 54 #define strlcpy g_strlcpy macro
    [all...]
  /dalvik/vm/
Misc.cpp 408 strlcpy(newStr, str + 1, length);
589 /* Implementation of strlcpy() for platforms that don't already have it. */
590 size_t strlcpy(char *dst, const char *src, size_t size) { function
  /external/ppp/pppd/
utils.c 87 * strlcpy - like strcpy/strncpy, doesn't overflow destination buffer,
91 strlcpy(dest, src, len) function
121 return dlen + strlcpy(dest + dlen, src, (len > dlen? len - dlen: 0));
543 strlcpy(line, prefix, sizeof(line));
920 strlcpy(lock_file, dev, sizeof(lock_file));
  /hardware/qcom/audio/legacy/libalsa-intf/
aplay.c 34 #define strlcpy g_strlcpy macro
653 strlcpy(filename, argv[optind++], 30);
arec.c 42 #define strlcpy g_strlcpy macro
600 strlcpy(filename, argv[optind++], 30);
alsa_pcm.c 26 #define strlcpy g_strlcpy macro
784 strlcpy(dname, "/dev/snd/pcmC", sizeof(dname));
798 strlcpy(dname, "/dev/snd/pcmC", sizeof(dname));
alsa_ucm.c 39 #define strlcpy g_strlcpy macro
300 strlcpy(ident, identifier, sizeof(ident));
479 strlcpy(ident, identifier, sizeof(ident));
    [all...]
  /external/libpcap/
pcap-int.h 286 #define strlcpy(x, y, z) \ macro
  /hardware/qcom/media/mm-video/vidc/vdec/test/
omx_vdec_test.cpp 70 #define strlcpy g_strlcpy macro
    [all...]
  /hardware/qcom/media/mm-video/vidc/vdec/src/
omx_vdec.cpp 144 #define strlcpy g_strlcpy macro
    [all...]

Completed in 1937 milliseconds