Searched refs:copy (Results 101 - 125 of 249) sorted by relevance

12345678910

/illumos-gate/usr/src/cmd/lp/cmd/lpadmin/
H A Ddo_printer.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
346 * Don't copy the original interface program
397 * This is needed to let "putprinter()" copy the
687 *copy = malloc( local
692 (void) strcpy (copy, cmd);
693 (void) strcat (copy, " ");
694 (void) strcat (copy, nm);
695 return (copy);
/illumos-gate/usr/src/lib/libtecla/common/
H A Dexpand.c7 * copy of this software and associated documentation files (the
9 * without limitation the rights to use, copy, modify, merge, publish,
341 * copy of the array, or use two ExpandFile
378 * a copy of the resulting pattern in the cache.
402 * If there are no wildcards to match, copy the current expanded
593 * recorded copy of the pathname.
602 char *copy; /* The recorded copy of pathname[] */ local
604 * Attempt to make a copy of the pathname in the cache.
606 copy
650 char *copy = _sg_store_string(ef->sg, pathname, remove_escapes); local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/lib/nwamd/
H A Dconditions.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
485 char *copy, *ip_address, *prefixlen_string, *lasts; local
489 if ((copy = strdup(ip_address_string)) == NULL)
492 if ((ip_address = strtok_r(copy, " \t/", &lasts)) == NULL) {
493 free(copy);
510 free(copy);
529 free(copy);
532 free(copy);
/illumos-gate/usr/src/uts/common/io/ib/clients/rdsv3/
H A Drds_recv.c349 list_t copy; local
354 list_create(&copy, sizeof (struct rdsv3_notifier),
362 * in the user provided cmsg buffer. We don't try to copy more, to avoid
379 list_insert_tail(&copy, notifier);
387 while (!list_is_empty(&copy)) {
388 notifier = list_remove_head(&copy);
408 if (!list_is_empty(&copy)) {
410 list_splice(&copy, &rs->rs_notify_queue);
/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/lib/libc/sparcv9/gen/
H A Dstrlcpy.s8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
44 ! tracked since it bounds our maximum copy size. However,
50 ! Once this has occurred, we copy based upon destination alignment.
79 bnz,a %ncc, .alignsrc ! no, copy another byte
121 bz,pn %ncc, .done ! yup, copy done, return length
126 bz,pn %ncc, .done ! yup, copy done, return length
131 bz,pn %ncc, .done ! yup, copy done, return length
136 bz,pn %ncc, .done ! yup, copy done, return length
141 bz,pn %ncc, .done ! yup, copy done, return length
146 bz,pn %ncc, .done ! yup, copy don
[all...]
/illumos-gate/usr/src/uts/sun4u/cpu/
H A Dspitfire_copy.s9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
66 * ! the copy.
131 * userland or in kernel copy) and the tl0 component of the handling
133 * - a user process with fp state incurs a copy-on-write fault and
137 * using our stack is ideal (and since fp copy cannot be leaf optimized
168 * Less then or equal this number of bytes we will always copy byte-for-byte
197 * Common macros used by the various versions of the block copy
502 membar #Sync ! sync error barrier (see copy.s)
522 and %l6, BCOPY_FLAG, %l1 ! copy flag to %l1
605 restore %g0, 0, %o0 ! dispose of copy windo
[all...]
/illumos-gate/usr/src/lib/libsysevent/
H A Dlibsysevent.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
182 * sysevent_dup - Allocate and copy an event buffer
190 sysevent_t *copy; local
197 copy = calloc(1, attr_offset);
198 if (copy == NULL)
200 bcopy(ev, copy, attr_offset);
204 free(copy);
208 SE_ATTR_PTR(copy) = (uintptr_t)cnvl;
209 SE_FLAG(copy) = 0; /* unpacked */
210 return (copy);
651 sysevent_t *copy; local
[all...]
/illumos-gate/usr/src/cmd/dc/
H A Ddc.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
132 ("new all %d rel %d copy %d more %d lbytes %d\n"),
322 q = copy(p, n);
337 p = copy(inbas, length(inbas) + 1);
347 q = copy(p, n);
421 p = copy(basptr, length(basptr) + 1);
452 q = copy(p, n);
473 p = copy(scalptr, length(scalptr) + 1);
548 p = copy(*stkptr, n);
572 q = copy(
2163 copy(struct blk *hptr, int size) function
[all...]
/illumos-gate/usr/src/cmd/modload/
H A Dplcysubr.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
438 char *copy; local
441 copy = strdup(entry);
442 if (copy == NULL)
445 for (single = strtok_r(copy, " \t\n", &p);
449 free(copy);
453 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/lib/libtnfctl/
H A Dsparc_assm.s12 ! You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A D_Q_get_rp_rd.S14 ! You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
/illumos-gate/usr/src/lib/libbc/libc/sys/common/sparc/
H A Dbrk.s9 ! You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
H A Dcerror.s9 ! You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dstrncpy.s8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
32 * Copy string s2 to s1, truncating or null-padding to always copy n bytes
57 ! bytes remain to be copied, strncpy will copy null bytes into
72 blu .shortcpy ! n < 7, use byte-wise copy
90 bnz .alignsrc ! no, copy another byte
152 nop ! pad to align copy loop below
/illumos-gate/usr/src/cmd/mailx/
H A Dhead.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
246 copy(char *str1, char *str2) function
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/funcs/
H A Derr.copyoutbadaddr.ksh8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
H A Derr.copyoutstrbadaddr.ksh8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
/illumos-gate/usr/src/cmd/svc/svcs/
H A Dexplain.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
637 struct svcptr *spp, *copy; local
655 copy = safe_malloc(sizeof (*copy));
656 copy->svcp = spp->svcp;
657 copy->next_hop = src;
658 uu_list_node_init(copy, &copy->node, svcptrs);
659 uu_list_insert(dst->causes, copy, idx);
1317 struct svcptr *idsp, *spp, *copy; local
[all...]
/illumos-gate/usr/src/uts/common/avs/ns/nsctl/
H A Dnsc_dev.h8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
64 int (*copy)(); /* Copy buffer between handles */ member in struct:nsc_io_s
/illumos-gate/usr/src/lib/libbsm/
H A Dmkhdr.sh9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
39 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
/illumos-gate/usr/src/lib/libc/amd64/gen/
H A Dstrcat.s8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
104 movq %rdx, (%rdi) / copy this quadword to (%rdi)
113 movb %dl, (%rdi) / copy %dl to (%rdi)
/illumos-gate/usr/src/lib/libc/i386/gen/
H A Dstrcat.s8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
101 movl %edx, (%edi) / copy this word to (%edi)
110 movb %dl, (%edi) / copy %dl to (%edi)
/illumos-gate/usr/src/cmd/sendmail/db/btree/
H A Dbt_recno.c534 CURSOR *cp, copy; local
564 copy = *cp;
674 *cp = copy;
691 CURSOR *cp, copy; local
725 copy = *cp;
760 cp->recno = copy.recno + 1;
767 cp->recno = copy.recno;
779 *cp = copy;
1031 * part of the log holding the copy of the file could be discarded, and

Completed in 132 milliseconds

12345678910