/ndk/sources/cxx-stl/stlport/src/ |
D | _stdio_file.h | 41 inline int _FILE_fd(const FILE *__f) { in _FILE_fd() 57 return (int)::_fileno((FILE*)__f); in _FILE_fd() 62 inline int _FILE_fd(const FILE *__f) { return __f->__file; } 66 inline int _FILE_fd(const FILE *__f) { return (int) __f->__pad[2]; } 72 inline int _FILE_fd(const FILE *__f) { return fileno(__CONST_CAST(FILE*, __f)); } 76 inline int _FILE_fd(const FILE *__f) { return __f->_fileno; } 80 inline int _FILE_fd(const FILE *__f) { return __f->fd; } 91 inline int _FILE_fd(const FILE *__f) { return ::fileno(__CONST_CAST(FILE*, __f)); } 93 inline int _FILE_fd(const FILE *__f) { return ::_fileno(__CONST_CAST(FILE*, __f)); } 98 inline int _FILE_fd(const FILE *__f) { return __f->_handle; } [all …]
|
D | stdio_streambuf.h | 53 stdio_streambuf_base(FILE*); 70 FILE* _M_file; 75 stdio_istreambuf(FILE* __f) : stdio_streambuf_base(__f) {} in stdio_istreambuf() 87 stdio_ostreambuf(FILE* __f) : stdio_streambuf_base(__f) {} in stdio_ostreambuf()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstdio | 41 FILE 47 FILE* tmpfile(void); 49 int fclose(FILE* stream); 50 int fflush(FILE* stream); 51 FILE* fopen(const char* restrict filename, const char* restrict mode); 52 FILE* freopen(const char* restrict filename, const char * restrict mode, 53 FILE * restrict stream); 54 void setbuf(FILE* restrict stream, char* restrict buf); 55 int setvbuf(FILE* restrict stream, char* restrict buf, int mode, size_t size); 56 int fprintf(FILE* restrict stream, const char* restrict format, ...); [all …]
|
D | cwchar | 34 int fwprintf(FILE* restrict stream, const wchar_t* restrict format, ...); 35 int fwscanf(FILE* restrict stream, const wchar_t* restrict format, ...); 38 int vfwprintf(FILE* restrict stream, const wchar_t* restrict format, va_list arg); 39 int vfwscanf(FILE* restrict stream, const wchar_t* restrict format, va_list arg); // C99 46 wint_t fgetwc(FILE* stream); 47 wchar_t* fgetws(wchar_t* restrict s, int n, FILE* restrict stream); 48 wint_t fputwc(wchar_t c, FILE* stream); 49 int fputws(const wchar_t* restrict s, FILE* restrict stream); 50 int fwide(FILE* stream, int mode); 51 wint_t getwc(FILE* stream); [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/ |
D | testit | 81 for FILE in $(ls *.fail.cpp); do 82 if $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS -o ./$TEST_EXE > /dev/null 2>&1 85 echo "$FILE should not compile" 95 for FILE in $(ls *.pass.cpp); do 98 echo "Running test: " $FILE 100 …if $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS $(test $1 = no || echo $THREAD_FLAGS) -o .… 107 echo "`pwd`/$FILE failed at run time" 108 …echo "Compile line was:" $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS $(test $1 = no || ec… 113 echo "`pwd`/$FILE failed to compile" 114 …echo "Compile line was:" $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS $(test $1 = no || ec… [all …]
|
D | testit_android | 297 for FILE in $(ls *.fail.cpp); do 298 if run $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS -o $TEST_EXE > /dev/null 2>&1 301 echo "$FILE should not compile" 311 for FILE in $(ls *.pass.cpp); do 313 echo "Running test: " $FILE 315 if run $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS -o $TEST_EXE 322 echo "`pwd`/$FILE failed at run time" 323 echo "Compile line was:" $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS 328 echo "`pwd`/$FILE failed to compile" 329 echo "Compile line was:" $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS [all …]
|
/ndk/build/tools/ |
D | find-case-duplicates.sh | 31 for FILE in $ORG_FILES; do 34 UPFILE=`echo $FILE | tr [a-z] [A-Z]` 36 NEW_FILES="$NEW_FILES $FILE" 39 echo "$FILE" 41 PREVFILE=$FILE
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | utils.h | 25 FILE *ck_fopen P_((const char *name, const char *mode, int fail)); 26 FILE *ck_fdopen P_((int fd, const char *name, const char *mode, int fail)); 27 void ck_fwrite P_((const VOID *ptr, size_t size, size_t nmemb, FILE *stream)); 28 size_t ck_fread P_((VOID *ptr, size_t size, size_t nmemb, FILE *stream)); 29 void ck_fflush P_((FILE *stream)); 30 void ck_fclose P_((FILE *stream)); 32 size_t ck_getline P_((char **text, size_t *buflen, FILE *stream)); 33 FILE * ck_mkstemp P_((char **p_filename, char *tmpdir, char *base));
|
D | utils.c | 54 FILE *fp; 61 static void do_ck_fclose P_((FILE *fp)); 104 static const char *utils_fp_name P_((FILE *fp)); 107 FILE *fp; in utils_fp_name() 126 FILE *fp; in register_open_file() 151 FILE * 157 FILE *fp; 173 FILE * 180 FILE *fp; 195 FILE * [all …]
|
D | sed.h | 47 FILE *fp; 180 FILE *fp; 210 extern void fmt P_ ((const char *line, const char *line_end, int max_length, FILE *output_file));
|
/ndk/tests/build/import-install/ |
D | build.sh | 26 FILE=$DIR/$FILENAME 27 if [ ! -f "$FILE" ]; then 28 MISSING="$MISSING $FILE" 36 for FILE in $MISSING; do echo " $FILE"; done
|
/ndk/ |
D | remove-windows-symlink.sh | 18 FILE=`basename "$SYMLINK"` 23 LINK=`readlink "$FILE"` && \ 25 rm -f "$FILE" && \ 26 cp -a "$LINK" "$FILE")
|
/ndk/sources/android/support/include/ |
D | wchar.h | 172 int fwide (FILE *, int); 176 int fwprintf (FILE *__restrict__, const wchar_t *__restrict__, ...); 180 int vfwprintf (FILE *__restrict__, const wchar_t *__restrict__, va_list); 184 int fwscanf (FILE *__restrict__, const wchar_t *__restrict__, ...); 188 int vfwscanf (FILE *__restrict__, const wchar_t *__restrict__, va_list); 191 wint_t fgetwc (FILE *); 192 wint_t getwc (FILE *); 195 wint_t fputwc (wchar_t, FILE *); 196 wint_t putwc (wchar_t, FILE *); 199 wchar_t *fgetws (wchar_t *__restrict__, int, FILE *__restrict__); [all …]
|
D | stdio.h | 50 int vfwscanf(FILE* __restrict__, const wchar_t* __restrict__, va_list);
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | stdio.in.h | 77 extern int fprintf (FILE *fp, const char *format, ...) 82 extern int fprintf (FILE *fp, const char *format, ...) 96 extern int vfprintf (FILE *fp, const char *format, va_list args) 101 extern int vfprintf (FILE *fp, const char *format, va_list args) 294 extern FILE * fopen (const char *filename, const char *mode); 308 extern FILE * freopen (const char *filename, const char *mode, FILE *stream); 323 extern int fseeko (FILE *fp, off_t offset, int whence); 335 extern int rpl_fseek (FILE *fp, long offset, int whence); 359 extern off_t ftello (FILE *fp); 371 extern long rpl_ftell (FILE *fp); [all …]
|
D | stdio-write.c | 82 fprintf (FILE *stream, const char *format, ...) in fprintf() 105 vfprintf (FILE *stream, const char *format, va_list args) in vfprintf() 119 fputc (int c, FILE *stream) in fputc() 126 fputs (const char *string, FILE *stream) in fputs() 136 FILE *stream = stdout; in puts() 141 fwrite (const void *ptr, size_t s, size_t n, FILE *stream) in fwrite()
|
D | getline.c | 28 getline (char **lineptr, size_t *n, FILE *stream) in getline()
|
/ndk/tests/build/mips-fp4/ |
D | build.sh | 11 local FILE=$2 13 grep -q -w -F -e $INST $FILE 15 echo "$INST expected in file $FILE"
|
/ndk/sources/host-tools/nawk-20071023/ |
D | proto.h | 126 extern int readrec(char **buf, int *bufsize, FILE *inf); 191 extern FILE *redirect(int, Node *); 192 extern FILE *openfile(int, const char *); 193 extern const char *filename(FILE *); 205 extern FILE *popen(const char *, const char *); 206 extern int pclose(FILE *);
|
/ndk/sources/host-tools/toolbox/ |
D | cmp_win.c | 57 FILE *f1 = _tfopen(argv[1], L"rb"); in main() 62 FILE *f2 = _tfopen(argv[2], L"rb"); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | stdio_h.pass.cpp | 85 FILE* fp = 0; in main() 92 static_assert((std::is_same<decltype(tmpfile()), FILE*>::value), ""); in main() 96 static_assert((std::is_same<decltype(fopen("", "")), FILE*>::value), ""); in main() 97 static_assert((std::is_same<decltype(freopen("", "", fp)), FILE*>::value), ""); in main()
|
/ndk/sources/host-tools/ndk-stack/ |
D | ndk-stack-parser.h | 36 NdkCrashParser* CreateNdkCrashParser(FILE* out_handle, const char* sym_root);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/ |
D | cstdio.pass.cpp | 86 std::FILE* fp = 0; in main() 93 static_assert((std::is_same<decltype(std::tmpfile()), std::FILE*>::value), ""); in main() 97 static_assert((std::is_same<decltype(std::fopen("", "")), std::FILE*>::value), ""); in main() 98 static_assert((std::is_same<decltype(std::freopen("", "", fp)), std::FILE*>::value), ""); in main()
|
/ndk/tests/device/test-stlport/unit/cppunit/ |
D | file_reporter.h | 52 explicit FileReporter(FILE* stream, bool doMonitor = false): 142 FILE* _file;
|
/ndk/tests/device/test-gnustl-full/unit/cppunit/ |
D | file_reporter.h | 52 explicit FileReporter(FILE* stream, bool doMonitor = false): 142 FILE* _file;
|