Searched refs:strlcat (Results 1 - 25 of 325) sorted by relevance

1234567891011>>

/macosx-10.10/ksh-23/ksh/src/lib/libast/string/
H A Dstrlcat.c24 * strlcat implementation
27 #define strlcat ______strlcat macro
31 #undef strlcat macro
38 NoN(strlcat)
53 strlcat(register char* s, register const char* t, register size_t n)
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/src/
H A Dstrlcpycat.h12 * @brief prototypes of strlcpy()/strlcat() imported from OpenBSD
22 size_t strlcat(char *dst, const char *src, size_t siz);
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvfs_fslog.c74 strlcat(c_name, "(", sizeof(c_name));
75 strlcat(c_name, uuidstr, sizeof(c_name));
76 strlcat(c_name, ")", sizeof(c_name));
83 strlcat(t_name, "(", sizeof(t_name));
84 strlcat(t_name, uuidstr, sizeof(t_name));
85 strlcat(t_name, ")", sizeof(t_name));
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dfmtmsg.c155 strlcat(output, ": ", size)
158 strlcat(output, "\n", size)
161 strlcat(output, " ", size)
193 strlcat(output, label, size);
196 strlcat(output, sevinfo(sev), size);
199 strlcat(output, text, size);
202 strlcat(output, "TO FIX: ", size);
203 strlcat(output, act, size);
206 strlcat(output, tag, size);
/macosx-10.10/procmail-14/procmail/src/
H A Dcomsat.c19 #include "sublib.h" /* for strtol() and strlcat() */
42 strlcat(new,MCDIRSEP_,len);
43 strlcat(new,folder,len);
128 strlcat(buf,"@",linebuf); /* start setting up the message */
131 strlcat(buf,buf2,linebuf);
133 strlcat(buf,COMSATxtrsep,linebuf); /* custom seperator */
134 strlcat(buf,p,linebuf); /* where was it delivered? */
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Dstrlcat.c1 /* $NetBSD: strlcat.c,v 1.3 2007/06/04 18:19:27 christos Exp $ */
2 /* $OpenBSD: strlcat.c,v 1.10 2003/04/12 21:56:39 millert Exp $ */
23 __RCSID("$NetBSD: strlcat.c,v 1.3 2007/06/04 18:19:27 christos Exp $");
32 __weak_alias(strlcat, _strlcat)
45 strlcat(char *dst, const char *src, size_t siz)
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dstrlcat.c40 strlcat (char *dst, const char *src, size_t dst_sz) function
/macosx-10.10/Libc-1044.1.2/string/
H A Dstrlcat.c27 strlcat(char * restrict dst, const char * restrict src, size_t maxlen) { function
/macosx-10.10/lukemftp-14/tnftp/libnetbsd/
H A Dstrlcat.c1 /* $NetBSD: strlcat.c,v 1.4 2005/05/16 06:55:48 lukem Exp $ */
2 /* from NetBSD: strlcat.c,v 1.16 2003/10/27 00:12:42 lukem Exp */
3 /* from OpenBSD: strlcat.c,v 1.10 2003/04/12 21:56:39 millert Exp */
31 strlcat(char *dst, const char *src, size_t siz) function
/macosx-10.10/sudo-73/src/
H A Dlogging.c781 strlcat(evstr, cur->value, evlen);
782 strlcat(evstr, " ", evlen); /* NOTE: last one will fail */
800 if (strlcat(line, message, len) >= len ||
801 strlcat(line, errstr ? " : " : " ; ", len) >= len)
805 if (strlcat(line, errstr, len) >= len ||
806 strlcat(line, " ; ", len) >= len)
809 if (strlcat(line, LL_TTY_STR, len) >= len ||
810 strlcat(line, user_tty, len) >= len ||
811 strlcat(line, " ; ", len) >= len)
813 if (strlcat(lin
[all...]
H A Dstrlcat.c1 /* $OpenBSD: strlcat.c,v 1.8 2001/05/13 15:40:15 deraadt Exp $ */
34 strlcat(dst, src, siz) function
/macosx-10.10/OpenSSH-189/openssh/
H A Dmd5crypt.c145 strlcat(passwd, to64(l, 4), sizeof(passwd));
147 strlcat(passwd, to64(l, 4), sizeof(passwd));
149 strlcat(passwd, to64(l, 4), sizeof(passwd));
151 strlcat(passwd, to64(l, 4), sizeof(passwd));
153 strlcat(passwd, to64(l, 4), sizeof(passwd));
155 strlcat(passwd, to64(l, 2), sizeof(passwd));
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dstrlcat.c1 /* $OpenBSD: strlcat.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */
19 /* OPENBSD ORIGINAL: lib/libc/string/strlcat.c */
35 strlcat(char *dst, const char *src, size_t siz) function
/macosx-10.10/dcerpc-61/dcerpc/dcelib/
H A Dstrlcat.c35 strlcat(char * dst, const char * src, size_t siz) function
H A DMakefile.am8 libdcerpc_la_SOURCES = dummyfuncs.c strlcpy.c strlcat.c
/macosx-10.10/file-46/file/src/
H A Dstrlcat.c1 /* $OpenBSD: strlcat.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */
19 /* OPENBSD ORIGINAL: lib/libc/string/strlcat.c */
33 strlcat(char *dst, const char *src, size_t siz) function
/macosx-10.10/ruby-106/ruby/missing/
H A Dstrlcat.c1 /* $OpenBSD: strlcat.c,v 1.8 2001/05/13 15:40:15 deraadt Exp $ */
31 static char *rcsid = "$OpenBSD: strlcat.c,v 1.8 2001/05/13 15:40:15 deraadt Exp $";
46 strlcat(dst, src, siz) function
/macosx-10.10/tcpdump-61/tcpdump/missing/
H A Dstrlcat.c1 /* $NetBSD: strlcat.c,v 1.5 1999/09/20 04:39:47 lukem Exp $ */
2 /* from OpenBSD: strlcat.c,v 1.2 1999/06/17 16:28:58 millert Exp */
33 "@(#) $Header: /tcpdump/master/tcpdump/missing/strlcat.c,v 1.5 2003-11-16 09:36:51 guy Exp $ (LBL)";
51 strlcat(char *dst, const char *src, size_t siz) function
/macosx-10.10/libedit-40/src/
H A Dsys.h95 #define strlcat libedit_strlcat macro
96 size_t strlcat(char *dst, const char *src, size_t size);
/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Dsys.h87 #define strlcat libedit_strlcat macro
88 size_t strlcat(char *dst, const char *src, size_t size);
/macosx-10.10/shell_cmds-179/path_helper/
H A Dpath_helper.c63 if (pathlen > 0) strlcat(*path, ":", size);
64 strlcat(*path, segment, size);
/macosx-10.10/dcerpc-61/dcerpc/ncklib/
H A Ddce_error.c352 strlcat ((char*) error_text, " (", dce_c_error_string_len);
353 strlcat ((char*) error_text, fname, dce_c_error_string_len);
354 strlcat ((char*) error_text, " / ", dce_c_error_string_len);
355 strlcat ((char*) error_text, cname, dce_c_error_string_len);
356 strlcat ((char*) error_text, ")", dce_c_error_string_len);
/macosx-10.10/dcerpc-61/dcerpc/idl_compiler/
H A Dfiles.c331 strlcat(out_filespec, res_dir, out_filespec_len);
332 strlcat(out_filespec, BRANCHSTRING, out_filespec_len);
336 strlcat(out_filespec, res_name, out_filespec_len);
339 strlcat(out_filespec, res_type, out_filespec_len); /* The '.' is part of the filetype */
656 strlcat(cmd, cmd_string, cmd_len);
657 strlcat(cmd, " ", cmd_len);
658 strlcat(cmd, p1, cmd_len);
659 strlcat(cmd, " ", cmd_len);
660 strlcat(cmd, p2, cmd_len);
H A Dfrontend.c212 strlcat(cmd, " ", sizeof(cmd));
213 strlcat(cmd, cpp_opt ? cpp_opt : "", sizeof(cmd));
214 strlcat(cmd, " ", sizeof(cmd));
215 strlcat(cmd, file_name ? file_name : "" , sizeof(cmd));
221 strlcat(cmd, " -D", sizeof(cmd));
222 strlcat(cmd, *def_strings++, sizeof(cmd));
228 strlcat(cmd, " -U", sizeof(cmd));
229 strlcat(cmd, *undef_strings++, sizeof(cmd));
238 strlcat(cmd, " -I", sizeof(cmd));
239 strlcat(cm
[all...]
/macosx-10.10/xnu-2782.1.97/SETUP/replacecontents/
H A Dreplacecontents.c70 strlcat(newcontent, argv[i], newcontentlength);
72 strlcat(newcontent, " ", newcontentlength);
74 strlcat(newcontent, "\n", newcontentlength);

Completed in 307 milliseconds

1234567891011>>