Home
last modified time | relevance | path

Searched refs:rootPath (Results 1 – 25 of 80) sorted by relevance

1234

/external/lzma/CPP/Windows/
DFileSystem.cpp23 CFSTR rootPath, in MyGetVolumeInformation() argument
36 res = GetVolumeInformation(fs2fas(rootPath), in MyGetVolumeInformation()
48 res = GetVolumeInformationW(fs2us(rootPath), in MyGetVolumeInformation()
86 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize) in MyGetDiskFreeSpace() argument
98 …sizeIsDetected = BOOLToBool(pGetDiskFreeSpaceEx(fs2fas(rootPath), &freeBytesToCaller2, &totalSize2… in MyGetDiskFreeSpace()
102 …if (!::GetDiskFreeSpace(fs2fas(rootPath), &numSectorsPerCluster, &bytesPerSector, &numFreeClusters… in MyGetDiskFreeSpace()
113 …sizeIsDetected = BOOLToBool(pGetDiskFreeSpaceEx(fs2us(rootPath), &freeBytesToCaller2, &totalSize2,… in MyGetDiskFreeSpace()
117 …if (!::GetDiskFreeSpaceW(fs2us(rootPath), &numSectorsPerCluster, &bytesPerSector, &numFreeClusters… in MyGetDiskFreeSpace()
DFileSystem.h14 CFSTR rootPath ,
23 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
/external/catch2/scripts/
Dapprove.py11 rootPath = os.path.join( catchPath, 'projects/SelfTest/Baselines' ) variable
14 files = [os.path.join( rootPath, f ) for f in sys.argv[1:]]
16 files = glob.glob( os.path.join( rootPath, "*.unapproved.txt" ) )
20 justFilename = unapprovedFile[len(rootPath)+1:]
DembedClara.py8 rootPath = os.path.dirname(os.path.realpath( os.path.dirname(sys.argv[0]))) variable
10 filename = os.path.join( rootPath, "third_party", "clara.hpp" )
11 outfilename = os.path.join( rootPath, "include", "external", "clara.hpp" )
DgenerateSingleHeader.py27 rootPath = os.path.join( catchPath, 'include/' )
57 …return [os.path.join( rootPath, s) for s in ['', 'internal', 'reporters', 'internal/benchmark', 'i…
106 parseFile( rootPath + headerPath + sep, headerFile )
141 parseFile( rootPath, 'catch.hpp' )
DapprovalTests.py19 rootPath = os.path.join(catchPath, 'projects/SelfTest/Baselines') variable
157 baselinesPath = os.path.join(rootPath, '{0}.approved.txt'.format(baseName))
158 rawResultsPath = os.path.join(rootPath, '_{0}.tmp'.format(baseName))
159 filteredResultsPath = os.path.join(rootPath, '{0}.unapproved.txt'.format(baseName))
DreleaseNotes.py15 rootPath = os.path.join( catchPath, 'include/' ) variable
16 versionPath = os.path.join( rootPath, "internal/catch_version.hpp" )
DreleaseCommon.py13 rootPath = os.path.join( catchPath, 'include/' ) variable
14 versionPath = os.path.join( rootPath, "internal/catch_version.cpp" )
15 definePath = os.path.join(rootPath, 'catch.hpp')
/external/toolchain-utils/compiler_wrapper/
Dcommand.go144 rootPath := filepath.Join(filepath.Dir(absWrapperPath), cfg.rootRelPath)
150 rootPath: rootPath,
163 rootPath string member
204 rootPath: builder.rootPath,
Dclang_flags.go22 clangDir = filepath.Join(builder.rootPath, "usr/bin/")
133 linkerPath := getLinkerPath(env, builder.target.target+"-ld", builder.rootPath)
172 func getLinkerPath(env env, linkerCmd string, rootPath string) string {
198 return filepath.Join(rootPath, "bin")
Dsysroot_flag.go26 sysroot = filepath.Join(builder.rootPath, "usr", builder.target.target)
/external/testng/src/main/java/org/testng/internal/
DPathUtils.java29 Path rootPath = Paths.get(suite.getFileName()).getParent(); in getSuiteNormalizedPath() local
30 return rootPath.resolve(suiteFile).normalize().toString(); in getSuiteNormalizedPath()
/external/skqp/src/utils/
DSkOSPath.cpp10 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) { in Join() argument
11 SkString result(rootPath); in Join()
DSkOSPath.h32 static SkString Join(const char* rootPath, const char* relativePath);
/external/skia/src/utils/
DSkOSPath.cpp10 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) { in Join() argument
11 SkString result(rootPath); in Join()
DSkOSPath.h32 static SkString Join(const char* rootPath, const char* relativePath);
/external/llvm-project/clang-tools-extra/clangd/test/
Dinitialize-sequence.test9 {"jsonrpc":"2.0","id":1,"method":"initialize","params":{"processId":123,"rootPath":"clangd","capabi…
11 {"jsonrpc":"2.0","id":2,"method":"initialize","params":{"processId":123,"rootPath":"clangd","capabi…
Dexit-without-shutdown.test2 {"jsonrpc":"2.0","id":0,"method":"initialize","params":{"processId":123,"rootPath":"clangd","capabi…
Dexit-with-shutdown.test2 {"jsonrpc":"2.0","id":0,"method":"initialize","params":{"processId":123,"rootPath":"clangd","capabi…
Dspaces-in-delimited-input.test4 {"jsonrpc":"2.0","id":0,"method":"initialize","params":{"processId":123,"rootPath":"clangd","capabi…
Ddelimited-input-comment-at-the-end.test7 {"jsonrpc":"2.0","id":0,"method":"initialize","params":{"processId":123,"rootPath":"clangd","capabi…
Dtest-uri-posix.test4 {"jsonrpc":"2.0","id":0,"method":"initialize","params":{"processId":123,"rootPath":"clangd","capabi…
Dmetrics.test2 {"jsonrpc":"2.0","id":0,"method":"initialize","params":{"processId":123,"rootPath":"clangd","capabi…
/external/parameter-framework/upstream/tools/xmlValidator/
DxmlValidator.py104 for rootPath, _, files in walk(xmlDirectory):
107 xmlFilePath = path.join(rootPath, filename)
/external/ltp/testcases/kernel/fs/scsi/ltpfs/
Dmain.c45 char rootPath[BUFFSIZE]; variable
145 strcpy(rootPath, argv[i]); in main()
219 if (strcmp(rootPath, file) == 0) { in cleanup_dirs()
503 changedir(rootPath); in do_random_access_test()

1234