Home | History | Annotate | Download | only in src

Lines Matching refs:absolutePath

327   LCHAR absolutePath[P_PATH_MAX];
337 LSTRCPY(absolutePath, filename);
338 lstrtrim(absolutePath);
340 CHKLOG(rc, PFileSystemGetAbsolutePath(absolutePath, &len));
341 CHKLOG(rc, PFileSystemGetFS(absolutePath, &fileSystem, NULL));
342 rc = fileSystem->createPFile(fileSystem, absolutePath, littleEndian, self);
347 PLogError("%s, %s, %s", ESR_rc2str(rc), filename, absolutePath);
358 LCHAR absolutePath[P_PATH_MAX];
368 LSTRCPY(absolutePath, path);
369 lstrtrim(absolutePath);
371 CHKLOG(rc, PFileSystemGetAbsolutePath(absolutePath, &len));
372 CHKLOG(rc, PFileSystemGetFS(absolutePath, &fileSystem, NULL));
373 CHK(rc, fileSystem->mkdir(fileSystem, absolutePath));
407 LCHAR absolutePath[P_PATH_MAX];
417 LSTRCPY(absolutePath, path);
419 if (absolutePath[LSTRLEN(absolutePath)-1] != L('/'))
420 LSTRCAT(absolutePath, L("/"));
421 lstrtrim(absolutePath);
423 CHKLOG(rc, PFileSystemGetAbsolutePath(absolutePath, &len));
424 CHKLOG(rc, PFileSystemGetFS(absolutePath, &fileSystem, NULL));
425 rc = fileSystem->chdir(fileSystem, absolutePath);
431 if (absolutePath[LSTRLEN(absolutePath)-1] != L('/'))
432 LSTRCAT(absolutePath, L("/"));
433 LSTRCPY(PFileSystemCurrentDirectory, absolutePath);