| /external/chromium/chrome/browser/renderer_host/ |
| chrome_render_message_filter.cc | 3 // found in the LICENSE file. 194 BrowserThread::FILE, FROM_HERE, 206 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
|
| download_resource_handler.cc | 3 // found in the LICENSE file. 116 // We can't start saving the data before we create the file on disk. 129 // Create a new buffer, which will be handed to the download thread for file 142 // Pass the buffer to the download file writer. 150 // We are passing ownership of this buffer to the download file manager. 156 BrowserThread::FILE, FROM_HERE, 163 // We schedule a pause outside of the read loop if there is too much file 182 // so that any functions queued up on the FILE thread are executed 185 BrowserThread::FILE, FROM_HERE,
|
| /external/chromium/chrome/common/ |
| json_pref_store.cc | 3 // found in the LICENSE file. 22 // Differentiates file loading between UI and FILE threads. 33 BrowserThread::FILE, 40 // Deserializes JSON on the FILE thread. 42 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); 89 DLOG(ERROR) << "Error while loading JSON file: " << error_msg; 105 // JSON errors indicate file corruption of some sort. 106 // Since the file is corrupt, move it to the side and continue with 108 // We keep the old file for possible support and debugging assistanc [all...] |
| /external/chromium/net/base/ |
| ssl_false_start_blacklist_process.cc | 3 // found in the LICENSE file. 5 // This utility program exists to process the False Start blacklist file into 26 fprintf(stderr, "Usage: %s <blacklist file> <output .c file>\n", argv0); 131 FILE* input = fopen(input_file, "rb"); 228 FILE* out = fopen(output_file, "w+"); 230 perror("opening output file"); 236 "license that can be\n// found in the LICENSE file.\n\n");
|
| /external/chromium/net/ftp/ |
| ftp_directory_listing_parser_vms.cc | 3 // found in the LICENSE file. 26 // separated from the file name by a semicolon. Example: ANNOUNCE.TXT;2. 50 *type = FtpDirectoryListingEntry::FILE; 56 // VMS's directory listing gives us file size in blocks. We assume that 57 // the block size is 512 bytes. It doesn't give accurate file size, but is the 105 // We expect four parts of the file protection listing: for System, Owner, 253 if (entry.type != FtpDirectoryListingEntry::FILE)
|
| /external/e2fsprogs/ext2ed/ |
| ext2ed.h | 6 A part of the extended file system 2 disk editor. 9 Include file for the ext2 disk editor. 12 This file contains declarations which are needed by all the files in ext2ed. 32 #define ETC_DIR "/etc" /* Where to find the config file */ 37 #include <ext2fs/ext2_fs.h> /* Main kernel ext2 include file */ 146 /* The following is used if the file is a directory */ 188 /* Configurable variables (Through configuration file) */ 204 extern FILE *device_handle; 247 int get_next_option (FILE *fp,char *option,char *value);
|
| main.c | 5 A part of the extended file system 2 disk editor. 11 This file mostly contains: 48 Configuration file options 50 The following variables will be set by init.c to the values selected in the user configuration file. 58 char LogFile [200]="ext2ed.log"; /* The location of the log file - Each write will be logged there */ 71 FILE *device_handle=NULL; /* This is passed to the fopen / fread ... commands */ 176 int rl_getc_replacement(FILE *f)
|
| /external/e2fsprogs/lib/ext2fs/ |
| ismounted.c | 7 * This file may be redistributed under the terms of the GNU Public 39 * Helper function which checks a file in /etc/mtab format to see if a 40 * filesystem is mounted. Returns an error if the file doesn't exist 43 static errcode_t check_mntent_file(const char *mtab_file, const char *file, 51 FILE *f; 57 if (stat(file, &st_buf) == 0) { 70 if (strcmp(file, mnt->mnt_fsname) == 0) 127 mtab_file, file, mnt->mnt_dir); 150 #define TEST_FILE "/.ismount-test-file" 166 static errcode_t check_mntent(const char *file, int *mount_flags [all...] |
| tst_badblocks.c | 7 * This file may be redistributed under the terms of the GNU Public 175 FILE *f; 179 fprintf(stderr, "Error opening temp file: %s\n", 222 FILE *f; 234 fprintf(stderr, "Error opening temp file: %s\n",
|
| /external/flac/include/FLAC/ |
| stream_decoder.h | 35 #include <stdio.h> /* for FILE */ 44 /** \file include/FLAC/stream_decoder.h 61 * the client via callbacks, or directly from a file, depending on how 66 * FLAC input is also available. When decoding from a file, the client 67 * needs only supply a filename or open \c FILE* and write/metadata/error 108 * callbacks, and two for decoding directly from a FLAC file. 114 * For decoding directly from a file, use FLAC__stream_decoder_init_FILE() 116 * \c FILE* or filename and fewer callbacks; the decoder will handle 482 * FILE *file = ((MyClientData*)client_data)->file [all...] |
| stream_encoder.h | 35 #include <stdio.h> /* for FILE */ 45 /** \file include/FLAC/stream_encoder.h 62 * client via callbacks, or directly to a file, depending on how it is 68 * a file, the client needs only supply a filename or open \c FILE* and an 143 * callbacks, and two for encoding directly to a file. 153 * For encoding directly to a file, use FLAC__stream_encoder_init_FILE() 155 * filename or open \c FILE*; the encoder will handle all the callbacks 210 * If you are writing the FLAC data to a file via callbacks, make sure it 215 * FLAC__stream_encoder_init*_FILE(), the file is managed internally. [all...] |
| /external/flac/libFLAC/ |
| metadata_iterators.c | 104 static FLAC__bool write_metadata_block_header_(FILE *file, FLAC__Metadata_SimpleIteratorStatus *status, const FLAC__StreamMetadata *block); 105 static FLAC__bool write_metadata_block_data_(FILE *file, FLAC__Metadata_SimpleIteratorStatus *status, const FLAC__StreamMetadata *block); 125 static unsigned seek_to_first_metadata_block_(FILE *f); 127 static FLAC__bool simple_iterator_copy_file_prefix_(FLAC__Metadata_SimpleIterator *iterator, FILE **tempfile, char **tempfilename, FLAC__bool append); 128 static FLAC__bool simple_iterator_copy_file_postfix_(FLAC__Metadata_SimpleIterator *iterator, FILE **tempfile, char **tempfilename, int fixup_is_last_code, off_t fixup_is_last_flag_offset, FLAC__bool backup); 130 static FLAC__bool copy_n_bytes_from_file_(FILE *file, FILE *tempfile, off_t bytes, FLAC__Metadata_SimpleIteratorStatus *status) 346 FILE *file; member in struct:FLAC__Metadata_SimpleIterator 1379 FILE *file; local 1531 FILE *file; local [all...] |
| /external/gtest/include/gtest/internal/ |
| gtest-port.h | 900 // Formats a source file path and a line number as they would appear 902 GTEST_API_ ::std::string FormatFileLocation(const char* file, int line); 904 // Formats a file location for compiler-independent XML output [all...] |
| /external/icu4c/extra/uconv/ |
| uwmsg.c | 7 * File uwmsg.c 33 /* Print a ustring to the specified FILE* in the default codepage */ 37 FILE *f, 72 /* Write the converted data to the FILE* */ 123 U_CFUNC int u_wmsg(FILE *fp, const char *tag, ... )
|
| /external/icu4c/tools/toolutil/ |
| ucm.h | 6 * file name: ucm.h 14 * Definitions for the .ucm file parser and handler module ucm.c. 48 * same values as in the source file after | 62 UCM_FLAGS_EXPLICIT, /* .ucm file has mappings with | fallback indicators */ 63 UCM_FLAGS_IMPLICIT, /* .ucm file has mappings without | fallback indicators, later wins */ 166 * Read a table from a .ucm file, from after the CHARMAP line to 184 * This is the case where base and extension tables are parsed from a single file 186 * or when delta file mappings are subtracted from a base table. 188 * When a base table cannot be modified because a delta file is parsed in makeconv, 199 * For both tables in the same file, the extension table is automaticall [all...] |
| /external/icu4c/tools/tzcode/ |
| zdump.c | 179 static time_t huntICU(char * name, time_t lot, time_t hit, FILE *fp); 180 static void dumptimeICU(FILE * fp, time_t t); 181 static void showICU(FILE * fp, char * zone, time_t t1, time_t t2); 262 usage(const char *progname, FILE *stream, int status) 299 FILE * fp = stdout; 483 fprintf(stderr, "cannot create output file %s\n", path); 567 /* close file */ 871 huntICU(char *name, time_t lot, time_t hit, FILE * fp) 913 static void showICU(FILE * fp, char *zone, time_t t1, time_t t2) 924 static void dumptimeICU(FILE * fp, time_t t [all...] |
| /external/iproute2/ip/ |
| ipaddrlabel.c | 59 FILE *fp = (FILE*)arg;
|
| /external/iproute2/misc/ |
| ssfilter.y | 26 static FILE *yy_fp; 263 int ssfilter_parse(struct ssfilter **f, int argc, char **argv, FILE *fp)
|
| /external/iproute2/netem/ |
| maketable.c | 20 readdoubles(FILE *fp, int *number) 198 FILE *fp;
|
| /external/iproute2/tc/ |
| tc.c | 54 static int print_noqopt(struct qdisc_util *qu, FILE *f, 72 static int print_nofopt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 fhandle) 257 fprintf(stderr, "Cannot open file \"%s\" for reading: %s\n",
|
| /external/ipsec-tools/src/racoon/ |
| prsa_par.y | 36 /* This file contains a parser for FreeS/WAN-style ipsec.secrets RSA keys. */ 81 extern FILE *prsain; 210 prsaerror("Public key in private-key file!\n"); 218 prsaerror("Public key in private-key file!\n"); 314 FILE *fp = NULL;
|
| /external/jpeg/ |
| ansi2knr.c | 14 your rights and responsibilities. It should be in a file named COPYLEFT. 15 [In the IJG distribution, the GPL appears below, not in a separate file.] 21 separate executable file which are aggregated on a storage medium together 29 ---------- Here is the GNU GPL file COPYLEFT, referred to above ---------- 124 For an executable file, complete source code means all the source code for 127 operating system on which the executable file runs. 175 -------------------- End of file COPYLEFT ------------------------------ 323 { FILE *in, *out; 360 { fprintf(stderr, "Cannot open output file %s\n", argv[2]); 366 { fprintf(stderr, "Cannot open input file %s\n", argv[1]) [all...] |
| /external/libpng/ |
| example.c | 6 * This file has been placed in the public domain by the authors. 13 * The file libpng.txt is much more verbose then this. If you have not 18 * This file does not currently compile, because it is missing certain 37 /* Check to see if a file is a PNG file using png_sig_cmp(). png_sig_cmp() 41 * if the file can be opened and is a PNG, 0 (false) otherwise. 43 * If this call is successful, and you are going to keep the file open, 46 * has read that many bytes from the start of the file. Make sure you 53 * of the image to determine the file type, so it would be easiest just 55 * you have a PNG file, and call png_set_sig_bytes() [all...] |
| /external/libxml2/include/libxml/ |
| xmlIO.h | 173 xmlParserInputBufferCreateFile (FILE *file, 231 xmlOutputBufferCreateFile (FILE *file, 306 * Default 'file://' protocol callbacks
|
| /external/libxslt/libxslt/ |
| xsltutils.h | 226 xsltSaveResultToFile (FILE *file, 251 FILE *output);
|