Searched refs:file (Results 151 - 175 of 412) sorted by relevance

1234567891011>>

/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp6 ** you may not use this file except in compliance with the License.
490 String8 file(file8);
529 int fd = open(file.string(), O_RDONLY);
538 ALOGW("Unable to read %s", file.string());
580 ALOGW("Unable to open %s", file.string());
588 jstring file, jintArray lastArray)
590 if (file == NULL) {
595 const char* file8 = env->GetStringUTFChars(file, NULL);
603 env->ReleaseStringUTFChars(file, file8);
815 jstring file, jintArra
587 android_os_Process_getPids(JNIEnv* env, jobject clazz, jstring file, jintArray lastArray) argument
814 android_os_Process_readProcFile(JNIEnv* env, jobject clazz, jstring file, jintArray format, jobjectArray outStrings, jlongArray outLongs, jfloatArray outFloats) argument
898 FILE * file = fopen(filename, "r"); local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdCountLeadingZeros.s5 ; you may not use this file except in compliance with the License.
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdCountLeadingZeros.S5 @ you may not use this file except in compliance with the License.
/frameworks/av/services/audioflinger/
H A DPatchPanel.h6 ** you may not use this file except in compliance with the License.
19 #error This header file should only be included from AudioFlinger.h
/frameworks/base/core/java/android/app/
H A DDownloadManager.java5 * you may not use this file except in compliance with the License.
45 * request that a URI be downloaded to a particular destination file. The download manager will
86 * Internet Media Type of the downloaded file. If no value is provided upon creation, this will
101 * Uri where downloaded file will be stored. If a destination is supplied by client, that URI
108 * The pathname of the file where the download is stored.
233 * Value of {@link #COLUMN_REASON} when the requested destination file already exists (the
234 * download manager will not overwrite an existing file).
342 * your file if it needs to reclaim space for system use. If this is a problem, use a location
377 /** if a file is designated as a MediaScanner scannable file, th
[all...]
/frameworks/base/libs/hwui/
H A DDrawProfiler.cpp5 * you may not use this file except in compliance with the License.
242 FILE *file = fdopen(fd, "a"); local
243 fprintf(file, "\n\tDraw\tPrepare\tProcess\tExecute\n");
250 fprintf(file, "\t%3.2f\t%3.2f\t%3.2f\t%3.2f\n",
257 fflush(file);
/frameworks/base/services/core/java/com/android/server/updates/
H A DConfigUpdateInstallReceiver.java5 * you may not use this file except in compliance with the License.
229 protected void writeUpdate(File dir, File file, byte[] content) throws IOException { argument
233 // create the parents for the destination file
234 File parent = file.getParentFile();
240 // create the temporary file
250 if (!tmp.renameTo(file)) {
251 throw new IOException("Failed to atomically rename " + file.getCanonicalPath());
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfoSource.java5 * you may not use this file except in compliance with the License.
58 // A cache of jar file contents
124 File file = new File(apkPath);
125 scanForApkFiles(file, packageName, classNames, subpackageNames);
143 for (File file : files) {
144 scanForApkFiles(file, packageName, classNames, subpackageNames);
174 * add them to the respective sets. Searches the package in a single jar file.
204 * add them to the respective sets. Searches the package in a single apk file.
285 * Checks if a given file name represents a toplevel class.
292 * Given the absolute path of a class file, retur
[all...]
/frameworks/compile/mclinker/include/mcld/Script/
H A DInputSectDesc.h5 // This file is distributed under the University of Illinois Open Source
36 const WildcardPattern& file() const { function in struct:mcld::InputSectDesc::Spec
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp5 ** you may not use this file except in compliance with the License.
105 FILE * file = fopen(procPath, "r"); local
106 if (file) {
108 char *str = fgets(cmdline, sizeof(cmdline) - 1, file);
109 fclose(file);
H A Degl.cpp5 ** you may not use this file except in compliance with the License.
141 FILE * file = fopen("/proc/self/cmdline", "r"); local
142 if (file) {
144 if (fgets(cmdline, sizeof(cmdline), file)) {
151 fclose(file);
/frameworks/rs/
H A DrsContext.h5 * you may not use this file except in compliance with the License.
193 void setWatchdogGL(const char *cmd, uint32_t line, const char *file) const {
195 watchdog.file = file;
231 const char *file; member in struct:android::renderscript::Context::__anon1499
H A DrsFileA3D.cpp6 * you may not use this file except in compliance with the License.
150 // We should know enough to read the file in at this point.
161 ALOGV("file open 1");
197 ALOGV("file open size = %" PRIi64, mDataSize);
199 // We should know enough to read the file in at this point.
316 ALOGE("Couldn't open the file for writing\n");
343 // Write our magic string so we know we are reading the right file
353 // Now write the size of the data part of the file for easier parsing later
362 ALOGE("Couldn't close file\n");
388 RsObjectBase rsaFileA3DGetEntryByIndex(RsContext con, uint32_t index, RsFile file) { argument
402 rsaFileA3DGetNumIndexEntries(RsContext con, int32_t *numEntries, RsFile file) argument
412 rsaFileA3DGetIndexEntries(RsContext con, RsFileIndexEntry *fileEntries, uint32_t numEntries, RsFile file) argument
[all...]
/frameworks/base/core/java/android/os/
H A DParcelFileDescriptor.java5 * you may not use this file except in compliance with the License.
94 * this file doesn't already exist, then create the file with permissions
103 * a file, such as when it goes through a backup and restore.
110 * this file doesn't already exist, then create the file with permissions
119 * a file, such as when it goes through a backup and restore.
125 * For use with {@link #open}: open the file with read-only access.
130 * For use with {@link #open}: open the file with write-only access.
135 * For use with {@link #open}: open the file wit
198 open(File file, int mode) argument
223 open( File file, int mode, Handler handler, OnCloseListener listener) argument
246 openInternal(File file, int mode) argument
[all...]
/frameworks/multidex/library/src/android/support/multidex/
H A DMultiDexExtractor.java5 * you may not use this file except in compliance with the License.
124 Log.i(TAG, "Invalid zip file: " + extractedFile);
125 throw new IOException("Invalid ZIP file.");
128 throw new IOException("Missing extracted secondary dex file '" +
167 // contains a secondary dex file in there is not consistent with the latest apk. Otherwise,
185 Log.i(TAG, "Extraction is needed for file " + extractedFile);
191 // Create a zip file (extractedFile) containing only the secondary dex file
195 // Verify that the extracted file is indeed a zip file
325 verifyZipFile(File file) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerSession.java5 * you may not use this file except in compliance with the License.
580 for (File file : files) {
584 if (file.isDirectory()) continue;
588 apk = PackageParser.parseApkLite(file, PackageParser.PARSE_COLLECT_CERTIFICATES);
607 assertApkConsistent(String.valueOf(file), apk);
622 if (!file.equals(targetFile)) {
623 file.renameTo(targetFile);
712 for (File file : mResolvedStagedFiles) {
713 if (mResolvedBaseFile.equals(file)) continue;
714 splitPaths.add(file
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DAssetAtlasService.java5 * you may not use this file except in compliance with the License.
442 * Returns the path to the file containing the best computed
484 * Writes the specified atlas configuration to the specified file.
486 private void writeConfiguration(Configuration config, File file, String versionName) { argument
489 writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file)));
503 Log.w(LOG_TAG, "Could not write " + file, e);
505 Log.w(LOG_TAG, "Could not write " + file, e);
518 * Reads an atlas configuration from the specified file. This method
521 private Configuration readConfiguration(File file, String versionName) { argument
525 reader = new BufferedReader(new InputStreamReader(new FileInputStream(file)));
[all...]
/frameworks/av/camera/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/av/cmds/screenrecord/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/av/media/libeffects/proxy/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/av/services/soundtrigger/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/av/soundtrigger/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/base/cmds/idmap/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java5 * you may not use this file except in compliance with the License.
52 * and provide the name of its backup agent class in its {@code AndroidManifest.xml} file via
98 * suited to handling of simple file or {@link android.content.SharedPreferences}
114 * During a full restore, indicates that the file system object being restored
115 * is an ordinary file.
120 * During a full restore, indicates that the file system object being restored
184 * last backup pass is provided in the <code>oldState</code> file
188 * be written to the file pointed to by the file descriptor wrapped in
203 * file descripto
349 fullBackupFile(File file, FullBackupDataOutput output) argument
[all...]
/frameworks/base/core/tests/ConnectivityManagerTest/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.

Completed in 709 milliseconds

1234567891011>>