Searched refs:componentLength (Results 1 - 6 of 6) sorted by relevance

/haiku/src/system/boot/loader/
H A DPathBlocklist.cpp54 size_t componentLength = strlen(component); local
55 if (componentLength > 0 && component[componentLength - 1] == '/')
56 componentLength--;
57 if (componentLength == 0)
61 size_t length = (fLength > 0 ? fLength + 1 : 0) + componentLength;
67 memcpy(fPath + oldLength, component, componentLength);
/haiku/src/tools/fs_shell/
H A DKPath.cpp217 fssh_size_t componentLength = fssh_strlen(component);
218 if (componentLength < 1)
225 fssh_size_t resultPathLength = fPathLength + componentLength + (insertSlash ? 1 : 0);
232 fssh_memcpy(fBuffer + fPathLength, component, componentLength + 1);
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A DKPath.cpp322 size_t componentLength = strlen(component);
323 if (componentLength < 1)
330 size_t resultPathLength = fPathLength + componentLength
338 memcpy(fBuffer + fPathLength, component, componentLength + 1);
/haiku/src/system/kernel/fs/
H A DKPath.cpp335 size_t componentLength = strlen(component);
336 if (componentLength < 1)
343 size_t resultPathLength = fPathLength + componentLength
351 memcpy(fBuffer + fPathLength, component, componentLength + 1);
/haiku/src/system/libroot/os/
H A Dfind_paths.cpp374 size_t componentLength = componentEnd - remainder; local
375 if (componentLength == 1 && *remainder == '.') {
381 if (end + 1 + componentLength >= bufferEnd)
385 memcpy(end, remainder, componentLength);
386 end += componentLength;
387 remainder += componentLength;
/haiku/src/kits/storage/
H A DPathMonitor.cpp803 size_t componentLength = componentEnd - path; local
807 if (componentLength == 1) {
811 if (componentLength == 2 && path[1] == '.') {

Completed in 66 milliseconds