HomeSort by: relevance | last modified time | path
    Searched defs:strnlen (Results 1 - 4 of 4) sorted by relevancy

  /src/common/lib/libc/string/
strnlen.c 1 /* $NetBSD: strnlen.c,v 1.2 2014/01/09 11:25:11 apb Exp $ */
35 __RCSID("$NetBSD: strnlen.c,v 1.2 2014/01/09 11:25:11 apb Exp $");
37 /* FreeBSD: src/lib/libc/string/strnlen.c,v 1.1 2009/02/28 06:00:58 das Exp */
47 strnlen(const char *s, size_t maxlen) function in typeref:typename:size_t
  /src/common/lib/libc/arch/arm/string/
strlen_naive.S 33 #ifdef STRNLEN
34 /* LINTSTUB: size_t strnlen(const char *, size_t) */
35 ENTRY(strnlen) function
57 END(strnlen)
58 #else /* STRNLEN */
74 #endif /* !STRNLEN */
  /src/sys/arch/usermode/usermode/
copy.c 39 /* XXX until strnlen(3) has been added to the kernel, we *could* panic on it */
40 #define strnlen(str, maxlen) uimin(strlen((str)), maxlen) macro
61 len = uimin(strnlen(uaddr, len), len) + 1;
71 len = uimin(strnlen(kaddr, len), len) + 1;
  /src/sys/external/bsd/libfdt/dist/
libfdt_env.h 80 /* strnlen() is not available on Mac OS < 10.7 */
84 #define strnlen fdt_strnlen macro

Completed in 13 milliseconds