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

  /external/stlport/src/details/
fstream_unistd.cpp 61 # define LSEEK lseek
67 # define LSEEK lseek64
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) {
285 // Wrapper for lseek or the like.
308 return LSEEK(_M_file_id, offset, whence);
322 if (LSEEK(_M_file_id, offset + len, SEEK_SET) < 0) {
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_unistd.cpp 61 # define LSEEK lseek
67 # define LSEEK lseek64
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) {
285 // Wrapper for lseek or the like.
308 return LSEEK(_M_file_id, offset, whence);
322 if (LSEEK(_M_file_id, offset + len, SEEK_SET) < 0) {
  /external/zlib/
gzlib.c 9 # define LSEEK _lseeki64
12 # define LSEEK lseek64
14 # define LSEEK lseek
204 state->start = LSEEK(state->fd, 0, SEEK_CUR);
289 if (LSEEK(state->fd, state->start, SEEK_SET) == -1)
330 ret = LSEEK(state->fd, offset - state->x.have, SEEK_CUR);
426 offset = LSEEK(state->fd, 0, SEEK_CUR);

Completed in 448 milliseconds