Searched refs:port (Results 276 - 300 of 415) sorted by last modified time

<<11121314151617

/haiku/src/kits/media/legacy/
H A DOldBufferStreamManager.h111 void SetNotificationPort(port_id port);
145 * notify anyone listening on the notification port about the
/haiku/src/servers/media/
H A DNodeManager.h35 port_id port; member in struct:registered_node
76 uint64 kinds, port_id port, team_id team,
96 status_t FindNodeID(port_id port, media_node_id* _id);
/haiku/src/system/libroot/posix/
H A Dsyslog.cpp109 /*! Retrieves the port of the system logger from the launch_daemon.
140 port_id port = get_system_logger_port();
142 || ((options & LOG_CONS) != 0 && port < B_OK)) {
146 if (port < B_OK) {
174 // make sure the message gets send (if there is a valid port)
175 status = write_port(port, SYSLOG_MESSAGE, &message,
H A Duser_group_common.cpp71 BPrivate::set_registrar_authentication_port(port_id port) argument
73 sRegistrarPort = port;
/haiku/src/tests/kits/media/nodetest/
H A DConsumerNode.cpp290 fInput.destination.port = ControlPort();
H A DProducerNode.cpp407 mOutput.source.port = ControlPort();
/haiku/src/add-ons/kernel/file_systems/layers/log_overlay/
H A Dlog_overlay.cpp989 port_id port, uint32 token, void **cookie)
991 DO_VOLUME_LOG("open_query query: \"%s\"; flags: %#" B_PRIx32 "; port: %"
992 B_PRId32 "; token: %" B_PRIu32 "\n", query, flags, port, token);
993 OVERLAY_VOLUME_CALL(open_query, query, flags, port, token, cookie)
988 overlay_open_query(fs_volume *volume, const char *query, uint32 flags, port_id port, uint32 token, void **cookie) argument
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A DBeOSKernelVolume.cpp787 BeOSKernelVolume::OpenQuery(const char* queryString, uint32 flags, port_id port, argument
792 return fFSOps->open_query(fVolumeCookie, queryString, flags, port,
/haiku/src/add-ons/accelerants/radeon/
H A Dmonitor_detection.c31 uint32 port; member in struct:__anon1
43 value = INREG(regs, info->port);
59 value = INREG(regs, info->port);
65 OUTREG(regs, info->port, value);
82 info.port = ddcPort;
216 SHOW_INFO0(2, "Found CRT connected to TV-DAC, i.e. DVI port");
812 Radeon_StoreFPEDID(accelerator_info *ai, int port, const edid1_info *edid) argument
814 fp_info *fp = &ai->si->flatpanels[port];
817 //SHOW_FLOW0(2, "EDID data read from DVI port via DDC2:");
845 Radeon_ConnectorInfo(accelerator_info *ai, int port, disp_entit argument
[all...]
/haiku/src/kits/app/
H A DLooperList.cpp173 BLooperList::LooperForPort(port_id port) argument
180 = find_if(fData.begin(), fData.end(), FindPortPred(port));
269 return data.looper && port == _get_looper_port_(data.looper);
/haiku/headers/build/private/app/
H A DMessagePrivate.h115 SetReply(team_id team, port_id port, int32 target) argument
117 fMessage->fHeader->reply_port = port;
/haiku/headers/private/app/
H A DMessagePrivate.h115 SetReply(team_id team, port_id port, int32 target) argument
117 fMessage->fHeader->reply_port = port;
180 SendMessage(port_id port, team_id portOwner, int32 token, argument
183 return fMessage->_SendMessage(port, portOwner, token,
188 SendMessage(port_id port, team_id portOwner, int32 token, argument
192 return fMessage->_SendMessage(port, portOwner, token,
211 SendFlattenedMessage(void *data, int32 size, port_id port, argument
215 port, token, timeout);
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A Dkernel_interface.cpp977 uint32 flags, port_id port, uint32 token, void** cookie)
981 B_PRIu32 ", %p)\n", volume, queryString, flags, port, token, cookie));
982 status_t error = volume->OpenQuery(queryString, flags, port, token, cookie);
976 userlandfs_open_query(fs_volume* fsVolume, const char *queryString, uint32 flags, port_id port, uint32 token, void** cookie) argument
H A DFileSystemInitializer.cpp13 #include <port.h>
50 // port with the respective name.
54 port_id port = find_port(portName); local
55 if (port >= 0)
56 return _Init(port);
58 // We have to start the server ourselves. First create the port we're going
60 port = create_port(1, portName);
61 if (port < 0)
62 RETURN_ERROR(port);
66 snprintf(portID, sizeof(portID), "%" B_PRId32, port);
110 _Init(port_id port) argument
[all...]
H A DKernelDebug.cpp32 kprintf(" port pool %p\n", fs->GetPortPool());
49 kprintf("usage: ufs_portpool <port pool pointer>\n");
55 kprintf(" port %p\n", portPool->fPorts[i].port);
59 kprintf(" port %p, owner: %" B_PRId32 ", count: %" B_PRId32 "\n",
60 portPool->fPorts[i].port, portPool->fPorts[i].owner,
71 kprintf("usage: ufs_port <port pointer>\n");
74 RequestPort *port = (RequestPort*)parse_expression(argv[1]); local
75 kprintf("port %p:\n", port);
[all...]
/haiku/headers/os/add-ons/network_settings/
H A DNetworkSettings.h205 int port = -1);
256 void SetPort(int port);
/haiku/src/kits/network/libnetapi/
H A DNetworkSettings.cpp118 {B_INT32_TYPE, "port", NULL},
132 {B_INT32_TYPE, "port", NULL},
1340 fAddress.SetPort(data.GetInt32("port", servicePort));
1451 // Default family/port/protocol/type for all addresses
1453 // we default to inet/tcp/port-from-service-name if nothing is specified
1471 if (message.FindInt32("port", &fPort) != B_OK) {
1506 // no address specified, but family/port were given; add empty address
1625 BNetworkServiceSettings::SetPort(int port) argument
1627 fPort = port;
1723 status = data.SetInt32("port", fPor
[all...]
/haiku/headers/os/app/
H A DMessenger.h83 void _SetTo(team_id team, port_id port,
/haiku/src/tests/add-ons/mail/imap/
H A Dimap_tester.cpp289 uint16 port = useSSL ? 993 : 143; local
291 BNetworkAddress address(AF_INET, server, port);
292 printf("Connecting to \"%s\" as %s%s, port %u\n", server, user,
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DVirtualVolume.cpp748 VirtualVolume::OpenQuery(const char* queryString, uint32 flags, port_id port, argument
783 if (volume->OpenQuery(queryString, flags, port, token,
H A DVolume.cpp171 Volume::SendNotification(port_id port, int32 token, uint32 what, int32 op, argument
177 " %" B_PRIdINO ", %" B_PRIdINO ", \"%s\")\n", port, token, what, op,
179 return send_notification(port, token, what, op, nsida, nsidb, vnida,
530 Volume::OpenQuery(const char* queryString, uint32 flags, port_id port, argument
/haiku/src/add-ons/kernel/file_systems/userlandfs/private/
H A DRequestPort.cpp17 AllocatorNode(Port* port) : allocator(port), previous(NULL) {} argument
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DNetAddress.h28 void SetPort(uint16 port);
/haiku/build/scripts/
H A Dbootstrap_client.py3 # Usage: bootstrap_client.py <address>[:port] <command> ...
14 port = 4242 variable
19 sys.exit('Usage: ' + sys.argv[0] + ' <address>[:<port>] <command>')
24 port = int(address[portIndex + 1:]) variable
35 controlConnection.connect((address, port))
36 stdioConnection.connect((address, port))
37 stderrConnection.connect((address, port))
39 sys.exit('Failed to connect to %s port %d: %s' % (address, port, msg[1]))
H A Dbootstrap_daemon.py9 port = 4242 variable
52 listenerSocket.bind((address, port))
54 sys.exit('Failed to bind to %s port %d: %s' % (address, port, msg[1]))
58 print 'started listening on adddress %s port %s' % (address, port)

Completed in 126 milliseconds

<<11121314151617