Searched refs:MAXPATHLEN (Results 1 - 25 of 73) sorted by relevance

123

/external/bison/lib/
H A Dpathmax.h51 # if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN
55 # if !defined PATH_MAX && defined MAXPATHLEN
56 # define PATH_MAX MAXPATHLEN
/external/srec/portable/include/
H A Dpstdio.h89 #elif defined(MAXPATHLEN)
90 #define P_PATH_MAX MAXPATHLEN
/external/grub/stage2/
H A Ddefs.h84 * MAXPATHLEN defines the longest permissible path length
93 #define MAXPATHLEN 1024 macro
/external/openssh/openbsd-compat/
H A Dbasename.c29 static char bname[MAXPATHLEN];
H A Ddirname.c31 static char dname[MAXPATHLEN];
H A Dglob.c172 Char *bufnext, *bufend, patbuf[MAXPATHLEN];
193 bufend = bufnext + MAXPATHLEN - 1;
250 Char patbuf[MAXPATHLEN];
462 Char *bufnext, patbuf[MAXPATHLEN];
464 qpatnext = globtilde(pattern, patbuf, MAXPATHLEN, pglob);
534 if ((err = glob1(patbuf, patbuf+MAXPATHLEN-1, pglob, limitp)) != 0)
566 Char pathbuf[MAXPATHLEN];
571 return(glob2(pathbuf, pathbuf+MAXPATHLEN-1,
572 pathbuf, pathbuf+MAXPATHLEN-1,
657 char buf[MAXPATHLEN];
[all...]
H A Dgetcwd.c80 if ((pt = malloc(ptsize = MAXPATHLEN)) == NULL)
92 if ((up = malloc(upsize = MAXPATHLEN)) == NULL)
/external/e2fsprogs/intl/
H A Dos2compat.c42 char libintl_nl_default_dirname[MAXPATHLEN+1];
96 if (strlen (_nlos2_localedir) <= MAXPATHLEN)
/external/iproute2/ip/
H A Dipnetns.c58 char pathbuf[MAXPATHLEN];
93 char etc_netns_path[MAXPATHLEN];
94 char netns_name[MAXPATHLEN];
95 char etc_name[MAXPATHLEN];
125 char net_path[MAXPATHLEN];
177 char netns_path[MAXPATHLEN];
205 char netns_path[MAXPATHLEN];
/external/ipsec-tools/src/racoon/
H A Disakmp_cfg.h102 char default_domain[MAXPATHLEN + 1];
103 char motd[MAXPATHLEN + 1];
163 char default_domain[MAXPATHLEN + 1]; /* Default domain recieved */
H A Dsession.c123 char pid_file[MAXPATHLEN];
158 strlcpy(pid_file, _PATH_VARRUN "racoon.pid", MAXPATHLEN);
160 strlcpy(pid_file, lcconf->pathinfo[LC_PATHTYPE_PIDFILE], MAXPATHLEN);
162 strlcat(pid_file, _PATH_VARRUN, MAXPATHLEN);
163 strlcat(pid_file, lcconf->pathinfo[LC_PATHTYPE_PIDFILE], MAXPATHLEN);
/external/openssh/
H A Dsftp-glob.c67 static char buf[sizeof(struct dirent) + MAXPATHLEN];
83 strlcpy(ret->d_name, od->dir[od->offset++]->filename, MAXPATHLEN);
H A Dauth.c337 char *file, ret[MAXPATHLEN];
429 char buf[MAXPATHLEN], homedir[MAXPATHLEN];
H A Ddefines.h90 #ifndef MAXPATHLEN
92 # define MAXPATHLEN PATH_MAX macro
94 # define MAXPATHLEN 64 macro
95 /* realpath uses a fixed buffer of size MAXPATHLEN, so force use of ours */
100 #endif /* MAXPATHLEN */
/external/linux-tools-perf/util/
H A Dconfig.c17 char buildid_dir[MAXPATHLEN]; /* root dir for buildid, binary cache */
452 strncpy(c->dir, v, MAXPATHLEN-1);
453 c->dir[MAXPATHLEN-1] = '\0';
476 snprintf(buildid_dir, MAXPATHLEN-1, "%s/%s",
479 strncpy(buildid_dir, DEBUG_CACHE_DIR, MAXPATHLEN-1);
481 buildid_dir[MAXPATHLEN-1] = '\0';
H A Dparse-events.c34 char debugfs_path[MAXPATHLEN];
143 char evt_path[MAXPATHLEN];
146 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", debugfs_path,
174 char evt_path[MAXPATHLEN];
175 char dir_path[MAXPATHLEN];
186 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path,
194 snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
448 char evt_path[MAXPATHLEN];
453 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", debugfs_path,
487 char evt_path[MAXPATHLEN];
[all...]
/external/linux-tools-perf/
H A Dperf.c32 static char debugfs_mntpt[MAXPATHLEN];
89 snprintf(debugfs_path, MAXPATHLEN, "%s/%s", path ?: debugfs_mntpt,
164 strncpy(debugfs_mntpt, (*argv)[1], MAXPATHLEN);
165 debugfs_mntpt[MAXPATHLEN - 1] = '\0';
171 strncpy(debugfs_mntpt, cmd + strlen(CMD_DEBUGFS_DIR), MAXPATHLEN);
172 debugfs_mntpt[MAXPATHLEN - 1] = '\0';
H A Dbuiltin-script.c834 char scripts_path[MAXPATHLEN];
836 char script_path[MAXPATHLEN];
837 char lang_path[MAXPATHLEN];
843 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
850 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
862 snprintf(script_path, MAXPATHLEN, "%s/%s",
884 char scripts_path[MAXPATHLEN];
885 char script_path[MAXPATHLEN];
887 char lang_path[MAXPATHLEN];
891 snprintf(scripts_path, MAXPATHLEN, "
[all...]
/external/llvm/lib/Support/Unix/
H A DPath.inc246 char exe_path[MAXPATHLEN];
249 char link_path[MAXPATHLEN];
260 char exe_path[MAXPATHLEN];
281 char link_path[MAXPATHLEN];
301 #ifdef MAXPATHLEN
302 result.reserve(MAXPATHLEN);
/external/ppp/pppd/plugins/radius/
H A Dradrealms.c28 char radrealms_config[MAXPATHLEN] = "/etc/radiusclient/realms";
/external/llvm/include/llvm/Config/
H A Dconfig.h.cmake696 #cmakedefine MAXPATHLEN ${MAXPATHLEN}
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/
H A DSDLMain.m10 #include <sys/param.h> /* for MAXPATHLEN */
89 char parentdir[MAXPATHLEN];
92 if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) {
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/
H A DSDLMain.m10 #include <sys/param.h> /* for MAXPATHLEN */
89 char parentdir[MAXPATHLEN];
92 if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) {
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/
H A DSDLMain.m10 #include <sys/param.h> /* for MAXPATHLEN */
89 char parentdir[MAXPATHLEN];
92 if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) {
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/
H A DSDLMain.m10 #include <sys/param.h> /* for MAXPATHLEN */
89 char parentdir[MAXPATHLEN];
92 if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) {

Completed in 1274 milliseconds

123