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

1234567891011>>

/freebsd-10.0-release/usr.bin/ssh-copy-id/
H A DMakefile3 SCRIPTS= ssh-copy-id.sh
4 MAN= ssh-copy-id.1
/freebsd-10.0-release/contrib/ofed/libibverbs/
H A Dautogen.sh5 libtoolize --force --copy
7 automake --foreign --add-missing --copy
/freebsd-10.0-release/contrib/ofed/libmlx4/
H A Dautogen.sh5 libtoolize --force --copy
7 automake --foreign --add-missing --copy
/freebsd-10.0-release/contrib/ofed/libmthca/
H A Dautogen.sh5 libtoolize --force --copy
7 automake --foreign --add-missing --copy
/freebsd-10.0-release/contrib/ofed/libsdp/
H A Dautogen.sh5 libtoolize --force --copy
7 automake --foreign --add-missing --copy
/freebsd-10.0-release/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.0-release/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.0-release/contrib/openbsm/
H A Dautogen.sh6 libtoolize --copy --force
/freebsd-10.0-release/contrib/ofed/management/infiniband-diags/
H A Dautogen.sh8 libtoolize --force --copy
10 automake --foreign --add-missing --copy
/freebsd-10.0-release/contrib/ofed/management/libibcommon/
H A Dautogen.sh8 libtoolize --force --copy
10 automake --foreign --add-missing --copy
/freebsd-10.0-release/contrib/ofed/management/libibmad/
H A Dautogen.sh8 libtoolize --force --copy
10 automake --foreign --add-missing --copy
/freebsd-10.0-release/contrib/ofed/management/libibumad/
H A Dautogen.sh8 libtoolize --force --copy
10 automake --foreign --add-missing --copy
/freebsd-10.0-release/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.0-release/sys/libkern/
H A Dstrdup.c44 char *copy; local
47 copy = malloc(len, type, M_WAITOK);
48 bcopy(string, copy, len);
49 return (copy);
/freebsd-10.0-release/libexec/rtld-elf/
H A Dxmalloc.c62 char *copy; local
66 copy = xmalloc(len);
67 memcpy(copy, str, len);
68 return (copy);
/freebsd-10.0-release/contrib/nvi/
H A DLICENSE6 to this copy of the Vi software.
/freebsd-10.0-release/contrib/openpam/
H A Dautogen.sh7 libtoolize --copy --force
/freebsd-10.0-release/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.0-release/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.0-release/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.0-release/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.0-release/lib/libz/
H A Dinflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
97 unsigned copy));
379 local int updatewindow(strm, end, copy)
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
616 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Dcopies-table.c10 * with the License. You may obtain a copy of the License at
71 /* Store COPY as a copy named COPY_ID in FS as part of TRAIL. */
75 const copy_t *copy,
85 SVN_ERR(svn_fs_base__unparse_copy_skel(&copy_skel, copy, pool));
92 return BDB_WRAP(fs, N_("storing copy record"),
115 SVN_ERR(BDB_WRAP(fs, N_("allocating new copy ID (getting 'next-key')"),
133 return BDB_WRAP(fs, N_("bumping next copy key"), db_err);
147 copy_t copy; local
148 copy.kind = kind;
149 copy
74 put_copy(svn_fs_t *fs, const copy_t *copy, const char *copy_id, trail_t *trail, apr_pool_t *pool) argument
186 copy_t *copy; local
[all...]

Completed in 167 milliseconds

1234567891011>>