OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_FILE_fd
(Results
1 - 4
of
4
) sorted by null
/external/stlport/src/
_stdio_file.h
41
inline int
_FILE_fd
(const FILE *__f) {
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; }
103
inline int
_FILE_fd
(const FILE *__f) { return __f->_fd;
[
all
...]
iostream.cpp
159
{ return
_FILE_fd
(f); }
182
result->_M_open(
_FILE_fd
(f), mode);
/ndk/sources/cxx-stl/stlport/src/
_stdio_file.h
41
inline int
_FILE_fd
(const FILE *__f) {
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; }
103
inline int
_FILE_fd
(const FILE *__f) { return __f->_fd;
[
all
...]
iostream.cpp
159
{ return
_FILE_fd
(f); }
182
result->_M_open(
_FILE_fd
(f), mode);
Completed in 101 milliseconds