Searched defs:paths (Results 1 - 8 of 8) 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.java545 public static String[] rewriteAfterRename(File beforeDir, File afterDir, String[] paths) { argument
546 if (paths == null) return null;
547 final String[] result = new String[paths.length];
548 for (int i = 0; i < paths.length; i++) {
549 result[i] = rewriteAfterRename(beforeDir, afterDir, paths[i]);
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java650 * the input array of paths is null.
653 public final int[] addAssetPaths(String[] paths) { argument
654 if (paths == null) {
658 int[] cookies = new int[paths.length];
659 for (int i = 0; i < paths.length; i++) {
660 cookies[i] = addAssetPath(paths[i]);
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp227 // new paths are always added at the end
316 const String8 paths[2] = { String8(targetApkPath), String8(overlayApkPath) }; local
322 ap.path = paths[i];
493 * To find a particular file, we have to try up to eight paths with
497 * with illegal characters or "../" backward relative paths.
H A DResourceTypes.cpp6478 const char* paths[] = { targetPath, overlayPath }; local
6481 const char* path = paths[j];
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java480 // Tracks available target package names -> overlay package paths.
1929 // Set flag to monitor and not change apk file paths when
2254 // the correct library paths.
2896 // Only data remains, so we aren't worried about code paths
6486 // Bail out. The resource and code paths haven't been set.
6488 "Code and resource paths haven't been set correctly");
6573 + " and requiring known paths " + known.codePathString
6718 // library paths after the scan is done.
6986 // Set native library paths again. For moves, the path will be updated based on the
7561 // Give ourselves some initial paths; w
10361 calculateDirectorySize(IMediaContainerService mcs, File[] paths) argument
10370 clearDirectory(IMediaContainerService mcs, File[] paths) argument
[all...]

Completed in 1220 milliseconds