Searched refs:dirPath (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/services/mediadrm/
H A DFactoryLoader.h91 String8 dirPath("/system/lib/mediacas");
92 DIR* pDir = opendir(dirPath.string());
95 ALOGE("Failed to open plugin directory %s", dirPath.string());
101 String8 pluginPath = dirPath + "/" + pEntry->d_name;
126 String8 dirPath("/system/lib/mediacas");
127 DIR* pDir = opendir(dirPath.string());
130 ALOGE("Failed to open plugin directory %s", dirPath.string());
138 String8 pluginPath = dirPath + "/" + pEntry->d_name;
/frameworks/av/drm/libmediadrm/
H A DCrypto.cpp106 String8 dirPath(getDrmPluginPath());
109 DIR* pDir = opendir(dirPath.string());
114 pluginPath = dirPath + "/" + pEntry->d_name;
H A DDrm.cpp224 String8 dirPath(getDrmPluginPath());
225 DIR* pDir = opendir(dirPath.string());
229 ALOGE("Failed to open plugin directory %s", dirPath.string());
237 String8 pluginPath = dirPath + "/" + pEntry->d_name;
/frameworks/base/core/java/android/os/
H A DFileUtils.java438 public static boolean contains(String dirPath, String filePath) { argument
439 if (dirPath.equals(filePath)) {
442 if (!dirPath.endsWith("/")) {
443 dirPath += "/";
445 return filePath.startsWith(dirPath);
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
H A DFileRotatorTest.java374 String dirPath = getContext().getFilesDir() + File.separator + "inaccessible";
375 inaccessibleDir = new File(dirPath);
/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java777 String dirPath = mDropBoxDir.getPath();
779 mStatFs.restat(dirPath);
/frameworks/base/core/java/android/app/
H A DContextImpl.java754 String dirPath = name.substring(0, name.lastIndexOf(File.separatorChar));
755 dir = new File(dirPath);

Completed in 172 milliseconds