Searched defs:copy (Results 101 - 108 of 108) sorted by relevance

12345

/illumos-gate/usr/src/uts/i86pc/os/
H A Dfakebop.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
397 * copy in value, but no ending zero byte
817 * The first time we do this, we have to copy the pre-packaged
1528 caddr_t copy; local
1568 copy = kbm_remap_window(next_phys, 1);
1569 bcopy((void *)va, copy, MMU_PAGESIZE);
2214 /* copy IDs */
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c3066 uInt left; /* if STORED, bytes left to copy */
3126 /* copy as much as possible from the sliding window to the output area */
3270 /* copy input/output information to locals (UPDATE macro restores) */
3559 /* while there is input ready, copy to output buffer, moving
4109 uInt dist; /* distance back to copy from */
4110 } copy; /* if EXT or COPY, where and how much */ member in union:inflate_codes_state::__anon140
4157 Bytef *f; /* pointer to copy strings from */
4160 /* copy input/output information to locals (UPDATE macro restores) */
4200 c->sub.copy.get = e & 15;
4222 j = c->sub.copy
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/
H A Dipsecconf.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2936 char *intf, *num, *copy; local
2939 copy = strdup(str);
2940 if (copy == NULL) {
2944 intf = strtok(copy, ",");
2949 free(copy);
2967 free(copy);
/illumos-gate/usr/src/uts/common/avs/ns/dsw/
H A Ddsw_dev.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
96 /* max # of chunks in copy loop before delay */
181 struct copy_args { /* arguments passed to copy process */
1038 /* copy values over */
1071 /* copy volume names */
1301 /* Restore copy throttle parameters, if header version is 3 */
1487 * Stop any copy in progress
1570 * all cache to be allocated by copy loops.
1825 /* copy pathnames into it */
1881 * copy wit
8522 unsigned char *copy, *shd; local
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Ddevcfg.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
285 * Make a copy of system property
2403 ddi_prop_t *result, *prev, *copy; local
2411 copy = kmem_zalloc(sizeof (struct ddi_prop), flag);
2412 if (copy == NULL)
2415 copy->prop_dev = prop->prop_dev;
2416 copy->prop_flags = prop->prop_flags;
2417 copy->prop_name = i_ddi_strdup(prop->prop_name, flag);
2418 if (copy->prop_name == NULL)
2421 if ((copy
2536 char *copy; local
[all...]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c975 Assert(length <= s->window_size, "dict copy");
4170 uInt left; /* if STORED, bytes left to copy */
4227 /* copy as much as possible from the sliding window to the output area */
4365 /* copy input/output information to locals (UPDATE macro restores) */
4693 * while there is input ready, copy to output buffer, moving
5290 uInt dist; /* distance back to copy from */
5291 } copy; /* if EXT or COPY, where and how much */ member in union:inflate_codes_state::__anon6458
5341 Bytef *f; /* pointer to copy strings from */
5344 /* copy input/output information to locals (UPDATE macro restores) */
5389 c->sub.copy
[all...]
/illumos-gate/usr/src/cmd/zfs/
H A Dzfs_main.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
602 * Given an existing dataset, create a writable copy whose initial contents
6772 char *atp, *copy; local
6811 copy = NULL;
6813 copy = strdup(fromsnap);
6815 copy = strdup(tosnap);
6816 if (copy == NULL)
6819 if ((atp = strchr(copy, '@')) != NULL)
6822 if ((zhp = zfs_open(g_zfs, copy, ZFS_TYPE_FILESYSTEM)) == NULL)
6825 free(copy);
[all...]
/illumos-gate/usr/src/cmd/tar/
H A Dtar.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
430 static void copy(void *dst, void *src);
4061 copy(&savedblock, &dblock);
5197 copy(buffer, &tbuf[recno++]);
5360 copy(void *dst, void *src) function
6006 /* strtok(3C) modifies the string, so make a copy. */
7467 if (charset_type == 3) { /* Already UTF-8, just copy */
7559 * If valid, copy source to target.

Completed in 175 milliseconds

12345