HomeSort by relevance Sort by last modified time
    Searched refs:FILE (Results 76 - 100 of 2654) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/8/platforms/android-8/arch-x86/usr/include/
stdio.h 78 typedef off_t fpos_t; /* stdio file position type */
103 * try to write or read from a file that is in `read' or `write' mode.
123 short _flags; /* flags, below; this FILE is free if 0 */
151 } FILE;
154 extern FILE __sF[];
207 #define SEEK_SET 0 /* set file offset to offset */
210 #define SEEK_CUR 1 /* set file offset to current plus offset */
213 #define SEEK_END 2 /* set file offset to EOF plus offset */
224 void clearerr(FILE *);
225 int fclose(FILE *);
    [all...]
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/
stdio.h 78 typedef off_t fpos_t; /* stdio file position type */
103 * try to write or read from a file that is in `read' or `write' mode.
123 short _flags; /* flags, below; this FILE is free if 0 */
151 } FILE;
154 extern FILE __sF[];
207 #define SEEK_SET 0 /* set file offset to offset */
210 #define SEEK_CUR 1 /* set file offset to current plus offset */
213 #define SEEK_END 2 /* set file offset to EOF plus offset */
224 void clearerr(FILE *);
225 int fclose(FILE *);
    [all...]
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/
stdio.h 78 typedef off_t fpos_t; /* stdio file position type */
103 * try to write or read from a file that is in `read' or `write' mode.
123 short _flags; /* flags, below; this FILE is free if 0 */
151 } FILE;
154 extern FILE __sF[];
207 #define SEEK_SET 0 /* set file offset to offset */
210 #define SEEK_CUR 1 /* set file offset to current plus offset */
213 #define SEEK_END 2 /* set file offset to EOF plus offset */
224 void clearerr(FILE *);
225 int fclose(FILE *);
    [all...]
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/
stdio.h 78 typedef off_t fpos_t; /* stdio file position type */
103 * try to write or read from a file that is in `read' or `write' mode.
123 short _flags; /* flags, below; this FILE is free if 0 */
151 } FILE;
154 extern FILE __sF[];
207 #define SEEK_SET 0 /* set file offset to offset */
210 #define SEEK_CUR 1 /* set file offset to current plus offset */
213 #define SEEK_END 2 /* set file offset to EOF plus offset */
224 void clearerr(FILE *);
225 int fclose(FILE *);
    [all...]
  /bootable/recovery/applypatch/
utils.h 5 * you may not use this file except in compliance with the License.
24 void Write4(int value, FILE* f);
25 void Write8(long long value, FILE* f);
  /external/chromium/base/allocator/
prep_libc.sh 4 # found in the LICENSE file.
14 # OutputFile is the directory where the modified libcmt file should be stored.
34 for FILE in $OBJFILES
36 echo ${FILE}
37 LIB /NOLOGO /IGNORE:4006,4014,4221 /REMOVE:${LIBCMTSRCPATHVS2005}${FILE} $OUTCMT
38 LIB /NOLOGO /IGNORE:4006,4014,4221 /REMOVE:${LIBCMTSRCPATHVS2008}${FILE} $OUTCMT
  /external/clang/test/CodeGen/Inputs/
stdio.h 1 struct FILE;
2 extern int vfprintf(struct FILE *s, const char *format, __builtin_va_list arg);
  /external/harfbuzz/src/
harfbuzz-dump.h 36 void HB_Dump_GSUB_Table (HB_GSUB gsub, FILE *stream);
37 void HB_Dump_GPOS_Table (HB_GPOS gpos, FILE *stream);
  /external/libmtp/src/
util.h 2 * \file util.h
26 void data_dump(FILE *f, void *buf, uint32_t nbytes);
27 void data_dump_ascii (FILE *f, void *buf, uint32_t n, uint32_t dump_boundry);
  /external/libvorbis/vq/
bookutil.h 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
26 extern char *get_line(FILE *in);
27 extern char *setup_line(FILE *in);
28 extern int get_line_value(FILE *in,float *value);
29 extern int get_next_value(FILE *in,float *value);
30 extern int get_next_ivalue(FILE *in,long *ivalue);
32 extern int get_vector(codebook *b,FILE *in,int start,int num,float *a);
33 extern char *find_seek_to(FILE *in,char *s);
36 extern void write_codebook(FILE *out,char *name,const static_codebook *c);
  /external/libvpx/
tools_common.c 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.
17 FILE* set_binary_mode(FILE *stream)
  /external/tcpdump/lbl/
os-solaris2.h 26 int setlinebuf(FILE *);
  /external/webkit/LayoutTests/http/tests/resources/
post-and-verify.cgi 18 open FILE, $values{'path'} || die("Could not open file\n");
19 seek FILE, $values{'start'}, 0;
20 read FILE, $expectedData, $values{'length'};
21 close(FILE);
  /bionic/libc/stdio/
ferror.c 42 ferror(FILE *fp)
flockfile.c 34 * Instead, we use a pthread_mutex_t within the FILE* internal state.
38 * file is locked is totally undefined.
47 flockfile(FILE * fp)
56 ftrylockfile(FILE *fp)
70 funlockfile(FILE * fp)
  /external/libppp/src/
systems.h 39 extern FILE *OpenSecret(const char *);
40 extern void CloseSecret(FILE *);
  /external/libsepol/tests/
debug.h 26 extern void print_ebitmap(ebitmap_t * bitmap, FILE * fp);
27 extern void display_expr(policydb_t * p, cond_expr_t * exp, FILE * fp);
  /external/skia/src/ports/
SkOSFile_stdio.cpp 6 * found in the LICENSE file.
39 size_t curr = ::ftell((FILE*)f); // remember where we are
40 ::fseek((FILE*)f, 0, SEEK_END); // go to the end
41 size_t size = ::ftell((FILE*)f); // record the size
42 ::fseek((FILE*)f, (long)curr, SEEK_SET); // go back to our prev loc
49 ::rewind((FILE*)f);
50 // ::fseek((FILE*)f, 0, SEEK_SET);
59 size_t curr = ::ftell((FILE*)f);
61 SkDEBUGF(("sk_fread: ftell(%p) returned -1 feof:%d ferror:%d\n", f, feof((FILE*)f), ferror((FILE*)f)))
    [all...]
  /external/clang/test/Analysis/
taint-tester.cpp 3 typedef struct _FILE FILE;
5 extern FILE *stdin;
7 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
12 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
16 FILE *fp;
system-header-simulator.h 3 typedef struct _FILE FILE;
4 extern FILE *stdin;
5 extern FILE *stdout;
6 extern FILE *stderr;
7 // Include a variant of standard streams that occur in the pre-processed file.
8 extern FILE *__stdinp;
9 extern FILE *__stdoutp;
10 extern FILE *__stderrp;
13 int fscanf(FILE *restrict, const char *restrict, ...);
30 void setbuf(FILE * restrict, char * restrict)
    [all...]
  /external/compiler-rt/SDKs/darwin/usr/include/
stdio.h 5 * This file is dual licensed under the MIT and the University of Illinois Open
10 * This is a stub SDK header file. This file is not part of the interface of
20 typedef struct __sFILE FILE;
52 extern FILE *__stderrp;
54 int fclose(FILE *);
55 int fflush(FILE *);
56 FILE *fopen(const char * restrict, const char * restrict) __asm(__FOPEN_NAME);
57 int fprintf(FILE * restrict, const char * restrict, ...);
58 size_t fwrite(const void * restrict, size_t, size_t, FILE * restrict
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_print.h 33 FILE *fDebug; /* file to event debugs */
34 FILE *fPrint; /* file to event prints (Buffer) */
53 __print_Boundary(FILE *fOut,
57 __print_Buffer(FILE *fOut,
64 __print_Command(FILE *fOut,
71 __print_Create(FILE *fOut,
75 __print_Done(FILE *fOut,
79 __print_Log(FILE *fOut
    [all...]
  /ndk/tests/build/import-install/
build.sh 26 FILE=$DIR/$FILENAME
27 if [ ! -f "$FILE" ]; then
28 MISSING="$MISSING $FILE"
36 for FILE in $MISSING; do echo " $FILE"; done
  /sdk/emulator/qtools/
dmtrace.h 44 void write2LE(FILE* fstream, unsigned short val);
45 void write4LE(FILE* fstream, unsigned int val);
46 void write8LE(FILE* fstream, unsigned long long val);
47 void writeHeader(FILE *fstream, uint64_t startTime);
48 void writeDataRecord(FILE *fstream, int threadId,
51 void writeKeyFile(FILE *fstream);
52 void writeThreads(FILE *fstream);
53 void writeFunctions(FILE *fstream);
55 FILE *fData;
56 FILE *fTrace
    [all...]
  /external/icu4c/tools/toolutil/
writesrc.h 8 * file name: writesrc.h
27 * Creates a source text file and write a header comment with the ICU copyright.
30 U_CAPI FILE * U_EXPORT2
34 * Creates a source text file and write a header comment with the ICU copyright.
37 U_CAPI FILE * U_EXPORT2
48 usrc_writeArray(FILE *f,
59 usrc_writeUTrie2Arrays(FILE *f,
70 usrc_writeUTrie2Struct(FILE *f,
87 usrc_writeArrayOfMostlyInvChars(FILE *f,

Completed in 1246 milliseconds

1 2 34 5 6 7 8 91011>>