Searched refs:copy (Results 1 - 25 of 249) sorted by last modified time

12345678910

/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_copies/
H A Dzfs_copies.kshlib8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
98 typeset copy=$2
105 log_must zfs create -V $VOLSIZE -o copies=$copy $vol
115 ((nfilesize = copy * ${FILESIZE%m}))
134 "copies as $copy"
/illumos-gate/usr/src/boot/sys/boot/efi/loader/
H A DMakefile7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
28 SRCS= autoload.c bootinfo.c conf.c copy.c devicename.c main.c self_reloc.c \
30 OBJS= autoload.o bootinfo.o conf.o copy.o devicename.o main.o self_reloc.o \
/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/uts/intel/ia32/ml/
H A Dmodstubs.s8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
43 * function call. Due to this we need to copy arguments for the
45 * on the stack so we have to either copy everything between esp and
46 * ebp or copy only a fixed number (MAXNARG - defined here) for
198 * copy MAXNARG == 10 incoming arguments
337 / copy incoming arguments
/illumos-gate/usr/src/lib/libsqlite/
H A DMakefile.com19 copy.o \
69 $(SRCDIR)/copy.c \
/illumos-gate/usr/src/tools/btxld/
H A Dbtxld.c116 static void copy(int, int, size_t, off_t);
267 copy(fdi[i], fdo, ldr_size, 0);
276 copy(fdi[i], fdo, btx.btx_textsz - sizeof(btx),
280 copy(fdi[i], fdo, ihdr.size, 0);
444 * Safe copy from input file to output file.
447 copy(int fdi, int fdo, size_t nbyte, off_t offset) function
/illumos-gate/usr/src/tools/scripts/
H A Dvalidate_pkg.py9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
845 originalexceptions = exceptions.copy()
/illumos-gate/usr/src/uts/common/os/
H A Dlog_sysevent.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
759 sysevent_t *copy; local
768 copy = (sysevent_t *)&qcopy->arg.buf;
778 ASSERT((caddr_t)copy + attr_offset <= (caddr_t)copy + copy_len);
780 bcopy(ev, copy, attr_offset);
784 return (copy);
790 attr = (char *)copy + attr_offset;
796 SE_ATTR_PTR(copy) = UINT64_C(0);
797 SE_FLAG(copy)
[all...]
H A Ddumpsubr.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
180 PERPAGE(copy) PERPAGE(compress) \
381 char *page; /* buffer for page copy */
1457 * the dump. Initially this is a copy of the stack trace. Additional
1839 * Read the helper queue, and copy one mapped page. Return 0 when
1897 * return a copy.
1900 HRSTART(hp->perpage, copy);
1903 HRSTOP(hp->perpage, copy);
2170 * as helpers working in parallel to copy and compress memory
2260 HRSTART(hp->perpage, copy);
[all...]
/illumos-gate/usr/src/boot/lib/libstand/
H A Denvironment.c61 * If the EV_VOLATILE flag is set, a copy of the variable is made.
167 char *value, *copy; local
170 copy = strdup(string);
171 if ((value = strchr(copy, '=')) != NULL)
173 result = setenv(copy, value, 1);
174 free(copy);
H A Dstrdup.c46 char *copy = NULL; local
50 if ((copy = malloc(len)) == NULL)
52 memcpy(copy, str, len);
54 return (copy);
/illumos-gate/usr/src/boot/lib/libz/
H A Dgzwrite.c209 /* for small len, copy to input buffer, otherwise compress directly */
211 /* copy to input buffer, compress when full */
213 unsigned have, copy; local
218 copy = state->size - have;
219 if (copy > len)
220 copy = len;
221 memcpy(state->in + have, buf, copy);
222 strm->avail_in += copy;
223 state->x.pos += copy;
224 buf = (const char *)buf + copy;
[all...]
H A Dinfback.c263 unsigned copy; /* number of stored or match bytes to copy */ local
264 unsigned char FAR *from; /* where to copy match bytes from */
267 unsigned len; /* length to copy for repeats, bits to drop */
340 /* copy stored block from input to output */
342 copy = state->length;
345 if (copy > have) copy = have;
346 if (copy > left) copy
[all...]
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...]
/illumos-gate/usr/src/boot/lib/libz/test/
H A Dinfcover.c290 z_stream strm, copy; local
335 ret = inflateCopy(&copy, &strm); assert(ret == Z_OK);
336 ret = inflateEnd(&copy); assert(ret == Z_OK);
391 z_stream strm, copy; local
438 ret = inflateCopy(&copy, &strm); assert(ret == Z_MEM_ERROR);
657 inf("63 0 3 0 0 0 0 0", "copy direct from output", 0, -8, 259,
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dinterp_parse.c56 free(copy); \
88 char *val, *p, *q, *copy = NULL; local
95 if (!str || (p = copy = backslash(str)) == NULL)
190 free(copy);
/illumos-gate/usr/src/boot/sys/boot/common/linenoise/
H A Dlinenoise.c288 char *copy, **cvec; local
290 copy = malloc(len+1);
291 if (copy == NULL) return;
292 memcpy(copy,str,len+1);
295 free(copy);
299 lc->cvec[lc->len++] = copy;
810 /* Add an heap allocated copy of the line in the history.
838 /* If we can't copy everything, free the elements we'll not use. */
/illumos-gate/usr/src/boot/sys/boot/i386/gptzfsboot/
H A Dgptldr.S49 # to copy for boot2
72 * its header to find boot2. We need to copy boot2 to MEM_USR and BTX
73 * to MEM_BTX. Since those might overlap, we have to copy boot2
74 * backwards first and then copy BTX. We aren't sure exactly how long
75 * boot2 is, but it's currently under 128kB so we'll copy 4 blocks of 32kB
82 mov %si,%ax # last byte we want to copy
89 mov %ax,%es # want to copy boot2 into.
94 sub $COPY_BLK_SZ/16,%ax # copy from boot2
/illumos-gate/usr/src/boot/sys/boot/uboot/lib/
H A DMakefile11 SRCS= crc32.c console.c copy.c devicename.c elf_freebsd.c glue.c
/illumos-gate/usr/src/boot/sys/boot/userboot/userboot/
H A DMakefile20 SRCS+= copy.c
/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/uts/common/io/sfxge/
H A Dsfxge_tx.c1401 size_t *offp, size_t size, boolean_t copy)
1425 if (copy)
1426 goto copy;
1438 goto copy;
1446 goto copy;
1457 goto copy;
1466 goto copy;
1498 copy:
1565 boolean_t copy)
1715 ss, copy)) !
1400 sfxge_tx_qpayload_fragment(sfxge_txq_t *stp, unsigned int id, mblk_t **mpp, size_t *offp, size_t size, boolean_t copy) argument
1564 sfxge_tx_qlso_fragment(sfxge_txq_t *stp, sfxge_tx_packet_t *stpp, boolean_t copy) argument
1778 sfxge_tx_qpacket_fragment(sfxge_txq_t *stp, sfxge_tx_packet_t *stpp, boolean_t copy) argument
2102 boolean_t copy; local
[all...]
/illumos-gate/usr/src/uts/common/io/
H A Dtem_safe.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
339 tems.ts_fb_polledio->copy(tems.ts_fb_polledio->arg, pca);
2338 * Offset to the end of the region and copy backwards.
/illumos-gate/usr/src/lib/libshare/nfs/
H A Dlibshare_nfs.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
573 char *copy, *base, *token, *value; local
576 copy = strdup(options);
577 token = base = copy;
600 if (copy != NULL)
601 free(copy);
682 /* We need a copy of options for the next part. */
/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 159 milliseconds

12345678910