HomeSort by: relevance | last modified time | path
    Searched refs:need_slash (Results 1 - 7 of 7) sorted by relevancy

  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
concatpath.c 53 int need_slash = local
56 result = (char *) xmalloc (directory_len + need_slash
62 if (need_slash)
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
concatpath.c 53 int need_slash = local
56 result = (char *) xmalloc (directory_len + need_slash
62 if (need_slash)
  /src/external/gpl2/groff/dist/src/libs/libgroff/
searchpath.cpp 118 int need_slash = end > p && strchr(DIR_SEPS, end[-1]) == 0; local
119 char *origpath = new char[(end - p) + need_slash + namelen + 1];
121 if (need_slash)
123 strcpy(origpath + (end - p) + need_slash, name);
175 int need_slash = end > p && strchr(DIR_SEPS, end[-1]) == 0; local
176 char *origpath = new char[(end - p) + need_slash + namelen + 1];
178 if (need_slash)
180 strcpy(origpath + (end - p) + need_slash, name);
tmpfile.cpp 86 int need_slash = strchr(DIR_SEPS, *tem_end) == NULL ? 1 : 0; local
87 char *tem2 = new char[tem_len + need_slash + 1];
89 if (need_slash)
96 tmpfile_prefix_len = tem_len + need_slash + strlen(tem3);
relocate.cpp 107 int need_slash = end > p && strchr(DIR_SEPS, end[-1]) == 0; local
108 path = new char[end - p + need_slash + namelen + 1];
110 if (need_slash)
112 strcpy(path + (end - p) + need_slash, name);
  /src/external/gpl2/groff/dist/src/libs/libbib/
index.cpp 447 int need_slash = (cwd[0] != 0 local
449 int len = strlen(cwd) + strlen(filename) + need_slash + 1;
456 if (need_slash)
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_pax.c 1573 int need_slash = 0; /* Was there a trailing slash? */ local
1597 need_slash = 1; /* Remember to restore trailing '/'. */
1603 need_slash = 1; /* "foo/." will become "foo/" */
1608 if (need_slash)
1667 if (need_slash)

Completed in 19 milliseconds