Searched refs:strlen (Results 1 - 25 of 3934) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/strlen/
H A Dtst.strlen1.d31 * Test the strlen() subroutine.
33 * SECTION: Actions and Subroutines/strlen()
38 /strlen("I like DTrace") == 13/
/illumos-gate/usr/src/lib/libdisasm/common/
H A Dlinktest_stand.c37 void strlen(void) {} function
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dstrings.h44 int strlen();
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dstrlen.c42 strlen(const char *s) function
H A Dstpcpy.c41 return (s1 + strlen(s1));
H A Dstrchrnul.c34 ptr = (char *)s + strlen(s);
H A Dperror.c61 (void) write(2, s, strlen(s));
64 (void) write(2, c, strlen(c));
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dstrstr.c40 int s2len = strlen(s2); /* length of the second string */
48 while (strlen(s1) >= s2len) {
H A D_perror.c34 extern int strlen();
46 v->iov_len = strlen(s);
54 v->iov_len = strlen(v->iov_base);
H A D_psignal.c34 extern int strlen();
47 v->iov_len = strlen(s);
55 v->iov_len = strlen(v->iov_base);
/illumos-gate/usr/src/lib/libc/i386/gen/
H A Dstrlen.s26 .file "strlen.s"
29 / strlen(s)
34 / Fast assembly language version of the following C-program strlen
38 / strlen(const char *s)
56 ENTRY(strlen) function
95 SET_SIZE(strlen)
/illumos-gate/usr/src/uts/common/sys/
H A Dun.h64 * Also, include a strlen() prototype, and we have to protect it w.r.t.
65 * UNIX{98,03}. And because there's strlen, we need size_t as well.
76 extern size_t strlen(const char *);
78 #define SUN_LEN(su) (sizeof (sa_family_t) + strlen((su)->sun_path))
/illumos-gate/usr/src/uts/common/syscall/
H A Duname.c46 if (copyout(utsname.sysname, buf->sysname, strlen(utsname.sysname)+1)) {
49 if (copyout(name_to_use, buf->nodename, strlen(name_to_use)+1)) {
52 if (copyout(utsname.release, buf->release, strlen(utsname.release)+1)) {
55 if (copyout(utsname.version, buf->version, strlen(utsname.version)+1)) {
58 if (copyout(utsname.machine, buf->machine, strlen(utsname.machine)+1)) {
/illumos-gate/usr/src/lib/libnsl/nsl/
H A Dt_error.c48 (void) write(2, s, strlen(s));
51 (void) write(2, c, strlen(c));
55 (void) write(2, c, strlen(c));
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Dutil_dup.c36 if ((ret = (char *) xmalloc(strlen(str)+1)) == NULL)
/illumos-gate/usr/src/lib/libgen/common/
H A Dstrrspn.c46 p = (char *)string + strlen(string);
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dstrdup.c12 char *dst = malloc(strlen(src) + 1);
/illumos-gate/usr/src/lib/libc/sparc/
H A DMakefile34 strlen.o \
/illumos-gate/usr/src/lib/libc/sparcv9/
H A DMakefile34 strlen.o \
/illumos-gate/usr/src/lib/libmail/common/
H A Dtrimnl.c44 p = s + strlen(s) - 1;
H A Dsubstr.c47 len1 = (int)strlen(string1);
49 len2 = (int)strlen(string2);
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dstrrevcmp.c40 i1 = strlen(s1) - 1;
41 i2 = strlen(s2) - 1;
83 i1 = strlen(s1) - 1;
84 i2 = strlen(s2) - 1;
/illumos-gate/usr/src/lib/libast/common/path/
H A Dpathrepl.c43 return(path + strlen(path));
64 t = path + strlen(path);
65 u = t + strlen(r);
69 else p += strlen(p) + 1;
/illumos-gate/usr/src/cmd/make/lib/vroot/
H A Dsetenv.cc45 length= strlen(name);
48 length= strlen(name);
52 vl= strlen(value);
53 if (!p || (length+vl+1 > strlen(p)))
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dgen_rname.c40 if ((*string = malloc(strlen(uniq) + (address->length * 2) + 1)) == NULL)
45 tmp = (*string) + strlen(uniq);

Completed in 137 milliseconds

1234567891011>>