Searched refs:files (Results 226 - 250 of 258) sorted by relevance

1234567891011

/frameworks/opt/inputmethodcommon/
H A DAndroid.mk21 $(call all-java-files-under, java)
/frameworks/opt/telephony/
H A DAndroid.mk25 LOCAL_SRC_FILES += $(call all-java-files-under, src/java)
/frameworks/opt/vcard/
H A DAndroid.mk22 LOCAL_SRC_FILES := $(call all-java-files-under, java)
/frameworks/opt/vcard/tests/
H A DAndroid.mk21 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/frameworks/testing/androidtestlib/
H A DAndroid.mk20 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/frameworks/testing/androidtestlib/tests/
H A DAndroid.mk22 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/frameworks/testing/uiautomator/samples/SkeletonTest/
H A DAndroid.mk20 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/frameworks/base/include/androidfw/
H A DBackupHelpers.h135 char const* const* files, char const* const *keys, int fileCount);
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfoSource.java122 // scan the directories that contain apk files.
141 File[] files = source.listFiles();
142 if (files != null) {
143 for (File file : files) {
260 // the directory that the class is in. Used to quickly skip jar files
266 // JAR files that contains subpackages of a given package, even if
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DFsUtils.java67 String[] files = d.list();
68 for (int i = 0; i < files.length; i++) {
69 String s = dir + "/" + files[i];
/frameworks/base/core/tests/overlaytests/
H A Druntests.sh27 ONE_SHOT_MAKEFILE="$android_mk" make -C "../../../../../" files | tee -a $log
/frameworks/testing/uiautomator/library/
H A DAndroid.mk19 uiautomator.core_src_files := $(call all-java-files-under, src)
32 # Generate the stub source files
56 # Build the stub source files into a jar.
62 # Make sure to run droiddoc first to generate the stub source files.
/frameworks/compile/libbcc/tests/
H A Dtest.py95 for root, dirs, files in os.walk("data"):
98 for f in files:
/frameworks/compile/slang/
H A DSlangData.mk16 # Common definitions used for building RS header files.
/frameworks/base/cmds/installd/
H A Dutils.c437 ALOGI("Collected cache so far: %d directories, %d files",
486 cache_file_t** newFiles = (cache_file_t**)_cache_realloc(cache, cache->files,
493 cache->files = newFiles;
496 cache->numFiles, cache->files));
497 cache->files[cache->numFiles] = file;
574 // Skip files that start with '.'; they will be deleted if
657 CACHE_NOISY(ALOGI("Adding cache files from dir: %s\n", dirname));
699 // The directory contains hidden files so we need to delete
711 // This is a root directory, but it has hidden files. Get rid of
712 // all of those files, bu
[all...]
H A Dinstalld.h124 cache_file_t** files; member in struct:__anon951
/frameworks/base/
H A DAndroid.mk34 LOCAL_SRC_FILES := $(call find-other-java-files,$(FRAMEWORKS_BASE_SUBDIRS))
36 # EventLogTags files.
52 ## When updating this list of aidl files, consider if that aidl is
55 ## not contain any aidl files for parcelables, but the one below should
263 # AIDL files to be preprocessed and included in the SDK,
375 $(call find-other-html-files, $(html_dirs)) \
381 $(call find-other-java-files, $(dirs_to_document)) \
386 $(call find-other-java-files, $(dirs_to_check_apis)) \
389 # This is used by ide.mk as the list of source files that are
716 $(call all-java-files
[all...]
/frameworks/base/services/java/com/android/server/
H A DThrottleService.java952 File[] files = dir.listFiles();
954 if (files == null || files.length <= MAX_SIMS_SUPPORTED) return;
955 if (DBG) Slog.d(TAG, "Too many data files");
958 for (File f : files) {
966 files = dir.listFiles();
967 } while (files.length > MAX_SIMS_SUPPORTED);
972 File[] files = dir.listFiles();
974 if (files != null) {
975 for (File f : files) {
[all...]
/frameworks/rs/
H A DAndroid.mk110 # Generate custom source files
201 # Generate custom source files
/frameworks/base/libs/androidfw/
H A DAndroid.mk18 # These files are common to host and target builds.
/frameworks/base/tests/DumpRenderTree/assets/
H A Drun_layout_tests.py67 """ Given two result files, generate diff and
69 to files.
130 files=["crashed", "failed", "passed", "nontext"]
131 for f in files:
143 args: a list of sub directories or files to test
/frameworks/compile/libbcc/runtime/make/
H A Dsubdir.mk8 # Dependencies - Any dependences for the object files.
/frameworks/support/renderscript/v8/rs_support/
H A DAndroid.mk56 # Generate custom source files
/frameworks/base/tools/aapt/
H A DResource.cpp4 // Build resource files from raw assets.
202 fprintf(stderr, "warning: Multiple AndroidManifest.xml files found, using %s\n",
386 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files local
389 if (files.size() == 0) {
393 String8 resType = files.valueAt(0)->getResourceType();
414 for (size_t j=0; j<files.size(); j++) {
416 files.valueAt(j)->getSourceFile().string(),
417 files.keyAt(j).toDirName(String8()).string(),
419 status_t err = existingGroup->addFile(files.valueAt(j));
575 // Replace any base level files i
2545 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files = group->getFiles(); local
2609 writePathsToFile(const sp<FilePathStore>& files, FILE* fp) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DAppCacheTest.java133 //this should free up the test files that were created earlier
382 //introduce sleep for 1 s to avoid common time stamps for files being created
391 List<String> files = new ArrayList<String>();
395 files.add(file1.getName());
398 if (files.size() > 0) {
400 + Arrays.toString(files.toArray(new String[files.size()])));
432 //introduce sleep for 10 ms to avoid common time stamps for files being created
544 //confirm files dont exist
651 if(localLOGV || TRACKING) Log.i(TAG, "Available blocks after writing test files i
[all...]

Completed in 2350 milliseconds

1234567891011