Searched refs:host (Results 76 - 100 of 1504) sorted by relevance

1234567891011>>

/macosx-10.10.1/Heimdal-398.1.2/appl/kx/
H A Drxterm.in4 usage="Usage: $0 [-l username] [-k] [-f] [-r rsh_args] [-x xterm_args] [-K kx_args] [-w term_emulator] [-b rsh_binary][-v] [-h | --help] [--version] host"
27 echo "Usage: $0 host [arguments to $term]"
30 host=$1
31 title="${title}${host}"
36 set -- `kx $kx_args $host`
45 $binary -n $rsh_args $host "/bin/sh -c 'DISPLAY=$disp XAUTHORITY=$auth $term -T $title -n $title $xterm_args </dev/null >/dev/null 2>/dev/null &'"
/macosx-10.10.1/Heimdal-398.1.2/appl/login/
H A Dutmpx_login.c26 int utmpx_login(char *line, const char *user, const char *host) { return 0; } argument
30 utmpx_update(struct utmpx *ut, char *line, const char *user, const char *host) argument
40 shrink_hostname (host, ut->ut_host, sizeof(ut->ut_host));
42 ut->ut_syslen = strlen(host) + 1;
58 prepare_utmp (&utmp, line, user, host);
68 utmpx_login(char *line, const char *user, const char *host) argument
89 utmpx_update(&save_ut, line, user, host);
99 utmpx_update(&newut, line, user, host);
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/hppa/
H A Dobjdump.exp49 if [is_remote host] {
50 set objfile [remote_download host tmpdir/addendbug.o]
80 if [is_remote host] {
81 set objfile [remote_download host tmpdir/freg.o]
/macosx-10.10.1/emacs-93/emacs/lisp/net/
H A Drcompile.el31 ;; the error messages. It works by rsh'ing the compilation to a remote host
33 ;; called was loaded remotely (ange-ftp), the host and user name are obtained
38 ;; loaded locally, remote-compile prompts for a host and user and assumes the
50 ;; the remote host. You do this by putting lines like:
80 (defcustom remote-compile-host nil
100 (defcustom remote-compile-prompt-for-host nil
101 "*Non-nil means prompt for host if not available from filename."
113 (defvar remote-compile-host-history nil)
122 ;; functions to provide user, host and localname of a remote filename,
127 (defun remote-compile (host use
[all...]
H A Dnet-utils.el82 "Program to send network test packets to a host."
209 (defcustom dns-lookup-program "host"
223 (defvar network-connection-host nil)
247 (let ((host-expression "[-A-Za-z0-9]+"))
250 (make-list 2 host-expression)
252 "\\(\\." host-expression "\\)*"))
338 (defun ping (host)
343 (list (read-from-minibuffer "Ping host: " (net-utils-machine-at-point))))
346 (append ping-program-options (list host))
347 (list host))))
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/example/
H A Dpassmass19 proc badhost {host emsg} {
22 send_user "\r\n\007password not changed on $host - $emsg\n\n"
24 set badhosts $host
26 set badhosts [concat $badhosts $host]
119 set host $arg
121 set pid [spawn rlogin $host -l $user]
123 set pid [spawn slogin $host -l $user]
125 set pid [spawn ssh $host -l $user]
127 set pid [spawn telnet $host]
146 badhost $host "spaw
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tls/tls/tests/oldTests/
H A DtlsBlocking.tcl15 -host localhost
27 set chan [tls::socket -require 0 $opts(-host) $opts(-port)]
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Dperlmonks.pl14 # modify the host part of the request
16 $message->uri()->host('perlmonks.org');
31 $proxy->push_filter( host => 'perlmonks.com', request => $filter );
32 $proxy->push_filter( host => 'www.perlmonks.org', request => $filter );
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Dperlmonks.pl14 # modify the host part of the request
16 $message->uri()->host('perlmonks.org');
31 $proxy->push_filter( host => 'perlmonks.com', request => $filter );
32 $proxy->push_filter( host => 'www.perlmonks.org', request => $filter );
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dnetopen.c84 _getaddr (host, ap)
85 char *host;
92 if (host[0] >= '0' && host[0] <= '9')
96 r = inet_aton (host, ap);
103 h = gethostbyname (host);
157 _netopen4(host, serv, typ)
158 char *host, *serv;
166 if (_getaddr(host, &ina) == 0)
168 internal_error (_("%s: host unknow
[all...]
/macosx-10.10.1/curl-83.1.2/curl/tests/server/
H A Dresolve.c65 const char *host = NULL; local
91 host = argv[arg++];
94 if(!host) {
95 puts("Usage: resolve [option] <host>\n"
114 he = gethostbyname(host);
140 rc = (getaddrinfo)(host, "80", &hints, &ai);
149 printf("Resolving %s '%s' didn't work\n", ipv_inuse, host);
/macosx-10.10.1/postfix-255/postfix/auxiliary/name-addr-test/
H A Dgetnameinfo.c32 const char *host; local
46 host = argv[1];
48 hints.ai_family = (strchr(host, ':') ? AF_INET6 : AF_INET);
51 if ((err = getaddrinfo(host, NO_SERVICE, &hints, &res0)) != 0) {
52 fprintf(stderr, "getaddrinfo %s: %s\n", host, gai_strerror(err));
57 * Convert host address to name.
64 fprintf(stderr, "getnameinfo %s: %s\n", host, gai_strerror(err));
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dgserver.rb93 # Stop the server running on the given port, bound to the given host
96 # +host+:: host on which to find the server to stop
97 def GServer.stop(port, host = DEFAULT_HOST)
99 @@services[host][port].stop
103 # Check if a server is running on the given port and host
106 # +host+:: host on which to find the server to check
108 # Returns true if a server is running on that port and host.
109 def GServer.in_service?(port, host
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dar.exp22 if ![is_remote host] {
69 if [is_remote host] {
70 set file1 [remote_download host $file1]
71 set file2 [remote_download host $file2]
77 remote_file host delete $dest
80 if [is_remote host] {
81 remote_upload host $file1 tmpdir/$n1
93 remote_file host delete $dest
111 if [is_remote host] {
112 remote_file host delet
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/url/
H A Durl-ns.el30 (defun isPlainHostName (host)
31 (not (string-match "\\." host)))
34 (defun dnsDomainIs (host dom)
35 (string-match (concat (regexp-quote dom) "$") host))
38 (defun dnsResolve (host)
39 (url-gateway-nslookup-host host))
42 (defun isResolvable (host)
43 (if (string-match "^[0-9.]+$" host)
45 (not (string= host (ur
[all...]
H A Durl-parse.el42 (defmacro url-host (urlobj)
71 (defmacro url-set-host (urlobj host)
72 `(aset ,urlobj 3 ,host))
92 (concat (url-type urlobj) ":" (if (url-host urlobj) "//" "")
98 (url-host urlobj)
144 (host nil)
172 (setq host (buffer-substring save-pos (point)))
173 (if (string-match "^\\([^@]+\\)@" host)
174 (setq user (match-string 1 host)
[all...]
H A Durl-imap.el43 (defun url-imap-open-host (host port user pass)
50 (nnimap-open-server host
60 (let* ((host (url-host url))
67 (url-imap-open-host host port (url-user url) (url-password url))
76 mailbox host (current-buffer)))
H A Durl-gw.el40 (defcustom url-gateway-local-host-regexp nil
51 (defcustom url-gateway-rlogin-host nil
67 (defcustom url-gateway-telnet-host nil
113 (defun url-gateway-nslookup-host (host)
118 url-gateway-nslookup-program host))
119 (res host))
130 host))
143 (defun url-open-rlogin (name buffer host service)
150 url-gateway-rlogin-host "
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dtest_hostname.c42 expand_hostname(krb5_context context, const char *host) argument
47 ret = krb5_expand_hostname(context, host, &h);
49 krb5_err(context, 1, ret, "krb5_expand_hostname(%s)", host);
54 printf("hostname: %s -> %s\n", host, h);
56 ret = krb5_expand_hostname_realms(context, host, &h, &r);
58 krb5_err(context, 1, ret, "krb5_expand_hostname_realms(%s)", host);
63 printf("hostname: %s -> %s\n", host, h);
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/dlzexternal/
H A Dtests.sh12 host="$1"
20 update add $host $cmd
24 echo "I:testing update for $host $type $cmd $comment"
27 echo "I:update failed for $host $type $cmd"
31 out=`$DIG $DIGOPTS -t $type -q $host | egrep "^$host"`
35 echo "I:dig output incorrect for $host $type $cmd: $out"
/macosx-10.10.1/ruby-106/ruby/test/xmlrpc/
H A Dtest_client.rb45 def net_http host, port, proxy_host, proxy_port
71 host, path, port, *rest = client.args
73 assert_equal 'example.org', host
82 host, path, port, *rest = client.args
84 assert_equal 'example.org', host
93 host, path, port, proxy_host, proxy_port, user, password, use_ssl, timeout = client.args
95 assert_equal 'example.org', host
109 host, path, port, proxy_host, proxy_port, user, password, use_ssl, timeout = client.args
111 assert_equal 'example.org', host
124 host, pat
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/db/repquote/
H A DRepConfig.java29 public ReplicationHostAddress thisHost; // The host address to listen to.
56 public void setThisHost(String host, int port) argument
60 thisHost.host = host;
66 System.err.println("Warning: no host specified, returning default.");
74 public void addOtherHost(String host, int port, boolean peer) argument
77 new ReplicationHostAddress(host, port);
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dgetnameinfo_verified.c48 char *host, socklen_t hostlen,
59 if (host == NULL)
67 ret = getnameinfo (sa, salen, host, hostlen, serv, servlen,
74 ret = getaddrinfo (host, serv, &hints, &ai);
91 ret = getnameinfo (sa, salen, host, hostlen, serv, servlen,
47 getnameinfo_verified(const struct sockaddr *sa, socklen_t salen, char *host, socklen_t hostlen, char *serv, socklen_t servlen, int flags) argument
/macosx-10.10.1/bless-103/
H A DmodeNetboot.c49 static bool validateAddress(const char *host);
55 char * host,
67 char host[NS_MAXDNAME]; local
97 host,
112 host,
145 strcmp(host, "255.255.255.255") == 0 ? NULL : host,
158 host,
168 strcmp(host, "255.255.255.255") == 0 ? NULL : host,
346 validateAddress(const char *host) argument
358 parseURL(BLContextPtr context, const char *url, char * scheme, char * interface, char * host, char * path, bool requiresPath, const char *requiresScheme, bool useBackslash) argument
[all...]
/macosx-10.10.1/ntp-92/scripts/
H A Dntpsweep.in37 "host=s" => \$single_host,
55 <file>|[--host <hostname>]
58 $program prints per host given in <file> the NTP stratum level, the
70 --host <hostname>
71 Speficy a single host, bypassing the need for a hosts file.
73 Recursively list all peers a host synchronizes to.
82 $program --host some.host --peers --maxlevel 4
129 my($host, $level, @trace) = @_;
138 if (&item_in_list($host,
[all...]

Completed in 354 milliseconds

1234567891011>>