HomeSort by relevance Sort by last modified time
    Searched refs:dir_len (Results 1 - 9 of 9) sorted by null

  /external/bison/lib/
dirname.h 41 size_t dir_len (char const *file) _GL_ATTRIBUTE_PURE;
dirname-lgpl.c 32 dir_len (char const *file) function
73 size_t length = dir_len (file);
localcharset.c 138 size_t dir_len = strlen (dir); local
140 int add_slash = (dir_len > 0 && !ISSLASH (dir[dir_len - 1]));
141 file_name = (char *) malloc (dir_len + add_slash + base_len + 1);
144 memcpy (file_name, dir, dir_len);
146 file_name[dir_len] = DIRECTORY_SEPARATOR;
147 memcpy (file_name + dir_len + add_slash, base, base_len + 1);
  /external/e2fsprogs/intl/
localcharset.c 125 size_t dir_len = strlen (dir); local
127 int add_slash = (dir_len > 0 && !ISSLASH (dir[dir_len - 1]));
128 file_name = (char *) malloc (dir_len + add_slash + base_len + 1);
131 memcpy (file_name, dir, dir_len);
133 file_name[dir_len] = DIRECTORY_SEPARATOR;
134 memcpy (file_name + dir_len + add_slash, base, base_len + 1);
  /external/e2fsprogs/misc/
lsattr.c 132 int dir_len = strlen(dir_name); local
134 path = malloc(dir_len + strlen (de->d_name) + 2);
136 if (dir_len && dir_name[dir_len-1] == '/')
  /external/protobuf/src/google/protobuf/compiler/
zip_writer.cc 201 uint32 dir_len = output.ByteCount(); local
209 output.WriteLittleEndian32(dir_len); // central directory byte size
  /ndk/sources/host-tools/make-3.81/glob/
glob.c 951 size_t dir_len = strlen (dir);
960 pglob->gl_pathv[pglob->gl_pathc] = malloc (dir_len + 1
971 dir, dir_len),
975 memcpy (pglob->gl_pathv[pglob->gl_pathc], dir, dir_len);
976 pglob->gl_pathv[pglob->gl_pathc][dir_len] = '/';
977 memcpy (&pglob->gl_pathv[pglob->gl_pathc][dir_len + 1],
950 size_t dir_len = strlen (dir); local
    [all...]
  /frameworks/native/cmds/installd/
utils.cpp 922 size_t dir_len = dir->len; local
923 const char* subdir = strchr(path + dir_len, '/');
935 if ((path[dir_len] == '.') || ((subdir != NULL) && (*subdir == '.'))) {
951 const size_t dir_len = android_system_dirs.dirs[i].len; local
952 if (!strncmp(path, android_system_dirs.dirs[i].path, dir_len)) {
    [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 2872 size_t dir_len = (size_t)(last_slash - program_path); local
    [all...]

Completed in 642 milliseconds