Searched refs:copy (Results 1 - 25 of 542) sorted by relevance

1234567891011>>

/freebsd-10-stable/usr.bin/ssh-copy-id/
H A DMakefile3 SCRIPTS= ssh-copy-id.sh
4 MAN= ssh-copy-id.1
/freebsd-10-stable/contrib/ofed/libibverbs/
H A Dautogen.sh5 libtoolize --force --copy
7 automake --foreign --add-missing --copy
/freebsd-10-stable/contrib/ofed/libmlx4/
H A Dautogen.sh5 libtoolize --force --copy
7 automake --foreign --add-missing --copy
/freebsd-10-stable/contrib/ofed/libmthca/
H A Dautogen.sh5 libtoolize --force --copy
7 automake --foreign --add-missing --copy
/freebsd-10-stable/contrib/ofed/libsdp/
H A Dautogen.sh5 libtoolize --force --copy
7 automake --foreign --add-missing --copy
/freebsd-10-stable/contrib/tcpdump/missing/
H A Dstrdup.c50 char *copy; local
53 if ((copy = malloc(len)) == NULL)
55 memcpy(copy, str, len);
56 return (copy);
/freebsd-10-stable/lib/libc/string/
H A Dstrdup.c44 char *copy; local
47 if ((copy = malloc(len)) == NULL)
49 memcpy(copy, str, len);
50 return (copy);
H A Dstrndup.c43 char *copy; local
46 if ((copy = malloc(len + 1)) == NULL)
48 memcpy(copy, str, len);
49 copy[len] = '\0';
50 return (copy);
H A Dwcsdup.c36 wchar_t *copy; local
40 if ((copy = malloc(len * sizeof(wchar_t))) == NULL)
42 return (wmemcpy(copy, s, len));
/freebsd-10-stable/contrib/openpam/
H A Dautogen.sh7 libtoolize --copy --force
9 automake --add-missing --copy --foreign
/freebsd-10-stable/sys/libkern/
H A Dstrndup.c44 char *copy; local
47 copy = malloc(len, type, M_WAITOK);
48 bcopy(string, copy, len);
49 copy[len - 1] = '\0';
50 return (copy);
H A Dstrdup.c44 char *copy; local
47 copy = malloc(len, type, M_WAITOK);
48 bcopy(string, copy, len);
49 return (copy);
/freebsd-10-stable/contrib/openbsm/
H A Dautogen.sh3 libtoolize --copy --force
/freebsd-10-stable/contrib/ofed/management/infiniband-diags/
H A Dautogen.sh8 libtoolize --force --copy
10 automake --foreign --add-missing --copy
/freebsd-10-stable/contrib/ofed/management/libibcommon/
H A Dautogen.sh8 libtoolize --force --copy
10 automake --foreign --add-missing --copy
/freebsd-10-stable/contrib/ofed/management/libibmad/
H A Dautogen.sh8 libtoolize --force --copy
10 automake --foreign --add-missing --copy
/freebsd-10-stable/contrib/ofed/management/libibumad/
H A Dautogen.sh8 libtoolize --force --copy
10 automake --foreign --add-missing --copy
/freebsd-10-stable/lib/libstand/
H A Dstrdup.c46 char *copy = NULL; local
50 if ((copy = malloc(len)) == NULL)
52 memcpy(copy, str, len);
54 return (copy);
/freebsd-10-stable/contrib/nvi/
H A DLICENSE6 to this copy of the Vi software.
/freebsd-10-stable/gnu/usr.bin/rcs/lib/
H A Drcskeys.c19 You should have received a copy of the GNU General Public License
124 char *copy, *next; local
127 copy = strdup(arg);
128 next = copy;
137 free(copy);
153 free(copy);
163 char *copy, *next, *key; local
166 copy = strdup(string);
167 next = copy;
185 free(copy);
[all...]
/freebsd-10-stable/usr.sbin/pkg_install/lib/
H A Dstr.c65 char *copy; local
69 if ((copy = malloc(line_length)) == NULL)
71 memcpy(copy, str, line_length - 2);
72 copy[line_length - 2] = '\n'; /* Adds trailing \n */
73 copy[line_length - 1] = '\0';
75 return (copy);
/freebsd-10-stable/contrib/gcclibs/libiberty/
H A Dargv.c16 You should have received a copy of the GNU Library General Public
68 char **copy; local
75 copy = (char **) malloc ((argc + 1) * sizeof (char *));
76 if (copy == NULL)
83 copy[argc] = (char *) malloc (len + 1);
84 if (copy[argc] == NULL)
86 freeargv (copy);
89 strcpy (copy[argc], argv[argc]);
91 copy[argc] = NULL;
92 return copy;
[all...]
/freebsd-10-stable/contrib/gdb/gdb/
H A Dlinespec.c18 You should have received a copy of the GNU General Public License
71 char *copy,
75 static int collect_methods (char *copy, struct type *t,
114 static struct symtabs_and_lines decode_dollar (char *copy,
120 static struct symtabs_and_lines decode_variable (char *copy,
129 char *copy,
664 char *copy;
768 copy = (char *) alloca (p - *argptr + 1);
769 memcpy (copy, *argptr, p - *argptr);
770 copy[
663 char *copy; local
1079 char *copy = NULL; local
1170 char *copy; local
1372 char *copy; local
1399 find_method(int funfirstline, char ***canonical, char *saved_arg, char *copy, struct type *t, struct symbol *sym_class) argument
1465 collect_methods(char *copy, struct type *t, struct symbol **sym_arr) argument
1506 char *copy; local
1644 decode_dollar(char *copy, int funfirstline, struct symtab *default_symtab, char ***canonical, struct symtab *file_symtab) argument
1721 decode_variable(char *copy, int funfirstline, char ***canonical, struct symtab *file_symtab, int *not_found_ptr) argument
1776 symbol_found(int funfirstline, char ***canonical, char *copy, struct symbol *sym, struct symtab *file_symtab, struct symtab *sym_symtab) argument
[all...]
/freebsd-10-stable/contrib/ldns/
H A Dfreebsd-configure.sh11 libtoolize --copy
/freebsd-10-stable/contrib/ntp/sntp/libevent/
H A Dautogen.sh15 automake --add-missing --force-missing --copy

Completed in 263 milliseconds

1234567891011>>