HomeSort by relevance Sort by last modified time
    Searched full:path_max (Results 176 - 200 of 438) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/oprofile/daemon/
opd_anon.c 134 char buf[PATH_MAX];
138 snprintf(buf, PATH_MAX, "/proc/%d/maps", trans->tgid);
143 while (fgets(buf, PATH_MAX, fp) != NULL) {
oprofiled.c 289 elt->name = xmalloc(PATH_MAX);
347 char filename[PATH_MAX + 1];
348 snprintf(filename, PATH_MAX, "%s/%s", path, name);
424 tmp = xmalloc(PATH_MAX);
452 tmp = xmalloc(PATH_MAX);
  /external/webkit/Tools/WebKitTestRunner/
TestInvocation.cpp 44 #define PATH_MAX _MAX_PATH
79 buffer = adoptArrayPtr(new char[prefixLength + PATH_MAX + length + 2]); // 1 for the separator
81 if (!getcwd(buffer.get() + prefixLength, PATH_MAX))
  /frameworks/av/media/libmedia/
MediaScanner.cpp 84 if (pathLength >= PATH_MAX) {
87 char* pathBuffer = (char *)malloc(PATH_MAX + 1);
92 int pathRemaining = PATH_MAX - pathLength;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
stdlib.h 35 "least PATH_MAX bytes long buffer");
42 #if defined _LIBC_LIMITS_H_ && defined PATH_MAX
43 if (__bos (__resolved) < PATH_MAX)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
stdlib.h 35 "least PATH_MAX bytes long buffer");
42 #if defined _LIBC_LIMITS_H_ && defined PATH_MAX
43 if (__bos (__resolved) < PATH_MAX)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
stdlib.h 35 "least PATH_MAX bytes long buffer");
42 #if defined _LIBC_LIMITS_H_ && defined PATH_MAX
43 if (__bos (__resolved) < PATH_MAX)
  /external/oprofile/libopagent/
opagent.c 128 char dump_path[PATH_MAX];
129 char err_msg[PATH_MAX + 16];
147 snprintf(dump_path, PATH_MAX, "%s/%i.dump", AGENT_DIR, getpid());
148 snprintf(err_msg, PATH_MAX + 16, "Error opening %s\n", dump_path);
176 snprintf(err_msg, PATH_MAX + 16, "Error writing to %s", dump_path);
  /external/qemu/android/
qemu-setup.c 483 char tmp[PATH_MAX];
486 if (snprintf( tmp, PATH_MAX, "%s%s%s", appdir, PATH_SEP,
487 _ANDROID_PING_PROGRAM ) >= PATH_MAX) {
510 char args[PATH_MAX + 30];
511 if (snprintf( args, PATH_MAX, "/C \"%s\" ping emulator " VERSION_STRING,
512 tmp) >= PATH_MAX ) {
548 strncat( tmp, " ping emulator " VERSION_STRING, PATH_MAX - strlen(tmp) );
  /external/openssh/
defines.h 91 # ifdef PATH_MAX
92 # define MAXPATHLEN PATH_MAX
93 # else /* PATH_MAX */
99 # endif /* PATH_MAX */
102 #ifndef PATH_MAX
104 # define PATH_MAX _POSIX_PATH_MAX
  /external/webkit/Source/WebKit2/WebProcess/mac/
WebProcessMac.mm 128 char normalizedPath[PATH_MAX];
138 char path[PATH_MAX];
139 if (confstr(confID, path, PATH_MAX) <= 0)
  /external/webkit/Tools/DumpRenderTree/chromium/
TestShellGtk.cpp 63 char drtPath[PATH_MAX + 1];
64 int drtPathSize = readlink("/proc/self/exe", drtPath, PATH_MAX);
65 if (drtPathSize < 0 || drtPathSize > PATH_MAX) {
  /system/extras/fatblock/
import.c 202 char ch_path[PATH_MAX];
248 ret = snprintf(ch_path, PATH_MAX, "%s/%s", path, de->d_name);
249 if (ret < 0 || ret >= PATH_MAX) {
  /device/moto/stingray/sensors/
SensorBase.cpp 89 char devname[PATH_MAX];
  /device/samsung/crespo/libsensors/
SensorBase.cpp 94 char devname[PATH_MAX];
  /external/linux-tools-perf/
builtin-buildid-cache.c 79 char debugdir[PATH_MAX];
  /external/linux-tools-perf/util/
event.h 25 char filename[PATH_MAX];
  /external/ppp/pppd/plugins/radius/
clientid.c 107 char ttyname[PATH_MAX];
  /external/webkit/Source/WebCore/platform/mac/
FileSystemMac.mm 48 Vector<char> temporaryFilePath(PATH_MAX);
  /frameworks/av/include/media/
JetPlayer.h 96 char mJetFilePath[PATH_MAX];
  /hardware/invensense/libsensors/
SensorBase.cpp 94 char devname[PATH_MAX];
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
param.h 35 #define MAXPATHLEN PATH_MAX
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
param.h 35 #define MAXPATHLEN PATH_MAX
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
param.h 35 #define MAXPATHLEN PATH_MAX
  /external/jhead/
jhead.c 146 char QuotedPath[PATH_MAX+10];
169 if (strlen(Editor) > PATH_MAX) ErrFatal("env too long");
288 static char CommandString[PATH_MAX+1];
342 if (j >= PATH_MAX) ErrFatal("max path exceeded");
355 char ExecString[PATH_MAX*3];
356 char TempName[PATH_MAX+10];
468 strncat(OutFileName, OrigName, PATH_MAX);
469 strncat(OutFileName, Subst+2, PATH_MAX);
471 strncpy(OutFileName, NamePattern, PATH_MAX);
512 strncpy(FilePattern+PathLen, finddata.name, PATH_MAX-PathLen); // full name with pat
    [all...]

Completed in 3818 milliseconds

1 2 3 4 5 6 78 91011>>