- t2ex
- bsd_source/lib/libc/src_bsd/arpa_inet/inet_ntop.c - 6.6KB - 195 lines
82: }
83: strlcpy(dst, tmp, size);
84: return (dst);
- More results from inet_ntop.c
- bsd_source/lib/libc/src_bsd/include/sys/sysctl.h - 47.6KB - 975 lines
526: offsetof(struct emul, e_name), sizeof((kp)->p_emul)); \
527: strlcpy((kp)->p_comm, (p)->p_comm, sizeof((kp)->p_comm)); \
528: strlcpy((kp)->p_login, (sess)->s_login, \
- More results from sysctl.h
- bsd_source/lib/libc/src_bsd/stdlib/gethex.c - 11.9KB - 360 lines
60: if ((decimalpoint_cache = (char*)MALLOC(strlen(s0) + 1))) {
61: strlcpy(decimalpoint_cache, s0, strlen(s0) + 1);
62: s0 = decimalpoint_cache;
- bsd_source/lib/libc/src_bsd/stdlib/realpath.c - 8.9KB - 212 lines
76: resolved_len = 1;
77: left_len = strlcpy(left, path + 1, sizeof(left));
78: } else {
- More results from realpath.c
- bsd_source/lib/libc/src_bsd/stdlib/strtod.c - 41.4KB - 1,105 lines
117: if ((decimalpoint_cache = (char*)MALLOC(strlen(s0) + 1))) {
118: strlcpy(decimalpoint_cache, s0, strlen(s0) + 1);
119: s0 = decimalpoint_cache;
- bsd_source/lib/libc/src_bsd/stdlib/strtodg.c - 41.4KB - 1,154 lines
366: if ((decimalpoint_cache = (char*)MALLOC(strlen(s0) + 1))) {
367: strlcpy(decimalpoint_cache, s0, strlen(s0) + 1);
368: s0 = decimalpoint_cache;
- bsd_source/lib/libc/src_bsd/string/strxfrm.c - 2.1KB - 51 lines
49: return (strlen(src));
50: return (strlcpy(dst, src, n));
51: }
- bsd_source/lib/libc/src_bsd/time/asctime.c - 5.1KB - 144 lines
90: /*errno = EINVAL*/;
91: strlcpy(buf, "??? ??? ?? ??:??:?? ????\n", bufsize);
92: return buf;
- bsd_source/lib/libc/src_bsd/time/strftime.c - 33.3KB - 791 lines
741: lbuf = nlbuf;
742: (void) strlcpy(lbuf, name, bufsize);
743: p = lbuf + namesize;
- bsd_source/t2ex/network/net/src_bsd/kern/uipc_domain.c - 21.1KB - 741 lines
497: un->sun_family = unp->unp_addr->sun_family;
498: strlcpy(un->sun_path, unp->unp_addr->sun_path,
499: sizeof(pcb->ki_s));
- More results from uipc_domain.c