Home | History | Annotate | Download | only in parser

Lines Matching refs:hostname

534  *    %H    hostname
574 hostname = NULL;
624 if (!hostname) {
625 if ((hostname = malloc(MAXHOSTNAMELEN + 1))) {
626 if (gethostname(hostname, MAXHOSTNAMELEN) == 0) {
627 hostname[MAXHOSTNAMELEN] = '\0';
630 free(hostname);
631 hostname = NULL;
635 if (hostname)
636 APPEND_STR(hostname);