HomeSort by relevance Sort by last modified time
    Searched refs:FILE (Results 751 - 775 of 2555) sorted by null

<<31323334353637383940>>

  /bionic/libc/stdio/
fread.c 40 lflush(FILE *fp)
48 fread(void *buf, size_t size, size_t count, FILE *fp)
119 * Before reading from a line buffered or unbuffered file,
125 /* Ignore this file in _fwalk to deadlock. */
130 /* Now flush this file without locking it. */
freopen.c 44 * Re-direct an existing, open (probably) file to some other file.
45 * ANSI is written such that the original file gets closed if at
48 FILE *
49 freopen(const char *file, const char *mode, FILE *fp)
67 * Remember whether the stream was open to begin with, and which file
70 * should work. This is unnecessary if it was not a Unix file.
88 /* Get a new descriptor to refer to the new file. */
89 f = open(file, oflags, DEFFILEMODE)
    [all...]
  /bionic/libstdc++/include/
cstdio 34 * Standard C++ Library wrapper around the C stdio.h header file.
42 using ::FILE;
  /dalvik/tools/hprof-conv/
HprofConv.c 5 * you may not use this file except in compliance with the License.
196 static int ebReadString(ExpandBuf* pBuf, FILE* in)
221 static int ebReadData(ExpandBuf* pBuf, FILE* in, size_t count, int eofExpected)
247 static int ebWriteData(ExpandBuf* pBuf, FILE* out)
426 static int processHeapDump(ExpandBuf* pBuf, FILE* out)
571 * Filter an hprof data file.
573 static int filterData(FILE* in, FILE* out)
592 fprintf(stderr, "ERROR: HPROF file already in 1.0.2 format.\n");
594 fprintf(stderr, "ERROR: expecting HPROF file format 1.0.3\n")
    [all...]
  /dalvik/vm/
Misc.h 5 * you may not use this file except in compliance with the License.
60 * Print a hex dump to the log file.
101 * info to either the log or to a file (or stdout/stderr).
114 FILE* fp;
115 } file; member in union:DebugOutputTarget::__anon771
124 void dvmCreateFileOutputTarget(DebugOutputTarget* target, FILE* fp);
271 * Set the "close on exec" flag on a file descriptor.
  /development/tools/findunused/
removeunusedresources 45 echo REMOVING FILE: $RESLINE
  /external/bluetooth/glib/glib/gnulib/
printf.c 22 * file for a list of people on the GLib Team. See the ChangeLog
49 int _g_gnulib_fprintf (FILE *file, char const *format, ...)
55 retval = _g_gnulib_vfprintf (file, format, args);
90 int _g_gnulib_vfprintf (FILE *file, char const *format, va_list args)
99 fwrite (result, 1, length, file);
  /external/bluetooth/glib/glib/
gprintf.c 65 * @file: the stream to write to.
78 g_fprintf (FILE *file,
86 retval = g_vfprintf (file, format, args);
193 * @file: the stream to write to.
206 g_vfprintf (FILE *file,
212 return _g_vfprintf (file, format, args);
  /external/bluetooth/glib/tests/
file-test.c 22 * file for a list of people on the GLib Team. See the ChangeLog
102 FILE *file; local
104 char *filename = "file-test-data";
105 char *link1 = "file-test-link1";
106 char *link2 = "file-test-link2";
107 char *link3 = "file-test-link3";
111 file = fopen (filename, "w");
112 g_assert (file != NULL && "fopen() failed");
113 fclose (file);
    [all...]
  /external/bzip2/
dlltest.c 5 This file is Public Domain. Welcome any email to me.
121 FILE *fp_w = NULL;
144 FILE *fp_r = NULL;
  /external/chromium/chrome/browser/chromeos/cros/
syslogs_library.cc 3 // found in the LICENSE file.
31 // Called from FILE thread.
75 // Schedule a task on the FILE thread which will then trigger a request
78 BrowserThread::FILE, FROM_HERE,
86 // Called from FILE thread.
90 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
99 // Create temp file.
102 LOG(ERROR) << "Cannot create temp file";
130 LOG(ERROR) << "Cannot read compressed logs file from " <<
  /external/chromium/chrome/browser/
crash_upload_list.cc 3 // found in the LICENSE file.
39 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
56 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
  /external/chromium/net/ftp/
ftp_directory_listing_parser_ls.cc 3 // found in the LICENSE file.
24 // r - file is readable
25 // w - file is writable
26 // x - file is executable
47 // sign at the end indicating the file has ACLs set.
89 // 9. file name (optional, may contain spaces)
177 entry.type = FtpDirectoryListingEntry::FILE;
181 // Some FTP servers do not separate owning group name from file size,
182 // like "group1234". We still want to display the file name for that
191 if (entry.type != FtpDirectoryListingEntry::FILE)
    [all...]
  /external/grub/util/
mbchk.c 43 printf ("Usage: mbchk [OPTION]... [FILE]...\n"
44 "Check if the format of FILE complies with the Multiboot Specification.\n"
56 check_multiboot (const char *filename, FILE *fp)
157 file, especially when the load end address is zero. */
221 FILE *fp;
226 fprintf (stderr, "%s: No such file.\n", argv[optind]);
  /external/jpeg/
example.c 4 * This file illustrates how to use the IJG code as a subroutine library
6 * conjunction with the documentation file libjpeg.doc.
19 * Include file for users of JPEG library.
21 * the typedefs FILE and size_t before you can include jpeglib.h.
67 * Sample routine for JPEG compression. We assume that the target file name
83 * (see the second half of this file for an example). But here we just
91 FILE * outfile; /* target file */
106 /* Step 2: specify data destination (eg, a file) */
141 /* TRUE ensures that we will write a complete interchange-JPEG file
    [all...]
jdatasrc.c 5 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file.
8 * This file contains decompression data source routines for the case of
9 * reading JPEG data from a file (or any stdio stream). While these routines
28 FILE * infile; /* source stream */
48 /* We reset the empty-input-file flag for each image,
65 * There is no such thing as an EOF return. If the end of the file has been
71 * input file, so we handle that case specially.
98 if (src->start_of_file) /* Treat empty input file as fatal error */
182 jpeg_stdio_src (j_decompress_ptr cinfo, FILE * infile
    [all...]
  /external/libsepol/tests/
test-downgrade.c 136 /* Read in the hi policy from file */
193 * Input: char * which is the path to the file containing the binary policy
197 * a failure to open the file, or a failure from prolicydb_read
200 * Description: Get a filename, open file and read binary policy into policydb
205 FILE *in_fp = NULL;
209 /* Open the binary policy file */
231 * Input: char * which is the path to the file containing the binary policy
235 * a failure to open the file, or a failure from prolicydb_read
238 * Description: open file and write the binary policy from policydb structure.
242 FILE *out_fp = NULL
    [all...]
  /external/llvm/lib/Analysis/
ProfileInfoLoader.cpp 5 // This file is distributed under the University of Illinois Open Source
11 // information read in from the dump file.
41 static void ReadProfilingBlock(const char *ToolName, FILE *F,
82 // ProfileInfoLoader ctor - Read the specified profiling data file, exiting the
83 // program if the file is invalid or broken.
90 FILE *F = fopen(Filename.c_str(), "rb");
  /external/opencv/otherlibs/highgui/
bitstrm.h 82 FILE* m_file;
180 FILE* m_file;
  /external/openssl/crypto/pkcs12/
p12_utl.c 104 int i2d_PKCS12_fp(FILE *fp, PKCS12 *p12)
115 PKCS12 *d2i_PKCS12_fp(FILE *fp, PKCS12 **p12)
  /external/ppp/pppd/plugins/rp-pppoe/
debug.c 28 * fp -- file to dump to
37 dumpHex(FILE *fp, unsigned char const *buf, int len)
77 * fp -- file to dump to
86 dumpPacket(FILE *fp, PPPoEPacket *packet, char const *dir)
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 704 GTestLog(GTestLogSeverity severity, const char* file, int line);
862 inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
866 inline int FileNo(FILE* file) { return _fileno(file); }
878 inline int FileNo(FILE* file) { return fileno(file); }
    [all...]
  /external/qemu/distrib/jpeg-6b/
example.c 4 * This file illustrates how to use the IJG code as a subroutine library
6 * conjunction with the documentation file libjpeg.doc.
19 * Include file for users of JPEG library.
21 * the typedefs FILE and size_t before you can include jpeglib.h.
67 * Sample routine for JPEG compression. We assume that the target file name
83 * (see the second half of this file for an example). But here we just
91 FILE * outfile; /* target file */
106 /* Step 2: specify data destination (eg, a file) */
141 /* TRUE ensures that we will write a complete interchange-JPEG file
    [all...]
jdatasrc.c 5 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file.
8 * This file contains decompression data source routines for the case of
9 * reading JPEG data from a file (or any stdio stream). While these routines
28 FILE * infile; /* source stream */
48 /* We reset the empty-input-file flag for each image,
65 * There is no such thing as an EOF return. If the end of the file has been
71 * input file, so we handle that case specially.
98 if (src->start_of_file) /* Treat empty input file as fatal error */
182 jpeg_stdio_src (j_decompress_ptr cinfo, FILE * infile
    [all...]
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_rwops.h 23 /* This file provides a general interface for SDL to read and write
79 FILE *fp;
97 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFile(const char *file, const char *mode);
100 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFP(FILE *fp, int autoclose);

Completed in 1851 milliseconds

<<31323334353637383940>>