| /external/openssl/include/openssl/ |
| err.h | 319 void ERR_put_error(int lib, int func,int reason,const char *file,int line); 323 unsigned long ERR_get_error_line(const char **file,int *line); 324 unsigned long ERR_get_error_line_data(const char **file,int *line, 327 unsigned long ERR_peek_error_line(const char **file,int *line); 328 unsigned long ERR_peek_error_line_data(const char **file,int *line, 331 unsigned long ERR_peek_last_error_line(const char **file,int *line); 332 unsigned long ERR_peek_last_error_line_data(const char **file,int *line, 343 void ERR_print_errors_fp(FILE *fp);
|
| /external/ppp/pppd/plugins/radius/ |
| buildreq.c | 6 * See the file COPYRIGHT for the respective terms and conditions. 7 * If the file is missing contact me at lf@elemental.net 59 * config file. 95 FILE *sf; 102 error("rc_get_seqnbr: couldn't open sequence file %s: %s", seqfile, strerror(errno)); 131 /* file was not empty */ 240 * does not rely on config file.
|
| /external/qemu/android/utils/ |
| filelock.c | 41 /** FILE LOCKS SUPPORT 44 ** writable file (e.g. the userdata.img disk images). 47 ** only if the corresponding file path could not be locked. 49 ** all file locks are automatically released and destroyed when the program exits. 50 ** the filelock_lock() function can also detect stale file locks that can linger 54 ** file - the data file accessed by the emulator 55 ** lock - a lock file (file + '.lock') 56 ** temp - a temporary file make unique with mkstem 75 const char* file; member in struct:FileLock [all...] |
| /external/qemu/ |
| dis-asm.h | 46 bfd_arch_unknown, /* File arch not known */ 259 FILE *stream;
|
| qemu-common.h | 1 /* Common header file that is included by all of qemu. */ 99 typedef int (*fprintf_function)(FILE *f, const char *fmt, ...)
|
| savevm.c | 185 FILE *stdio_file; 186 QEMUFile *file; member in struct:QEMUFileStdio 192 QEMUFile *file; member in struct:QEMUFileSocket 226 FILE *fp = s->stdio_file; 253 QEMUFile *qemu_popen(FILE *stdio_file, const char *mode) 267 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_pclose, 270 s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_pclose, 273 return s->file; 278 FILE *popen_file; 316 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_fclose [all...] |
| /external/qemu/slirp/ |
| debug.c | 5 * Please read the file COPYRIGHT for the 11 FILE *dfd = NULL; 27 debug_init(file, dbg) 28 char *file; 31 /* Close the old debugging file */ 35 dfd = fopen(file,"w"); 44 lprint("Error: Debugging file \"%s\" could not be opened: %s\r\n", 45 file, strerror(errno)); 79 * These will print statistics to the screen, the debug file (dfd), or
|
| /external/qemu/slirp-android/ |
| debug.c | 5 * Please read the file COPYRIGHT for the 11 FILE *dfd = NULL; 28 debug_init(file, dbg) 29 char *file; 32 /* Close the old debugging file */ 36 dfd = fopen(file,"w"); 45 fprintf(stderr, "Error: Debugging file \"%s\" could not be opened: %s\r\n", 46 file, strerror(errno)); 78 * These will print statistics to the screen, the debug file (dfd), or
|
| /external/quake/quake/src/QW/client/ |
| keys.c | 582 void Key_WriteBindings (FILE *f)
|
| /external/quake/quake/src/WinQuake/ |
| gl_vidlinux.cpp | 223 FILE *f;
|
| host_cmd.cpp | 475 FILE *f; 571 FILE *f; 655 // load the edicts out of the savegame file 677 break; // end of file 720 FILE *f; 771 FILE *f; 823 // load the edicts out of the savegame file 845 break; // end of file [all...] |
| keys.cpp | 504 void Key_WriteBindings (FILE *f)
|
| /external/sonivox/arm-fm-22k/host_src/ |
| eas_hostmm.c | 3 * File: 7 * This file contains the host wrapper functions for stdio, stdlib, etc. 10 * file system calls. The file locator (EAS_FILE_LOCATOR) handle passed 13 * using a file system, you can use the locator handle to point to 18 * Modify this file to suit the needs of your particular system. 21 * a MIDI type 1 file that can be played. 23 * EAS_HW_FILE is a structure to support the file I/O functions. It 24 * comprises the base memory pointer, the file read pointer, and 25 * the dup flag, which when sets, indicates that the file handle ha 204 EAS_HW_FILE *file; local [all...] |
| /external/sonivox/arm-hybrid-22k/host_src/ |
| eas_hostmm.c | 3 * File: 7 * This file contains the host wrapper functions for stdio, stdlib, etc. 10 * file system calls. The file locator (EAS_FILE_LOCATOR) handle passed 13 * using a file system, you can use the locator handle to point to 18 * Modify this file to suit the needs of your particular system. 21 * a MIDI type 1 file that can be played. 23 * EAS_HW_FILE is a structure to support the file I/O functions. It 24 * comprises the base memory pointer, the file read pointer, and 25 * the dup flag, which when sets, indicates that the file handle ha 204 EAS_HW_FILE *file; local [all...] |
| /external/srtp/test/ |
| rtpw.c | 11 * whatever file is specified as DICT_FILE), and sends one word out 127 FILE *dict; 425 fprintf(stderr, "%s: couldn't open file %s\n", argv[0], dictfile);
|
| /external/tcpdump/ |
| print-esp.c | 128 * special form: file /name 129 * causes us to go read from this file instead. 154 if (spikey && strcasecmp(spikey, "file") == 0) { 155 /* open file and read it */ 156 FILE *secretfile;
|
| /external/v8/samples/ |
| lineprocessor.cc | 184 // Use argument as a name of file to load. 338 // Reads a file into a v8 string. 340 FILE* file = fopen(name, "rb"); local 341 if (file == NULL) return v8::Handle<v8::String>(); 343 fseek(file, 0, SEEK_END); 344 int size = ftell(file); 345 rewind(file); 350 int read = fread(&chars[i], 1, size - i, file); 353 fclose(file); [all...] |
| /external/v8/src/ |
| log.h | 40 // execution. The result is dumped to a file. 48 // Log all events to the file, default is off. This is the same as combining 160 // When a temporary file is used for the log, returns its stream descriptor, 161 // leaving the file open. 162 FILE* TearDown();
|
| /external/valgrind/main/cachegrind/ |
| cg_merge.c | 8 This file is part of Cachegrind, a Valgrind tool for cache 34 The GNU General Public License is contained in the file COPYING. 120 FILE* fp; 166 parseError(s, "Unexpected long line in input file"); 179 barf(s, "I/O error while reading input file"); 385 static void showCounts ( FILE* f, Counts* c ) 393 static void show_CacheProfFile ( FILE* f, CacheProfFile* cpf ) 591 /* Parse a complete file from the stream in 's'. If a parse error 672 // create the outer map (file+fn name --> inner map) 785 barf(s, "\"events:\" line of most recent file does [all...] |
| /external/valgrind/tsan/ |
| ts_util.h | 27 // This file is part of ThreadSanitizer, a dynamic data race detector. 31 // This file contains utility classes and functions used by ThreadSanitizer. 32 // TODO(kcc): move more utilities from thread_sanitizer.cc to this file. 367 // Sets the contents of the file 'file_name' to 'str'. 371 // and returns a FILE object. Retuns NULL on failure. 372 FILE *OpenSocketForWriting(const string &host_and_port);
|
| /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/ |
| tokens.c | 345 cpp->tokenLoc->file = cpp->currentInput->name; 402 void DumpTokenStream(FILE *fp, TokenStream *s, yystypepp * yylvalpp) {
|
| /external/webkit/Source/WebCore/bridge/ |
| testbindings.cpp | 16 * along with this library; see the file COPYING.LIB. If not, write to 345 const char *readJavaScriptFromFile (const char *file) 347 FILE *f = fopen(file, "r"); 349 fprintf(stderr, "Error opening %s.\n", file); 356 fprintf(stderr, "Warning: File may have been too long.\n");
|
| /external/webkit/Source/WebKit/android/nav/ |
| WebView.cpp | 1143 FILE* file = fopen(DISPLAY_TREE_LOG_FILE, "w"); local 1165 FILE* file = fopen(LAYERS_TREE_LOG_FILE,"w"); local [all...] |
| /external/webkit/Tools/android/flex-2.5.4a/ |
| nfa.c | 273 line_directive_out( (FILE *) 0, 1 );
|
| /external/wpa_supplicant_8/src/utils/ |
| wpa_debug.c | 56 static FILE *out_file = NULL; 351 "re-open log file."); 376 "output file, using standard output");
|