HomeSort by: relevance | last modified time | path
    Searched defs:MAXHOSTNAMELEN (Results 1 - 6 of 6) sorted by relevancy

  /xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/
xf86_OSlib.h 336 #if !defined(MAXHOSTNAMELEN)
337 #define MAXHOSTNAMELEN 32
338 #endif /* !MAXHOSTNAMELEN */
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/os-support/
xf86_OSlib.h 381 #if !defined(MAXHOSTNAMELEN)
382 # define MAXHOSTNAMELEN 32
383 #endif /* !MAXHOSTNAMELEN */
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/parser/
scan.c 70 #if !defined(MAXHOSTNAMELEN)
71 #define MAXHOSTNAMELEN 32
72 #endif /* !MAXHOSTNAMELEN */
625 if ((hostname = malloc(MAXHOSTNAMELEN + 1))) {
626 if (gethostname(hostname, MAXHOSTNAMELEN) == 0) {
627 hostname[MAXHOSTNAMELEN] = '\0';
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/parser/
scan.c 88 #if !defined(MAXHOSTNAMELEN)
89 #define MAXHOSTNAMELEN 32
90 #endif /* !MAXHOSTNAMELEN */
657 if ((hostname = malloc(MAXHOSTNAMELEN + 1))) {
658 if (gethostname(hostname, MAXHOSTNAMELEN) == 0) {
659 hostname[MAXHOSTNAMELEN] = '\0';
  /xsrc/external/mit/xtrans/dist/
Xtranssock.c 257 #ifndef MAXHOSTNAMELEN
258 #define MAXHOSTNAMELEN 255
1315 char host[MAXHOSTNAMELEN];
  /xsrc/external/mit/xrdb/dist/
xrdb.c 60 # include <sys/param.h> /* defines MAXHOSTNAMELEN on BSD & Linux */
64 # include <netdb.h> /* defines MAXHOSTNAMELEN on Solaris */
581 #ifndef MAXHOSTNAMELEN
582 #define MAXHOSTNAMELEN 255
584 char client[MAXHOSTNAMELEN], server[MAXHOSTNAMELEN], *colon;
588 XmuGetHostname(client, MAXHOSTNAMELEN);

Completed in 33 milliseconds