Searched refs:io (Results 1 - 25 of 61) sorted by relevance

123

/haiku/3rdparty/docker/bootstrap/
H A DMakefile11 ${ENGINE} build . --no-cache -t docker.io/haiku/bootstrap:${VER}
13 ${ENGINE} ps -q --filter=ancestor=docker.io/haiku/bootstrap:${VER} | xargs -I {} ${ENGINE} kill {}
14 ${ENGINE} ps -a -q --filter=ancestor=docker.io/haiku/bootstrap:${VER} | xargs -I {} ${ENGINE} rm {}
17 ${ENGINE} run -v bootstrap_work:/work:exec ${EXTRA} docker.io/haiku/bootstrap:${VER} prep
19 ${ENGINE} run -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work:exec ${EXTRA} docker.io/haiku/bootstrap:${VER} crosstools
21 ${ENGINE} run -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work:exec ${EXTRA} docker.io/haiku/bootstrap:${VER} bootstrap
23 ${ENGINE} run -it -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work:exec ${EXTRA} docker.io/haiku/bootstrap:${VER} /bin/bash -l
/haiku/src/system/kernel/
H A Dint.cpp89 struct io_handler *io; local
104 for (io = sVectors[i].handler_list; io != NULL; io = io->next) {
108 status_t error = elf_debug_lookup_symbol_address((addr_t)io->func,
116 io->func);
118 kprintf("\t\t\t\t\t func %p", io->func);
120 kprintf(", data %p, handled ", io->data);
121 if (io
274 struct io_handler* io; local
436 struct io_handler *io = NULL; local
530 struct io_handler *io = NULL; local
[all...]
/haiku/src/bin/pcmcia-cs/
H A Dyacc_cis.y78 %type <parse> vers_1 manfid funcid config cftab io mem irq timing
294 io: cftab IO NUMBER '-' NUMBER label
296 int n = $$->cftable_entry.io.nwin;
297 $$->cftable_entry.io.win[n].base = $3;
298 $$->cftable_entry.io.win[n].len = $5-$3+1;
299 $$->cftable_entry.io.nwin++;
301 | io ',' NUMBER '-' NUMBER
303 int n = $$->cftable_entry.io.nwin;
304 $$->cftable_entry.io.win[n].base = $3;
305 $$->cftable_entry.io
[all...]
H A Ddump_cis.c330 if (entry->io.nwin) {
331 cistpl_io_t *io = &entry->io; local
332 printf("%s io", indent);
333 for (i = 0; i < io->nwin; i++) {
335 printf(" 0x%4.4x-0x%4.4x", io->win[i].base,
336 io->win[i].base+io->win[i].len-1);
338 printf(" [lines=%d]", io->flags & CISTPL_IO_LINES_MASK);
339 if (io
[all...]
/haiku/src/apps/cortex/RouteApp/
H A DConnectionIO.cpp336 MediaFormatIO io(m_outputFormat);
337 context.writeObject(&io);
370 MediaFormatIO io(m_inputFormat);
371 context.writeObject(&io);
379 MediaFormatIO io(m_requestedFormat);
384 context.writeObject(&io);
461 MediaFormatIO* io = dynamic_cast<MediaFormatIO*>(child); local
462 if(!io) {
469 err = io->getFormat(f);
H A DRouteAppNodeManager.cpp534 DormantNodeIO io(ref, nodeSet.keyAt(n));
535 if(context.writeObject(&io) < B_OK)
544 ConnectionIO io(
548 if(context.writeObject(&io) < B_OK)
562 MessageIO io(&m);
563 context.writeObject(&io);
604 DormantNodeIO* io = dynamic_cast<DormantNodeIO*>(child); local
605 ASSERT(io);
608 err = io->instantiate(this, &newRef);
614 set.addNode(newRef->id(), io
629 ConnectionIO* io = dynamic_cast<ConnectionIO*>(child); local
655 MessageIO* io = dynamic_cast<MessageIO*>(child); local
[all...]
H A DRouteApp.cpp254 MessageIO io(&m);
255 status_t err __attribute__((unused)) = context.writeObject(&io);
268 MessageIO io(&m);
269 context.writeObject(&io);
278 context.writeObject(&io);
310 MessageIO* io = dynamic_cast<MessageIO*>(child); local
311 if(io) {
312 ASSERT(io->message());
314 // io->message()->PrintToStream();
318 importState(io
[all...]
/haiku/src/libs/stdc++/legacy/
H A Dioextend.cc75 get_array_element(ios& io, int index) argument
78 io._throw_failure();
79 register struct ptr_and_long *array = (ptr_and_long*)io._arrays;
100 io._arrays = (void*)new_array;
/haiku/src/kits/mail/
H A Db_mail_message.cpp43 BMemoryIO io(text,length);
44 comp->SetDecodedData(&io);
58 BMemoryIO io(text,length);
59 comp->SetDecodedData(&io);
H A DMailAttachment.cpp722 BMallocIO *io = new BMallocIO; local
734 io->Write(name, strlen(name) + 1);
737 io->Write(&swappedType, sizeof(type_code));
742 io->Write(&swapped,sizeof(int64));
746 delete io;
751 io->Write(buffer, dataLen);
757 _attributes_attach->SetDecodedDataAndDeleteWhenDone(io);
/haiku/src/kits/support/
H A DDataPositionIOWrapper.cpp12 BDataPositionIOWrapper::BDataPositionIOWrapper(BDataIO* io) argument
15 fIO(io),
H A DZlibCompressionAlgorithm.cpp206 Stream(BDataIO* io) argument
208 BaseClass(io),
256 static status_t Create(BDataIO* io, BaseParameters* _parameters, argument
265 Stream* stream = new(std::nothrow) Stream(io);
H A DZstdCompressionAlgorithm.cpp199 Stream(BDataIO* io) argument
201 BaseClass(io),
247 static status_t Create(BDataIO* io, BaseParameters* _parameters, argument
256 Stream* stream = new(std::nothrow) Stream(io);
/haiku/src/system/kernel/device_manager/
H A DAbstractModuleDevice.cpp59 return Module()->io != NULL;
93 if (Module()->io == NULL)
106 if (Module()->io == NULL)
118 if (Module()->io == NULL)
120 return Module()->io(cookie, request);
/haiku/src/add-ons/translators/raw/
H A DRAWTranslator.cpp133 BBufferIO io(stream, 128 * 1024, false);
135 LibRAW raw(io);
137 DCRaw raw(io);
209 BBufferIO io(stream, 1024 * 1024, false);
211 LibRAW raw(io);
213 DCRaw raw(io);
275 BMemoryIO io(buffer, bufferSize);
285 return roster->Translate(&io, NULL, settings, target, outType);
308 if (io.ReadAt(exifOffset, exifBuffer + 16, exifLength)
/haiku/src/apps/mail/
H A DWIndex.cpp170 WIndex::UnflattenIndex(BPositionIO *io) argument
176 io->Seek(0, SEEK_SET);
177 io->Read(&head, sizeof(head));
178 io->Seek(head.offset, SEEK_SET);
192 io->Read(fEntryList, size);
199 WIndex::FlattenIndex(BPositionIO *io) argument
208 io->Seek(0, SEEK_SET);
209 io->Write(&head, sizeof(head));
211 io->Write(fEntryList, head.entries * head.entrySize);
H A DWIndex.h70 status_t UnflattenIndex(BPositionIO* io);
71 status_t FlattenIndex(BPositionIO* io);
/haiku/src/tests/add-ons/print/transports/
H A Dmain.cpp144 BDataIO *io = (*transport_init_proc)(&msg); local
146 if (io) {
162 if (io->Write(buffer, sz) < 0) {
/haiku/headers/private/support/
H A DDataPositionIOWrapper.h14 BDataPositionIOWrapper(BDataIO* io);
/haiku/src/add-ons/kernel/drivers/audio/hda/
H A Dhda_codec.cpp281 widget.d.io.formats & B_FMT_8BIT_S ? "8bits " : "",
282 widget.d.io.formats & B_FMT_16BIT ? "16bits " : "",
283 widget.d.io.formats & B_FMT_20BIT ? "20bits " : "",
284 widget.d.io.formats & B_FMT_24BIT ? "24bits " : "",
285 widget.d.io.formats & B_FMT_32BIT ? "32bits " : "",
286 widget.d.io.formats & B_FMT_FLOAT ? "float " : "",
287 widget.d.io.formats & B_FMT_DOUBLE ? "double " : "",
288 widget.d.io.formats & B_FMT_EXTENDED ? "extended " : "",
289 widget.d.io.formats & B_FMT_BITSTREAM ? "bitstream " : "");
291 widget.d.io
[all...]
/haiku/src/system/kernel/fs/
H A Dvfs_request_io.cpp290 VnodeIO io(request->IsWrite(), vnode, openCookie);
316 error = io.IO(fileVec.offset, vecBase, &transferred);
343 synchronous_io(io_request* request, DoIO& io) argument
365 status_t error = io.IO(offset, vecBase, &transferred);
396 if (!HAS_FS_CALL(vnode, io)
397 || (result = FS_CALL(vnode, io, cookie, request)) == B_UNSUPPORTED) {
398 // no io() call -- fall back to synchronous I/O
399 VnodeIO io(request->IsWrite(), vnode, cookie);
400 return synchronous_io(request, io);
412 CallbackIO io(reques
[all...]
/haiku/src/system/boot/platform/efi/
H A Dserial.cpp10 #include <efi/protocol/serial-io.h>
/haiku/headers/private/media/experimental/
H A DAdapterIO.h26 BInputAdapter(BAdapterIO* io);
/haiku/src/add-ons/translators/ppm/
H A DPPMTranslator.cpp227 status_t read_ppm_header(BDataIO* io, int* width, int* rowbytes, int* height,
229 status_t read_bits_header(BDataIO* io, int skipped, int* width, int* rowbytes,
231 status_t write_comment(const char* str, BDataIO* io);
769 read_bits_header(BDataIO* io, int skipped, int* width, int* rowbytes, argument
780 if (io->Read(ptr + skipped, rd) != rd)
814 write_comment(const char* str, BDataIO* io) argument
822 err = io->Write("# ", 2);
824 err = io->Write(str, ptr - str);
826 if (io->Write("\n", 1) == 1)
836 err = io
[all...]
/haiku/headers/private/drivers/
H A Dscsi_periph.h113 status_t (*io)(scsi_periph_device device, io_operation *operation, member in struct:scsi_periph_interface

Completed in 299 milliseconds

123