HomeSort by relevance Sort by last modified time
    Searched refs:dirPath (Results 1 - 25 of 29) sorted by null

1 2

  /cts/suite/audio_quality/test/
FileUtilTest.cpp 33 android::String8 dirPath;
34 ASSERT_TRUE(FileUtil::prepare(dirPath));
35 ASSERT_TRUE(dirPath.find("reports/") == 0);
36 LOGI("returned %s %d", dirPath.string(), dirPath.find("reports/"));
39 ASSERT_TRUE(dirPath == dirPath2);
  /sdk/find_lock/
find_lock_exe.cpp 32 CPath dirPath;
39 } else if (dirPath.isEmpty()) {
40 dirPath.set(argv[i]);
47 if (dirPath.isEmpty()) {
51 } else if (!dirPath.dirExists()) {
52 fprintf(stderr, "Error: '%s' is not a valid directory.\n", dirPath.cstr());
71 if (findLock(dirPath, &result)) {
  /external/lzma/CPP/Windows/
FileName.cpp 12 void NormalizeDirPathPrefix(CSysString &dirPath)
14 if (dirPath.IsEmpty())
16 if (dirPath.ReverseFind(kDirDelimiter) != dirPath.Length() - 1)
17 dirPath += kDirDelimiter;
21 void NormalizeDirPathPrefix(UString &dirPath)
23 if (dirPath.IsEmpty())
25 if (dirPath.ReverseFind(wchar_t(kDirDelimiter)) != dirPath.Length() - 1)
26 dirPath += wchar_t(kDirDelimiter);
    [all...]
FileName.h 17 void NormalizeDirPathPrefix(CSysString &dirPath); // ensures that it ended with '\\'
19 void NormalizeDirPathPrefix(UString &dirPath); // ensures that it ended with '\\'
FileDir.h 96 UINT MyGetTempFileName(LPCTSTR dirPath, LPCTSTR prefix, CSysString &resultPath);
98 UINT MyGetTempFileName(LPCWSTR dirPath, LPCWSTR prefix, UString &resultPath);
109 UINT Create(LPCTSTR dirPath, LPCTSTR prefix, CSysString &resultPath);
125 UINT Create(LPCWSTR dirPath, LPCWSTR prefix, UString &resultPath);
FileDir.cpp 733 UINT MyGetTempFileName(LPCTSTR dirPath, LPCTSTR prefix, CSysString &path)
735 UINT number = ::GetTempFileName(dirPath, prefix, 0, path.GetBuffer(MAX_PATH + 1));
741 UINT MyGetTempFileName(LPCWSTR dirPath, LPCWSTR prefix, UString &path)
745 UINT number = ::GetTempFileNameW(dirPath, prefix, 0, path.GetBuffer(MAX_PATH));
751 dirPath ? (LPCTSTR)GetSysPath(dirPath): 0,
759 UINT CTempFile::Create(LPCTSTR dirPath, LPCTSTR prefix, CSysString &resultPath)
762 UINT number = MyGetTempFileName(dirPath, prefix, resultPath);
797 UINT CTempFileW::Create(LPCWSTR dirPath, LPCWSTR prefix, UString &resultPath)
800 UINT number = MyGetTempFileName(dirPath, prefix, resultPath);
    [all...]
  /cts/suite/audio_quality/lib/include/
FileUtil.h 36 * @param dirPath returns path of created dir
38 static bool prepare(android::String8& dirPath);
55 // store dirPath to prevent creating multiple times
  /cts/suite/audio_quality/lib/src/
FileUtil.cpp 34 bool FileUtil::prepare(android::String8& dirPath)
37 dirPath = mDirPath;
74 dirPath = path;
  /frameworks/av/media/libmediaplayerservice/
Crypto.cpp 105 String8 dirPath("/vendor/lib/mediadrm");
108 DIR* pDir = opendir(dirPath.string());
113 pluginPath = dirPath + "/" + pEntry->d_name;
Drm.cpp 149 String8 dirPath("/vendor/lib/mediadrm");
150 DIR* pDir = opendir(dirPath.string());
154 ALOGE("Failed to open plugin directory %s", dirPath.string());
162 String8 pluginPath = dirPath + "/" + pEntry->d_name;
  /libcore/luni/src/main/java/java/io/
File.java 141 * @param dirPath
148 public File(String dirPath, String name) {
152 if (dirPath == null || dirPath.isEmpty()) {
155 this.path = fixSlashes(dirPath);
157 this.path = fixSlashes(join(dirPath, name));
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/debug/
ExternalDictionaryGetterForDebug.java 99 public static void askInstallFile(final Context context, final String dirPath,
101 final File file = new File(dirPath, fileName.toString());
  /cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java 668 File dirPath = new File(absPath);
669 File parent = dirPath.getParentFile();
673 return dirPath;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 535 IPath dirPath = pluginState.append(dirName);
537 mImageDir = new File(dirPath.toOSString());
  /frameworks/base/core/java/android/app/
ContextImpl.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.debug.core_3.6.0.v20100519.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 

Completed in 1128 milliseconds

1 2