Searched refs:queue (Results 1 - 25 of 31) sorted by relevance

12

/fuchsia/zircon/third_party/ulib/musl/src/termios/
H A Dtcflush.c4 int tcflush(int fd, int queue) { argument
5 return ioctl(fd, TCFLSH, queue);
/fuchsia/zircon/system/ulib/ddk/include/ddk/protocol/
H A Dblock.h11 // block_op_t's are submitted for processing via the queue() method
54 // the block_op was initially queue()'d.
64 // via queue() must have block_op_size_out - sizeof(block_op_t) bytes
70 // callback may be called before the queue() method returns.
71 void (*queue)(void* ctx, block_op_t* txn); member in struct:block_protocol_ops
H A Dnand.h13 // nand_op_t's are submitted for processing via the queue() method of the
108 // size of nand_op_t. The nand_op_t's submitted via queue() must have
115 // before the queue() method returns.
116 void (*queue)(void* ctx, nand_op_t* op); member in struct:nand_protocol_ops
H A Dusb-function.h99 void (*queue)(void* ctx, usb_request_t* req); member in struct:__anon1002
219 return func->ops->queue(func->ctx, req);
/fuchsia/zircon/system/ulib/ddktl/include/ddktl/protocol/
H A Dblock.h55 ops_.queue = Queue;
H A Dnand.h53 nand_proto_ops_.queue = Queue;
91 ops_->queue(ctx_, operation);
/fuchsia/zircon/system/uapp/channel-perf/
H A Dmain.cpp36 uint32_t queue; member in struct:__anon831::TestArgs
64 // Pre-queue |test_args.queue| messages (there'll always be this many messages in the queue).
65 for (uint32_t i = 0; i < test_args.queue; i++) {
114 test_args.size, test_args.handles, test_args.queue, its_per_second);
131 " -Q N set message pre-queue count to N messages (default: 0)\n";
140 0 // -Q (queue)
184 test_args.queue = value;
/fuchsia/zircon/system/ulib/zx/include/lib/zx/
H A Dport.h32 zx_status_t queue(const zx_port_packet_t* packet) const { function in class:zx::port
/fuchsia/zircon/system/dev/block/bootpart/
H A Dbootpart.c73 dev->bp.ops->queue(dev->bp.ctx, bop);
155 bootpart->bp.ops->queue(bootpart->bp.ctx, bop);
185 .queue = bootpart_queue,
/fuchsia/zircon/system/dev/nand/nand/
H A Dnand_driver_test.c105 dev->nand_proto.ops->queue(dev, nand_op);
183 dev->nand_proto.ops->queue(dev, nand_op);
235 dev->nand_proto.ops->queue(dev, nand_op);
248 // will create and prep a vmo, allocate a nand_op and queue the nand_op to the
269 // Construct and queue a ERASE command (for the block range) to the
/fuchsia/zircon/system/uapp/netreflector/
H A Dnetreflector.c122 goto queue;
129 goto queue;
133 queue:
138 fprintf(stderr, "netreflector: failed to queue rx packet: %d\n", status);
235 fprintf(stderr, "netreflector: failed to queue rx packet: %d\n", status);
/fuchsia/zircon/system/dev/block/mbr/
H A Dmbr.c159 mbr->bp.ops->queue(mbr->bp.ctx, bop);
189 .queue = mbr_queue,
209 dev->bp.ops->queue(dev->bp.ctx, bop);
267 bp.ops->queue(bp.ctx, bop);
/fuchsia/zircon/system/dev/block/usb-mass-storage/
H A Dblock.c58 .queue = ums_block_queue,
/fuchsia/zircon/system/dev/block/gpt/
H A Dgpt.c178 gpt->bp.ops->queue(gpt->bp.ctx, bop);
208 .queue = gpt_queue,
232 gpt->bp.ops->queue(gpt->bp.ctx, bop);
291 bp.ops->queue(bp.ctx, bop);
327 bp.ops->queue(bp.ctx, bop);
/fuchsia/zircon/system/dev/block/block/
H A Dblock.c281 bdev->bp.ops->queue(bdev->bp.ctx, bop);
359 bdev->bp.ops->queue(bdev->bp.ctx, bop);
364 .queue = block_queue,
H A Dserver.cpp85 uint64_t dev_offset, block_msg_t* msg, BlockMsgQueue* queue) {
94 queue->push_back(msg);
117 // the queue AFTER unsetting it.
265 bp_.ops->queue(bp_.ctx, &msg->op);
366 // them into the input queue together.
456 // Attempt to drain as much of the input queue as possible
84 InQueueAdd(zx_handle_t vmo, uint64_t length, uint64_t vmo_offset, uint64_t dev_offset, block_msg_t* msg, BlockMsgQueue* queue) argument
/fuchsia/zircon/system/ulib/blobfs/include/blobfs/
H A Dwriteback.h22 #include <fs/queue.h>
180 // The waiter struct may be used as a stack-allocated queue for producers.
/fuchsia/zircon/system/ulib/minfs/include/minfs/
H A Dwriteback.h20 #include <fs/queue.h>
167 // The waiter struct may be used as a stack-allocated queue for producers.
/fuchsia/zircon/system/dev/block/zxcrypt/
H A Ddevice.cpp309 port_.queue(&packet);
405 info_->proto.ops->queue(info_->proto.ctx, block);
429 // If we previously stalled, try to re-queue the deferred requests; otherwise, avoid taking the
451 // Append the request to the write queue (if not null)
511 if ((rc = port_.queue(&packet)) != ZX_OK) {
512 zxlogf(ERROR, "zx::port::queue failed: %s\n", zx_status_get_string(rc));
/fuchsia/zircon/system/ulib/async-testutils/
H A Dtest_loop_dispatcher.cpp142 zx_status_t status = port_.queue(&timer_packet);
/fuchsia/zircon/system/dev/block/ahci/
H A Dsata.c257 zxlogf(TRACE, "sata: queue op 0x%x txn %p\n", bop->command, txn);
260 zxlogf(TRACE, "sata: queue FLUSH txn %p\n", txn);
272 .queue = sata_queue,
/fuchsia/zircon/system/dev/block/fvm/
H A Dfvm-private.h98 void Queue(block_op_t* txn) const { bp_.ops->queue(bp_.ctx, txn); }
/fuchsia/zircon/system/ulib/dispatcher-pool/
H A Ddispatcher-thread-pool.cpp217 // Manually queue a quit message for each thread in the thread pool.
226 res = port_.queue(&pkt);
/fuchsia/zircon/system/dev/bus/virtio/
H A Dblock.cpp157 // allocate a queue of block requests
189 block_ops_.queue = &virtio_block_queue;
211 // parse our descriptor chain, add back to the free queue
443 printf("virtio-block: failed to queue txn to hw: %d\n", status);
451 // we hold the queue lock and the list is empty
/fuchsia/zircon/system/dev/block/ramdisk/
H A Dramdisk.c141 // deferred queue.
381 .queue = ramdisk_queue,

Completed in 108 milliseconds

12