Searched refs:runlist (Results 1 - 11 of 11) sorted by relevance

/macosx-10.10.1/ruby-106/ruby/test/rake/
H A Dtest_rake_directory_task.rb43 runlist = []
45 t1 = directory("a/b/c" => :t2) { |t| runlist << t.name }
46 task(:t2) { |t| runlist << t.name }
54 assert_equal ["t2", "a/b/c"], runlist
H A Dtest_rake_task.rb41 runlist = []
42 t1 = task(:t1 => [:t2, :t3]) { |t| runlist << t.name; 3321 }
43 task(:t2) { |t| runlist << t.name }
44 task(:t3) { |t| runlist << t.name }
47 assert_equal ["t2", "t3", "t1"], runlist
51 runlist = []
52 t1 = task(:t1 => [:t2]) { |t| runlist << t.name; 3321 }
53 t2 = task(:t2 => [:t1]) { |t| runlist << t.name }
65 runlist = []
66 t1 = task(:t1) { |t| runlist <<
[all...]
/macosx-10.10.1/ntfs-84/kext/
H A Dntfs_runlist.c2 * ntfs_runlist.c - NTFS kernel runlist operations.
56 * For a description of the runlist structure and various values of LCNs,
62 * ntfs_rl_copy - copy a runlist or runlist fragment
74 * ntfs_rl_inc - append runlist elements to an existing runlist
75 * @runlist: runlist for which to increment the number of runlist elements
76 * @delta: number of elements to add to the runlist
87 ntfs_rl_inc(ntfs_runlist *runlist, unsigned delta) argument
143 ntfs_rl_ins(ntfs_runlist *runlist, unsigned pos, unsigned count) argument
866 ntfs_mapping_pairs_decompress(ntfs_volume *vol, const ATTR_RECORD *a, ntfs_runlist *runlist) argument
1630 ntfs_rl_shrink(ntfs_runlist *runlist, unsigned new_elements) argument
1684 ntfs_rl_truncate_nolock(const ntfs_volume *vol, ntfs_runlist *const runlist, const s64 new_length) argument
1835 ntfs_rl_punch_nolock(const ntfs_volume *vol, ntfs_runlist *runlist, const VCN start_vcn, const s64 len) argument
2121 ntfs_rl_read(ntfs_volume *vol, ntfs_runlist *runlist, u8 *dst, const s64 size, const s64 initialized_size) argument
2244 ntfs_rl_write(ntfs_volume *vol, u8 *src, const s64 size, ntfs_runlist *runlist, s64 ofs, const s64 cnt) argument
2469 ntfs_rl_get_nr_real_clusters(ntfs_runlist *runlist, const VCN start_vcn, const s64 cnt) argument
[all...]
H A Dntfs_runlist.h2 * ntfs_runlist.h - Defines for runlist handling in the NTFS kernel driver.
68 * @rl: pointer to an array of runlist elements
69 * @elements: number of runlist elements in runlist
70 * @alloc: number of bytes allocated for this runlist in memory
73 * This is the runlist structure. It describes the mapping from file offsets
77 * The runlist is made up of an array of runlist elements where each element
82 * When doing lookups in the runlist it must be locked for either reading or
85 * When modifying the runlist i
[all...]
H A Dntfs_lcnalloc.h62 const BOOL is_extension, ntfs_runlist *runlist);
H A Dntfs_debug.c245 * ntfs_debug_runlist_dump - dump a runlist
246 * @runlist: the runlist to dump
248 * Dump a runlist. Caller has to provide synchronization for @rl.
250 void ntfs_debug_runlist_dump(const ntfs_runlist *runlist) argument
259 printf("NTFS-fs DEBUG: Dumping runlist (values in hex):\n");
260 if (!runlist || !runlist->rl || !runlist->elements) {
264 rl = runlist
[all...]
H A Dntfs_lcnalloc.c74 * @runlist: destination runlist to return the allocated clusters in
83 * merging the resulting runlist with the old runlist easier.
88 * is true the returned runlist will be terminated with LCN_ENOENT and if
89 * @is_extension is false the runlist will be terminated with
92 * On success return 0 and set up @runlist to describe the allocated clusters.
139 * - The lock of the runlist @runlist is not touched thus the caller
145 const BOOL is_extension, ntfs_runlist *runlist)
142 ntfs_cluster_alloc(ntfs_volume *vol, const VCN start_vcn, const s64 count, const LCN start_lcn, const NTFS_CLUSTER_ALLOCATION_ZONES zone, const BOOL is_extension, ntfs_runlist *runlist) argument
[all...]
H A Dntfs_mft.c886 /* Update the mft bitmap runlist. */
891 ntfs_runlist runlist; local
898 runlist.rl = NULL;
899 runlist.alloc = runlist.elements = 0;
901 TRUE, &runlist);
910 err = ntfs_rl_merge(&mftbmp_ni->rl, &runlist);
917 err2 = ntfs_cluster_free_from_rl(vol, runlist.rl, 0,
925 OSFree(runlist.rl, runlist
1284 ntfs_runlist runlist; local
[all...]
H A Dntfs_attr_list.c164 * allocated clusters and runlist.
180 /* Free the runlist of the attribute list attribute. */
621 * attributes. The former would make the runlist of
626 * indirectly make the runlist of the attribute list
636 ntfs_error(vol->mp, "The runlist of the attribute "
800 * space available and the runlist must be in order.
1214 * to free the no longer in-use clusters and truncate the runlist
1233 "attribute runlist of mft_no 0x%llx (error "
1344 ntfs_runlist runlist; local
1691 * This cannot fail as we just allocated the runlist s
[all...]
H A Dntfs_attr.c71 * ntfs_attr_map_runlist - map the whole runlist of an ntfs inode
72 * @ni: ntfs inode for which to map the whole runlist
74 * Map the whole runlist of the ntfs inode @ni.
78 * Note this function requires the runlist not to be mapped yet at all. This
80 * runlist of some system files thus we are guaranteed that they will not have
81 * any runlist fragments mapped yet.
83 * Note the runlist can be NULL after this function returns if the attribute
84 * has zero allocated size, i.e. there simply is no runlist.
104 /* Verify that the runlist is not mapped yet. */
159 * Finally, map the runlist fragmen
5960 ntfs_runlist runlist; local
[all...]
/macosx-10.10.1/ntfs-84/util/
H A Dntfs.util.c389 * ntfs_mapping_pairs_decompress - convert mapping pairs array to runlist
392 * @runlist: runlist in which to insert @a's runlist
394 * It is up to the caller to serialize access to the runlist @runlist.
396 * Decompress the attribute @a's mapping pairs array into a runlist. On
397 * success, return the decompressed runlist in @runlist.
399 * If @runlist alread
407 ntfs_mapping_pairs_decompress(ntfs_volume *vol, const ATTR_RECORD *a, ntfs_rl_element **runlist) argument
[all...]

Completed in 300 milliseconds