Searched refs:run (Results 1 - 25 of 249) sorted by relevance

12345678910

/haiku-fatelf/src/bin/coreutils/man/
H A Denv.x2 env \- run a program in a modified environment
H A Dnice.x2 nice \- run a program with modified scheduling priority
H A Dtimeout.x2 timeout \- run a command with a time limit
H A Dchroot.x2 chroot \- run command or interactive shell with special root directory
H A Dnohup.x2 nohup \- run a command immune to hangups, with output to a non-tty
H A Dsu.x2 su \- run a shell with substitute user and group IDs
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/functional/threads/
H A Drun.sh13 ./run.sh
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DStream.h28 Uncached(Volume *volume, block_run run, bool empty = false);
33 uint8 *SetTo(block_run run, bool empty = false);
41 static status_t Read(Volume *volume, block_run run, uint8 *buffer);
42 static status_t Write(Transaction *transaction, Volume *volume, block_run run, const uint8 *buffer);
54 Cached(Volume *volume, block_run run, bool empty = false);
57 static status_t Read(Volume *volume, block_run run, uint8 *buffer);
58 static status_t Write(Transaction *transaction, Volume *volume, block_run run, const uint8 *buffer);
65 Logged(Volume *volume, block_run run, bool empty = false);
67 static status_t Read(Volume *volume, block_run run, uint8 *buffer);
68 static status_t Write(Transaction *transaction, Volume *volume, block_run run, cons
89 Uncached(Volume *volume,block_run run,bool empty) argument
130 SetTo(block_run run, bool empty) argument
147 Read(Volume *volume, block_run run, uint8 *buffer) argument
154 Write(Transaction *transaction, Volume *volume, block_run run, const uint8 *buffer) argument
175 Cached(Volume *volume,block_run run,bool empty) argument
192 Read(Volume *volume, block_run run, uint8 *buffer) argument
199 Write(Transaction *transaction, Volume *volume, block_run run, const uint8 *buffer) argument
220 Logged(Volume *volume, block_run run, bool empty) argument
227 Read(Volume *volume, block_run run, uint8 *buffer) argument
234 Write(Transaction *transaction, Volume *volume, block_run run, const uint8 *buffer) argument
268 FindBlockRun(off_t pos, block_run &run, off_t &offset) argument
378 block_run run; local
[all...]
H A DBlockAllocator.h32 mode_t type, block_run &run);
34 block_run &run, uint16 minimum = 1);
35 status_t Free(Transaction *transaction, block_run run);
38 uint16 numBlocks, uint16 minimum, block_run &run);
44 status_t CheckBlockRun(block_run run, const char *type = NULL, check_control *control = NULL, bool allocated = true);
/haiku-fatelf/src/system/boot/loader/file_systems/bfs/
H A Dbfs.cpp109 Volume::ValidateBlockRun(block_run run) argument
111 if (run.AllocationGroup() < 0 || run.AllocationGroup() > (int32)AllocationGroups()
112 || run.Start() > (1UL << AllocationGroupShift())
113 || run.length == 0
114 || uint32(run.Length() + run.Start()) > (1UL << AllocationGroupShift())) {
115 dprintf("bfs: invalid run(%ld,%d,%d)\n", run.AllocationGroup(), run
125 block_run run; local
[all...]
H A DVolume.h48 off_t ToOffset(block_run run) const { return ToBlock(run) << BlockShift(); }
50 off_t ToBlock(block_run run) const { return ((off_t)run.AllocationGroup() << AllocationGroupShift()) | (uint32)run.Start(); }
52 status_t ValidateBlockRun(block_run run);
54 off_t ToVnode(block_run run) const { return ToBlock(run); }
H A DStream.cpp28 CachedBlock(Volume& volume, block_run run);
31 uint8* SetTo(block_run run);
58 CachedBlock::CachedBlock(Volume &volume, block_run run) argument
64 SetTo(run);
102 CachedBlock::SetTo(block_run run) argument
104 return SetTo(fVolume.ToBlock(run));
111 Stream::Stream(Volume& volume, block_run run) argument
115 if (read_pos(volume.Device(), volume.ToOffset(run), this, sizeof(bfs_inode))
199 Stream::FindBlockRun(off_t pos, block_run& run, off_t& offset) argument
201 // find matching block run
313 block_run run; local
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/
H A Dexec-func.sh6 ./run.sh
/haiku-fatelf/src/tools/cppunit/cppunit/
H A DTestSetUp.cpp23 TestSetUp::run( TestResult *result ) function in class:CppUnit::TestSetUp
26 TestDecorator::run(result);
H A DRepeatedTest.cpp9 // Counts the number of test cases that will be run by this test.
26 RepeatedTest::run( TestResult *result ) function in class:CppUnit::RepeatedTest
33 TestDecorator::run( result );
/haiku-fatelf/src/libs/print/libgutenprint/src/testpattern/
H A DMakefile.am29 TESTS = run-testpattern-1 run-testpattern-2
37 noinst_SCRIPTS = run-testpattern-2
64 EXTRA_DIST = testpatterny.h $(pkgdata_DATA) run-testpattern run-testpattern-1
/haiku-fatelf/src/bin/bfs_tools/
H A Drecover.cpp70 Inode* Get(block_run run) argument
72 return Acquire((Inode *)fHashtable.GetValue(&run));
120 static uint32 BlockRunHash(const block_run *run) argument
122 return (run->allocation_group << 16) | run->start;
139 InodeGetter(Disk& disk, block_run run) argument
141 fInode = Inode::Factory(&disk, run);
183 virtual Inode *InodeAt(block_run run) argument
186 if ((inode = gLogged.Get(run)) != NULL)
189 if ((inode = gMissing.Get(run)) !
320 block_run run; local
351 block_run run; local
440 block_run run = node->Parent(); local
596 block_run run; local
641 block_run run; local
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/btree/
H A DVolume.h25 off_t ToBlock(block_run run) const { return run.start; }
H A DInode.cpp30 Inode::FindBlockRun(off_t pos, block_run &run, off_t &offset) argument
33 run.SetTo(0,0,1);
/haiku-fatelf/src/bin/bfs_tools/lib/
H A Dbfs.h25 inline bool operator==(const block_run &run) const;
26 inline bool operator!=(const block_run &run) const;
197 inline bool block_run::operator==(const block_run &run) const
199 return allocation_group == run.allocation_group
200 && start == run.start
201 && length == run.length;
204 inline bool block_run::operator!=(const block_run &run) const
206 return allocation_group != run.allocation_group
207 || start != run.start
208 || length != run
225 block_run run; local
[all...]
/haiku-fatelf/src/add-ons/kernel/debugger/qrencode/
H A Dsplit.c87 int run; local
98 run = p - string;
101 dif = QRinput_estimateBitsModeNum(run) + 4 + ln
103 - QRinput_estimateBitsMode8(run + 1) /* - 4 - l8 */;
109 dif = QRinput_estimateBitsModeNum(run) + 4 + ln
111 - QRinput_estimateBitsModeAn(run + 1) /* - 4 - la */;
117 ret = QRinput_append(input, QR_MODE_NUM, run, (unsigned char *)string);
120 return run;
127 int run; local
154 run
175 int run; local
193 int run; local
[all...]
/haiku-fatelf/headers/tools/cppunit/cppunit/extensions/
H A DTestDecorator.h26 void run (TestResult *result);
52 inline void TestDecorator::run (TestResult *result) function in class:CppUnit::TestDecorator
53 { m_test->run (result); }
/haiku-fatelf/src/apps/icon-o-matic/import_export/styled_text/
H A DStyledTextImporter.h30 text_run *run; member in struct:style_map
48 status_t _AddStyle(Icon *icon, text_run *run);
50 status_t _AddShape(Icon *icon, BShape *shape, text_run *run);
/haiku-fatelf/src/add-ons/kernel/file_systems/bfs/
H A DVolume.h80 off_t ToOffset(block_run run) const
81 { return ToBlock(run) << BlockShift(); }
82 off_t ToBlock(block_run run) const
83 { return ((((off_t)run.AllocationGroup())
85 | (off_t)run.Start()); }
87 status_t ValidateBlockRun(block_run run);
89 off_t ToVnode(block_run run) const
90 { return ToBlock(run); }
105 block_run& run);
108 block_run& run);
201 AllocateForInode(Transaction& transaction, const block_run* parent, mode_t type, block_run& run) argument
209 Allocate(Transaction& transaction, Inode* inode, off_t numBlocks, block_run& run, uint16 minimum) argument
218 Free(Transaction& transaction, block_run run) argument
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/test/
H A DMakefile.am29 TESTS = curve run-testdither run-weavetest
62 #run-weavetest: escp2-weavetest
70 EXTRA_DIST = cyan-sweep.tif parse-escp2 run-weavetest run-testdither

Completed in 118 milliseconds

12345678910