/external/openfst/src/lib/ |
flags.cc | 4 // you may not use this file except in compliance with the License. 17 // \file 99 // If flag is defined in file 'src' and 'in_src' true or is not 100 // defined in file 'src' and 'in_src' is false, then print usage. 111 const string &file = it->first; local 114 bool match = file == src; 118 if (file != old_file) { 121 cout << "Flags from: " << file << "\n"; local 124 old_file = file;
|
/external/openssh/ |
hostfile.h | 11 * incompatible with the protocol description in the RFC file, it must be 27 char *file; member in struct:hostkey_entry
|
/external/openssl/crypto/bio/ |
bss_file.c | 108 "FILE pointer", 122 FILE *file=NULL; local 154 (file=_wfopen(wfilename,wmode))==NULL && 156 ) /* UTF-8 decode succeeded, but no file, filename 158 file = fopen(filename,mode); 162 file = fopen(filename,mode); 165 file=fopen(filename,mode); 167 if (file == NULL) 179 fclose(file); [all...] |
/external/oprofile/libopt++/ |
popt_options.cpp | 2 * @file popt_options.cpp 6 * @remark Read the file COPYING 98 char const * file; local 99 while ((file = poptGetArg(con)) != 0) 100 additional_params.push_back(file);
|
/external/oprofile/libpp/ |
op_header.cpp | 2 * @file op_header.cpp 3 * various free function acting on a sample file header 6 * @remark Read the file COPYING 60 // Note that in the generated ELF file for anonymous code the vma 88 void check_mtime(string const & file, opd_header const & header) 90 time_t const newmtime = op_get_mtime(file.c_str()); 95 if (warned_files.find(file) != warned_files.end()) 98 warned_files.insert(file); 104 // think that the JIT sample file is not a binary file 107 << file << " has not been modified since " local 111 << file << " has not been modified since " local 124 "does not match that of the sample file for " << file local [all...] |
/external/proguard/src/proguard/ |
ClassPathEntry.java | 37 private File file; field in class:ClassPathEntry 49 public ClassPathEntry(File file, boolean isOutput) 51 this.file = file; 63 return file.getCanonicalPath(); 67 return file.getPath(); 72 public File getFile() 74 return file; [all...] |
/external/proguard/src/proguard/ant/ |
ClassPathElement.java | 28 import java.io.File; 61 File baseDir = getProject().getBaseDir(); 66 // Get the referenced path or file set. 81 // Get the names of the existing input files in the referenced file set. 101 throw new BuildException("The <outjar> element must specify exactly one file or directory ["+fileNames.length+"]"); 108 // throw new BuildException("The <injar> element must specify at least one file or directory"); 114 // Create a new class path entry, with the proper file name and 117 File file = new File(fileName) local [all...] |
/external/protobuf/src/google/protobuf/testing/ |
file.cc | 32 // emulates google3/file/base/file.cc 34 #include <google/protobuf/testing/file.h> 40 #include <windows.h> // Find*File(). :( 61 bool File::Exists(const string& name) { 65 bool File::ReadFileToString(const string& name, string* output) { 67 FILE* file = fopen(name.c_str(), "rb"); local 68 if (file == NULL) return false; 71 size_t n = fread(buffer, 1, sizeof(buffer), file); 86 FILE* file = fopen(name.c_str(), "wb"); local [all...] |
/external/qemu/android/utils/ |
lineinput.c | 25 FILE* file; member in struct:LineInput::__anon24774 50 /* Create a LineInput object that reads from a FILE* object */ 52 lineInput_newFromStdFile( FILE* file ) 56 input->std.file = file; 76 static int _lineInput_getLineFromStdFile( LineInput* input, FILE* file ); 107 ret = _lineInput_getLineFromStdFile(input, input->std.file); [all...] |
/external/qemu/ |
migration.h | 10 * the COPYING file in the top-level directory. 40 QEMUFile *file; member in struct:FdMigrationState
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/ |
TestUtil.java | 5 import java.io.File; 14 public static File testDirLocation; 35 public static File file(String... pathParts) { method in class:TestUtil 36 return file(new File("."), pathParts); 39 public static File file(File f, String... pathParts) { method in class:TestUtil 41 f = new File(f, pathPart) [all...] |
/external/skia/src/ports/ |
SkOSFile_win.cpp | 5 * found in the LICENSE file. 23 int fileno = _fileno((FILE*)f); 28 HANDLE file = (HANDLE)_get_osfhandle(fileno); local 29 if (INVALID_HANDLE_VALUE == file) { 35 if (0 == GetFileInformationByHandle(file, &info)) { 71 HANDLE file = (HANDLE)_get_osfhandle(fileno); local 72 if (INVALID_HANDLE_VALUE == file) { 77 if (0 == GetFileSizeEx(file, &fileSize)) { 78 //TODO: use SK_TRACEHR(GetLastError(), "Could not get file size.") to report. 85 SkAutoWinMMap mmap(CreateFileMapping(file, NULL, PAGE_READONLY, 0, 0, NULL)) [all...] |
/external/skia/tests/ |
StreamTest.cpp | 5 * found in the LICENSE file. 49 msg.printf("Failed to create tmp file %s\n", path.c_str()); 69 FILE* file = ::fopen(path.c_str(), "rb"); local 70 SkFILEStream stream(file, SkFILEStream::kCallerPasses_Ownership);
|
/external/smack/src/org/jivesoftware/smackx/filetransfer/ |
IncomingFileTransfer.java | 9 * you may not use this file except in compliance with the License.
28 * An incoming file transfer is created when the
30 * method is invoked. It is a file being sent to the local user from another
31 * user on the jabber network. There are two stages of the file transfer to be
35 * The first way that a file is recieved is by calling the
37 * method and then returns the <b><i>InputStream</b></i> to read the file
40 * The second way that a file can be recieved through this class is by invoking
41 * the {@link #recieveFile(File)} method. This method returns immediatly and
42 * takes as its parameter a file on the local file system where the file [all...] |
/external/smack/src/org/jivesoftware/smackx/provider/ |
StreamInitiationProvider.java | 9 * you may not use this file except in compliance with the License.
30 import org.jivesoftware.smackx.packet.StreamInitiation.File; 50 // file 70 if (elementName.equals("file")) { 86 } else if (elementName.equals("file")) { 106 File file = new File(name, fileSize); local 107 file.setHash(hash); 108 file.setDate(fileDate) [all...] |
/external/sonivox/arm-fm-22k/host_src/ |
eas_wave.h | 3 * File: 7 * Writes output to a .WAV file 9 * DO NOT MODIFY THIS FILE! 14 * you may not use this file except in compliance with the License. 37 /* .WAV file format chunk */ 47 /* .WAV file header */ 61 FILE *file; member in struct:__anon26237
|
/external/sonivox/arm-hybrid-22k/host_src/ |
eas_wave.h | 3 * File: 7 * Writes output to a .WAV file 9 * DO NOT MODIFY THIS FILE! 14 * you may not use this file except in compliance with the License. 37 /* .WAV file format chunk */ 47 /* .WAV file header */ 61 FILE *file; member in struct:__anon26287
|
/external/sonivox/arm-wt-22k/host_src/ |
eas_main.c | 3 * File: 13 * you may not use this file except in compliance with the License. 47 /* default file to play if no filename is specified on the command line */ 64 * This function plays the file requested by filename 84 EAS_FILE file; local 86 /* determine the name of the output file */ 99 /* call EAS library to open file */ 100 file.path = filename; 101 file.fd = 0; 102 if ((reportResult = EAS_OpenFile(easData, &file, &handle)) != EAS_SUCCESS [all...] |
eas_wave.h | 3 * File: 7 * Writes output to a .WAV file 9 * DO NOT MODIFY THIS FILE! 14 * you may not use this file except in compliance with the License. 37 /* .WAV file format chunk */ 47 /* .WAV file header */ 61 FILE *file; member in struct:__anon26338
|
/external/srec/srec/clib/ |
swimodel.c | 7 * you may not use this file except in compliance with the License. * 334 const void* file = NULL; local 345 file = swimodel->mmap_zip_data; 347 swimodel->num_hmmstates = *(const short*)file; 348 file += sizeof(short); 349 swimodel->num_dims = *(const short*)file; 350 file += sizeof(short); 351 swimodel->num_pdfs = *(const short*)file; 352 file += sizeof(short); 357 const short* num_pdfs_in_model = (const short*)file; [all...] |
/external/tremolo/Tremolo/ |
misc.c | 55 char *file; member in struct:__anon26919 64 static void *_insert(void *ptr,long bytes,char *file,long line){ 65 ((head *)ptr)->file=file; 90 FILE *out; 98 if(!strcmp(file,files[i]))break; 109 files[i]=strdup(file); 117 snprintf(buffer,80,"%s",file); 123 fprintf(out,"%ld, %ld # FILE %s LINE %ld\n", 125 file_bytes[i],file,line) 151 char *file =((head *)ptr)->file; local [all...] |
/external/webrtc/test/testsupport/ |
fileutils_unittest.cc | 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. 65 FILE* file = fopen(file_it->c_str(), "wb"); local 66 ASSERT_TRUE(file != NULL) << "Failed to write file: " << file_it->c_str(); 67 ASSERT_GT(fprintf(file, "%s", "Dummy data"), 0); 68 fclose(file); 142 // Change current working dir to the root of the current file syste [all...] |
/external/zlib/src/contrib/iostream3/ |
zfstream.h | 20 * @brief Gzipped file stream buffer class. 25 * file streambuf. 53 * @brief Check if file is open. 54 * @return True if file is open. 57 is_open() const { return (file != NULL); } 60 * @brief Open gzipped file. 61 * @param name File name. 70 * @brief Attach to already open gzipped file. 71 * @param fd File descriptor. 80 * @brief Close gzipped file 186 gzFile file; member in class:gzfilebuf [all...] |
/external/zlib/src/contrib/minizip/ |
ioapi.c | 97 FILE* file = NULL; local 109 file = fopen(filename, mode_fopen); 110 return file; 115 FILE* file = NULL; local 127 file = FOPEN_FUNC((const char*)filename, mode_fopen); 128 return file; 135 ret = (uLong)fread(buf, 1, (size_t)size, (FILE *)stream); 142 ret = (uLong)fwrite(buf, 1, (size_t)size, (FILE *)stream) [all...] |
/frameworks/base/tools/aapt/ |
SourcePos.cpp | 13 String8 file; member in struct:ErrorPos 20 ErrorPos(const String8& file, int line, const String8& error, bool fatal); 26 void print(FILE* to) const; 37 :file(that.file), 45 :file(f), 59 if (this->file < rhs.file) return true; 60 if (this->file == rhs.file) { [all...] |