/external/oprofile/libutil/ |
op_lockfile.h | 2 * @file op_lockfile.h 6 * @remark Read the file COPYING 22 * op_write_lock_file - write a lock file 25 * Write the pid into the given lock file. Stale 28 int op_write_lock_file(char const * file);
|
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
counter.php | 6 function stepCounter($file) 8 if (!file_exists($file)) { 9 file_put_contents($file, "0"); 12 $value = file_get_contents($file); 13 file_put_contents($file, ++$value);
|
/frameworks/base/awt/javax/imageio/stream/ |
FileImageOutputStream.java | 3 * contributor license agreements. See the NOTICE file distributed with 5 * The ASF licenses this file to You under the Apache License, Version 2.0 6 * (the "License"); you may not use this file except in compliance with 28 * output data to a File or RandomAccessFile. 35 * The file. 37 RandomAccessFile file; field in class:FileImageOutputStream 40 * Instantiates a new FileImageOutputStream with the specified File. 43 * the output File. 45 * if the file not found. 49 public FileImageOutputStream(File f) throws FileNotFoundException, IOException [all...] |
/system/core/rootdir/etc/ |
mountd.conf | 1 ## mountd configuration file 5 ## root block device with partition map or raw FAT file system 14 ## path to the UMS driver file for specifying the block device path 16 driver_store_path /sys/devices/platform/usb_mass_storage/lun0/file 18 ##driver_store_path /sys/devices/platform/msm_hsusb/gadget/lun0/file
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
EntropyServiceTest.java | 5 * you may not use this file except in compliance with the License. 23 import java.io.File; 31 File dir = getContext().getDir("testInitialWrite", Context.MODE_PRIVATE); 32 File file = File.createTempFile("testInitialWrite", "dat", dir); local 33 file.deleteOnExit(); 34 assertEquals(0, FileUtils.readTextFile(file, 0, null).length()); 36 // The constructor has the side effect of writing to file 37 new EntropyService("/dev/null", file.getCanonicalPath()) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/main/macos/exports/ |
gendef.pl | 7 while ( ($file = shift(@ARGV)) ) { 8 if ( ! defined(open(FILE, $file)) ) { 9 warn "Couldn't open $file: $!\n"; 13 $file =~ s,.*/,,; 14 while (<FILE>) { 21 close(FILE);
|
/external/webkit/WebCore/WebCore.vcproj/ |
WebCore.vcproj | [all...] |
/external/bluetooth/glib/build/win32/vs9/ |
glib.vcproj | 361 <File 364 </File> 365 <File 368 </File> 369 <File 372 </File> 373 <File 376 </File> 377 <File 380 </File> [all...] |
/packages/apps/Email/src/org/apache/commons/io/filefilter/ |
IOFileFilter.java | 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
35 * Checks to see if the File should be accepted by this filter.
39 * @param file the File to check
40 * @return true if this file matches the test
42 public boolean accept(File file);
[all...] |
EmptyFileFilter.java | 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
25 * If the <code>File</code> is a directory it checks that
32 * File dir = new File(".");
44 * File dir = new File(".");
69 * Checks to see if the file is empty. [all...] |
AbstractFileFilter.java | 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
36 * Checks to see if the File should be accepted by this filter.
38 * @param file the File to check
39 * @return true if this file matches the test
41 public boolean accept(File file) {
[all...] |
/packages/apps/Email/src/org/apache/commons/io/comparator/ |
DefaultFileComparator.java | 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
24 * Compare two files using the <b>default</b> {@link File#compareTo(File)} method.
27 * by using the default file comparison.
32 * List<File> list = ...
39 * File[] array = ...
56 * Compare the two files using the {@link File#compareTo(File)} method. [all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/ |
FileWrapper.java | 5 * you may not use this file except in compliance with the License. 20 import java.io.File; 29 * An implementation of {@link IAbstractFile} extending {@link File}. 31 public class FileWrapper extends File implements IAbstractFile { 35 * Creates a new File instance from a parent abstract pathname and a child pathname string. 39 * @see File#File(File, String) 41 public FileWrapper(File parent, String child) { 46 * Creates a new File instance by converting the given pathname string into an abstrac [all...] |
/external/bluetooth/glib/gio/ |
gfile.h | 44 * Generally stores a location within the file system. Handles do not 58 * @is_native: Checks to see if a file is native to the system. 66 * @prefix_matches: Checks whether a #GFile contains a specified file. 76 * @query_filesystem_info: Gets a #GFileInfo for the file system #GFile is on. 77 * @query_filesystem_info_async: Asynchronously gets a #GFileInfo for the file system #GFile is on. 78 * @query_filesystem_info_finish: Finishes asynchronously getting the file system info. 93 * @set_attributes_async: Asynchronously sets a file's attributes. 94 * @set_attributes_finish: Finishes setting a file's attributes asynchronously. 95 * @read_fn: Reads a file asynchronously. 96 * @read_async: Asynchronously reads a file [all...] |
/external/webkit/WebKit/win/WebKit.vcproj/ |
Interfaces.vcproj | 154 <File
173 </File>
174 <File
193 </File>
194 <File
213 </File>
214 <File
233 </File>
234 <File
253 </File>
[all...] |
/dalvik/libcore/luni/src/test/java/tests/api/java/io/ |
FileTest.java | 3 * contributor license agreements. See the NOTICE file distributed with 5 * The ASF licenses this file to You under the Apache License, Version 2.0 6 * (the "License"); you may not use this file except in compliance with 20 import java.io.File; 44 @TestTargetClass(File.class) 48 private File tempDirectory; 50 /** Temp file that does exist */ 51 private File tempFile; 53 /** File separator */ 54 private String slash = File.separator 1345 File file = new File(dir, "notADir.tst"); local 1449 File file = new File(dir, "notADir.tst"); local 1593 File file = new File(baseDir, "notADir.tst"); local 1728 File file = new File(dir, "notADir.tst"); local [all...] |
/external/ppp/pppd/plugins/rp-pppoe/ |
config.h | 53 /* Define if you have the <asm/types.h> header file. */ 56 /* Define if you have the <fcntl.h> header file. */ 59 /* Define if you have the <getopt.h> header file. */ 62 /* Define if you have the <linux/if_ether.h> header file. */ 65 /* Define if you have kernel-mode PPPoE in Linux file. */ 68 /* Define if you have the <linux/if_packet.h> header file. */ 71 /* Define if you have the <linux/if_pppox.h> header file. */ 74 /* Define if you have the <net/bpf.h> header file. */ 77 /* Define if you have the <net/if_arp.h> header file. */ 80 /* Define if you have the <net/ethernet.h> header file. * [all...] |
/external/webkit/WebKitTools/Scripts/ |
find-extra-includes | 32 use File::Find; 41 my $file = $_; 43 if ($file eq "icu") { 44 $File::Find::prune = 1; 48 if ($file !~ /^\./ && $file =~ /\.(h|cpp|c|mm|m)$/) { 49 $paths{$file} = $File::Find::name; 50 open FILE, $file or die [all...] |
/external/icu4c/tools/genbrk/ |
genbrk.1.in | 31 .BI "\-r\fP, \fB\-\-rules" " rule\-file" 32 .BI "\-o\fP, \fB\-\-out" " output\-file" 36 .I rule-file 37 and creates a break iteration data file. Normally this data file has the 54 .IR output-file . 61 .IR output-file 68 For example, the file 75 .BI "\-r\fP, \fB\-\-rules" " rule\-file" 76 The source file to read [all...] |
/external/icu4c/tools/genctd/ |
genctd.1.in | 31 .BI "\-o\fP, \fB\-\-out" " output\-file" 32 .IR " dictionary\-file" 36 .I dictionary-file 37 and creates a compact trie dictionary file. Normally this data file has the 55 .IR output-file . 62 .IR output-file 69 For example, the file 76 .BI " dictionary\-file" 77 The source file to read [all...] |
/external/icu4c/tools/toolutil/ |
toolutil.vcproj | 414 <File 417 </File> 418 <File 421 </File> 422 <File 425 </File> 426 <File 429 </File> 430 <File 465 </File> [all...] |
/external/skia/src/ports/ |
SkOSFile_stdio.cpp | 6 ** you may not use this file except in compliance with the License. 47 size_t curr = ::ftell((FILE*)f); // remember where we are 48 ::fseek((FILE*)f, 0, SEEK_END); // go to the end 49 size_t size = ::ftell((FILE*)f); // record the size 50 ::fseek((FILE*)f, (long)curr, SEEK_SET); // go back to our prev loc 57 ::rewind((FILE*)f); 58 // ::fseek((FILE*)f, 0, SEEK_SET); 67 size_t curr = ::ftell((FILE*)f); 69 SkDEBUGF(("sk_fread: ftell(%p) returned -1 feof:%d ferror:%d\n", f, feof((FILE*)f), ferror((FILE*)f))) [all...] |
/development/tools/idegen/src/ |
Files.java | 5 * you may not use this file except in compliance with the License. 21 * File utility methods. 26 * Reads file into a string using default encoding. 28 static String toString(File file) throws IOException { 31 Reader in = new FileReader(file); 41 * Writes a string to a file using default encoding. 43 static void toFile(String contents, File file) throws IOException { 44 FileWriter out = new FileWriter(file); [all...] |
/sdk/emulator/qtools/ |
dmtrace.h | 44 void write2LE(FILE* fstream, unsigned short val); 45 void write4LE(FILE* fstream, unsigned int val); 46 void write8LE(FILE* fstream, unsigned long long val); 47 void writeHeader(FILE *fstream, uint64_t startTime); 48 void writeDataRecord(FILE *fstream, int threadId, 51 void writeKeyFile(FILE *fstream); 52 void writeThreads(FILE *fstream); 53 void writeFunctions(FILE *fstream); 55 FILE *fData; 56 FILE *fTrace [all...] |
/external/clearsilver/java-jni/ |
CSUtil.java | 5 import java.io.File; 40 * Given an ordered list of directories to look in, locate the specified file. 41 * Returns <code>null</code> if file not found. 43 * @param filename the name of the file. 44 * @return a File object corresponding to the file. <code>null</code> if 45 * file not found. 47 public static File locateFile(List<String> loadpaths, String filename) { 55 File file = new File(path, filename) local [all...] |