Searched refs:UnixFifo (Results 1 - 6 of 6) sorted by relevance

/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixStreamEndpoint.h19 class UnixFifo;
75 UnixStreamEndpoint* listeningEndpoint, UnixFifo* fifo);
87 UnixFifo* fReceiveFifo;
H A DUnixDatagramEndpoint.h14 class UnixFifo;
66 UnixFifo* fReceiveFifo;
H A DUnixFifo.h106 class UnixFifo : public BReferenceable { class in inherits:BReferenceable
108 UnixFifo(size_t capacity, UnixFifoType type);
109 ~UnixFifo();
170 typedef AutoLocker<UnixFifo> UnixFifoLocker;
H A DUnixFifo.cpp6 #include "UnixFifo.h"
252 // This should have been handled in UnixFifo
339 UnixFifo::UnixFifo(size_t capacity, UnixFifoType type) function in class:UnixFifo
355 UnixFifo::~UnixFifo()
362 UnixFifo::Init()
369 UnixFifo::Shutdown(uint32 shutdown)
371 TRACE("[%" B_PRId32 "] %p->UnixFifo::Shutdown(0x%" B_PRIx32 ")\n",
385 UnixFifo
[all...]
H A DUnixStreamEndpoint.cpp17 #include "UnixFifo.h"
27 // -> UnixFifo (never lock more than one at a time)
285 UnixFifo* fifo = new(nothrow) UnixFifo(UNIX_MAX_TRANSFER_UNIT, UnixFifoType::Stream);
286 UnixFifo* peerFifo = new(nothrow) UnixFifo(UNIX_MAX_TRANSFER_UNIT, UnixFifoType::Stream);
287 ObjectDeleter<UnixFifo> fifoDeleter(fifo);
288 ObjectDeleter<UnixFifo> peerFifoDeleter(peerFifo);
407 UnixFifo* peerFifo = peerEndpoint->fReceiveFifo;
408 BReference<UnixFifo>
[all...]
H A DUnixDatagramEndpoint.cpp13 #include "UnixFifo.h"
264 = new (std::nothrow) UnixFifo(UNIX_MAX_TRANSFER_UNIT, UnixFifoType::Datagram);
275 UnixFifo* targetFifo = targetEndpoint->fReceiveFifo;
276 BReference<UnixFifo> targetFifoReference(targetFifo);
353 fReceiveFifo = new (std::nothrow) UnixFifo(UNIX_MAX_TRANSFER_UNIT,
365 UnixFifo* fifo = fReceiveFifo;
366 BReference<UnixFifo> fifoReference(fifo);

Completed in 50 milliseconds