Searched refs:host (Results 1 - 25 of 66) sorted by path

123

/haiku/headers/compatibility/bsd/
H A Dlibutil.h98 int realhostname(char *host, size_t hsize, const struct in_addr *ip);
100 int realhostname_sa(char *host, size_t hsize, struct sockaddr *addr,
/haiku/headers/os/net/
H A DSecureSocket.h45 status_t _SetupCommon(const char* host = NULL);
46 status_t _SetupConnect(const char* host = NULL);
/haiku/headers/os/support/
H A DUrl.h31 BUrl& SetHost(const BString& host);
/haiku/src/add-ons/media/media-add-ons/esound_sink/
H A DESDEndpoint.h52 status_t Connect(const char *host, uint16 port=ESD_DEFAULT_PORT);
/haiku/src/add-ons/print/transports/shared/
H A DSocket.cpp21 Socket::Socket(const char *host, int port) argument
24 __host = host;
32 Socket::Socket(const char *host, int port, int localPort) argument
35 __host = host;
H A DSocket.h19 Socket(const char *host, int port);
20 Socket(const char *host, int port, int localPort);
/haiku/src/apps/cortex/addons/audioOps/
H A DAudioAdapterOp.cpp88 // - source and destination must be host-endian
158 // - destination must be host-endian
479 IAudioOpHost* host,
519 split ? (IAudioOp*)new _AudioAdapterOp_split < uint8, uint8>(host) :
520 mix ? (IAudioOp*)new _AudioAdapterOp_mix < uint8, uint8>(host) :
521 (IAudioOp*)new _AudioAdapterOp_direct < uint8, uint8>(host);
525 split ? (IAudioOp*)new _AudioAdapterOp_swap_split< uint8, short>(host) :
526 mix ? (IAudioOp*)new _AudioAdapterOp_swap_mix < uint8, short>(host) :
527 (IAudioOp*)new _AudioAdapterOp_swap_direct < uint8, short>(host);
529 split ? (IAudioOp*)new _AudioAdapterOp_split < uint8, short>(host)
478 createOp( IAudioOpHost* host, const media_raw_audio_format& inputFormat, const media_raw_audio_format& outputFormat) argument
[all...]
H A DAudioAdapterOp.h52 IAudioOpHost* host,
H A DNullAudioOp.cpp105 IAudioOpHost* host,
109 return new _NullAudioOp(host);
104 createOp( IAudioOpHost* host, const media_raw_audio_format& inputFormat, const media_raw_audio_format& outputFormat) argument
H A DNullAudioOp.h55 IAudioOpHost* host,
/haiku/src/apps/cortex/addons/common/
H A DIAudioOp.h44 // +++++ moving back towards a raw interface approach; the host node
46 // See IAudioOpHost for the operations that the host node needs
63 IAudioOpHost* const host; member in class:IAudioOp
67 IAudioOpHost* _host) : host(_host) {}
109 // Called when the host node is started, before any calls to
H A DIAudioOpFactory.h71 IAudioOpHost* host,
/haiku/src/bin/
H A Dcheckitout.cpp127 BString host = url.Host(); local
140 PRINT(("HOST='%s'\n", host.String()));
164 BString host = url.Host(); local
/haiku/src/bin/multiuser/
H A Dlogin.cpp60 char host[64]; local
61 if (gethostname(host, sizeof(host)) != 0)
62 host[0] = '\0';
64 if (host[0])
65 printf("%s ", host);
105 get_from(const char* host) argument
107 if (host == NULL)
111 snprintf(buffer, sizeof(buffer), " from %s", host);
/haiku/src/bin/network/ftpd/
H A Dlogwtmp.c77 char host[UT_HOSTSIZE]; local
80 host[0] = '\0';
82 realhostname_sa(host, sizeof(host), addr, addr->sa_len);
89 (void)strncpy(ut.ut_host, host, sizeof(ut.ut_host));
/haiku/src/bin/network/telnetd/
H A Dtelnetd.c386 ; /* VOID*/ /* Just ignore the host/port name */
698 fatal(net, "Couldn't resolve your address into a host name.\r\n\
743 telnet(int f, int p, char *host) argument
951 startslave(host, level, user_name);
H A Dutility.c359 edithost(char *pat, char *host) argument
369 if (*host)
370 host++;
374 if (*host)
375 *res++ = *host++;
388 if (*host)
389 (void) strncpy(res, host,
/haiku/src/kits/mail/
H A DProtocolConfigView.cpp134 fHostControl = _AddTextControl(layout, "host",
185 BString host = settings.FindString("server"); local
187 host << ':' << settings.FindInt32("port");
190 fHostControl->SetText(host.String());
/haiku/src/kits/network/libnetapi/
H A DNetAddress.cpp14 host byte order.
15 * In all mutators, non-struct input values are converted from host to
128 * (default: NULL). Will be converted to host byte order
220 * Output port will be in host byte order, but addr will be in the usual
351 struct hostent* host = gethostbyname(hostname); local
352 if (host != NULL)
353 addr = *(int*)host->h_addr_list[0];
H A DNetworkAddressResolver.cpp18 strip_port(BString& host, BString& port) argument
20 int32 first = host.FindFirst(':');
21 int32 separator = host.FindLast(':');
23 && (separator == 0 || host.ByteAt(separator - 1) != ']')) {
29 host.CopyInto(port, separator + 1, -1);
30 host.Truncate(separator);
145 BNetworkAddressResolver::SetTo(int family, const char* host, argument
152 BString hostString(host);
167 if (host == NULL && portString.Length() == 0) {
172 int status = getaddrinfo(host !
[all...]
/haiku/src/kits/support/
H A DUrl.cpp265 BUrl::SetHost(const BString& host) argument
267 fHost = host;
525 // it is possible that there can be an authority but no host.
1059 // if we see the // then this would imply that a host is
1060 // to be rendered even if no host has been parsed.
1231 // if the host was preceded by a username + password couple
1245 // the host may be enclosed within brackets in order to express
1260 // if an IPV6 host was not found.
/haiku/src/kits/tracker/
H A DNodePreloader.h59 static NodePreloader* InstallNodePreloader(const char* name, BLooper* host);
/haiku/src/libs/util/
H A Drealhostname.c49 realhostname(char *host, size_t hsize, const struct in_addr *ip) argument
75 strncpy(host, trimmed, hsize);
82 strncpy(host, inet_ntoa(*ip), hsize);
88 realhostname_sa(char *host, size_t hsize, struct sockaddr *addr, int addrlen) argument
172 strncpy(host, buf, hsize);
182 strncpy(host, buf, hsize);
/haiku/src/preferences/notifications/
H A DNotificationsView.cpp70 NotificationsView::NotificationsView(SettingsHost* host) argument
72 SettingsPane("apps", host),
H A DNotificationsView.h47 NotificationsView(SettingsHost* host);

Completed in 373 milliseconds

123