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

/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DFileSystem.cpp96 char* pathEnd = strchr(path, '/'); local
97 if (pathEnd == path) {
103 if (pathEnd == NULL) {
107 path = pathEnd + 1;
122 char* pathEnd = strchr(path, '/'); local
123 if (pathEnd != NULL)
124 *pathEnd = '\0';
134 if (pathEnd == NULL)
137 path = pathEnd + 1;
489 char* pathEnd; local
[all...]
/haiku/src/kits/storage/
H A Dstorage_support.cpp134 int &pathEnd)
145 pathEnd = -2;
166 pathEnd = pos-1;
210 int leafStart, leafEnd, pathEnd, len; local
211 internal_parse_path(fullPath, leafStart, leafEnd, pathEnd);
248 } else if (pathEnd == -1) {
249 // The path is '/' (since pathEnd would be -2 if we had
251 pathEnd = 0;
256 if (pathEnd == -2) {
263 len = pathEnd
133 internal_parse_path(const char *fullPath, int &leafStart, int &leafEnd, int &pathEnd) argument
[all...]
H A DPathMonitor.cpp792 const char* pathEnd = path + strlen(path); local
797 if (path == pathEnd)
802 componentEnd = pathEnd;
930 const char* pathEnd = path + fPath.Length(); local
935 while (component < pathEnd) {
939 componentEnd = pathEnd;
/haiku/src/kits/debug/
H A DTeamDebugger.cpp180 const char* pathEnd = strchr(paths, ':'); local
181 int pathLen = (pathEnd ? pathEnd - paths : strlen(paths));
203 paths = (pathEnd ? pathEnd + 1 : NULL);
/haiku/src/bin/debug/
H A Ddebug_utils.cpp46 const char* pathEnd = strchr(paths, ':'); local
47 int pathLen = (pathEnd ? pathEnd - paths : strlen(paths));
64 paths = (pathEnd ? pathEnd + 1 : NULL);
/haiku/src/system/libroot/os/
H A Dimage.cpp335 const char* pathEnd = paths - 1; local
336 while (pathEnd != NULL) {
337 paths = pathEnd + 1;
338 pathEnd = strchr(paths, ':');
339 int pathLen = (pathEnd ? pathEnd - paths : strlen(paths));
/haiku/src/system/runtime_loader/
H A Druntime_loader.cpp271 const char *pathEnd = pathList; local
275 while (pathEnd < pathListEnd && *pathEnd != ':')
276 pathEnd++;
278 fd = try_open_executable(pathList, pathEnd - pathList, name,
293 pathListLen = pathListEnd - pathEnd - 1;
294 pathList = pathEnd + 1;

Completed in 60 milliseconds