Searched refs:port (Results 201 - 225 of 415) sorted by last modified time

1234567891011>>

/haiku/src/tests/system/network/
H A Dfirefox_crash.cpp33 init_sockaddr(struct sockaddr_in& address, unsigned ipAddress, unsigned port) argument
37 address.sin_port = htons(port);
/haiku/src/libs/compat/freebsd_network/compat/machine/x86_64/
H A Dcpufunc.h201 inb(u_int port) argument
205 __asm __volatile("inb %w1, %0" : "=a" (data) : "Nd" (port));
210 inl(u_int port) argument
214 __asm __volatile("inl %w1, %0" : "=a" (data) : "Nd" (port));
219 insb(u_int port, void *addr, size_t count) argument
223 : "d" (port)
228 insw(u_int port, void *addr, size_t count) argument
232 : "d" (port)
237 insl(u_int port, void *addr, size_t count) argument
241 : "d" (port)
252 inw(u_int port) argument
261 outb(u_int port, u_char data) argument
267 outl(u_int port, u_int data) argument
273 outsb(u_int port, const void *addr, size_t count) argument
281 outsw(u_int port, const void *addr, size_t count) argument
289 outsl(u_int port, const void *addr, size_t count) argument
297 outw(u_int port, u_short data) argument
[all...]
/haiku/src/libs/compat/freebsd_network/compat/machine/x86/
H A Dcpufunc.h215 inb(u_int port) argument
219 __asm __volatile("inb %w1, %0" : "=a" (data) : "Nd" (port));
224 inl(u_int port) argument
228 __asm __volatile("inl %w1, %0" : "=a" (data) : "Nd" (port));
233 insb(u_int port, void *addr, size_t count) argument
237 : "d" (port)
242 insw(u_int port, void *addr, size_t count) argument
246 : "d" (port)
251 insl(u_int port, void *addr, size_t count) argument
255 : "d" (port)
266 inw(u_int port) argument
275 outb(u_int port, u_char data) argument
281 outl(u_int port, u_int data) argument
287 outsb(u_int port, const void *addr, size_t count) argument
295 outsw(u_int port, const void *addr, size_t count) argument
303 outsl(u_int port, const void *addr, size_t count) argument
311 outw(u_int port, u_short data) argument
[all...]
/haiku/src/build/libbe/app/
H A DMessenger.cpp132 /*! \brief Sets the messenger's team, target looper port and handler token.
137 \param port The target looper port.
141 BMessenger::_SetTo(team_id team, port_id port, int32 token) argument
144 fPort = port;
/haiku/src/bin/fwcontrol/
H A Dfwcontrol.c588 read_phy_page(int fd, u_int8_t *buf, int page, int port) argument
593 reg.data = ((page & 7) << 5) | (port & 0xf);
629 printf("\n=== page 0 port %d ===\n", i);
/haiku/src/apps/tv/
H A DController.cpp472 if (input.source.port != output.source.port) {
473 printf("MediaRoster_Disconnect: input.source.port %d doesn't match output.source.port %d\n",
474 (int)input.source.port, (int)output.source.port);
482 if (input.destination.port != output.destination.port) {
483 printf("MediaRoster_Disconnect: input.destination.port %d doesn't match output.destination.port
[all...]
/haiku/src/add-ons/print/transports/shared/
H A DSocket.cpp21 Socket::Socket(const char *host, int port) argument
25 __port = port;
32 Socket::Socket(const char *host, int port, int localPort) argument
36 __port = port;
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/haiku/
H A DHaikuKernelVolume.cpp1106 port_id port, uint32 token, void** cookie)
1110 return fVolume.ops->open_query(&fVolume, queryString, flags, port,
1105 OpenQuery(const char* queryString, uint32 flags, port_id port, uint32 token, void** cookie) argument
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A Dfs_interface.h176 port_id port, long token, void **cookie);
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DRequests.h1162 visitor->Visit(this, port);
1168 int32 port; member in struct:OpenQueryRequest
1228 int32 port; // for query updates member in struct:NodeMonitoringRequest
1244 visitor->Visit(this, port);
1270 visitor->Visit(this, port);
1292 visitor->Visit(this, port);
1322 visitor->Visit(this, port);
1343 visitor->Visit(this, port);
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareVolume.cpp788 // the passed request is deleted by the request port
1676 // the passed request is deleted by the request port
2185 SendNotification(request->port, request->token,
2245 SendNotification(request->port, request->token,
/haiku/headers/private/userlandfs/legacy/
H A Dfsproto.h160 port_id port, long token, void **cookie);
241 extern _IMPEXP_KERNEL int send_notification(port_id port, long token,
/haiku/headers/os/app/
H A DLooper.h128 BLooper(int32 priority, port_id port,
134 static status_t _Lock(BLooper* loop, port_id port,
140 port_id port, int32 capacity);
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DPOP3.cpp99 fSettings.FindInt32("port"), fSettings.FindInt32("flavor"));
316 POP3Protocol::Open(const char* server, int port, int) argument
321 if (port <= 0)
322 port = fUseSSL ? 995 : 110;
329 if (port != 110)
330 errorMessage << ":" << port; local
335 BNetworkAddress address(server, port);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DSettings.cpp42 int32 port; local
43 if (fMessage.FindInt32("port", &port) == B_OK)
44 return port;
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A DSMTP.cpp279 fSettingsMessage.FindInt32("port"), authMethod == 1);
285 if (fSettingsMessage.FindInt32("port") > 0)
286 errorMessage << ":" << fSettingsMessage.FindInt32("port");
363 SMTPProtocol::Open(const char *address, int port, bool esmtp) argument
369 if (port <= 0)
370 port = use_ssl ? 465 : 25;
382 addr.SetPort(port);
/haiku/src/servers/media/
H A DNotificationManager.cpp228 if (n->node.port != source->port
229 && n->node.port != destination->port)
306 ", node-port %" B_PRId32 ", messenger %svalid\n", n->team, n->what,
307 n->node.node, n->node.port, n->messenger.IsValid() ? "" : "NOT ");
/haiku/src/kits/media/legacy/
H A DOldBufferStreamManager.cpp160 BBufferStreamManager::SetNotificationPort(port_id port) argument
/haiku/src/kits/media/experimental/
H A DMediaConnection.cpp137 fConnection.source.port = fOwner->fNode->ControlPort();
142 fConnection.destination.port = fOwner->fNode->ControlPort();
/haiku/src/kits/media/
H A DTimeSourceObject.cpp37 // We use the control port of the real time source object.
40 fControlPort = node.port;
H A DParameterWeb.cpp1321 status_t status = QueryPort(node.port, CONTROLLABLE_GET_PARAMETER_DATA,
1337 "port %d failed: %s\n", fName, (int)node.node, (int)node.port,
1394 status_t status = QueryPort(node.port, CONTROLLABLE_SET_PARAMETER_DATA,
H A DBufferProducer.cpp100 // avoid port writes (deadlock) if loopback connection
294 SendToPort(command->destination.port, NODE_REQUEST_COMPLETED,
318 SendToPort(command->destination.port, NODE_REQUEST_COMPLETED,
344 SendToPort(command->destination.port, NODE_REQUEST_COMPLETED,
396 SendToPort(command->destination.port, NODE_REQUEST_COMPLETED,
441 command.header.source_port = source.port;
450 return SendToPort(destination.port, CONSUMER_BUFFER_RECEIVED, &command,
468 return SendToPort(destination.port, CONSUMER_PRODUCER_DATA_STATUS, &command,
486 status_t status = QueryPort(destination.port, CONSUMER_ACCEPT_FORMAT,
514 return QueryPort(destination.port, CONSUMER_FORMAT_CHANGE
[all...]
/haiku/src/add-ons/kernel/drivers/audio/sb16/
H A Ddriver.h41 int port, irq, dma8, dma16, midiport; member in struct:__anon539
/haiku/headers/private/media/
H A DMediaDebug.h21 #define PRINT_INPUT(_text, _in) do { char _buf[300]; string_for_format((_in).format, _buf, sizeof(_buf)); printf("%s node(node %" B_PRId32 ", port %" B_PRId32 "); source(port %" B_PRId32 ", id %" B_PRId32 "); dest(port %" B_PRId32 ", id %" B_PRId32 "); fmt(%s); name(%s)\n", (_text), (_in).node.node, (_in).node.port, (_in).source.port, (_in).source.id, (_in).destination.port, (_in).destination.id, _buf, (_in).name); } while (0)
22 #define PRINT_OUTPUT(_text, _out) do { char _buf[300]; string_for_format((_out).format, _buf, sizeof(_buf)); printf("%s node(node %" B_PRId32 ", port %" B_PRId32 "); source(port %" B_PRId32 ", id %" B_PRId32 "); dest(port %" B_PRId32 ", id %" B_PRId32 "); fmt(%s); name(%s)\n", (_text), (_out).node.node, (_out).node.port, (_ou
[all...]
/haiku/src/kits/support/
H A DUrl.cpp276 BUrl::SetPort(int port) argument
278 fPort = port;
279 fHasPort = (port != 0);

Completed in 173 milliseconds

1234567891011>>