/build/core/combo/ |
HOST_linux-x86.mk | 5 # you may not use this file except in compliance with the License. 59 # $(1): The file to check 60 define get-file-size
|
HOST_windows-x86.mk | 5 # you may not use this file except in compliance with the License. 82 # $(1): The file to check 84 define get-file-size
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_eu_debug.c | 39 static const char *file[] = { local 61 if (hwreg.file == BRW_GENERAL_REGISTER_FILE && 71 else if (hwreg.file == BRW_GENERAL_REGISTER_FILE && 79 else if (hwreg.file == BRW_IMMEDIATE_VALUE) { 84 file[hwreg.file],
|
/external/chromium_org/tools/gyp/test/rules-use-built-dependencies/src/ |
main.cc | 3 // found in the LICENSE file. 10 FILE* file; local 11 file = fopen(argv[1], "wb"); 13 fwrite(output, 1, sizeof(output) - 1, file); 14 fclose(file);
|
/external/elfutils/0.153/libdwfl/ |
dwfl_lineinfo.c | 3 This file is part of Red Hat elfutils. 25 those well defined interfaces identified in the file named EXCEPTION 36 covered by this exception. If you modify this file, you may extend this 37 exception to your version of the file, but you are not obligated to do 40 this file solely under the GPL without exception. 70 struct Dwarf_Fileinfo_s *file = &info->files->info[info->file]; local 72 *mtime = file->mtime; 74 *length = file->length; 75 return file->name [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_eu_debug.c | 39 static const char *file[] = { local 61 if (hwreg.file == BRW_GENERAL_REGISTER_FILE && 71 else if (hwreg.file == BRW_GENERAL_REGISTER_FILE && 79 else if (hwreg.file == BRW_IMMEDIATE_VALUE) { 84 file[hwreg.file],
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
FileEntry.cpp | 34 #include "core/fileapi/File.h" 52 void FileEntry::file(FileCallback* successCallback, ErrorCallback* errorCallback) function in class:blink::FileEntry
|
FileEntrySync.cpp | 35 #include "core/fileapi/File.h" 45 PassRefPtrWillBeRawPtr<File> FileEntrySync::file(ExceptionState& exceptionState) function in class:blink::FileEntrySync
|
DOMFileSystemBaseTest.cpp | 3 // found in the LICENSE file. 8 #include "core/fileapi/File.h" 36 RefPtrWillBeRawPtr<File> file = DOMFileSystemBase::createFile(m_fileMetadata, rootUrl, FileSystemTypeExternal, "DOMFileSystemBaseTest.cpp"); local 37 EXPECT_TRUE(file); 38 EXPECT_TRUE(file->hasBackingFile()); 39 EXPECT_EQ(File::IsUserVisible, file->userVisibility()); 40 EXPECT_EQ("DOMFileSystemBaseTest.cpp", file->name()); 41 EXPECT_EQ(m_filePath, file->path()) 48 RefPtrWillBeRawPtr<File> file = DOMFileSystemBase::createFile(m_fileMetadata, rootUrl, FileSystemTypeTemporary, "UserVisibleName.txt"); local 60 RefPtrWillBeRawPtr<File> file = DOMFileSystemBase::createFile(m_fileMetadata, rootUrl, FileSystemTypePersistent, "UserVisibleName.txt"); local [all...] |
/external/chromium_org/tools/gyp/test/standalone/ |
gyptest-standalone.py | 5 # found in the LICENSE file. 20 # of them reference the gyp file. 22 for file in files: 24 if os.path.splitext(__file__)[0] in file: 26 file = os.path.join(root, file) variable 27 contents = open(file).read() 29 print 'gyp file referenced in generated output: %s' % file
|
/external/nanopb-c/tests/basic_stream/ |
encode_stream.c | 12 FILE *file = (FILE*) stream->state; local 13 return fwrite(buf, 1, count, file) == count;
|
/cts/tests/tests/net/src/android/net/cts/ |
VpnServiceTest.java | 5 * you may not use this file except in compliance with the License. 23 import java.io.File; 112 File file = new File("/dev/tun"); local 113 assertTrue(file.exists()); 114 assertFalse(file.isFile()); 115 assertFalse(file.isDirectory()); 116 assertFalse(file.canExecute()); 117 assertFalse(file.canRead()) [all...] |
/art/runtime/base/unix_file/ |
fd_file_test.cc | 5 * you may not use this file except in compliance with the License. 44 FdFile file; local 45 EXPECT_EQ(-1, file.Fd()); 46 EXPECT_FALSE(file.IsOpened()); 47 EXPECT_TRUE(file.GetPath().empty()); 51 std::string good_path(GetTmpPath("some-file.txt")); 52 FdFile file; local 53 ASSERT_TRUE(file.Open(good_path, O_CREAT | O_WRONLY)); 54 EXPECT_GE(file.Fd(), 0); 55 EXPECT_TRUE(file.IsOpened()) 71 FdFile file; local [all...] |
/cts/libs/vogar-expect/src/vogar/commands/ |
Rm.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 26 public void file(File file) { method in class:Rm 27 new Command("rm", "-f", file.getPath()).execute(); 30 public void directoryTree(File directory) {
|
/external/chromium_org/chrome/common/safe_browsing/ |
zip_analyzer.cc | 3 // found in the LICENSE file. 14 void AnalyzeZipFile(base::File zip_file, Results* results) { 20 VLOG(1) << "Failed to open zip file"; 31 VLOG(1) << "Failed to open current entry in zip file"; 34 const base::FilePath& file = reader.current_entry_info()->file_path(); local 35 if (download_protection_util::IsBinaryFile(file)) { 38 if (download_protection_util::IsArchiveFile(file)) { 41 VLOG(2) << "Downloaded a zipped executable: " << file.value(); 46 VLOG(3) << "Ignoring non-binary file: " << file.value() [all...] |
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/ |
fs.cc | 3 // found in the LICENSE file. 8 // This file contains the tests used to verify the security of the file system. 10 // Tries to open a file and outputs the result. 13 void TryOpenFile(const wchar_t *path, FILE *output) { 21 HANDLE file; local 22 file = ::CreateFile(path_expanded, 30 if (file && INVALID_HANDLE_VALUE != file) { 31 fprintf(output, "[GRANTED] Opening file \"%S\". Handle 0x%p\r\n", path [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
V8FileCustom.cpp | 41 ExceptionState exceptionState(ExceptionState::ConstructionContext, "File", info.Holder(), info.GetIsolate()); 66 if (!properties.parseBlobPropertyBag(info[2], "File", exceptionState, info.GetIsolate())) { 81 RefPtrWillBeRawPtr<File> file = File::create(fileName, properties.lastModified(), BlobDataHandle::create(blobData.release(), fileSize)); local 82 v8SetReturnValue(info, file.release());
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
InfoSink.cpp | 4 // found in the LICENSE file. 34 void TInfoSinkBase::location(int file, int line) { 37 stream << file << ":" << line; 39 stream << file << ":? "; local
|
/external/chromium_org/third_party/libvpx/source/libvpx/ |
vpxstats.h | 5 * that can be found in the LICENSE file in the root of the source 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 28 FILE *file; member in struct:__anon17855
|
/external/droiddriver/src/com/google/android/droiddriver/util/ |
FileUtils.java | 5 * you may not use this file except in compliance with the License. 24 import java.io.File; 33 * Opens file at {@code path} to output. If any directories on {@code path} do 34 * not exist, they will be created. The file will be readable and writable to 38 File file = getAbsoluteFile(path); local 40 Logs.log(Log.INFO, "opening file " + file.getAbsolutePath()); 41 BufferedOutputStream stream = new BufferedOutputStream(new FileOutputStream(file)); 42 file.setReadable(true /* readable */, false/* ownerOnly */) 55 File file = new File(path); local [all...] |
/external/iproute2/tc/ |
tc_monitor.c | 40 FILE *fp = (FILE*)arg; 70 char *file = NULL; local 74 if (matches(*argv, "file") == 0) { 76 file = *argv; 88 if (file) { 89 FILE *fp; 90 fp = fopen(file, "r");
|
/external/junit/src/org/junit/rules/ |
TemporaryFolder.java | 3 import java.io.File; 20 * File createdFile= folder.newFile("myfile.txt"); 21 * File createdFolder= folder.newFolder("subfolder"); 28 private File folder; 49 * Returns a new fresh file with the given name under the temporary folder. 51 public File newFile(String fileName) throws IOException { 52 File file= new File(getRoot(), fileName); local 53 file.createNewFile() 68 File file = getRoot(); local [all...] |
/external/libmtp/examples/ |
getfile.c | 2 * \file getfile.c 3 * Example program to retrieve a file off the device. 48 printf("\nError getting file from MTP device.\n"); 60 char *file; local 62 // We need file ID and filename 74 fprintf(stderr, "bad file/track id %u\n", id); 79 file = argv[2]; 80 printf("Getting file/track %d to local file %s\n", id, file); [all...] |
/external/libvpx/libvpx/ |
vpxstats.h | 5 * that can be found in the LICENSE file in the root of the source 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 28 FILE *file; member in struct:__anon4551
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
TracingControllerAndroidTest.java | 3 // found in the LICENSE file. 17 import java.io.File; 42 File file = new File(tracingController.getOutputPath()); local 43 assertTrue(file.getName().startsWith("chrome-profile-results")); 53 // close the output file. Give it a little time. 62 // It says it stopped, so it should have written the output file. 63 assertTrue(file.exists()); 64 assertTrue(file.delete()) [all...] |