HomeSort by relevance Sort by last modified time
    Searched refs:file_no (Results 1 - 7 of 7) sorted by null

  /external/stlport/src/details/
fstream_unistd.cpp 158 _STLP_fd file_no; local
193 file_no = OPEN(name, flags, permission);
195 if (file_no < 0)
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) {
204 _M_file_id = file_no;
227 bool _Filebuf_base::_M_open(int file_no, ios_base::openmode)
229 if (_M_is_open || file_no < 0)
232 int mode = fcntl(file_no, F_GETFL);
238 _M_file_id = file_no;
fstream_win32io.cpp 220 _STLP_fd file_no; local
262 file_no = CreateFile (_STLP_PRIV __ASCIIToWide(name).c_str(),
264 file_no = CreateFileA(name,
269 if (file_no == INVALID_STLP_FD)
274 GetFileType(file_no) == FILE_TYPE_DISK &&
276 ((doTruncate && SetEndOfFile(file_no) == 0) ||
278 (SetFilePointer(file_no, 0, NULL, FILE_END) == INVALID_SET_FILE_POINTER)))) {
279 CloseHandle(file_no);
284 _M_file_id = file_no;
332 bool _Filebuf_base::_M_open(int file_no, ios_base::openmode init_mode)
    [all...]
fstream_stdio.cpp 175 _STLP_fd file_no; local
235 file_no = fileno(_M_file);
250 _M_file_id = file_no;
273 bool _Filebuf_base::_M_open( int file_no, ios_base::openmode )
275 if (_M_is_open || file_no < 0)
279 if (FSTAT(file_no, &buf) != 0)
296 _M_file_id = file_no;
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_unistd.cpp 158 _STLP_fd file_no; local
193 file_no = OPEN(name, flags, permission);
195 if (file_no < 0)
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) {
204 _M_file_id = file_no;
227 bool _Filebuf_base::_M_open(int file_no, ios_base::openmode)
229 if (_M_is_open || file_no < 0)
232 int mode = fcntl(file_no, F_GETFL);
238 _M_file_id = file_no;
fstream_win32io.cpp 220 _STLP_fd file_no; local
262 file_no = CreateFile (_STLP_PRIV __ASCIIToWide(name).c_str(),
264 file_no = CreateFileA(name,
269 if (file_no == INVALID_STLP_FD)
274 GetFileType(file_no) == FILE_TYPE_DISK &&
276 ((doTruncate && SetEndOfFile(file_no) == 0) ||
278 (SetFilePointer(file_no, 0, NULL, FILE_END) == INVALID_SET_FILE_POINTER)))) {
279 CloseHandle(file_no);
284 _M_file_id = file_no;
332 bool _Filebuf_base::_M_open(int file_no, ios_base::openmode init_mode)
    [all...]
fstream_stdio.cpp 175 _STLP_fd file_no; local
235 file_no = fileno(_M_file);
250 _M_file_id = file_no;
273 bool _Filebuf_base::_M_open( int file_no, ios_base::openmode )
275 if (_M_is_open || file_no < 0)
279 if (FSTAT(file_no, &buf) != 0)
296 _M_file_id = file_no;
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 274 sym_id, size, line_no, file_no = self.addresses[key]
276 filename = self.files[file_no]

Completed in 162 milliseconds