Searched refs:file (Results 251 - 275 of 339) sorted by relevance

<<11121314

/frameworks/compile/libbcc/lib/Support/
H A DFileBase.cpp5 * you may not use this file except in compliance with the License.
19 #include <sys/file.h>
51 // Open the file.
63 // FIXME: Hard-coded permissions (0644) for newly created file should be
81 // Check the file integrity by examining whether the inode referring to the mFD
82 // and to the file mName are the same.
85 // Get the file status of file descriptor mFD.
95 // Get the file status of file mNam
[all...]
/frameworks/compile/llvm-ndk-cc/tests/
H A Dtest.py36 """Run test on each file in directory."""
180 print('Invalid test or options: {0}'.format(Arg), file=sys.stderr)
/frameworks/compile/mclinker/include/mcld/LD/
H A DArchive.h5 // This file is distributed under the University of Illinois Open Source
40 static const char PAD[]; ///< inter-file align padding
45 char name[16]; ///< Name of the file member.
49 char mode[8]; ///< file mode in ASCII octal
50 char size[10]; ///< file size in ASCII decimal
86 Input* file; member in struct:mcld::Archive::ArchiveMember
133 /// getARFile - get the Input& of the archive file
136 /// getARFile - get the Input& of the archive file
155 /// @param pFileOffset - file offset in symtab represents a object file
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DArchive.cpp5 // This file is distributed under the University of Illinois Open Source
38 /// getARFile - get the Input& of the archive file
44 /// getARFile - get the Input& of the archive file
81 /// @param pFileOffset - file offset in symtab represents a object file
92 /// hasObjectMember - check if a object file is included or not
93 /// @param pFileOffset - file offset in symtab represents a object file
125 ar.file = *pLastPos;
132 /// hasArchiveMember - check if an archive file i
[all...]
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DGLES10ExtcHeader.cpp5 ** you may not use this file except in compliance with the License.
17 // This source file is automatically generated
H A DGLES10cHeader.cpp5 ** you may not use this file except in compliance with the License.
17 // This source file is automatically generated
H A DGLES11ExtcHeader.cpp5 ** you may not use this file except in compliance with the License.
17 // This source file is automatically generated
H A DGLES11cHeader.cpp5 ** you may not use this file except in compliance with the License.
17 // This source file is automatically generated
H A DGLES20cHeader.cpp5 ** you may not use this file except in compliance with the License.
17 // This source file is automatically generated
/frameworks/support/renderscript/v8/rs_support/
H A DrsContext.h5 * you may not use this file except in compliance with the License.
135 const char *file; member in struct:android::renderscript::Context::__anon1573
/frameworks/base/media/java/android/media/
H A DMediaScanner.java5 * you may not use this file except in compliance with the License.
77 * native MyMediaScannerClient.scanFile() for every file whose extension matches.
82 * file: parseMP3, parseMP4, parseMidi, parseOgg or parseWMA.
83 * - each of these methods gets metadata key/value pairs from the file, and repeatedly
85 * counterparts in this file.
346 // set to true if file path comparisons should be case insensitive.
347 // this should be set when scanning files on a case insensitive file system.
435 private boolean mNoMedia; // flag to suppress file from appearing in media tables
456 // if mimeType was not specified, compute file type based on file extensio
[all...]
H A DMediaPlayer.java5 * you may not use this file except in compliance with the License.
869 if(scheme == null || scheme.equals("file")) {
883 // a full file.
898 Log.d(TAG, "Couldn't open file on client side, trying server side");
904 * Sets the data source (file-path or http/rtsp URL) to use.
906 * @param path the path of the file, or the http/rtsp URL of the stream you want to play
909 * <p>When <code>path</code> refers to a local file, the file may actually be opened by a
912 * directory), and that the pathname should reference a world-readable file.
913 * As an alternative, the application could first open the file fo
[all...]
/frameworks/base/libs/androidfw/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/base/tests/DumpRenderTree/assets/
H A Drun_layout_tests.py40 """Compute the number of lines in a given file.
43 filename: a file name related to the current directory.
68 write to diff_results file. All arguments are absolute paths
75 # Read lines from each file
79 # Write marker to diff file
251 for file in result_files:
252 shell_cmd_str = adb_cmd + " pull " + file + " " + results_dir
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLoadTestsAutoTest.java5 * you may not use this file except in compliance with the License.
63 public void passOrFailCallback(String file, boolean result) { argument
66 bundle.putBoolean(file, result);
/frameworks/compile/libbcc/runtime/make/platform/
H A Ddarwin_fat.mk6 # multiple libraries inside a single configuration file (for
/frameworks/compile/libbcc/runtime/make/
H A Dsubdir.mk1 # This file is intended to be included from each subdirectory makefile.
/frameworks/native/libs/utils/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/native/opengl/tests/hwc/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/base/tools/aapt/
H A DXMLNode.cpp522 status_t parseXMLResource(const sp<AaptFile>& file, ResXMLTree* outTree, argument
526 sp<XMLNode> root = XMLNode::parse(file);
532 NOISY(printf("Input XML from %s:\n", (const char*)file->getPrintableSource()));
550 sp<XMLNode> XMLNode::parse(const sp<AaptFile>& file) argument
553 int fd = open(file->getSourceFile().string(), O_RDONLY | O_BINARY);
555 SourcePos(file->getSourceFile(), -1).error("Unable to open file for read: %s",
562 state.filename = file->getPrintableSource();
576 SourcePos(file->getSourceFile(), -1).error("Error reading file
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DProcessStats.java5 * you may not use this file except in compliance with the License.
565 String file = readFile("/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state", '\0');
566 // Note: file may be null on kernels without cpufreq (i.e. the emulator's)
567 if (file != null) {
568 StringTokenizer st = new StringTokenizer(file, "\n ");
804 private String readFile(String file, char endChar) { argument
811 is = new FileInputStream(file);
/frameworks/base/drm/java/android/drm/
H A DDrmManagerClient.java5 * you may not use this file except in compliance with the License.
439 * @param engineFilePath File path to the plug-in file to be installed.
594 File file = new File(path);
595 if (file.exists()) {
596 is = new FileInputStream(file);
728 * with this method each time it downloads a rights-protected file that needs to be converted.
744 * Converts the input data (content) that is part of a rights-protected file. The converted
767 * signature is necessary to protect the integrity of the converted file.
807 * file://sdcard/test.mp4
/frameworks/av/media/libstagefright/chromium_http/
H A Dsupport.cpp5 * you may not use this file except in compliance with the License.
52 const char* file,
73 "%s:%d: %s", file, line, str.c_str());
50 logMessageHandler( int severity, const char* file, int line, size_t message_start, const std::string& str) argument
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerTestApp.java5 * you may not use this file except in compliance with the License.
50 private static final String FILE_CONCURRENT_DOWNLOAD_FILE_PREFIX = "file";
86 * Gets the external URL of the file to download
88 * @return the Uri of the external file to download
90 private Uri getExternalFileUri(String file) { argument
91 return Uri.parse(externalDownloadUriValue + file);
95 * Gets the path to the file that flags that a download has started. The file contains the
98 * @return The path of the file tracking that a download has started
124 * download ID for this download to a file
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java5 * you may not use this file except in compliance with the License.
191 public SQLiteDatabase openOrCreateDatabase(String file, int mode, argument
197 public SQLiteDatabase openOrCreateDatabase(String file, int mode, argument

Completed in 323 milliseconds

<<11121314