Searched refs:copy (Results 1 - 25 of 1952) sorted by path

1234567891011>>

/macosx-10.10/AppleRAID-4.0.6/
H A DAppleRAIDMember.cpp9 * License. Please obtain a copy of the License at
594 // make a copy of incore header and filter out the internal stuff
595 OSDictionary * copy = OSDictionary::withCapacity(arHeader->getCount()); local
596 if (!copy) return kIOReturnNoMemory;
602 // if the key starts with "AppleRAID-" copy it
607 copy->setObject(key, arHeader->getObject(key));
617 if (!copy->serialize(s)) return kIOReturnInternalError;
618 copy->release();
H A DAppleRAIDSet.cpp9 * License. Please obtain a copy of the License at
475 // copy the old into the new, if needed
826 // make a copy since this changes the spare list
827 OSSet * copy = OSSet::withSet(arSpareMembers, arSpareMembers->getCount()); local
828 if (!copy) return false;
829 while (AppleRAIDMember * spare = (AppleRAIDMember *)copy->getAnyObject()) {
830 copy->removeObject(spare);
837 copy->release();
/macosx-10.10/AppleUSBCDCDriver-4205.2.2/Package/
H A DbuildDMG.pl8 # Permission to use, copy, modify and distribute this software and its documentation
35 # determine the build directory, compression level, the list of files to copy, and the size of the dmg volume
77 die "FATAL: No files to copy specified\n" unless @ARGV or $ENV{DMG_FILESLIST};
156 # copy the files onto the dmg
311 B<buildDmg> will try to determine the size by looking at the files to copy
326 should point to the "Info.plist" of the project to copy onto the dmg. buildDMG is then able to automatically generate the dmg and
/macosx-10.10/BerkeleyDB-21/db/
H A DLICENSE5 The following is the license that applies to this copy of the Berkeley DB
/macosx-10.10/BerkeleyDB-21/db/btree/
H A Dbt_delete.c174 db_indx_t copy, *inp; local
190 copy = inp[indx_copy];
194 inp[indx] = copy;
371 * by the root page and copy it over the root page.
H A Dbt_put.c472 DBT copy, *rdata; local
503 * to the place at which to copy the user's data, b) set tlen to the
505 * the user, and c) copy any valid data from an existing record. If
529 * in the current record rather than allocate a separate copy.
531 memset(&copy, 0, sizeof(copy));
532 if ((ret = __db_goff(dbp, dbc->thread_info, dbc->txn, &copy,
546 * the same number of bytes as we're inserting, copy it up or
/macosx-10.10/BerkeleyDB-21/db/clib/
H A Dstrdup.c52 char *copy; local
55 if (!(copy = malloc((u_int)len)))
57 memcpy(copy, str, len);
58 return (copy);
/macosx-10.10/BerkeleyDB-21/db/db/
H A Ddb.c311 * copy out the page number and we're done.
1316 * Create a copy of all backup files and our "main" DB.
1381 * Create a copy of all backup files and our "main" DB.
1390 char *copy, **namesp, *p, *real_name; local
1393 copy = NULL;
1403 * There are tests that attempt to copy non-existent files. I'd guess
1419 if ((ret = __os_malloc(env, len, &copy)) != 0)
1421 snprintf(copy, len, "%s.afterop", real_name);
1422 if ((ret = __db_makecopy(env, real_name, copy)) != 0)
1466 if (copy !
[all...]
/macosx-10.10/BerkeleyDB-21/db/dist/
H A Dltmain.sh18 # You should have received a copy of the GNU General Public License
3005 # last copy. This is not always right, but it is rare
6008 # Install (i.e. copy) a libtool object.
6028 $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
/macosx-10.10/BerkeleyDB-21/db/docs_src/
H A Dbuild93 cat $DOCS_SRC/support/copy) > $f/Makefile
94 (cd $f && make BUILDDIR=$1 copy || exit 1)
/macosx-10.10/BerkeleyDB-21/db/docs_src/ref/program/
H A DMakefile4 BUILD= appsignals.html cache.html compatible.html copy.html \
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DDataCursor.java134 KeyRange.copy(keyThang, o.keyThang);
135 KeyRange.copy(valueThang, o.valueThang);
137 KeyRange.copy(primaryKeyThang, o.primaryKeyThang);
552 KeyRange.copy(view.dupsKey, keyThang);
593 KeyRange.copy(view.dupsKey, keyThang);
618 KeyRange.copy(view.dupsKey, keyThang);
835 KeyRange.copy(range.getSingleKey(), keyThang);
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DStore.java1271 DatabaseEntry saveKey = KeyRange.copy(key);
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/util/keyrange/
H A DKeyRange.java252 * Returns a copy of an entry.
254 public static DatabaseEntry copy(DatabaseEntry from) { method in class:KeyRange
261 public static void copy(DatabaseEntry from, DatabaseEntry to) { method in class:KeyRange
H A DRangeCursor.java271 KeyRange.copy(range.beginKey, privKey);
273 KeyRange.copy(pkRange.beginKey, privPKey);
283 KeyRange.copy(pkRange.beginKey, privPKey);
300 KeyRange.copy(range.beginKey, privKey);
310 KeyRange.copy(range.beginKey, privKey);
345 KeyRange.copy(range.beginKey, privKey);
352 KeyRange.copy(pkRange.endKey, privPKey);
360 KeyRange.copy(range.beginKey, privKey);
382 KeyRange.copy(range.endKey, privKey);
/macosx-10.10/BerkeleyDB-21/db/perl/BerkeleyDB/t/
H A Dbtree.t142 my %copy = %data ;
146 if ( $copy{$k} eq $v )
147 { delete $copy{$k} }
153 ok 38, keys %copy == 0 ;
157 %copy = %data ;
163 if ( $copy{$k} eq $v )
164 { delete $copy{$k} }
172 ok 44, keys %copy == 0 ;
H A Dhash.t158 my %copy = %data ;
162 if ( $copy{$k} eq $v )
163 { delete $copy{$k} }
169 ok 44, keys %copy == 0 ;
173 %copy = %data ;
179 if ( $copy{$k} eq $v )
180 { delete $copy{$k} }
188 ok 50, keys %copy == 0 ;
H A Dqueue.t158 my %copy = %data;
163 if ( fillout($copy{$k}, $rec_len) eq $v )
164 { delete $copy{$k} }
171 ok keys %copy == 0 ;
175 %copy = %data ;
181 if ( fillout($copy{$k}, $rec_len) eq $v )
182 { delete $copy{$k} }
190 ok keys %copy == 0 ;
H A Drecno.t141 my %copy = %data;
146 if ( $copy{$k} eq $v )
147 { delete $copy{$k} }
154 ok 38, keys %copy == 0 ;
158 %copy = %data ;
164 if ( $copy{$k} eq $v )
165 { delete $copy{$k} }
173 ok 44, keys %copy == 0 ;
/macosx-10.10/BerkeleyDB-21/db/perl/DB_File/
H A DDB_File.pm625 It is assumed that you have a copy of the Berkeley DB manual pages at
979 R_DUP flag discussed below), only a single copy of duplicate keys
1609 To do this you need to store a copy of the object returned from the tie.
1618 B<Important:> If you have saved a copy of the object returned from
1804 When each filter is called by Perl, a local copy of C<$_> will contain
2113 error is caused by the extra copy of the tied object stored in C<$X>.
H A DMakefile.PL142 copy ('fallback.h', 'constants.h')
143 or die "Can't copy fallback.h to constants.h: $!";
144 copy ('fallback.xs', 'constants.xs')
145 or die "Can't copy fallback.xs to constants.xs: $!";
/macosx-10.10/BerkeleyDB-21/db/test/
H A Denv013.tcl50 file copy -force $testdir/$testfile $testdir/$dupfile
62 puts "\tEnv013.e: Verify and open database copy."
H A Dparallel.tcl292 catch {eval file copy \
295 catch {eval file copy \
297 # catch {eval file copy $dir/$queuedir $destdir}
298 catch {eval file copy \
323 catch {eval file copy $dir/$svc_exe $destdir}
H A Drecd005.tcl99 file copy -force $testdir/$testfile1.afterop \
102 afterop copy
104 file copy -force $testdir/$testfile1.init \
106 move_file_extent $testdir $testfile1 init copy
109 file copy -force $testdir/$testfile2.afterop \
112 afterop copy
114 file copy -force $testdir/$testfile2.init \
116 move_file_extent $testdir $testfile2 init copy
157 file copy -force $dir/$filename $dir/$filename.init
176 file copy
[all...]
H A Drecd007.tcl184 # Open the environment and set the copy/abort locations
186 set copy [lindex $cmd 0]
188 error_check_good copy_location [is_valid_create_loc $copy] 1
191 if {([string first "logmeta" $copy] != -1 || \
195 $env test copy none
225 catch { file copy -force $dir/$dbfile $init_file } res
235 # Set our locations to copy and abort
237 set ret [eval $env test copy $copy]
286 catch { file copy
[all...]

Completed in 369 milliseconds

1234567891011>>