Lines Matching refs:host
442 parse-namestring object &optional host defaults &key start end junk-allowed
448 LispObj *object, *host, *defaults, *ostart, *oend, *junk_allowed;
454 host = ARGUMENT(1);
457 if (host == UNSPEC)
458 host = NIL;
473 if (host != NIL) {
474 CHECK_STRING(host);
524 /* host */
703 make-pathname &key host device directory name type version defaults
711 LispObj *host, *device, *directory, *name, *type, *version, *defaults;
719 host = ARGUMENT(0);
721 if (host != UNSPEC) {
722 CHECK_STRING(host);
768 (host == UNSPEC || device == UNSPEC || directory == UNSPEC ||
776 defaults = CDR(defaults); /* host */
777 if (host == UNSPEC)
778 host = CAR(defaults);
846 /* host */
847 RPLACD(cons, CONS(host == UNSPEC ? NIL : host, NIL));
881 pathname-host pathname
1031 host-namestring pathname
1050 /* XXX only checks if host is a string and only checks the HOME enviroment
1055 user-homedir-pathname &optional host
1063 LispObj *host;
1065 host = ARGUMENT(0);
1067 if (host != UNSPEC && !STRINGP(host))
1068 LispDestroy("%s: bad hostname %s", STRFUN(builtin), STROBJ(host));