Searched refs:clone (Results 1 - 25 of 58) sorted by relevance

123

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Digest/MD5/t/
H A Dclone.t10 my $b = $a->clone;
12 print "not " unless $b->clone->hexdigest eq md5_hex("a");
23 print "not " unless $b->clone->hexdigest eq md5_hex("ab");
27 print "not " unless $b->clone->hexdigest eq md5_hex("abc");
38 $b = $a->clone;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Dmalice.t71 my $clone = shift;
72 is (ref $clone, "HASH", "Get hash back");
73 is (scalar keys %$clone, 1, "with 1 key");
74 is ((keys %$clone)[0], "perl", "which is correct");
75 is ($clone->{perl}, "rules");
122 my $clone = &$sub($short);
123 is (defined ($clone), '', "truncated $what to $i should fail");
136 my $clone = &$sub($data);
137 is (defined ($clone), '', "$name $what should fail");
150 my $clone
[all...]
H A Ddclone.t88 my $clone = dclone($empty_string_obj);
90 print ref $clone eq ref $empty_string_obj &&
91 $$clone eq $$empty_string_obj &&
92 $$clone eq '' ? "ok 10\n" : "not ok 10\n";
/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DKernelStackRecord.java162 stackFrames = frames.clone();
165 rawStackData = rawBytes.clone();
193 return stackFrames.clone();
222 return rawStackData.clone();
235 return rawStackData.clone();
317 stackFrames = stackFrames.clone();
320 rawStackData = rawStackData.clone();
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPV1SSrvDereg.java122 hdr.scopes = (Vector)rec.getScopes().clone();
131 hdr.scopes = (Vector)config.getSAConfiguredScopes().clone();
H A DCSrvDereg.java87 hdr.scopes = (Vector)scopes.clone();
H A DSDAAdvert.java61 this.hdr = (SrvLocHeader)hdr.clone();
93 hdr.scopes = (Vector)scopes.clone();
H A DSLPServerHeaderV2.java216 hdr = (SrvLocHeader)this.clone();
268 hdr = (SLPServerHeaderV2)this.clone();
H A DCAttrMsg.java127 hdr.scopes = (Vector)scopes.clone();
H A DCSrvReg.java121 hdr.scopes = (Vector)scopes.clone();
H A DCSrvTypeMsg.java114 hdr.scopes = (Vector)scopes.clone();
H A DSunDATable.java142 equivClasses = (Vector)cache.clone();
148 Vector multicastScopes = (Vector)scopes.clone();
152 Vector daScopes = (Vector)rec.scopes.clone();
H A DServerDATable.java449 Vector sscopes = (Vector)hdr.scopes.clone();
461 hdr.scopes = (Vector)hdr.scopes.clone();
462 sreg.attrList = (Vector)rec.getAttrList().clone();
H A DCSrvMsg.java134 hdr.scopes = (Vector)scopes.clone();
H A DSLPHeaderV1.java369 hdr = (SLPHeaderV1)this.clone();
455 hdr = (SLPHeaderV1)this.clone();
851 // Reimplement clone() to get the header size right.
853 public Object clone() method in class:SLPHeaderV1
855 SLPHeaderV1 hdr = (SLPHeaderV1)super.clone();
H A DSLPV1SSrvReg.java154 Vector recScopes = (Vector)rec.getScopes().clone();
H A DSSAAdvert.java96 hdr.scopes = (Vector)scopes.clone();
/osnet-11/usr/src/lib/libnisdb/
H A Ddb_dictionary.cc623 * This routine clones an entire hash bucket chain. If you clone a
625 * clone of that entry, as well as the entire linked list. This can cause
629 * entires or lose entries. If you wish to clone the entire bucket chain
634 db_dictionary::db_clone_bucket(db_table_desc *bucket, db_table_desc **clone) argument
660 *clone = (db_table_desc *) calloc(1, (size_t) size * sizeof (char));
661 if (!*clone) {
671 if (!xdr_db_table_desc(&xdrs, *clone)) {
673 free(*clone);
689 db_dictionary::change_table_name(db_table_desc *clone, char *tok, char *repl) argument
695 while (clone) {
842 db_table_desc *bucket, *np, *clone, *next_np; local
948 db_table_desc *tbl = NULL, *clone = NULL, *next_td = NULL; local
1052 db_table_desc *tbl, *clone; local
2240 db_table_desc *clone, *savenext = tbl->next; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Digest/
H A Dbase.pm9 sub clone;
91 clone
/osnet-11/usr/src/lib/brand/solaris/zone/
H A DMakefile26 PROGS= boot.wrapper halt.wrapper attach boot clone detach halt \
H A Dclone.ksh27 m_usage=$(gettext "clone [-c profile.xml | dir] {sourcezone}\n\tThe -c option gives a profile or a directory of profiles to be applied to the system after clone.")
70 # Other brand clone options are invalid for this brand.
98 start_log dst clone "${save_args[@]}"
/osnet-11/usr/src/lib/brand/solaris10/zone/
H A DMakefile26 PROGS = attach clone detach image_install p2v postattach poststate \
H A Dclone.ksh27 m_usage=$(gettext "solaris10 brand usage: clone {sourcezone} [-c sysidcfg].")
63 # Other brand clone options are invalid for this brand.
87 start_log dst clone "${save_args[@]}"
129 add_svc_tag "${dst.name}" "clone ${src.name}"
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/Unicode/
H A DUnicode.xs100 int clone = SvTRUE(attr("clone", 5));
127 if (clone) {
203 int clone = SvTRUE(attr("clone", 5));
214 if (clone){
/osnet-11/usr/src/lib/libipsecutil/common/
H A Dalgs.c487 struct ipsecalgent *clone, **holder; local
533 clone = _duplicate_alg(newbie);
534 if (clone != NULL) {
537 current_proto->proto_algs[i] = clone;
558 clone = _duplicate_alg(newbie);
559 if (clone == NULL) {
566 current_proto->proto_algs[i] = clone;

Completed in 69 milliseconds

123