Searched refs:port (Results 226 - 250 of 415) sorted by last modified time

1234567891011>>

/haiku/headers/os/support/
H A DUrl.h32 BUrl& SetPort(int port);
/haiku/src/tests/kits/app/bmessenger/
H A DSMTarget.cpp134 // create unused port name
140 // create local port
158 fRemotePort = initData.port;
/haiku/src/system/kernel/arch/x86/
H A Dsyscalls_compat.cpp33 #include <port.h>
/haiku/src/servers/registrar/
H A DAppInfoListMessagingTargetSet.h24 virtual bool Next(port_id &port, int32 &token);
/haiku/src/servers/app/
H A DDelayedMessage.cpp62 status_t SendMessageToPort(port_id port);
113 typedef void(*FailureCallback)(int32 code, port_id port, void* data);
119 bool AddTarget(port_id port);
120 void RemoveTarget(port_id port);
137 void SendFailed(port_id port);
196 DelayedMessage::AddTarget(port_id port) argument
201 return fData->AddTarget(port);
323 DelayedMessageData::AddTarget(port_id port) argument
325 if (port <= 0)
330 if (port
339 RemoveTarget(port_id port) argument
510 SendFailed(port_id port) argument
570 port_id port = *(fData->Targets().ItemAt(index)); local
587 SendMessageToPort(port_id port) argument
[all...]
H A DTestServerLoopAdapter.h23 const char* looperName, port_id port,
/haiku/headers/private/device/
H A Djoystick_driver.h29 /* maximum number of controllers on one port */
120 /* Note that joystick_module is something used by the game port driver */
128 int (*configure)(int port, joystick_module_info * info, size_t size, void ** out_cookie);
130 int (*read)(void * cookie, int port, extended_joystick * data, size_t size);
132 int (*crumble)(void * cookie, int port);
134 int (*force)(void * cookie, int port, bigtime_t duration, extended_joystick * force, size_t size);
164 status_t (*create_device)(int port, void ** out_storage);
/haiku/src/servers/launch/
H A DJob.h88 void SetDefaultPort(port_id port);
/haiku/src/kits/app/
H A DLaunchRoster.cpp128 fieldName << "port";
130 port_id port = data.GetInt32(fieldName.String(), B_NAME_NOT_FOUND); local
131 if (port >= 0)
132 return port;
361 // find the launch_daemon port
/haiku/src/system/libroot/os/
H A Dport.c26 write_port(port_id port, int32 code, const void *buffer, size_t bufferSize) argument
28 return _kern_write_port_etc(port, code, buffer, bufferSize, 0, 0);
33 read_port(port_id port, int32 *code, void *buffer, size_t bufferSize) argument
35 return _kern_read_port_etc(port, code, buffer, bufferSize, 0, 0);
40 write_port_etc(port_id port, int32 code, const void *buffer, size_t bufferSize, argument
43 return _kern_write_port_etc(port, code, buffer, bufferSize, flags, timeout);
48 read_port_etc(port_id port, int32 *code, void *buffer, size_t bufferSize, argument
51 return _kern_read_port_etc(port, code, buffer, bufferSize, flags, timeout);
56 port_buffer_size(port_id port) argument
58 return _kern_port_buffer_size_etc(port,
63 port_buffer_size_etc(port_id port, uint32 flags, bigtime_t timeout) argument
70 port_count(port_id port) argument
77 set_port_owner(port_id port, team_id team) argument
84 close_port(port_id port) argument
91 delete_port(port_id port) argument
108 _get_port_info(port_id port, port_info *info, size_t size) argument
115 _get_port_message_info_etc(port_id port, port_message_info *info, size_t infoSize, uint32 flags, bigtime_t timeout) argument
[all...]
/haiku/src/system/kernel/disk_device_manager/
H A Dddm_userland_interface.cpp1398 _user_start_watching_disks(uint32 eventMask, port_id port, int32 token) argument
1401 return manager->Notifications().UpdateUserListener(eventMask, port, token);
1406 _user_stop_watching_disks(port_id port, int32 token) argument
1409 return manager->Notifications().RemoveUserListeners(port, token);
/haiku/src/system/boot/loader/net/
H A DUDP.cpp147 UDPSocket::Bind(ip_addr_t address, uint16 port) argument
154 if (address == INADDR_BROADCAST || port == 0) {
155 printf("UDPSocket::Bind(): broadcast IP or port 0\n");
165 status_t error = fUDPService->BindSocket(this, address, port);
172 fPort = port;
353 TRACE(("UDPService::Send(source port: %hu, to: %08lx:%hu, %lu bytes)\n",
392 UDPService::BindSocket(UDPSocket *socket, ip_addr_t address, uint16 port) argument
397 if (_FindSocket(address, port) != NULL) {
451 UDPService::_FindSocket(ip_addr_t address, uint16 port) argument
458 && port
[all...]
H A DRemoteDisk.cpp228 error = remoteDisk->Init(packet->SourceAddress(), ntohs(reply->port),
272 request->port = htons(socket->Port());
/haiku/src/kits/network/libnetapi/
H A DNetworkAddressResolver.cpp18 strip_port(BString& host, BString& port) argument
28 // looks like there is a port
29 host.CopyInto(port, separator + 1, -1);
52 uint16 port, uint32 flags)
58 SetTo(address, port, flags);
73 const char* address, uint16 port, uint32 flags)
79 SetTo(family, address, port, flags);
119 BNetworkAddressResolver::SetTo(const char* address, uint16 port, uint32 flags) argument
121 return SetTo(AF_UNSPEC, address, port, flags);
134 BNetworkAddressResolver::SetTo(int family, const char* address, uint16 port, argument
51 BNetworkAddressResolver(const char* address, uint16 port, uint32 flags) argument
72 BNetworkAddressResolver(int family, const char* address, uint16 port, uint32 flags) argument
138 service << port; local
280 Resolve(const char* address, uint16 port, uint32 flags) argument
287 Resolve(int family, const char* address, uint16 port, uint32 flags) argument
291 service << port; local
[all...]
/haiku/headers/private/libroot/
H A Duser_group.h92 void set_registrar_authentication_port(port_id port);
/haiku/headers/private/kernel/boot/net/
H A DUDP.h54 status_t Bind(ip_addr_t address, uint16 port);
93 status_t BindSocket(UDPSocket *socket, ip_addr_t address, uint16 port);
102 UDPSocket *_FindSocket(ip_addr_t address, uint16 port);
/haiku/headers/os/net/
H A DNetworkAddressResolver.h31 uint16 port = 0, uint32 flags = 0);
35 const char* address, uint16 port = 0,
46 status_t SetTo(const char* address, uint16 port = 0,
51 uint16 port = 0, uint32 flags = 0);
67 const char* address, uint16 port = 0,
73 const char* address, uint16 port = 0,
/haiku/src/add-ons/accelerants/radeon_hd/atombios/
H A Datom.cpp862 int port; local
865 port = U16(*ptr);
866 if (port < ATOM_IO_NAMES_CNT) {
867 TRACE("%s: port: %d (%s)\n", __func__,
868 port, atom_io_names[port]);
870 TRACE("%s: port: %d\n", __func__, port);
871 if (!port)
874 ctx->ctx->io_mode = ATOM_IO_IIO | port;
[all...]
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A DSMTP.h35 status_t Open(const char *server, int port, bool esmtp);
/haiku/src/apps/debugger/user_interface/gui/connection_config/config_handlers/
H A DNetworkConnectionConfigView.cpp25 static const char* kPortSetting = "port";
65 uint16 port = (uint16)strtoul(fPortInput->Text(), NULL, 10); local
66 fSettings->SetValue(fPortSetting, port);
108 // since port numbers are limited to 5 digits, there's no need for
109 // the port input to expand farther than that. Instead, let the
/haiku/src/tests/kits/media/playsound/
H A Dplaywav.cpp15 port_id port = -1; variable
25 size_t portsize = port_buffer_size(port);
29 read_port(port, &code, buffer, portsize);
49 write_port(port, 0, buffer, size);
54 write_port(port, 0, buffer, 0);
93 port = create_port(64, "buffer");
/haiku/src/tests/add-ons/kernel/network/
H A Duserland_ipc.c80 port_id localPort,port; member in struct:__anon2040
468 connection->port = create_port(CONNECTION_QUEUE_LENGTH, "net stack connection");
469 if (connection->port < B_OK) {
470 fprintf(stderr, "couldn't create port: %s.\n", strerror(connection->port));
473 return connection->port;
480 delete_port(connection->port);
490 delete_port(connection->port);
505 cookie->localPort = connection->port;
536 port_id port; local
[all...]
/haiku/headers/private/fs_shell/
H A Dfssh_fs_query.h32 fssh_port_id port, int32_t token);
/haiku/src/kits/media/
H A DMediaRecorderNode.cpp34 fInput.destination.port = ControlPort();
313 if (roster->GetNodeFor(roster->NodeIDFor(producer.port), &node) != B_OK)
/haiku/headers/private/kernel/disk_device_manager/
H A Dddm_userland_interface.h92 status_t _user_start_watching_disks(uint32 eventMask, port_id port,
94 status_t _user_stop_watching_disks(port_id port, int32 token);

Completed in 104 milliseconds

1234567891011>>