Searched refs:directory (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/base/core/tests/overlaytests/
H A DAndroid.mk1 # Dummy makefile to halt recursive directory traversal.
/frameworks/base/packages/DefaultContainerService/jni/
H A Dcom_android_defcontainer_MeasurementUtils.cpp32 static jlong native_measureDirectory(JNIEnv* env, jobject clazz, jstring directory) { argument
35 const char* path = env->GetStringUTFChars(directory, NULL);
48 env->ReleaseStringUTFChars(directory, path);
/frameworks/base/core/java/android/net/http/
H A DHttpResponseCache.java47 * in the {@link Context#getCacheDir() application-specific cache directory} of
75 * external storage directory. <strong>There are no access controls on the
76 * external storage directory so it should not be used for caches that could
79 * during use. Retrieve the external cache directory using {@link
159 private HttpResponseCache(File directory, long maxSize) throws IOException { argument
160 this.delegate = new libcore.net.http.HttpResponseCache(directory, maxSize);
176 * @param directory the directory to hold cache data.
179 * @throws IOException if {@code directory} cannot be used for this cache.
183 public static HttpResponseCache install(File directory, lon argument
[all...]
/frameworks/base/tools/obbtool/
H A Dmkobb.sh151 echo " -d <directory> Use <directory> as input for OBB files"
169 -d) directory=$2; shift 2;;
180 if [ "${directory}x" = "x" -o ! -d "${directory}" ]; then \
181 echo "ERROR: Must specify valid input directory"
205 echo "ERROR: Output directory does not exist: ${outdir}"
214 block_count=`du -s --apparent-size --block-size=512 ${directory} | awk '{ print $1; }'`
216 echo "ERROR: Couldn't read size of input directory ${directory}"
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DIMediaContainerService.aidl35 long calculateDirectorySize(in String directory);
38 void clearDirectory(in String directory);
/frameworks/base/nfc-extras/
H A DAndroid.mk13 # put the classes.jar, with full class files instead of classes.dex inside, into the dist directory
/frameworks/base/tools/aidl/
H A DAndroid.mk3 # Copies files into the directory structure described by a manifest
/frameworks/compile/libbcc/runtime/make/
H A Dsubdir.mk5 # ObjNames - The objects available in that directory.
33 # Construct the variable key for this directory.
68 # Restore directory variable, for cleanliness.
H A Dlib_util.mk16 # Choose the appropriate implementation directory to use for 'function-name' in
H A Dlib_platforms.mk20 # Construct the variable key for this directory.
/frameworks/base/media/java/android/media/
H A DMiniThumbFile.java105 File directory = new File(path).getParentFile();
106 if (!directory.isDirectory()) {
107 if (!directory.mkdirs()) {
108 Log.e(TAG, "Unable to create .thumbnails directory "
109 + directory.toString());
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css524 .directory {
530 .directory h3 {
544 .directory h3.swap {
549 .directory h3.swap span {
554 .directory > h3 {
558 .directory p {
563 .directory div {
568 .directory img {
574 .directory-alt {
579 .directory
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DVideoEditorHelper.java69 * @param projectPath the directory where all files related to project will
440 * This method recursively deletes all the file and directory
442 * @param directory where the files are located Example = "/sdcard/Input"
445 public boolean deleteProject(File directory) { argument
446 Log.i(TAG, ">>>>>>>>>>>>>>>>>>>>>>>>deleteProject directory= " +
447 directory.toString());
448 if (directory.isDirectory()) {
449 String[] filesInDirecory = directory.list();
451 boolean success = deleteProject(new File(directory,
458 return directory
[all...]
/frameworks/base/media/mca/filterfw/native/
H A Dlibfilterfw.mk31 # Finally, add this directory
/frameworks/base/core/java/android/webkit/
H A DPluginManager.java101 * directory contents of one of the plugin directories has been modified and
151 * stored in the app's data directory.
153 String directory = pkgInfo.applicationInfo.dataDir + "/lib";
159 directory = PLUGIN_SYSTEM_LIB + pkgInfo.packageName;
201 directories.add(directory);
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfoSource.java152 * add them to the respective sets. Searches the package in a class directory.
158 File directory = new File(classDir, pathPrefix);
160 if (directory.exists()) {
161 for (File f : directory.listFiles()) {
260 // the directory that the class is in. Used to quickly skip jar files
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java228 final File directory = new File(path);
229 if (directory.exists() && directory.isDirectory()) {
254 final File directory = new File(path);
255 if (directory.exists() && directory.isDirectory()) {
256 eraseFiles(directory);
388 Slog.e(TAG, "Could not create native lib directory: " + sharedLibraryDir.getPath());
473 * window where the package directory scanner notices the new
824 * real FAT size. Your FAT size varies with how many directory entrie
[all...]
/frameworks/base/core/tests/coretests/
H A DAndroid.mk36 # Rules to copy all the test apks to the intermediate raw resource directory
/frameworks/compile/mclinker/lib/Support/Unix/
H A DPathV3.inc214 // find a new directory
244 llvm::report_fatal_error(std::string("Can't read directory: ")+
255 errno = 0; // opendir() will set errno if it failed to open directory.
263 // find a new directory
276 llvm::report_fatal_error(std::string("Can't read directory: ")+
/frameworks/ex/carousel/
H A DAndroid.mk29 # Include this library in the build server's output directory
/frameworks/ex/common/
H A DAndroid.mk28 # Include this library in the build server's output directory
/frameworks/support/v13/
H A DAndroid.mk45 # Include this library in the build server's output directory
/frameworks/support/v7/
H A DAndroid.mk39 # Include this library in the build server's output directory
/frameworks/base/tests/CoreTests/android/core/
H A DSSLSocketTest.java1059 private static void deleteDir(File directory) { argument
1060 if (!directory.exists()) {
1063 for (File file : directory.listFiles()) {
1066 directory.delete();
/frameworks/support/v4/
H A DAndroid.mk108 # Include this library in the build server's output directory

Completed in 481 milliseconds

12