Searched refs:run (Results 26 - 50 of 79) sorted by relevance

1234

/haiku/src/add-ons/kernel/file_systems/bfs/
H A DJournal.cpp24 void Insert(block_run& run);
35 int32 _FindInsertionIndex(block_run& run);
56 bool _ContainsRun(block_run& run);
57 bool _AddRun(block_run& run);
189 This makes a freshly allocated run_array ready to run.
204 run_array::Insert(block_run& run) argument
206 int32 index = _FindInsertionIndex(run);
209 runs[CountRuns()] = run;
214 runs[index] = run;
245 run_array::_FindInsertionIndex(block_run& run) argument
299 _ContainsRun(block_run& run) argument
325 _AddRun(block_run& run) argument
365 block_run run = volume->ToBlockRun(blockNumber); local
504 const block_run& run = array->RunAt(index); local
534 const block_run& run = array->RunAt(index); local
820 const block_run& run = array->RunAt(i); local
859 const block_run& run = array->RunAt(i); local
[all...]
H A DCachedBlock.h35 inline status_t SetTo(block_run run);
42 block_run run, bool empty = false);
131 CachedBlock::SetTo(block_run run) argument
133 return SetTo(fVolume->ToBlock(run));
163 CachedBlock::SetToWritable(Transaction& transaction, block_run run, bool empty) argument
165 return SetToWritable(transaction, fVolume->ToBlock(run), empty);
H A DBlockAllocator.cpp43 Allocate(block_run run) argument
45 fRun(run)
65 Free(block_run run) argument
67 fRun(run)
372 /*! Allocates the specified run in the allocation group.
373 Doesn't check if the run is valid or already allocated partially, nor
441 /*! Frees the specified run in the allocation group.
442 Doesn't check if the run is valid or was not completely allocated, nor
727 is put into \a run.
734 uint16 start, uint16 maximum, uint16 minimum, block_run& run)
[all...]
H A DVolume.cpp320 Volume::ValidateBlockRun(block_run run) argument
322 if (run.AllocationGroup() < 0
323 || run.AllocationGroup() > (int32)AllocationGroups()
324 || run.Start() > (1UL << AllocationGroupShift())
325 || run.length == 0
326 || uint32(run.Length() + run.Start())
329 FATAL(("*** invalid run(%d,%d,%d)\n", (int)run.AllocationGroup(),
330 run
340 block_run run; local
390 AllocateForInode(Transaction& transaction, const Inode* parent, mode_t type, block_run& run) argument
[all...]
H A DInode.cpp147 block_run& run, fs_vnode_ops* vnodeOps,
195 block_run& run, fs_vnode_ops* vnodeOps, Inode** _inode)
208 run = fRun;
210 volume->ToVnode(run), mode, run);
374 block_run& run)
404 Node().inode_num = run;
1472 Inode::FindBlockRun(off_t pos, block_run& run, off_t& offset) argument
1476 // find matching block run
1510 run
194 New(block_run* parentRun, mode_t mode, uint32 publishFlags, block_run& run, fs_vnode_ops* vnodeOps, Inode** _inode) argument
373 Inode(Volume* volume, Transaction& transaction, ino_t id, mode_t mode, block_run& run) argument
1694 _AllocateBlockArray(Transaction& transaction, block_run& run, size_t length, bool variableSize) argument
1811 block_run run; local
2079 _FreeStaticStreamArray(Transaction& transaction, int32 level, block_run run, off_t size, off_t offset, off_t& max) argument
2170 block_run run = array[i]; local
2717 block_run run; local
[all...]
/haiku/headers/tools/cppunit/cppunit/extensions/
H A DRepeatedTest.h25 void run( TestResult *result );
/haiku/src/bin/bfs_tools/lib/
H A Ddump.h17 extern void dump_block_run(const char* prefix, const block_run& run,
H A DInode.h54 void SetParent(const block_run& run);
55 void SetBlockRun(const block_run& run);
74 static Inode* Factory(Disk* disk, block_run run);
82 virtual Inode *InodeAt(block_run run) = 0;
166 virtual status_t GetNextEntry(char *name, block_run *run);
167 virtual status_t GetNextEntry(block_run *run);
169 virtual status_t Contains(const block_run *run);
171 virtual status_t FindEntry(const char *name, block_run *run);
/haiku/src/system/boot/loader/file_systems/bfs/
H A DLink.h18 Link(Volume &volume, block_run run);
H A DFile.cpp13 File::File(Volume &volume, block_run run) argument
15 fStream(volume, run)
H A DStream.h21 Stream(Volume &volume, block_run run);
28 status_t FindBlockRun(off_t pos, block_run &run, off_t &offset);
H A DDirectory.h20 Directory(Volume &volume, block_run run);
H A DFile.h19 File(Volume &volume, block_run run);
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DConsoleOutputView.cpp240 text_run_array run;
241 run.count = 1;
242 run.runs[0].font = be_fixed_font;
243 run.runs[0].offset = 0;
244 run.runs[0].color.red = info->fd == 1 ? 0 : 192;
245 run.runs[0].color.green = 0;
246 run.runs[0].color.blue = 0;
247 run.runs[0].color.alpha = 255;
257 info->text.Length(), &run);
/haiku/src/apps/icon-o-matic/import_export/styled_text/
H A DStyledTextImporter.cpp283 // import run colors as styles
293 text_run *run = NULL; local
295 run = &runs->runs[0];
302 // make sure we are still on the (good) run
303 while (run && currentRun < runs->count - 1 &&
305 run = &runs->runs[++currentRun];
306 //printf("switching to run %d\n", currentRun);
315 if (run)
316 font = run->font;
356 for (int j = 0; run
382 _AddStyle(Icon *icon, text_run *run) argument
429 _AddShape(Icon *icon, BShape *shape, text_run *run) argument
[all...]
/haiku/src/tools/cppunit/
H A DBTestSuite.cpp37 BTestSuite::run( CppUnit::TestResult *result ) { function in class:BTestSuite
46 test->run( result );
51 // Counts the number of test cases that will be run by this test.
/haiku/src/tools/cppunit/cppunit/
H A DTestSuite.cpp34 TestSuite::run( TestResult *result ) function in class:CppUnit::TestSuite
44 test->run( result );
49 /// Counts the number of test cases that will be run by this test.
/haiku/src/apps/cortex/support/
H A DBasicThread.h38 // run() implementation to indicate that it has completed by
57 virtual void run()=0;
142 // Call this method at the end of your run() implementation.
154 instance->run();
/haiku/src/kits/interface/textview_support/
H A DStyleBuffer.cpp389 STEStyleRun* run = &result->runs[0];
391 *run = (*this)[startIndex + index];
392 run->offset -= startOffset;
393 if (run->offset < 0)
394 run->offset = 0;
396 run++;
461 STEStyleRunDesc* run = fStyleRunDesc[runIndex]; local
464 *outFont = &fStyleRecord[run->index]->style.font;
467 *outColor = &fStyleRecord[run->index]->style.color;
470 *outAscent = fStyleRecord[run
501 STEStyleRun run; local
[all...]
/haiku/src/bin/bfs_tools/
H A Dbfsinfo.cpp173 block_run run; local
174 while (directory->GetNextEntry(name, &run) == B_OK) {
176 dump_block_run("", run, buffer);
191 block_run run; local
192 while (directory->GetNextEntry(name, &run) == B_OK)
353 block_run run; local
365 run = parseBlockRun(disk, argv[1], argv[2]);
367 if (disk.ReadAt(disk.ToOffset(run), buffer, disk.BlockSize()) <= 0) {
382 "-----------\n", disk.ToBlock(run));
392 "------------\n", disk.ToBlock(run));
[all...]
/haiku/headers/tools/cppunit/
H A DTestSuite.h19 virtual void run(CppUnit::TestResult *result);
/haiku/headers/tools/cppunit/cppunit/
H A DTestSuite.h53 void run( TestResult *result );
/haiku/headers/tools/cppunit/cppunit/ui/text/
H A DTestRunner.h27 * The test runner can run only one of the added tests or all the tests.
37 * runner.run( "", true ); // Run all tests and wait
57 * runner.run( "", true ); // Run all tests and wait
69 bool run( string testName ="",
/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/
H A Dglue.c44 extern driver_t* DRIVER_MODULE_NAME(run, uhub);
57 DRIVER_MODULE_NAME(run, uhub),
/haiku/src/tools/checkstyle/
H A Dcheckstyle.py16 def run(fileSet, rules, outputFileName): function
92 run(files, cppRules, "styleviolations.html")

Completed in 93 milliseconds

1234