Searched refs:run (Results 126 - 150 of 249) sorted by relevance

12345678910

/haiku-fatelf/src/system/boot/loader/file_systems/bfs/
H A DFile.h19 File(Volume &volume, block_run run);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DInode.h53 CachedBlock(Volume *volume, block_run run, bool empty = false);
60 inline uint8 *SetTo(block_run run, bool empty = false);
151 status_t FindBlockRun(off_t pos, block_run &run, off_t &offset);
196 status_t FreeStaticStreamArray(Transaction *transaction, int32 level, block_run run,
200 status_t AllocateBlockArray(Transaction *transaction, block_run &run);
229 Vnode(Volume *volume, block_run run) argument
232 fID(volume->ToVnode(run))
316 CachedBlock::CachedBlock(Volume *volume, block_run run, bool empty) argument
321 SetTo(volume->ToBlock(run), empty);
369 CachedBlock::SetTo(block_run run, boo argument
[all...]
H A DDebug.cpp41 dump_block_run(const char *prefix, block_run &run) argument
43 Print("%s(%ld, %d, %d)\n", prefix, run.allocation_group, run.start, run.length);
246 block_run run = volume->ToBlockRun(offset); local
247 Print(" (%ld, %d)", run.allocation_group, run.start);
H A DJournal.cpp96 block_run run = fJournal->GetVolume()->ToBlockRun(blockNumber);
98 fArray->runs[CountRuns()] = run;
202 const block_run &run = array->RunAt(index); local
203 PRINT(("replay block run %lu:%u:%u in log at %Ld!\n", run.AllocationGroup(),
204 run.Start(), run.Length(), blockNumber));
206 off_t offset = fVolume->ToOffset(run);
207 for (int32 i = 0; i < run.Length(); i++) {
/haiku-fatelf/src/bin/network/wget/tests/
H A DTest-idn-robots.px76 exit $the_test->run();
H A DTest-k.px84 exit $the_test->run();
H A DTest-E-k-K.px87 exit $the_test->run();
H A DTest-E-k.px84 exit $the_test->run();
H A DTest-ftp-pasv-fail.px55 exit $the_test->run();
H A DTest-iri-percent.px85 exit $the_test->run();
H A DTest-meta-robots.px112 exit $the_test->run();
/haiku-fatelf/src/tools/checkstyle/
H A Dcheckstyle.py15 def run(fileSet, rules, outputFileName): function
80 run(files, cppRules, "styleviolations.html")
/haiku-fatelf/src/bin/diffutils/src/
H A DMakefile45 ACLOCAL = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run aclocal-1.6
46 AUTOCONF = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run autoconf
47 AUTOMAKE = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run automake-1.6
48 AUTOHEADER = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run autoheader
71 AMTAR = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run tar
83 HELP2MAN = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run help2man
/haiku-fatelf/src/bin/gdb/gdb/
H A Dnto-procfs.c56 static procfs_run run; variable
495 /* Mark our target-struct as eligible for stray "run" and "attach" commands. */
841 run.flags = _DEBUG_RUN_FAULT | _DEBUG_RUN_TRACE;
843 run.flags |= _DEBUG_RUN_STEP;
845 sigemptyset ((sigset_t *) &run.fault);
846 sigaddset ((sigset_t *) &run.fault, FLTBPT);
847 sigaddset ((sigset_t *) &run.fault, FLTTRACE);
848 sigaddset ((sigset_t *) &run.fault, FLTILL);
849 sigaddset ((sigset_t *) &run.fault, FLTPRIV);
850 sigaddset ((sigset_t *) &run
[all...]
/haiku-fatelf/src/bin/bfs_tools/lib/
H A DDisk.cpp35 CacheableBlockRun(block_run run,uint8 *data) argument
37 fRun(run),
47 virtual bool Equals(block_run run) argument
49 return run == fRun;
75 Cache<block_run>::Cacheable *BlockRunCache::NewCacheable(block_run run) argument
77 ssize_t length = (int32)run.length << fDisk->BlockShift();
83 ssize_t read = fDisk->ReadAt(fDisk->ToOffset(run),buffer,length);
89 return new CacheableBlockRun(run,(uint8 *)buffer);
184 block_run run; local
185 run
202 ReadBlockRun(block_run run) argument
[all...]
H A Ddump.cpp39 dump_block_run(const char *prefix, const block_run &run, const char *postfix) argument
41 Print("%s(%ld, %d, %d)%s\n", prefix, run.allocation_group,
42 run.start, run.length, postfix);
260 block_run run = disk->ToBlockRun(offset); local
261 Print(" (%ld, %d)", run.allocation_group, run.start);
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dlcnalloc.c118 int i, j, run = 0; local
130 run += 8;
135 if (run > max_range) {
136 max_range = run;
137 start_pos = (s64)i * 8 - run;
139 run = 0;
151 if (run > max_range) {
152 max_range = run;
153 start_pos = (s64)i * 8 + (j - run);
155 run
[all...]
/haiku-fatelf/headers/tools/cppunit/
H A DThreadedTestCaller.h20 Each ThreadMethod added with addThread() is run in its own thread.
29 virtual CppUnit::TestResult *run();
30 virtual void run(CppUnit::TestResult *result);
103 BThreadedTestCaller<TestClass, ExpectedException>::run() { function in class:BThreadedTestCaller
105 run(result);
111 BThreadedTestCaller<TestClass, ExpectedException>::run(CppUnit::TestResult *result) { function in class:BThreadedTestCaller
115 throw CppUnit::Exception("BThreadedTestCaller::run() -- No threads added to BThreadedTestCaller()");
137 throw CppUnit::Exception("BThreadedTestCaller::run() -- Error creating fThreadSem");
/haiku-fatelf/src/bin/gdb/gdb/mi/
H A Dmi-main.c123 return mi_execute_async_cli_command ("run", args, from_tty);
697 char *run; local
700 run = xstrprintf ("load %s", args);
701 old_cleanups = make_cleanup (xfree, run);
702 execute_command (run, from_tty);
712 char *run; local
715 run = xstrprintf ("target %s", args);
716 old_cleanups = make_cleanup (xfree, run);
723 execute_command (run, from_tty);
1268 char *run; local
1288 char *run; local
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/dump_log/
H A Ddump_log.cpp46 toBlock(disk_super_block &superBlock, block_run run) argument
48 return ((((off_t)run.AllocationGroup()) << superBlock.AllocationGroupShift()) | (off_t)run.Start());
53 toOffset(disk_super_block &superBlock, block_run run) argument
55 return toBlock(superBlock, run) << superBlock.BlockShift();
/haiku-fatelf/src/libs/pdflib/libs/tiff/
H A Dtif_fax3.c113 int RunLength; /* length of current run */ \
116 uint32* pa; /* place to stuff next run */ \
117 uint32* thisrun; /* current row's run array */ \
124 uint32* pb /* next run in reference line */\
363 uint32 x, bx, run; local
371 run = runs[0];
372 if (x+run > lastx || run > lastx )
373 run = runs[0] = (uint32) (lastx - x);
374 if (run) {
[all...]
/haiku-fatelf/src/bin/diffutils/m4/
H A DMakefile41 ACLOCAL = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run aclocal-1.6
42 AUTOCONF = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run autoconf
43 AUTOMAKE = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run automake-1.6
44 AUTOHEADER = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run autoheader
67 AMTAR = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run tar
79 HELP2MAN = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run help2man
/haiku-fatelf/src/bin/diffutils/ms/
H A DMakefile45 ACLOCAL = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run aclocal-1.6
46 AUTOCONF = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run autoconf
47 AUTOMAKE = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run automake-1.6
48 AUTOHEADER = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run autoheader
71 AMTAR = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run tar
83 HELP2MAN = ${SHELL} /boot/home/Development/current/src/apps/bin/diffutils-2.8.1/config/missing --run help2man
/haiku-fatelf/src/add-ons/kernel/file_systems/bfs/
H A DInode.h32 ino_t id, mode_t mode, block_run& run);
138 status_t FindBlockRun(off_t pos, block_run& run,
237 int32 level, block_run run, off_t size,
243 block_run& run, size_t length,
378 Vnode(Volume* volume, block_run run) argument
382 SetTo(volume, run);
418 status_t SetTo(Volume* volume, block_run run) argument
420 return SetTo(volume, volume->ToVnode(run));
/haiku-fatelf/src/tools/cppunit/cppunit/
H A DTestRunner.cpp54 * \param testName Name of the test case to run. If an empty is given, then
55 * all added test are run. The name must be the name of
58 * before the run() method exit.
67 TestRunner::run( string testName, function in class:CppUnit::TextUi::TestRunner
138 test->run( m_eventManager );
146 /*! Returns the result of the test run.
147 * Use this after calling run() to access the result of the test run.
157 * The instance of TestResult results returned is the one that is used to run the
169 * Notes that the outputter will be use after the test run onl
[all...]

Completed in 189 milliseconds

12345678910