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

123

/haiku/headers/os/drivers/pcmcia/
H A Dcistpl.h477 cistpl_io_t io; member in struct:cistpl_cftable_entry_t
497 u_char io; member in struct:cistpl_cftable_entry_cb_t
H A Dcs.h55 struct io { struct in union:adjust_t::__anon268
59 } io; member in union:adjust_t::__anon268
H A Dds.h137 io_req_t io; member in struct:dev_link_t
/haiku/headers/private/support/
H A DDataPositionIOWrapper.h14 BDataPositionIOWrapper(BDataIO* io);
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_common.c47 #include <sys/io.h>
/haiku/src/add-ons/kernel/file_systems/layers/log_overlay/
H A Dlog_overlay.cpp176 DO_LOG("io cookie: %p; request: %p (write: %s; offset: %" B_PRIdOFF
180 OVERLAY_CALL(io, cookie, request)
181 DO_LOG("io result: %#" B_PRIx32 "\n", result);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/haiku/
H A DHaikuKernelFileSystem.cpp310 capabilities.Set(FS_VNODE_CAPABILITY_IO, ops->io);
H A DHaikuKernelVolume.cpp386 if (!node->ops->io)
402 error = node->ops->io(&fVolume, node, cookie, (io_request*)request);
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DPOP3.cpp292 BMailMessageIO io(this, &file, toRetrieve);
294 status = io.Seek(0, SEEK_END);
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DStdLibFileIO.cpp11 # include <io.h>
/haiku/src/apps/cortex/Persistence/Wrappers/
H A DMessageIO.cpp567 MessageIO io(&m);
568 io.m_name = name;
569 return context.writeObject(&io);
/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);
/haiku/src/apps/mail/
H A DWIndex.h70 status_t UnflattenIndex(BPositionIO* io);
71 status_t FlattenIndex(BPositionIO* io);
/haiku/src/bin/pcmcia-cs/
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...]
H A Dpack_cis.c189 if (p->io.nwin > 0) {
191 c += pack_io(&p->io, c);
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...]
/haiku/src/bin/unzip/
H A Dunzpriv.h335 # include <io.h>
390 # include <io.h> /* lseek(), open(), setftime(), dup(), creat() */
/haiku/src/kits/mail/
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);
H A Db_mail_message.cpp43 BMemoryIO io(text,length);
44 comp->SetDecodedData(&io);
58 BMemoryIO io(text,length);
59 comp->SetDecodedData(&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/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/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/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

Completed in 182 milliseconds

123