Searched refs:host (Results 26 - 50 of 66) sorted by path

123

/haiku/src/preferences/notifications/
H A DPrefletView.cpp28 PrefletView::PrefletView(SettingsHost* host) argument
33 fGeneralView = new GeneralView(host);
34 NotificationsView* apps = new NotificationsView(host);
H A DPrefletView.h21 PrefletView(SettingsHost* host);
H A DSettingsPane.cpp17 SettingsPane::SettingsPane(const char* name, SettingsHost* host) argument
20 fHost(host)
H A DSettingsPane.h18 SettingsPane(const char* name, SettingsHost* host);
/haiku/src/preferences/time/
H A Dntp.h12 extern status_t ntp_update_time(const char *host,
/haiku/src/tests/kits/net/cookie/
H A Dcookie_test.cpp58 BString host("http://");
59 host << domains[domain] << "/";
62 BUrl url(host);
69 cout << "Count for " << host << ": " << count << endl;
/haiku/src/tests/system/network/
H A Dgetpeername.cpp24 printf("usage: %s <host> [port]\n"
25 "Connects to the host (default port 21, ftp), and calls\n"
31 struct hostent* host = gethostbyname(argv[1]); local
32 if (host == NULL) {
52 address.sin_addr = *((struct in_addr*)host->h_addr);
/haiku/src/tests/system/network/icmp/
H A Dbig_datagram.cpp47 host_serv(const char* host, const char* serv, int family, int socktype) argument
55 int n = getaddrinfo(host, serv, &hints, &res);
H A Dicmp_dumper.cpp43 char host[128]; local
44 if (!inet_ntop(AF_INET, &source.sin_addr, host, sizeof(host)))
45 strcpy(host, "<unknown host>");
47 printf("Received %zd bytes of ICMP message from %s\n", nbytes, host);
H A Dudp_unreachable.cpp30 fprintf(stderr, "Usage: %s <host> [<port>]\n"
36 struct hostent* host = gethostbyname(argv[1]); local
37 if (host == NULL) {
50 serverAddr.sin_addr = *((struct in_addr*)host->h_addr);
73 printf("Received %zd bytes from remote host\n", bytes);
/haiku/
H A Dconfigure23 suitable for the host platform.
58 --host-only Configure for building tools for the build host
75 host system. The installed build tools for that
81 --use-clang <arch> Build with host Clang instead of GCC cross
87 --use-32bit Use -m32 flag on 64bit host gcc compiler.
102 CC The host compiler. Defaults to "gcc".
444 # Checks the host platform's support for extended attributes.
475 echo "$0: could not find $xattr_set, assuming host has no extended attributes"
478 echo "$0: could not find $xattr_get, assuming host ha
[all...]
/haiku/headers/posix/arpa/
H A Dinet.h22 struct in_addr inet_makeaddr(in_addr_t net, in_addr_t host);
/haiku/headers/private/netservices/
H A DNetworkRequest.h36 bool _ResolveHostName(BString host, uint16_t port);
H A DUrlContext.h32 void SetProxy(BString host, uint16 port);
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DNetAddress.cpp208 struct hostent* host = gethostbyname(hostName); local
209 if (!host)
211 if (host->h_addrtype != AF_INET || !host->h_addr_list[0])
216 addr.sin_addr = *(in_addr*)host->h_addr_list[0];
/haiku/src/add-ons/media/media-add-ons/esound_sink/
H A DESDEndpoint.cpp133 ESDEndpoint::Connect(const char *host, uint16 port) argument
137 fHost = host;
175 const char *host = fHost.String(); local
186 he = gethostbyname(host);
187 PRINT(("gethostbyname(%s) = %p\n", host, he));
/haiku/src/add-ons/print/transports/lpr/
H A DLpsClient.cpp44 LpsClient::LpsClient(const char *host) argument
47 fHost(host),
H A DLpsClient.h38 LpsClient(const char* host);
/haiku/src/apps/codycam/
H A DFtpClient.cpp574 outString += B_TRANSLATE("Remote host has closed the connection.\n");
593 string host, cmd, replyString; local
657 host = buf;
661 i = host.find('.', i);
663 host[i] = ',';
668 cmd += host;
H A DSftpClient.cpp89 BString host(server.c_str());
92 if (host.FindFirst(':'))
93 host.MoveInto(port, host.FindFirst(':'), host.Length());
100 cmd << "@" << host.String();
/haiku/src/apps/debugger/user_interface/gui/teams_window/
H A DTeamsListView.cpp337 TargetHost* host = fInterface->GetTargetHost(); local
338 AutoLocker<TargetHost> hostLocker(host);
339 info = host->TeamInfoByID(team);
369 TargetHost* host = fInterface->GetTargetHost(); local
370 AutoLocker<TargetHost> hostLocker(host);
371 info = host->TeamInfoByID(team);
/haiku/src/apps/remotedesktop/
H A DRemoteDesktop.cpp28 printf("usage:\t%s <host> [-p <port>] [-w <width>] [-h <height>]\n", app);
29 printf("usage:\t%s <user@host> -s [<sshPort>] [-p <port>] [-w <width>]"
59 const char *host = argv[1]; local
174 "-p", portNumber, "-o", "ExitOnForwardFailure=yes", host,
188 host = "localhost";
207 RemoteView *view = new(std::nothrow) RemoteView(window->Bounds(), host,
/haiku/src/bin/network/arp/
H A Darp.cpp280 // get host by name
281 struct hostent *host = gethostbyname(argument); local
282 if (host == NULL) {
283 fprintf(stderr, "%s: Line %" B_PRId32 ", host \"%s\" is not known in the IPv4 domain: %s\n",
287 if (host->h_addrtype != AF_INET) {
288 fprintf(stderr, "%s: Line %" B_PRId32 ", host \"%s\" is not known in the IPv4 domain.\n",
295 address.sin_addr.s_addr = *(in_addr_t *)host->h_addr;
406 // get host by name
407 struct hostent *host = gethostbyname(hostname); local
408 if (host
[all...]
/haiku/src/bin/network/netstat/
H A Dnetstat.cpp82 hostent* host = NULL; local
85 host = gethostbyaddr((const char*)&address.sin_addr, sizeof(in_addr),
91 if (host != NULL)
92 hostName = host->h_name;
/haiku/src/bin/network/telnetd/
H A Dsys_term.c1038 * startslave(host)
1046 startslave(char *host, int autologin, char *autoname) argument
1066 start_login(host, autologin, autoname);
1085 * start_login(host)
1098 start_login(char *host undef1, int autologin undef1, char *name undef1)
1105 * -h : pass on name of host.
1118 * Don't add the "-h host" option if we are going
1119 * to be adding the "-r host" option down below...
1125 argv = addarg(argv, host);
1179 * If we passed in the real host nam
[all...]

Completed in 129 milliseconds

123