/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::__anon9487 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/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:__anon11126
|
/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:__anon11176
|
/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:__anon11227
|
/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:__anon11738 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/webkit/Source/JavaScriptCore/qt/api/ |
qscriptengine_p.cpp | 15 along with this library; see the file COPYING.LIB. If not, write to 71 JSStringRef file = QScriptConverter::toString(fileName); local 72 QScriptValuePrivate* result = new QScriptValuePrivate(this, evaluate(script, file, lineNumber)); 74 JSStringRelease(file); 86 return new QScriptValuePrivate(this, evaluate(*program, program->file(), program->line()));
|
/external/webkit/Source/WebCore/plugins/gtk/ |
PluginPackageGtk.cpp | 142 GRefPtr<GFile> file = adoptGRef(g_file_new_for_path(finalPath.get())); local 143 GRefPtr<GFile> dir = adoptGRef(g_file_get_parent(file.get()));
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
CacheResult.cpp | 181 // Reached end of file. 190 PlatformFileHandle file; local 191 file = openFile(m_filePath, OpenForWrite); 192 if (!isHandleValid(file)) 194 return WebCore::writeToFile(file, m_buffer->data(), m_bufferSize) == m_bufferSize;
|
/external/webkit/Source/WebKit/gtk/tests/ |
testmimehandling.c | 16 * along with this library; see the file COPYING.LIB. If not, write to 173 GFile* file = g_file_new_for_path(filename); local 176 gchar* fileURI = g_file_get_uri(file); 177 g_object_unref(file);
|
/external/zlib/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/contrib/minizip/ |
ioapi.c | 85 FILE* file = NULL; local 97 file = fopen(filename, mode_fopen); 98 return file; 103 FILE* file = NULL; local 115 file = fopen64((const char*)filename, mode_fopen); 116 return file; 123 ret = (uLong)fread(buf, 1, (size_t)size, (FILE *)stream); 130 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...] |
/frameworks/base/tools/localize/ |
SourcePos.cpp | 16 string file; member in struct:ErrorPos 22 ErrorPos(const string& file, int line, const string& error); 28 void Print(FILE* to) const; 38 :file(that.file), 45 :file(f), 58 if (this->file < rhs.file) return true; 59 if (this->file == rhs.file) { [all...] |
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
HprofBinaryToAscii.java | 5 * you may not use this file except in compliance with the License. 23 import java.io.File; 45 * Reads single file from arguments and attempts to read it as 46 * either a binary hprof file or a version with a text header. 51 usage("binary hprof file argument expected"); 54 File file = new File(args[0]); local 55 if (!file.exists()) { 56 usage("file " + file + " does not exist") [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/ |
RandomBitsSupplier.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 22 import java.io.File; 58 * File to connect to device 60 private static File randomFile = null; 75 File file = new File(deviceName); typedefs 76 if (file.canRead()) [all...] |
/libcore/luni/src/test/java/libcore/java/util/logging/ |
OldFileHandlerTest.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 23 import java.io.File; 43 final static String SEP = File.separator; 73 File file = new File(TEMPPATH + SEP + "log"); local 74 file.mkdir(); 171 File file = new File(TEMPPATH + SEP + "log") local 390 File file; local 424 File file = new File(TEMPPATH + SEP + "baddir" + SEP + "multi0"); local [all...] |