Searched refs:fPort (Results 1 - 25 of 105) sorted by relevance

12345

/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DPortReleaser.h14 fPort(port)
20 if (fPort && fPortPool)
21 fPortPool->ReleasePort(fPort);
26 RequestPort* fPort; member in class:PortReleaser
H A DKernelDebug.cpp74 kprintf(" status : %lx\n", port->fPort.fInitStatus);
75 kprintf(" is owner : %d\n", port->fPort.fOwner);
76 kprintf(" owner port: %ld\n", port->fPort.fInfo.owner_port);
77 kprintf(" client port: %ld\n", port->fPort.fInfo.client_port);
78 kprintf(" size: %ld\n", port->fPort.fInfo.size);
79 kprintf(" capacity: %ld\n", port->fPort.fCapacity);
80 kprintf(" buffer: %p\n", port->fPort.fBuffer);
H A DKernelRequestHandler.cpp230 RequestAllocator allocator(fPort->GetPort());
239 return fPort->SendRequest(&allocator);
264 RequestAllocator allocator(fPort->GetPort());
273 return fPort->SendRequest(&allocator);
325 RequestAllocator allocator(fPort->GetPort());
334 return fPort->SendRequest(&allocator);
352 RequestAllocator allocator(fPort->GetPort());
360 return fPort->SendRequest(&allocator);
374 RequestAllocator allocator(fPort->GetPort());
381 return fPort
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/kernel_add_on/
H A DPortReleaser.h14 fPort(port)
20 if (fPort && fPortPool)
21 fPortPool->ReleasePort(fPort);
26 RequestPort* fPort; member in class:PortReleaser
H A DKernelDebug.cpp68 kprintf(" status : %lx\n", port->fPort.fInitStatus);
69 kprintf(" is owner : %d\n", port->fPort.fOwner);
70 kprintf(" owner port: %ld\n", port->fPort.fInfo.owner_port);
71 kprintf(" client port: %ld\n", port->fPort.fInfo.client_port);
72 kprintf(" size: %ld\n", port->fPort.fInfo.size);
73 kprintf(" capacity: %ld\n", port->fPort.fCapacity);
74 kprintf(" message size: %ld\n", port->fPort.fMessageSize);
75 kprintf(" buffer: %p\n", port->fPort.fBuffer);
H A DUserlandFS.cpp24 fPort(NULL),
35 if (fPort) {
37 RequestAllocator allocator(fPort->GetPort());
40 if (fPort->SendRequest(&allocator) != B_OK)
44 delete fPort;
162 fileSystem = new(nothrow) FileSystem(name, fPort, &error);
251 fPort = new(nothrow) RequestPort(&portInfo);
252 if (!fPort)
254 if ((error = fPort->InitCheck()) != B_OK)
H A DKernelRequestHandler.cpp125 RequestAllocator allocator(fPort->GetPort());
132 return fPort->SendRequest(&allocator);
147 RequestAllocator allocator(fPort->GetPort());
154 return fPort->SendRequest(&allocator);
197 RequestAllocator allocator(fPort->GetPort());
204 return fPort->SendRequest(&allocator);
222 RequestAllocator allocator(fPort->GetPort());
230 return fPort->SendRequest(&allocator);
244 RequestAllocator allocator(fPort->GetPort());
251 return fPort
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/private/
H A DRequestHandler.cpp7 : fPort(NULL),
21 fPort = port;
H A DRequestPort.cpp26 : fPort(size),
33 : fPort(info),
49 fPort.Close();
56 return fPort.InitCheck();
63 return &fPort;
70 return fPort.GetInfo();
99 RETURN_ERROR(fPort.Send(allocator->GetRequest(),
127 AllocatorNode* node = new(nothrow) AllocatorNode(&fPort);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/private/
H A DRequestHandler.cpp7 : fPort(NULL),
21 fPort = port;
H A DRequestPort.cpp24 : fPort(size),
31 : fPort(info),
47 fPort.Close();
54 return fPort.InitCheck();
61 return &fPort;
68 return fPort.GetInfo();
78 if (!allocator || allocator->GetRequest() != fPort.GetBuffer()
80 || allocator->GetRequestSize() > fPort.GetCapacity()) {
98 RETURN_ERROR(fPort.Send(allocator->GetRequestSize()));
124 AllocatorNode* node = new(nothrow) AllocatorNode(&fPort);
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/server/
H A DRequestThread.cpp67 fPort(NULL),
78 delete fPort;
88 fPort = new(std::nothrow) RequestPort(kRequestPortSize);
89 if (!fPort)
91 status_t error = fPort->InitCheck();
117 if (fPort)
118 fPort->Close();
136 return (fPort ? fPort->GetPortInfo() : NULL);
150 return fPort;
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/server/
H A DRequestThread.cpp54 fPort(NULL),
65 delete fPort;
75 fPort = new(nothrow) RequestPort(kRequestPortSize);
76 if (!fPort)
78 status_t error = fPort->InitCheck();
104 if (fPort)
105 fPort->Close();
123 return (fPort ? fPort->GetPortInfo() : NULL);
137 return fPort;
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/server/
H A DPortConnectionListener.cpp18 fPort(-1)
25 if (fPort >= 0)
26 delete_port(fPort);
33 fPort = create_port(5, kPortConnectionPortName);
34 if (fPort < 0)
35 return fPort;
43 if (!_connection || fPort < 0)
51 ssize_t bytesRead = read_port(fPort, 0, &request,
100 delete_port(fPort);
101 fPort
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/server/
H A DPortConnectionListener.cpp14 fPort(-1)
21 if (fPort >= 0)
22 delete_port(fPort);
29 fPort = create_port(5, kPortConnectionPortName);
30 if (fPort < 0)
31 return fPort;
39 if (!_connection || fPort < 0)
47 ssize_t bytesRead = read_port(fPort, 0, &request,
96 delete_port(fPort);
97 fPort
[all...]
/haiku-fatelf/src/build/libbe/app/
H A DMessenger.cpp45 fPort(-1),
59 fPort(from.fPort),
85 fPort = from.fPort;
104 return fPort == other.fPort
119 return fPort >= 0;
149 fPort = port;
158 variables \c fPort, \
[all...]
/haiku-fatelf/src/add-ons/media/media-add-ons/radeon/
H A DTheater.cpp18 : fPort(radeon),
50 return fPort.Register(fDevice, index);
55 return fPort.Register(fDevice, index) & mask;
60 fPort.SetRegister(fDevice, index, value);
68 fPort.SetRegister(fDevice, index,
69 (fPort.Register(fDevice, index) & ~mask) | (value & mask));
H A DMSP3430.h36 CI2CPort & fPort; member in class:CMSP3430
/haiku-fatelf/src/add-ons/kernel/busses/scsi/ahci/
H A Dahci_controller.cpp34 memset(fPort, 0, sizeof(fPort));
185 fPort[i] = new (std::nothrow)AHCIPort(this, i);
186 if (!fPort[i]) {
190 status_t status = fPort[i]->Init1();
193 delete fPort[i];
194 fPort[i] = NULL;
210 if (fPort[i]) {
211 status_t status = fPort[i]->Init2();
214 fPort[
[all...]
/haiku-fatelf/headers/private/userlandfs/private/
H A DRequestPort.h47 Port fPort; member in class:UserlandFSUtil::RequestPort
55 : fPort(port), fRequest(request) {}
59 if (fPort && fRequest)
60 fPort->ReleaseRequest(fRequest);
64 RequestPort* fPort; member in class:UserlandFSUtil::RequestReleaser
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/headers/private/
H A DRequestPort.h47 Port fPort; member in class:UserlandFSUtil::RequestPort
55 : fPort(port), fRequest(request) {}
59 if (fPort && fRequest)
60 fPort->ReleaseRequest(fRequest);
64 RequestPort* fPort; member in class:UserlandFSUtil::RequestReleaser
/haiku-fatelf/src/kits/app/
H A DMessenger.cpp49 fPort(-1),
72 fPort(-1),
97 fPort(-1),
118 fPort = looper->fMsgPort;
138 fPort(from.fPort),
191 *_looper = BPrivate::gLooperList.LooperForPort(fPort);
216 if (looper->fMsgPort == fPort)
250 if (error == B_OK && looper->fMsgPort != fPort) {
355 return BMessage::Private(message).SendMessage(fPort, fTea
[all...]
/haiku-fatelf/headers/private/bluetooth/
H A DPortListener.h22 fInformation.port = &fPort;
38 close_port(fPort);
49 return write_port(fPort, code, NULL, 0);
58 return write_port(fPort, code, buffer, size);
65 fPort = find_port(fPortName);
66 if (fPort == B_NAME_NOT_FOUND) {
67 fPort = create_port(MAX_MESSAGE_DEEP, fPortName);
70 if (fPort < B_OK)
71 return fPort;
75 set_port_owner(fPort, B_SYSTEM_TEA
129 port_id fPort; member in class:PortListener
[all...]
/haiku-fatelf/src/servers/app/
H A DEventStream.cpp51 fPort(-1),
65 if (reply.FindInt32("event port", &fPort) != B_OK)
66 fPort = -1;
79 fPort = find_port(SERVER_INPUT_PORT);
94 if (fPort < B_OK || get_port_info(fPort, &portInfo) != B_OK)
105 write_port(fPort, 'quit', NULL, 0);
134 fPort = -1;
138 int32 count = port_count(fPort);
198 status_t status = write_port_etc(fPort, 'ins
[all...]
/haiku-fatelf/src/add-ons/print/transports/hp_jetdirect/
H A DHPJetDirectTransport.cpp26 fPort(9100),
46 fPort = atoi(address.String() + index + 1);
52 printf("fPort = %d\n", fPort);
63 if (fEndpoint->Connect(fHost, fPort) == B_OK) {
65 fHost.String(), fPort);

Completed in 137 milliseconds

12345