Searched defs:paths (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/tools/aidl/
H A Dsearch_path.cpp32 vector<string>& paths = g_importPaths; local
33 for (vector<string>::iterator it=paths.begin(); it!=paths.end(); it++) {
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java290 void eraseFiles(File[] paths) { argument
291 for (File path : paths) {
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java188 ClientProxy(String[] paths, String[] mimeTypes, OnScanCompletedListener client) { argument
189 mPaths = paths;
225 * @param paths Array of paths to be scanned.
233 public static void scanFile(Context context, String[] paths, String[] mimeTypes, argument
235 ClientProxy client = new ClientProxy(paths, mimeTypes, callback);
/frameworks/base/core/java/android/os/
H A DFileUtils.java496 public static String[] rewriteAfterRename(File beforeDir, File afterDir, String[] paths) { argument
497 if (paths == null) return null;
498 final String[] result = new String[paths.length];
499 for (int i = 0; i < paths.length; i++) {
500 result[i] = rewriteAfterRename(beforeDir, afterDir, paths[i]);
/frameworks/base/libs/hwui/
H A DDisplayList.h143 Vector<const SkPath*> paths; member in class:android::uirenderer::DisplayListData
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java636 * the input array of paths is null.
639 public final int[] addAssetPaths(String[] paths) { argument
640 if (paths == null) {
644 int[] cookies = new int[paths.length];
645 for (int i = 0; i < paths.length; i++) {
646 cookies[i] = addAssetPath(paths[i]);
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp221 // new paths are always added at the end
306 const String8 paths[2] = { String8(targetApkPath), String8(overlayApkPath) }; local
312 ap.path = paths[i];
483 * To find a particular file, we have to try up to eight paths with
487 * with illegal characters or "../" backward relative paths.
H A DResourceTypes.cpp6150 const char* paths[] = { targetPath, overlayPath }; local
6153 const char* path = paths[j];
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java395 // Tracks available target package names -> overlay package paths.
1410 // Set flag to monitor and not change apk file paths when
1728 // the correct library paths.
2124 // Only data remains, so we aren't worried about code paths
4862 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
4874 for (String path : paths) {
4894 // paths & ISAs.
4908 // paths & ISAs.
4916 // paths and instruction sets. We'll deal with them all together when we process
4949 // deferred dex-opt. We've either dex-opted one more paths o
8818 calculateDirectorySize(IMediaContainerService mcs, File[] paths) argument
8827 clearDirectory(IMediaContainerService mcs, File[] paths) argument
[all...]

Completed in 310 milliseconds