Searched refs:port (Results 51 - 75 of 416) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/file_systems/userlandfs/server/
H A Dmain.cpp19 "Usage: %s <options> <file system> [ <port> ]\n"
25 "<port> should not be given when starting the server manually; it is used by\n"
86 // get the port, if any
87 int32 port = -1; local
89 port = atol(argv[argi++]);
90 if (port <= 0) {
109 error = server->Init(fileSystem, port);
H A DUserlandFSServer.h26 status_t Init(const char* fileSystem, port_id port);
32 status_t _Announce(const char* fsName, port_id port);
H A DUserlandFSServer.cpp67 UserlandFSServer::Init(const char* fileSystem, port_id port) argument
118 // create the notification request port
145 error = _Announce(fileSystem, port);
172 UserlandFSServer::_Announce(const char* fsName, port_id port) argument
174 // if not given, create a port
175 if (port < 0) {
179 port = create_port(1, portName);
180 if (port < 0)
181 RETURN_ERROR(port);
190 // get the port info
[all...]
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DMSP3430.h18 CMSP3430(CI2CPort & port);
/haiku/src/servers/registrar/
H A DRosterAppInfo.h25 void Init(thread_id thread, team_id team, port_id port, uint32 flags,
H A DMessageDeliverer.h20 virtual bool Next(port_id &port, int32 &token) = 0;
32 virtual bool Next(port_id &port, int32 &token);
45 SingleMessagingTargetSet(port_id port, int32 token);
49 virtual bool Next(port_id &port, int32 &token);
86 void _PutTargetPort(TargetPort *port);
/haiku/src/tests/kits/app/bmessenger/
H A DSMRemoteTargetApp.h17 port_id port; member in struct:smrt_init
/haiku/src/tests/servers/input/portspy/
H A DPortSpy.cpp5 // Sequentially search for valid ports by port number and display
16 // Found a valid port - display it's properties.
19 (unsigned int)info.port,
/haiku/build/scripts/
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)
/haiku/headers/private/app/
H A DServer.h20 looperName, port_id port, bool initGUI,
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/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/src/kits/media/
H A DPortPool.h25 void PutPort(port_id port);
/haiku/src/servers/launch/
H A DJob.cpp81 iterator->second.RemoveData("port");
321 return found->second.GetInt32("port", -1);
335 Job::SetDefaultPort(port_id port) argument
337 fDefaultPort = port;
345 iterator->second.SetInt32("port", (int32)port);
515 port_id port = iterator->second.GetInt32("port", -1); local
516 if (port >= 0)
517 delete_port(port);
[all...]
/haiku/src/add-ons/kernel/debugger/laplinkll/
H A Dlaplinkll.cpp12 Description: Implements a tty on top of the parallel port,
50 static inline uint8 read_status(uint32 port) argument
53 val = sISAModule->read_io_8(port+1);
57 static inline void write_control(uint32 port, uint8 val) argument
59 sISAModule->write_io_8(port+2, val);
62 static inline void write_data(uint32 port, uint8 val) argument
64 sISAModule->write_io_8(port, val);
76 if ((read_status(st->port) & 0xf8) != 0x80)
79 write_data(st->port, 0x08);
82 v = read_status(st->port);
[all...]
/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/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/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/add-ons/kernel/drivers/audio/sb16/
H A Dsb16_hw.c27 if (!(gISA->read_io_8(dev->port + SB16_CODEC_WRITE_STATUS) & 0x80))
31 /* write a byte to the DSP data port */
32 gISA->write_io_8(dev->port + SB16_CODEC_WRITE_DATA, value);
42 if (gISA->read_io_8(dev->port + SB16_CODEC_READ_STATUS) & 0x80)
46 /* read a byte from the DSP data port */
47 return gISA->read_io_8(dev->port + SB16_CODEC_READ_DATA);
55 gISA->write_io_8(dev->port + SB16_MIXER_ADDRESS, index);
56 gISA->write_io_8(dev->port + SB16_MIXER_DATA, value);
64 gISA->write_io_8(dev->port + SB16_MIXER_ADDRESS, index);
65 return gISA->read_io_8(dev->port
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DInsecureConnection.h28 uint16 port, Channel** channel);
50 uint16 port; member in struct:InsecureConnectionDefs::ConnectReply
/haiku/src/add-ons/print/transports/shared/
H A DSocket.h19 Socket(const char *host, int port);
20 Socket(const char *host, int port, int localPort);
/haiku/headers/private/kernel/
H A Dksystem_info.h32 status_t _user_start_watching_system(int32 object, uint32 flags, port_id port,
34 status_t _user_stop_watching_system(int32 object, uint32 flags, port_id port,
/haiku/headers/private/system/
H A Dsystem_info.h55 status_t __start_watching_system(int32 object, uint32 flags, port_id port,
57 status_t __stop_watching_system(int32 object, uint32 flags, port_id port,
/haiku/headers/private/userlandfs/private/
H A DRequestHandler.h18 void SetPort(RequestPort* port);

Completed in 259 milliseconds

1234567891011>>