Searched refs:io (Results 1 - 25 of 61) sorted by last modified time

123

/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...]
H A Ddriver.h238 } io; member in union:hda_widget::__anon65
/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/kits/media/experimental/
H A DAdapterIO.cpp474 BInputAdapter::BInputAdapter(BAdapterIO* io) argument
476 fIO(io)
/haiku/headers/private/media/experimental/
H A DAdapterIO.h26 BInputAdapter(BAdapterIO* io);
/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/apps/debuganalyzer/model_loader/
H A DModelLoader.cpp527 BDataIO* io; local
528 status_t error = fDataSource->CreateDataIO(&io);
531 ObjectDeleter<BDataIO> dataIOtDeleter(io);
536 if (BPositionIO* positionIO = dynamic_cast<BPositionIO*>(io)) {
562 ssize_t bytesRead = io->Read(buffer, kBufferSize);
573 error = fDataSource->CreateDataIO(&io);
576 dataIOtDeleter.SetTo(io);
586 ssize_t bytesRead = io->Read(data, size);
/haiku/src/apps/cortex/RouteApp/
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/tools/fs_shell/
H A Dfd.cpp445 struct io_context *io = get_current_io_context(kernel); local
446 struct file_descriptor *descriptor = remove_fd(io, fd);
/haiku/src/system/kernel/cache/
H A Dfile_cache.cpp1010 PrecacheIO* io = new(std::nothrow) PrecacheIO(ref, lastOffset, local
1012 if (io == NULL || io->Prepare(&reservation) != B_OK) {
1013 delete io;
1019 io->ReadAsync();
/haiku/src/kits/app/
H A DMessage.cpp1300 BMemoryIO io(flatBuffer, SSIZE_MAX);
1301 return Unflatten(&io);
/haiku/src/add-ons/kernel/drivers/disk/scsi/scsi_cd/
H A Dscsi_cd.cpp665 // layers - we can then set scsi_periph::io() as callback for the scheduler
667 status_t status = sSCSIPeripheral->io(info->scsi_periph_device, operation,
/haiku/src/system/boot/platform/efi/
H A Dserial.cpp10 #include <efi/protocol/serial-io.h>
/haiku/src/add-ons/kernel/drivers/disk/scsi/scsi_disk/
H A Dscsi_disk.cpp228 // layers - we can then set scsi_periph::io() as callback for the scheduler
230 status_t status = sSCSIPeripheral->io(info->scsi_periph_device, operation,
/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/kits/network/libnetservices/
H A DGeolocation.cpp130 BMemoryIO* io = new BMemoryIO(query.String(), query.Length()); local
131 http->AdoptInputData(io, query.Length());
/haiku/src/kits/mail/
H A DMailMessage.cpp213 BMallocIO io; local
214 component->RenderToRFC822(&io);
216 io.Seek(0, SEEK_SET);
217 clone->SetToRFC822(&io, io.BufferLength(), true);
/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
/haiku/src/tests/kits/net/netservices2/
H A Dtestserver.py24 import io namespace
316 self.buf = io.BytesIO()
327 self.buf = io.BytesIO()
/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/src/add-ons/translators/jpeg/
H A DJPEGTranslator.cpp1079 BMemoryIO io(marker->data + 6, marker->data_length - 6);
1080 convert_exif_to_message(io, exif);
/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);
/haiku/headers/private/kernel/
H A Dacpi.h328 acpi_io_attribute io; member in union:acpi_resource_attribute
/haiku/src/system/boot/platform/bios_ia32/
H A Dsmp.cpp204 struct mp_base_ioapic *io = (struct mp_base_ioapic *)pointer; local
208 gKernelArgs.arch_args.ioapic_phys = (uint32)io->addr;
211 TRACE(("smp: io apic %p has bad alignment, aborting\n",
217 TRACE(("smp: found io apic with apic id %d, version %d\n",
218 io->ioapic_id, io->ioapic_version));
304 TRACE(("smp: found io APIC with id %u and address 0x%lx\n",
/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 169 milliseconds

123