Searched defs:paths (Results 1 - 6 of 6) 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/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/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java309 void eraseFiles(File[] paths) { argument
310 for (File path : paths) {
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java617 * the input array of paths is null.
620 public final int[] addAssetPaths(String[] paths) { argument
621 if (paths == null) {
625 int[] cookies = new int[paths.length];
626 for (int i = 0; i < paths.length; i++) {
627 cookies[i] = addAssetPath(paths[i]);
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp206 // new paths are always added at the end
320 const String8* paths[2] = { &originalPath, &overlayPath }; local
331 ap.path = *paths[i];
506 * To find a particular file, we have to try up to eight paths with
510 * with illegal characters or "../" backward relative paths.
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java1161 // Set flag to monitor and not change apk file paths when
1178 String[] paths = splitString(bootClassPath, ':');
1179 for (int i=0; i<paths.length; i++) {
1180 alreadyDexOpted.add(paths[i]);
1424 // the correct library paths.
4142 // Bail out. The resource and code paths haven't been set.
4143 Slog.w(TAG, " Code and resource paths haven't been set correctly");
4231 // library paths after the scan is done.
7239 private static long calculateDirectorySize(IMediaContainerService mcs, File[] paths) argument
7242 for (File path : paths) {
7248 clearDirectory(IMediaContainerService mcs, File[] paths) argument
[all...]

Completed in 1613 milliseconds