Lines Matching refs:realPath
101 ESR_ReturnCode PANSIFileSystemAddPathImpl(PFileSystem* self, const LCHAR* virtualPath, const LCHAR* realPath)
110 if (virtualPath == NULL || realPath == NULL)
132 value = MALLOC(sizeof(LCHAR) * (LSTRLEN(realPath) + 1), MTAG);
139 LSTRCPY(value, realPath);
141 /* Make sure realPath is not an empty string */
148 PLogError(L("%s: realPath cannot be empty"), ESR_rc2str(rc));
272 LCHAR realPath[P_PATH_MAX];
276 LSTRCPY(realPath, path);
278 CHKLOG(rc, PANSIFileSystemGetRealPathImpl(self, realPath, &len));
279 return PANSIFileCreateImpl(realPath, littleEndian, file);