HomeSort by relevance Sort by last modified time
    Searched defs:realPath (Results 1 - 2 of 2) sorted by null

  /external/srec/portable/src/UNIX/
PANSIFileSystemUNIXImpl.c 93 LCHAR realPath[P_PATH_MAX];
98 LSTRCPY(realPath, path);
100 CHKLOG(rc, PANSIFileSystemGetRealPathImpl(self, realPath, &len));
102 if (mkdir(realPath, S_IRWXU|S_IRWXG|S_IRWXO ) != 0)
152 LCHAR realPath[P_PATH_MAX];
157 LSTRCPY(realPath, path);
159 CHKLOG(rc, PANSIFileSystemGetRealPathImpl(self, realPath, &len));
161 if ((*path != '\0') && (chdir(realPath) != 0))
  /external/srec/portable/src/
PANSIFileSystemImpl.c 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)
    [all...]

Completed in 199 milliseconds