Searched refs:file (Results 201 - 225 of 353) sorted by relevance

1234567891011>>

/frameworks/support/v7/gridlayout/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/testing/androidtestlib/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/testing/androidtestlib/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
H A DTracer.java5 * you may not use this file except in compliance with the License.
47 * logcat, log file or both.
66 public FileSink(File file) throws FileNotFoundException { argument
67 mOut = new PrintWriter(file);
113 * Sets where the trace output will go. Can be either be logcat or a file or
126 "attempting write trace to a file");
137 "attempting write trace to a file");
145 Log.w("Tracer", "Could not open log file: " + e.getMessage());
157 * Sets the name of the log file where tracing output will be written if the
158 * tracer is set to write to a file
[all...]
/frameworks/testing/uiautomator/samples/SkeletonTest/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/uiautomator/samples/SkeletonTest/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/uiautomator/src/com/android/uiautomator/core/
H A DTracer.java5 * you may not use this file except in compliance with the License.
47 * logcat, log file or both.
66 public FileSink(File file) throws FileNotFoundException { argument
67 mOut = new PrintWriter(file);
113 * Sets where the trace output will go. Can be either be logcat or a file or
126 "attempting write trace to a file");
137 "attempting write trace to a file");
145 Log.w("Tracer", "Could not open log file: " + e.getMessage());
157 * Sets the name of the log file where tracing output will be written if the
158 * tracer is set to write to a file
[all...]
/frameworks/uiautomator/tests/CtsUiAutomatorTest/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/uiautomator/tests/CtsUiAutomatorTest/testapp/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/av/include/media/stagefright/
H A DMediaCodecList.h5 * you may not use this file except in compliance with the License.
86 void parseXMLFile(FILE *file);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdClearMbLayer.s5 ; you may not use this file except in compliance with the License.
H A Dh264bsdFlushBits.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 Dh264bsdClearMbLayer.S5 @ you may not use this file except in compliance with the License.
H A Dh264bsdFlushBits.S5 @ you may not use this file except in compliance with the License.
/frameworks/base/include/androidfw/
H A DBackupHelpers.h5 * you may not use this file except in compliance with the License.
53 String8 file; member in struct:android::FileRec
74 /* Note: WriteEntityData will write arbitrary data into the file without
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp5 * you may not use this file except in compliance with the License.
49 * - the file data itself
51 * i.e. a 16-byte metadata header followed by the raw file data. If the
53 * interpret the file data itself correctly.
108 FileState file; local
111 amt = read(fd, &file, sizeof(FileState));
119 int nameBufSize = round_up(file.nameLen);
125 snapshot->add(String8(filename, file.nameLen), file); local
245 // store the file metadat
350 char const* file = files[i]; local
[all...]
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsRecorder.java5 * you may not use this file except in compliance with the License.
340 public void importLegacyNetworkLocked(File file) throws IOException { argument
341 // legacy file still exists; start empty to avoid double importing
345 collection.readLegacyNetwork(file);
351 // process legacy data, creating active file at starting time, then
358 public void importLegacyUidLocked(File file) throws IOException { argument
359 // legacy file still exists; start empty to avoid double importing
363 collection.readLegacyUid(file, mOnlyTags);
369 // process legacy data, creating active file at starting time, then
H A DNetworkStatsService.java5 * you may not use this file except in compliance with the License.
396 File file;
398 file = new File(mSystemDir, "netstats.bin");
399 if (file.exists()) {
400 mDevRecorder.importLegacyNetworkLocked(file);
401 file.delete();
404 file = new File(mSystemDir, "netstats_xt.bin");
405 if (file.exists()) {
406 file.delete();
409 file
[all...]
/frameworks/base/tests/backup/
H A Dtest_restore.sh6 # you may not use this file except in compliance with the License.
39 # return 0 if file exists, 1 otherwise
82 check_file files/file.txt "first file" || need_bug=1
/frameworks/base/core/java/android/app/
H A DNativeActivity.java5 * you may not use this file except in compliance with the License.
188 private static String getAbsolutePath(File file) { argument
189 return (file != null) ? file.getAbsolutePath() : null;
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java5 * you may not use this file except in compliance with the License.
57 /** Flag value for serialization only: Value is a byte array, not a file descriptor */
155 * Create a new Entry with the contents read from a file.
156 * The file will be read when the entry's contents are requested.
288 * Stores the contents of a file, which may be ignored or discarded as with
292 * @param file to read from
294 * @throws IOException if the file can't be opened
296 public void addFile(String tag, File file, int flags) throws IOException { argument
297 if (file == null) throw new NullPointerException("file
[all...]
/frameworks/base/media/java/android/media/videoeditor/
H A DAudioTrack.java5 * you may not use this file except in compliance with the License.
27 * This class allows to handle an audio track. This audio file is mixed with the
83 * @param filename The absolute file name
85 * @throws IOException if file is not found
86 * @throws IllegalArgumentException if file format is not supported or if
100 * @param filename The audio filename. In case file contains Audio and Video,
116 * @param audioWaveformFilename The name of the waveform file
118 * @throws IOException if file is not found
119 * @throws IllegalArgumentException if file format is not supported or if
130 File file
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/net/
H A DNetworkStatsCollectionTest.java5 * you may not use this file except in compliance with the License.
158 private void stageFile(int rawId, File file) throws Exception { argument
159 new File(file.getParent()).mkdirs();
164 out = new FileOutputStream(file);
/frameworks/base/test-runner/src/junit/runner/
H A DTestCaseClassLoader.java17 * a properties file "excluded.properties" that is located in
33 /** name of excluded properties file */
133 File file= new File(path, fileName);
134 if (file.exists()) {
135 return getClassData(file);
/frameworks/base/core/java/android/content/res/
H A DResources.java5 * you may not use this file except in compliance with the License.
1026 * with resources whose value is the name of an asset file -- that is, it can be
1052 * Open a file descriptor for reading a raw resource. This can only be used
1064 * @return AssetFileDescriptor A new file descriptor you can use to read
1065 * the resource. This includes the file descriptor itself, as well as the
1066 * offset and length of data where the resource appears in the file. A
1067 * null is returned if the file exists but is compressed.
1369 // out the attributes from the XML file (applying type information
1494 // out the attributes from the XML file (applying type information
1836 * an XML file
2320 loadXmlResourceParser(String file, int id, int assetCookie, String type) argument
[all...]

Completed in 628 milliseconds

1234567891011>>