Searched refs:src (Results 201 - 225 of 1259) sorted by relevance

1234567891011>>

/opensolaris-onvv-gate/usr/src/lib/libsqlite/
H A Dmain.mk55 TCCX = $(TCC) $(OPTS) $(THREADSAFE) $(USLEEP) -I. -I$(TOP)/src
68 $(TOP)/src/attach.c \
69 $(TOP)/src/auth.c \
70 $(TOP)/src/btree.c \
71 $(TOP)/src/btree.h \
72 $(TOP)/src/btree_rb.c \
73 $(TOP)/src/build.c \
74 $(TOP)/src/copy.c \
75 $(TOP)/src/date.c \
76 $(TOP)/src/delet
[all...]
/opensolaris-onvv-gate/usr/src/cmd/filebench/common/
H A Dutils.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
76 fb_strlcpy(char *dst, const char *src, size_t dstsize) argument
83 if (src[i] == '\0')
86 dst[i] = src[i];
102 fb_strlcat(char *dst, const char *src, size_t dstsize) argument
114 if (src[j] == '\0')
117 dst[i] = src[j];
H A Dgamma_dist.h8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
37 double (*src)(unsigned short *), unsigned short *xi);
H A Dutils.h8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
46 extern size_t fb_strlcat(char *dst, const char *src, size_t dstsize);
47 extern size_t fb_strlcpy(char *dst, const char *src, size_t dstsize);
/opensolaris-onvv-gate/usr/src/lib/libresolv2/common/inet/
H A Dinet_neta.c43 * inet_neta(src, dst, size)
48 * format of ``src'' is as for inet_network().
53 inet_neta(src, dst, size)
54 u_long src;
61 while (src & 0xffffffff) {
62 u_char b = (src & 0xff000000) >> 24;
64 src <<= 8;
70 if (src != 0L) {
H A Dinet_net_pton.c47 * inet_net_pton_ipv4(src, dst, size)
62 inet_net_pton_ipv4(const char *src, u_char *dst, size_t size) { argument
68 ch = *src++;
69 if (ch == '0' && (src[0] == 'x' || src[0] == 'X')
70 && isascii((unsigned char)(src[1]))
71 && isxdigit((unsigned char)(src[1]))) {
76 src++; /*%< skip x or X. */
77 while ((ch = *src++) != '\0' && isascii(ch) && isxdigit(ch)) {
109 } while ((ch = *src
190 getbits(const char *src, int *bitsp) argument
220 getv4(const char *src, u_char *dst, int *bitsp) argument
263 inet_net_pton_ipv6(const char *src, u_char *dst, size_t size) argument
395 inet_net_pton(int af, const char *src, void *dst, size_t size) argument
[all...]
/opensolaris-onvv-gate/usr/src/lib/libshare/nfs/
H A Dinc.flg8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
27 echo_file usr/src/cmd/fs.d/nfs/lib/nfs_sec.c
28 echo_file usr/src/cmd/fs.d/nfs/lib/nfslog_config.c
29 echo_file usr/src/cmd/fs.d/nfs/lib/nfslogtab.c
/opensolaris-onvv-gate/usr/src/cmd/man/src/util/instant.src/tptregexp/
H A Dregsub.c41 register char *src; local
57 src = source;
59 while ((c = *src++) != '\0') {
62 else if (c == '\\' && '0' <= *src && *src <= '9')
63 no = *src++ - '0';
68 if (c == '\\' && (*src == '\\' || *src == '&'))
69 c = *src++;
/opensolaris-onvv-gate/usr/src/cmd/ssh/include/
H A Dinet_ntop.h16 inet_ntop(int af, const void *src, char *dst, size_t size);
H A Dstrlcat.h15 size_t strlcat(char *dst, const char *src, size_t siz);
H A Dstrlcpy.h15 size_t strlcpy(char *dst, const char *src, size_t siz);
H A Dbase64.h17 int b64_ntop(u_char const *src, size_t srclength, char *target,
19 int b64_pton(u_char const *src, u_char *target, size_t targsize);
/opensolaris-onvv-gate/usr/src/cmd/ssh/libopenbsd-compat/common/
H A Dstrlcat.c42 * Appends src to string dst of size siz (unlike strncat, siz is the
45 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
49 strlcat(dst, src, siz)
51 const char *src;
55 register const char *s = src;
76 return(dlen + (s - src)); /* count does not include NUL */
/opensolaris-onvv-gate/usr/src/grub/grub-0.97/docs/
H A Dsrc2texi8 src=`basename $2`
15 ${dir}/${src} | expand > ${texi}.new
/opensolaris-onvv-gate/usr/src/lib/libsmbfs/smb/
H A Dnls.c83 nls_str_toloc(char *dst, const char *src) argument
89 return (strcpy(dst, src));
92 return (strcpy(dst, src));
93 inlen = outlen = strlen(src);
95 my_iconv(nls_toloc, &src, &inlen, &p, &outlen);
101 nls_str_toext(char *dst, const char *src) argument
107 return (strcpy(dst, src));
110 return (strcpy(dst, src));
111 inlen = outlen = strlen(src);
113 my_iconv(nls_toext, &src,
119 nls_mem_toloc(void *dst, const void *src, int size) argument
140 nls_mem_toext(void *dst, const void *src, int size) argument
159 nls_str_upper(char *dst, const char *src) argument
170 nls_str_lower(char *dst, const char *src) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/ldap/common/
H A Dconvutf8.c49 char *ldaptool_local2UTF8( const char *src );
52 static char *ldaptool_convert( const char *src, const char *fcode,
54 char *ldaptool_UTF82local( const char *src );
60 * As in ICU version, in case of error strdup(src)
61 * Usually strdup(src) will be ASCII and legal anyways.
65 ldaptool_convert( const char *src, const char *fcode, argument
72 if (src == NULL)
76 return (strdup(src));
79 return (strdup(src));
83 return (strdup(src));
[all...]
/opensolaris-onvv-gate/usr/src/cmd/pcitool/i386/
H A DMakefile7 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
13 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
27 CPPFLAGS += -I../../../../src/uts/i86pc
/opensolaris-onvv-gate/usr/src/lib/libdhcpsvc/private/
H A Dinc.flg10 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
16 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
30 echo_file usr/src/cmd/cmd-inet/usr.lib/dsvclockd/dsvclockd.h
/opensolaris-onvv-gate/usr/src/lib/libinstzones/common/
H A Dzones_paths.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
143 z_canoninplace(char *src) argument
148 /* keep a ptr to the beginning of the src string */
149 src_start = src;
151 dst = src;
152 while (*src) {
153 if (*src == '/') {
155 while (*src == '/')
156 src
[all...]
/opensolaris-onvv-gate/usr/src/lib/libnsl/
H A DREADME.build9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
24 If you bringover only usr/src/lib/libnsl, you must do "make headers"
/opensolaris-onvv-gate/usr/src/lib/libxcurses/src/tabs/
H A DMakefile9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
28 # lib/libxcurses/src/tabs/Makefile
72 @echo use tabs in usr/src/cmd/tabs
/opensolaris-onvv-gate/usr/src/lib/libxcurses/src/terminfo/
H A DMakefile9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
28 # lib/libxcurses/src/terminfo/Makefile
33 @echo use entries in usr/src/cmd/terminfo
/opensolaris-onvv-gate/usr/src/lib/libxcurses/src/tput/
H A DMakefile9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
28 # lib/libxcurses/src/tput/Makefile
71 @echo use tput in usr/src/lib/libcurses
/opensolaris-onvv-gate/usr/src/stand/
H A DREADME9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
27 If you are looking for the rest of what used to be in /usr/src/stand, it's over
28 in /usr/src/psm/stand now.
/opensolaris-onvv-gate/usr/src/lib/libnsl/nss/
H A Dinet_pton.c37 static int inet_pton4(const char *src, uchar_t *dst);
38 static int inet_pton6(const char *src, uchar_t *dst);
42 * inet_pton(af, src, dst)
53 inet_pton(int af, const char *src, void *dst) argument
57 return (inet_pton4(src, dst));
59 return (inet_pton6(src, dst));
69 * inet_pton4(src, dst)
72 * 1 if `src' is a valid dotted quad, else 0.
82 inet_pton4(const char *src, uchar_t *dst) argument
91 while ((ch = *src
137 inet_pton6(const char *src, uchar_t *dst) argument
[all...]

Completed in 105 milliseconds

1234567891011>>