Symbol: fRootPath
src/add-ons/kernel/file_systems/nfs4/FileSystem.cpp
207
fs->fPath = locs->fRootPath;
src/add-ons/kernel/file_systems/nfs4/FileSystem.cpp
208
locs->fRootPath = NULL;
src/add-ons/kernel/file_systems/nfs4/FileSystem.cpp
318
fPath = locs->fLocations[i].fRootPath;
src/add-ons/kernel/file_systems/nfs4/FileSystem.cpp
319
locs->fLocations[i].fRootPath = NULL;
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.cpp
34
if (fRootPath != NULL) {
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.cpp
35
for (uint32 i = 0; fRootPath[i] != NULL; i++)
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.cpp
36
free(const_cast<char*>(fRootPath[i]));
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.cpp
38
delete[] fRootPath;
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.cpp
50
if (fRootPath != NULL) {
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.cpp
51
for (uint32 i = 0; fRootPath[i] != NULL; i++)
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.cpp
52
free(const_cast<char*>(fRootPath[i]));
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.cpp
54
delete[] fRootPath;
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.cpp
749
locs->fRootPath = _GetPath(stream);
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.cpp
753
locs->fLocations[i].fRootPath = _GetPath(stream);
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.h
20
const char** fRootPath;
src/add-ons/kernel/file_systems/nfs4/ReplyInterpreter.h
29
const char** fRootPath;
src/system/boot/platform/pxe_ia32/network.cpp
135
free(fRootPath);
src/system/boot/platform/pxe_ia32/network.cpp
136
fRootPath = (char*)malloc(len + 1);
src/system/boot/platform/pxe_ia32/network.cpp
137
if (!fRootPath)
src/system/boot/platform/pxe_ia32/network.cpp
139
memcpy(fRootPath, options, len);
src/system/boot/platform/pxe_ia32/network.cpp
140
fRootPath[len] = '\0';
src/system/boot/platform/pxe_ia32/network.cpp
68
free(fRootPath);
src/system/boot/platform/pxe_ia32/network.h
27
const char* RootPath() const { return fRootPath; }
src/system/boot/platform/pxe_ia32/network.h
34
char* fRootPath;