Searched refs:rootlen (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10/apr-32/apr/apr/file_io/unix/
H A Dfilepath.c88 apr_size_t rootlen; /* is the length of the src rootpath */ local
149 rootlen = strlen(rootpath);
150 maxlen = rootlen + strlen(addpath) + 4; /* 4 for slashes at start, after
177 keptlen = rootlen;
178 memcpy(path, rootpath, rootlen);
272 /* keptlen will be the rootlen unless the addpath contained
278 if ((flags & APR_FILEPATH_NOTABOVEROOT) && keptlen < rootlen) {
279 if (strncmp(rootpath, path, rootlen)) {
282 if (rootpath[rootlen - 1] != '/'
283 && path[rootlen]
[all...]
/macosx-10.10/apr-32/apr/apr/file_io/win32/
H A Dfilepath.c361 apr_size_t rootlen; /* the length of the root portion of path, d:/ is 3 */ local
492 rootlen = pathlen = strlen(addroot);
517 rootlen = pathlen = strlen(addroot);
537 keptlen = rootlen = pathlen = strlen(baseroot);
544 rootlen = pathlen = strlen(addroot);
570 rootlen = strlen(baseroot);
571 keptlen = pathlen = rootlen + baselen;
574 memcpy(path, baseroot, rootlen);
575 memcpy(path + rootlen, basepath, baselen);
583 rootlen
[all...]
H A Ddir.c81 * The length not including the trailing '*' is stored as rootlen, to
91 (*new)->rootlen = len - 1;
158 while (thedir->rootlen &&
159 thedir->rootlen + wcslen(thedir->w.entry->cFileName) >= APR_PATH_MAX)
201 while (thedir->rootlen &&
202 thedir->rootlen + strlen(thedir->n.entry->cFileName) >= MAX_PATH)
/macosx-10.10/Security-57031.1.35/Security/include/security_keychain/
H A DSecTrustedApplication.cpp158 size_t rootlen = strlen(installroot); local
159 if (!strncmp(installroot, path, rootlen))
160 path += rootlen - 1; // keep the slash
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DSecTrustedApplication.cpp158 size_t rootlen = strlen(installroot); local
159 if (!strncmp(installroot, path, rootlen))
160 path += rootlen - 1; // keep the slash
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DSecTrustedApplication.cpp158 size_t rootlen = strlen(installroot); local
159 if (!strncmp(installroot, path, rootlen))
160 path += rootlen - 1; // keep the slash
/macosx-10.10/apr-32/apr/apr/include/arch/win32/
H A Dapr_arch_file_io.h196 apr_size_t rootlen; member in struct:apr_dir_t

Completed in 128 milliseconds