HomeSort by: relevance | last modified time | path
    Searched refs:PATH_MAX (Results 1 - 25 of 131) sorted by relevancy

1 2 3 4 5 6

  /xsrc/external/mit/libX11/dist/src/
pathmax.h 50 * Provides a single definition of PATH_MAX instead of replicating this mess
68 #ifndef PATH_MAX
70 #define PATH_MAX 512
74 #ifndef PATH_MAX
76 #define PATH_MAX MAXPATHLEN
78 #define PATH_MAX 1024
GetDflt.c 128 char fname[PATH_MAX]; /* longer than any conceivable size */
144 (void) GetHomeDir (fname, (int) (PATH_MAX - strlen (slashDotXdefaults) - 1));
155 (void) GetHomeDir (fname, (int) (PATH_MAX - strlen (slashDotXdefaultsDash) - 1));
158 (void) _XGetHostname (fname+len, PATH_MAX-len);
  /xsrc/external/mit/xfs/dist/os/
osdep.h 65 #ifndef PATH_MAX
66 # ifndef PATH_MAX
68 # define PATH_MAX MAXPATHLEN
70 # define PATH_MAX 1024
73 #endif /* PATH_MAX */
error.c 66 char ErrorFile[PATH_MAX];
67 static char CurrentErrorFile[PATH_MAX];
  /xsrc/external/mit/xorgproto/dist/include/X11/
Xosdefs.h 91 # ifndef PATH_MAX
92 # define PATH_MAX 4096
100 # ifndef PATH_MAX
101 # define PATH_MAX 1024
Xwindows.h 108 #if defined(WIN32) && (!defined(PATH_MAX) || PATH_MAX < 1024)
109 # undef PATH_MAX
110 # define PATH_MAX 1024
  /xsrc/external/mit/MesaLib/dist/src/util/
process_test.c 34 #if DETECT_OS_WINDOWS && !defined(PATH_MAX)
36 #define PATH_MAX MAX_PATH
71 char path[PATH_MAX];
72 if (util_get_process_exec_path(path, PATH_MAX) == 0) {
  /xsrc/external/mit/smproxy/dist/
smproxy.h 58 #ifndef PATH_MAX
60 #ifndef PATH_MAX
62 #define PATH_MAX MAXPATHLEN
64 #define PATH_MAX 1024
67 #endif /* PATH_MAX */
  /xsrc/external/mit/xedit/dist/
realpath.c 39 * char *realpath(const char *path, char resolved[PATH_MAX]);
53 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX];
63 resolved = malloc(PATH_MAX);
79 if (getcwd(resolved, PATH_MAX) == NULL) {
83 strlcpy(resolved, ".", PATH_MAX);
89 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
114 if (resolved_len + 1 >= PATH_MAX) {
144 resolved_len = strlcat(resolved, next_token, PATH_MAX);
    [all...]
  /xsrc/external/mit/libX11/dist/src/xlibi18n/
lcFile.c 429 char buf[PATH_MAX], *name;
435 if (snprintf(buf, PATH_MAX, "%s/%s.dir", args[i], cat) < PATH_MAX) {
445 if (snprintf(buf, PATH_MAX, "%s/%s", args[i], name) < PATH_MAX)
471 char dir[PATH_MAX], buf[PATH_MAX], *name = NULL;
479 xlocaledir (dir, PATH_MAX);
485 if (snprintf (buf, PATH_MAX, "%s/%s", args[i], locale_alias)
486 < PATH_MAX) {
    [all...]
  /xsrc/external/mit/libXaw/dist/include/X11/Xaw/
AsciiSrcP.h 71 #ifdef PATH_MAX
72 #define TMPSIZ PATH_MAX
MultiSrcP.h 103 #ifdef PATH_MAX
104 #define TMPSIZ PATH_MAX
  /xsrc/external/mit/xedit/dist/lisp/
pathname.h 40 #ifndef PATH_MAX
41 #define PATH_MAX 4096
  /xsrc/external/mit/xorg-server/dist/hw/xwin/
winprefs.h 43 /* Xwindows redefines PATH_MAX to at least 1024 */
49 #define NAME_MAX PATH_MAX
52 #define PARAM_MAX (4*PATH_MAX) /* Maximum length of a parameter to a MENU */
103 char iconFile[PATH_MAX + NAME_MAX + 2]; /* Icon location, WIN32 path */
130 char iconDirectory[PATH_MAX + 1]; /* Where do the .icos lie? (Win32 path) */
  /xsrc/external/mit/xorg-server.old/dist/hw/xwin/
winprefs.h 42 /* Xwindows redefines PATH_MAX to at least 1024 */
46 #define NAME_MAX PATH_MAX
49 #define PARAM_MAX (4*PATH_MAX) /* Maximum length of a parameter to a MENU */
107 char iconFile[PATH_MAX+NAME_MAX+2]; /* Icon location, WIN32 path */
136 char iconDirectory[PATH_MAX+1]; /* Where do the .icos lie? (Win32 path) */
  /xsrc/external/mit/xsm/dist/
lock.c 55 char lock_file[PATH_MAX];
56 char temp_lock_file[PATH_MAX];
96 char lock_file[PATH_MAX];
112 char lock_file[PATH_MAX];
xsm.h 50 #ifndef PATH_MAX
52 #ifndef PATH_MAX
54 #define PATH_MAX MAXPATHLEN
56 #define PATH_MAX 1024
59 #endif /* PATH_MAX */
  /xsrc/external/mit/libxkbfile/dist/src/
XKBfileInt.h 53 #ifndef PATH_MAX
55 #define PATH_MAX MAXPATHLEN
57 #define PATH_MAX 1024
  /xsrc/external/mit/libXmu/dist/src/
LocBitmap.c 52 #ifndef PATH_MAX
54 #define PATH_MAX 512
58 #ifndef PATH_MAX
60 #define PATH_MAX MAXPATHLEN
62 #define PATH_MAX 1024
65 #endif /* PATH_MAX */
108 char filename[PATH_MAX];
StrToCurs.c 71 #ifndef PATH_MAX
73 #define PATH_MAX 512
77 #ifndef PATH_MAX
79 #define PATH_MAX MAXPATHLEN
81 #define PATH_MAX 1024
84 #endif /* PATH_MAX */
133 char maskname[PATH_MAX];
157 char source_name[PATH_MAX], mask_name[PATH_MAX];
  /xsrc/external/mit/xorg-server/dist/xkb/
ddxLoad.c 102 char *buf = NULL, keymap[PATH_MAX], xkm_output_dir[PATH_MAX];
112 char tmpname[PATH_MAX];
299 char buf[PATH_MAX], xkm_output_dir[PATH_MAX];
310 if (snprintf(buf, PATH_MAX, "%s/%s%s.xkm", XkbBaseDirectory,
311 xkm_output_dir, mapName) >= PATH_MAX)
315 if (snprintf(buf, PATH_MAX, "%s%s.xkm", xkm_output_dir, mapName)
316 >= PATH_MAX)
336 char fileName[PATH_MAX];
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/xkb/
ddxLoad.c 77 static char buffer[PATH_MAX];
182 char *buf = NULL, keymap[PATH_MAX], xkm_output_dir[PATH_MAX];
192 char tmpname[PATH_MAX];
295 char buf[PATH_MAX],xkm_output_dir[PATH_MAX];
307 +strlen(mapName)+6 <= PATH_MAX)
313 else if (strlen(xkm_output_dir)+strlen(mapName)+5 <= PATH_MAX)
338 char fileName[PATH_MAX];
357 file= XkbDDXOpenConfigFile(nameRtrn,fileName,PATH_MAX);
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/os/
osinit.c 69 #ifndef PATH_MAX
71 #define PATH_MAX MAXPATHLEN
73 #define PATH_MAX 1024
162 char fname[PATH_MAX];
  /xsrc/external/mit/xkbcomp/dist/
xkbpath.c 40 #ifndef PATH_MAX
41 #define PATH_MAX 1024
212 if (len + 2 >= PATH_MAX)
215 dir, PATH_MAX - 3);
384 char buf[PATH_MAX];
396 if ((nameLen + typeLen + pathLen + 2) >= PATH_MAX)
  /xsrc/external/mit/libXt/dist/include/X11/
InitialI.h 66 #ifndef PATH_MAX
68 #define PATH_MAX 512
72 #ifndef PATH_MAX
74 #define PATH_MAX MAXPATHLEN
76 #define PATH_MAX 1024

Completed in 20 milliseconds

1 2 3 4 5 6