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

1234567891011>>

/opensolaris-onvv-gate/usr/src/cmd/svr4pkg/libinst/
H A Dcvtpath.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
34 cvtpath(char *path, char *copy) argument
36 *copy++ = '/';
41 (void) strcpy(copy, root + (*root == '/' ? 1 : 0));
42 copy += strlen(copy);
43 if (copy[-1] != '/')
44 *copy++ = '/';
47 (void) strcpy(copy,
49 copy
[all...]
H A Dsrcpath.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
44 char *copy; local
47 copy = tmppath;
52 (void) strcpy(copy, dir);
53 copy += theLen;
56 copy[0] = '\0';
61 (void) snprintf(copy, copyLen,
65 (void) snprintf(copy, copyLen,
/opensolaris-onvv-gate/usr/src/lib/libadm/common/
H A Dgetinput.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
44 char *copy, *pt; local
49 copy = s;
56 *copy++ = *pt++;
57 *copy = '\0';
59 if (copy != s) {
60 copy--;
61 while (isspace((unsigned char)*copy))
62 *copy-- = '\0';
H A Dpkgparam.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
122 char *mempt, *copy; local
136 copy = buffer;
145 *copy++ = ch;
157 /* At this point copy points to the end of a valid parameter. */
158 *copy = '\0'; /* Terminate the string. */
160 copy = NULL; /* Comments don't get buffered. */
165 copy = buffer;
169 copy = NULL;
173 copy
320 char *pt, *copy, *value, line[PATH_MAX]; local
[all...]
H A Dputtext.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
51 wchar_t *copy, *lastword, *lastend, temp[MWIDTH+1]; local
91 copy = temp;
137 lastend = copy;
138 *copy++ = L' ';
146 lastend = copy;
150 *copy++ = L' ';
155 lastend = copy;
157 *copy++ = L' ';
172 *copy
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Drestrict.t67 my $copy = &$cloner($hash);
70 my @out_keys = sort keys %$copy;
77 # $copy = $hash; # used in initial debug of the tests
79 ok ++$test, Internals::SvREADONLY(%$copy), "cloned hash restricted?";
81 ok ++$test, Internals::SvREADONLY($copy->{question}),
82 "key 'question' not locked in copy?";
84 ok ++$test, !Internals::SvREADONLY($copy->{answer}),
85 "key 'answer' not locked in copy?";
87 eval { $copy->{extra} = 15 } ;
94 eval { $copy
[all...]
H A Dmalice.t160 my $copy;
162 $copy = $contents;
163 substr ($copy, 0, 4) = 'iron';
164 test_corrupt ($copy, $sub, "/^File is not a perl storable/",
168 $copy = $contents;
180 substr ($copy, $file_magic + 1, 1) = chr $minor4;
183 $clone = &$sub($copy);
188 test_corrupt ($copy, $sub,
193 $copy = $contents;
195 substr ($copy,
[all...]
H A Dinteger.t80 my $copy = eval {dclone $data};
83 return $copy;
90 my $copy = eval {thaw $frozen};
92 return $copy;
99 my $copy = eval {thaw $frozen};
101 return $copy;
108 my $copy = eval {retrieve $file};
110 return $copy;
117 my $copy = eval {retrieve $file};
119 return $copy;
[all...]
/opensolaris-onvv-gate/usr/src/cmd/mailx/
H A Dusg.local.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
65 copy(name, copy(maildir, mailname));
73 copy(myname, copy(maildir, mailname));
/opensolaris-onvv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
H A DErrnoMessageArg.cxx18 MessageArg *ErrnoMessageArg::copy() const function in class:SP_NAMESPACE::ErrnoMessageArg
H A DMessageArg.cxx29 MessageArg *StringMessageArg::copy() const function in class:SP_NAMESPACE::StringMessageArg
44 MessageArg *NumberMessageArg::copy() const function in class:SP_NAMESPACE::NumberMessageArg
60 MessageArg *OrdinalMessageArg::copy() const function in class:SP_NAMESPACE::OrdinalMessageArg
H A DMessage.cxx151 msg.args[0] = arg0.copy();
162 msg.args[0] = arg0.copy();
163 msg.args[1] = arg1.copy();
175 msg.args[0] = arg0.copy();
176 msg.args[1] = arg1.copy();
177 msg.args[2] = arg2.copy();
190 msg.args[0] = arg0.copy();
191 msg.args[1] = arg1.copy();
192 msg.args[2] = arg2.copy();
193 msg.args[3] = arg3.copy();
[all...]
H A DSearchResultMessageArg.cxx22 MessageArg *SearchResultMessageArg::copy() const function in class:SP_NAMESPACE::SearchResultMessageArg
H A DStringVectorMessageArg.h23 MessageArg *copy() const;
/opensolaris-onvv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/
H A DCopyOwner.cxx14 : Owner<T>(o.pointer() ? o.pointer()->copy() : 0)
21 Owner<T>::operator=(o.pointer() ? o.pointer()->copy() : 0);
H A DMessageArg.h24 virtual MessageArg *copy() const = 0;
31 MessageArg *copy() const;
40 MessageArg *copy() const;
49 MessageArg *copy() const;
H A DErrnoMessageArg.h19 MessageArg *copy() const;
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
H A Drestrict.c22 If you did not receive a copy of the license, it may be obtained online
121 char *beg, *copy, *end; local
136 copy = strdup(beg);
140 if (!copy) {
146 if (restrict_check(copy)) {
147 free(copy);
150 free(copy);
/opensolaris-onvv-gate/usr/src/lib/libpkg/common/
H A Dmappath.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
65 char *npt, *pt, *pt2, *copy; local
69 copy = buffer;
97 /* copy in parameter value */
99 *copy++ = *token++;
103 *copy++ = *pt++;
115 *copy++ = *pt++;
124 *copy++ = *pt++;
126 *copy++ = *pt++;
129 * If it's a separator, copy i
[all...]
/opensolaris-onvv-gate/usr/src/lib/libtecla/common/
H A Dstringrp.c7 * copy of this software and associated documentation files (the
9 * without limitation the rights to use, copy, modify, merge, publish,
156 * Make a copy of a string in the specified string group, and return
157 * a pointer to the copy.
163 * other characters when making the copy.
165 * return char * The pointer to the copy of the string,
170 char *copy; /* The recorded copy of string[] */ local
181 copy = _sg_alloc_string(sg, len);
182 if(copy) {
231 char *copy; /* The allocated string */ local
[all...]
/opensolaris-onvv-gate/usr/src/pkg/manifests/
H A DSUNWii.mf8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
29 depend fmri=pkg:/storage/avs/point-in-time-copy@0.5.11,5.11-0.133 type=require
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DCopy.t28 copy "file-$$", "copy-$$";
30 open(F, "copy-$$") or die;
34 print "not " if -s "file-$$" != -s "copy-$$";
40 binmode STDOUT unless $^O eq 'VMS'; # Copy::copy works in binary mode
41 copy "copy-$$", \*STDOUT;
42 unlink "copy-$$" or die "unlink: $!";
45 copy(*F, "copy
[all...]
/opensolaris-onvv-gate/usr/src/cmd/csh/
H A Dsh.local.h54 #define copy(to, from, size) bcopy(from, to, size) macro
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/XS/APItest/t/
H A Dhash.t142 my $copy = {};
145 tie %$copy, ref $class;
147 $copy = {%$hash};
148 ok (brute_force_exists ($copy, $key),
150 is (delete $copy->{$key}, $key, "hv_delete_ent present$message $printable");
151 ok (!brute_force_exists ($copy, $key),
153 $copy = {%$hash};
154 ok (brute_force_exists ($copy, $key),
156 is (XS::APItest::Hash::delete ($copy, $key), $key,
158 ok (!brute_force_exists ($copy,
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Net/t/
H A Dhostname.t37 my @copy = @domain;
41 ($domain[0] && $domain[0] eq $copy[0])

Completed in 207 milliseconds

1234567891011>>