| /external/bison/src/ |
| files.c | 6 This file is part of Bison, the GNU Compiler Compiler. 19 along with Bison; see the file COPYING. If not, write to the Free 65 If --output was not specified but --file-prefix=dir/foo was specified, 68 If neither --output nor --file was specified but the input grammar 71 If neither --output nor --file was specified, DIR_PREFIX is the 79 /* C source file extension (the parser source). */ 81 /* Header file extension (if option ``-d'' is specified). */ 102 | Try to open file NAME with mode MODE, and print an error message | 106 FILE * 109 FILE *ptr [all...] |
| /external/blktrace/btt/ |
| trace_complete.c | 23 static inline void __out(FILE *ofp, __u64 tm, enum iop_type type, 35 static void display_io_track(FILE *ofp, struct io *iop) 57 FILE *pit_fp = c_iop->dip->pit_fp;
|
| /external/chromium/chrome/browser/chromeos/ |
| plugin_selection_policy.cc | 3 // found in the LICENSE file. 23 #error This file is meant to be compiled on ChromeOS only. 41 // Initialize the policy on the FILE thread, since it reads from a 42 // policy file. 44 BrowserThread::FILE, FROM_HERE, 53 // This must always be called from the FILE thread. 54 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); 57 // This should be a really small file, so we're OK with just 60 LOG(ERROR) << "Unable to read plugin policy file \"" 82 LOG(ERROR) << "Plugin policy file error: 'allow' out of context." [all...] |
| /external/clang/test/Analysis/ |
| taint-generic.c | 6 typedef struct _FILE FILE; 7 extern FILE *stdin; 8 int fscanf(FILE *restrict stream, const char *restrict format, ...);
|
| /external/e2fsprogs/debugfs/ |
| debugfs.h | 2 * debugfs.h --- header file for the debugfs program 26 extern FILE *open_pager(void); 27 extern void close_pager(FILE *stream); 87 extern void internal_dump_inode(FILE *, const char *, ext2_ino_t,
|
| /external/iproute2/ip/ |
| iplink_vlan.c | 144 static void vlan_print_map(FILE *f, char *name, struct rtattr *attr) 160 static void vlan_print_flags(FILE *fp, __u32 flags) 176 static void vlan_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
|
| ipmonitor.c | 40 FILE *fp = (FILE*)arg; 114 char *file = NULL; local 128 if (matches(*argv, "file") == 0) { 130 file = *argv; 179 if (file) { 180 FILE *fp; 181 fp = fopen(file, "r");
|
| ipmroute.c | 56 FILE *fp = fopen("/proc/net/ip_mr_vif", "r"); 78 static void read_mroute_list(FILE *ofp) 81 FILE *fp = fopen("/proc/net/ip_mr_cache", "r");
|
| /external/iproute2/misc/ |
| ifstat.c | 21 #include <sys/file.h> 148 void load_raw_table(FILE *fp) 211 void dump_raw_db(FILE *fp, int to_hist) 246 void format_rate(FILE *fp, unsigned long long *vals, double *rates, int i) 266 void format_pair(FILE *fp, unsigned long long *vals, int i, int k) 286 void print_head(FILE *fp) 329 void print_one_if(FILE *fp, struct ifstat_ent *n, unsigned long long *vals) 376 void dump_kern_db(FILE *fp) 391 void dump_incr_db(FILE *fp) 522 FILE *fp = fdopen(clnt, "w") [all...] |
| /external/linux-tools-perf/util/ |
| session.h | 49 * perf.data file. 159 size_t perf_session__fprintf_dsos(struct perf_session *self, FILE *fp); 162 FILE *fp, bool with_hits); 164 size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp);
|
| /external/openssl/crypto/pem/ |
| pem_all.c | 186 RSA *PEM_read_RSAPrivateKey(FILE *fp, RSA **rsa, pem_password_cb *cb, 231 DSA *PEM_read_DSAPrivateKey(FILE *fp, DSA **dsa, pem_password_cb *cb, 278 EC_KEY *PEM_read_ECPrivateKey(FILE *fp, EC_KEY **eckey, pem_password_cb *cb,
|
| /external/oprofile/libpopt/ |
| popt.h | 0 /** \file popt/popt.h 6 file accompanying popt source distributions, available from 12 #include <stdio.h> /* for FILE * */ 352 * Read configuration file. 354 * @param fn file name to read 406 * Parses an input configuration file and returns an string that is a 409 * Given the file: 442 * @bug NULL is returned if file line is too long. 445 * @param fp file handle to read 452 int poptConfigFileToString(FILE *fp, /*@out@*/ char ** argstrp, int flags [all...] |
| /external/oprofile/ |
| popt.h | 0 /** \file popt/popt.h 6 file accompanying popt source distributions, available from 12 #include <stdio.h> /* for FILE * */ 352 * Read configuration file. 354 * @param fn file name to read 406 * Parses an input configuration file and returns an string that is a 409 * Given the file: 442 * @bug NULL is returned if file line is too long. 445 * @param fp file handle to read 452 int poptConfigFileToString(FILE *fp, /*@out@*/ char ** argstrp, int flags [all...] |
| /external/tinyalsa/ |
| tinycap.c | 60 unsigned int capture_sample(FILE *file, unsigned int card, unsigned int device, 72 FILE *file; local 84 fprintf(stderr, "Usage: %s file.wav [-D card] [-d device] [-c channels] " 89 file = fopen(argv[1], "wb"); 90 if (!file) { 91 fprintf(stderr, "Unable to create file '%s'\n", argv[1]); 145 fseek(file, sizeof(struct wav_header), SEEK_SET); 149 frames = capture_sample(file, card, device, header.num_channels [all...] |
| tinyplay.c | 57 void play_sample(FILE *file, unsigned int card, unsigned int device, unsigned int channels, 63 FILE *file; local 71 fprintf(stderr, "Usage: %s file.wav [-D card] [-d device] [-p period_size]" 76 file = fopen(argv[1], "rb"); 77 if (!file) { 78 fprintf(stderr, "Unable to open file '%s'\n", argv[1]); 109 fread(&header, sizeof(struct wav_header), 1, file); 116 fprintf(stderr, "Error: '%s' is not a PCM riff/wave file\n", argv[1]) [all...] |
| /external/v8/src/ |
| v8utils.h | 58 void FPRINTF_CHECKING PrintF(FILE* out, const char* format, ...); 61 void Flush(FILE* out); 73 // Read and return the raw bytes in a file. the size of the buffer is returned 79 // Append size chars from str to the file given by filename. 80 // The file is overwritten. Returns the number of chars written. 87 // Write size chars from str to the file given by filename. 88 // The file is overwritten. Returns the number of chars written. 95 // Write size bytes to the file given by filename. 96 // The file is overwritten. Returns the number of bytes written. 106 // to the file given by filename. Only the first len chars are written [all...] |
| /external/webrtc/src/modules/audio_processing/aecm/ |
| aecm_core.h | 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. 200 FILE *farFile; 201 FILE *nearFile; 202 FILE *outFile;
|
| /external/wpa_supplicant_8/hostapd/ |
| dump_state.c | 24 static void fprint_char(FILE *f, char c) 33 static void ieee802_1x_dump_state(FILE *f, const char *prefix, 64 * hostapd_dump_state - SIGUSR1 handler to dump hostapd state to a text file 68 FILE *f; 77 wpa_printf(MSG_DEBUG, "Dump file not defined - ignoring dump " 86 wpa_printf(MSG_WARNING, "Could not open dump file '%s' for "
|
| /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...] |
| /ndk/sources/host-tools/sed-4.2.1/sed/ |
| sed.h | 47 FILE *fp; 180 FILE *fp; 211 extern void fmt P_ ((const char *line, const char *line_end, int max_length, FILE *output_file)); 221 /* If set, reset line counts on every new file. */
|
| /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
| tree-flow.h | 6 This file is part of GCC. 19 along with GCC; see the file COPYING3. If not see 406 extern void gimple_dump_bb (basic_block, FILE *, int, int); 409 extern void gimple_dump_cfg (FILE *, int); 411 extern void dump_cfg_stats (FILE *); 417 extern void print_loops (FILE *, int); 418 extern void print_loops_bb (FILE *, basic_block, int, int); 469 extern void dump_generic_bb (FILE *, basic_block, int, int); 478 extern void dump_dfa_stats (FILE *); 481 extern void dump_referenced_vars (FILE *); [all...] |
| /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
| tree-flow.h | 6 This file is part of GCC. 19 along with GCC; see the file COPYING3. If not see 406 extern void gimple_dump_bb (basic_block, FILE *, int, int); 409 extern void gimple_dump_cfg (FILE *, int); 411 extern void dump_cfg_stats (FILE *); 417 extern void print_loops (FILE *, int); 418 extern void print_loops_bb (FILE *, basic_block, int, int); 469 extern void dump_generic_bb (FILE *, basic_block, int, int); 478 extern void dump_dfa_stats (FILE *); 481 extern void dump_referenced_vars (FILE *); [all...] |
| /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
| tree-flow.h | 6 This file is part of GCC. 19 along with GCC; see the file COPYING3. If not see 406 extern void gimple_dump_bb (basic_block, FILE *, int, int); 409 extern void gimple_dump_cfg (FILE *, int); 411 extern void dump_cfg_stats (FILE *); 417 extern void print_loops (FILE *, int); 418 extern void print_loops_bb (FILE *, basic_block, int, int); 469 extern void dump_generic_bb (FILE *, basic_block, int, int); 478 extern void dump_dfa_stats (FILE *); 481 extern void dump_referenced_vars (FILE *); [all...] |
| /external/e2fsprogs/lib/e2p/ |
| ls.c | 10 * This file can be redistributed under the terms of the GNU Library General 24 static void print_user (unsigned short uid, FILE *f) 36 static void print_group (unsigned short gid, FILE *f) 95 static void print_features(struct ext2_super_block * s, FILE *f) 116 static void print_mntopts(struct ext2_super_block * s, FILE *f) 141 static void print_super_flags(struct ext2_super_block * s, FILE *f) 176 void list_super2(struct ext2_super_block * sb, FILE *f)
|
| /external/libpng/contrib/visupng/ |
| PngFile.c | 2 // PNGFILE.C -- Image File Functions 46 // Windows open-file functions 100 static FILE *pfFile; 112 // open the PNG input file 255 // read the additional chunks in the PNG file (not really needed) 293 static FILE *pfFile; 298 // open the PNG output file 339 // write the file header information 365 // write the additional chunks to the PNG file (not really needed) 409 (FILE *)png_ptr->io_ptr) [all...] |