HomeSort by relevance Sort by last modified time
    Searched refs:whence (Results 126 - 150 of 266) sorted by null

1 2 3 4 56 7 8 91011

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_win.cc 123 off_t _lseek(int fd, off_t offset, int whence) {
124 return ki_lseek(fd, offset, whence);
kernel_wrap_bionic.cc 298 int WRAP(seek)(int fd, off64_t offset, int whence, int64_t* new_offset) {
299 *new_offset = ki_lseek(fd, offset, whence);
424 int _real_lseek(int fd, int64_t offset, int whence, int64_t* new_offset) {
427 int ret = REAL(seek)(fd, offset, whence, &nacl_new_offs);
kernel_wrap_glibc.cc 297 int WRAP(seek)(int fd, off_t offset, int whence, off_t* new_offset) {
298 *new_offset = ki_lseek(fd, offset, whence);
523 int _real_lseek(int fd, off_t offset, int whence, off_t* new_offset) {
525 return REAL(seek)(fd, offset, whence, new_offset);
  /external/chromium_org/net/base/
file_stream_context.cc 115 void FileStream::Context::SeekAsync(Whence whence,
124 &Context::SeekFileImpl, base::Unretained(this), whence, offset),
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/nestegg/test/
test.c 30 stdio_seek(int64_t offset, int whence, void * file)
33 return fseek(fp, offset, whence);
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.h 374 inline off_t lseek(int fd, off_t offset, int whence) {
375 return _lseek(fd, offset, whence);
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.h 371 inline off_t lseek(int fd, off_t offset, int whence) {
372 return _lseek(fd, offset, whence);
  /external/libvpx/libvpx/third_party/nestegg/test/
test.c 30 stdio_seek(int64_t offset, int whence, void * file)
33 return fseek(fp, offset, whence);
  /external/qemu/android/
snapshot.c 65 seek_or_die(int fd, off_t offset, int whence)
67 off_t ret = lseek(fd, offset, whence);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/test/
test.c 30 stdio_seek(int64_t offset, int whence, void * file)
33 return fseek(fp, offset, whence);
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdio.in.h 323 extern int fseeko (FILE *fp, off_t offset, int whence);
324 # define fseek(fp, offset, whence) fseeko (fp, (off_t)(offset), whence)
335 extern int rpl_fseek (FILE *fp, long offset, int whence);
  /external/bison/darwin-lib/
stdio.h 769 _GL_FUNCDECL_RPL (fseek, int, (FILE *fp, long offset, int whence)
771 _GL_CXXALIAS_RPL (fseek, int, (FILE *fp, long offset, int whence));
773 _GL_CXXALIAS_SYS (fseek, int, (FILE *fp, long offset, int whence));
790 _GL_FUNCDECL_RPL (fseeko, int, (FILE *fp, off_t offset, int whence)
792 _GL_CXXALIAS_RPL (fseeko, int, (FILE *fp, off_t offset, int whence));
795 _GL_FUNCDECL_SYS (fseeko, int, (FILE *fp, off_t offset, int whence)
798 _GL_CXXALIAS_SYS (fseeko, int, (FILE *fp, off_t offset, int whence));
    [all...]
  /external/bison/linux-lib/
stdio.h 769 _GL_FUNCDECL_RPL (fseek, int, (FILE *fp, long offset, int whence)
771 _GL_CXXALIAS_RPL (fseek, int, (FILE *fp, long offset, int whence));
773 _GL_CXXALIAS_SYS (fseek, int, (FILE *fp, long offset, int whence));
790 _GL_FUNCDECL_RPL (fseeko, int, (FILE *fp, off_t offset, int whence)
792 _GL_CXXALIAS_RPL (fseeko, int, (FILE *fp, off_t offset, int whence));
795 _GL_FUNCDECL_SYS (fseeko, int, (FILE *fp, off_t offset, int whence)
798 _GL_CXXALIAS_SYS (fseeko, int, (FILE *fp, off_t offset, int whence));
    [all...]
  /external/chromium_org/base/files/
file_win.cc 119 int64 File::Seek(Whence whence, int64 offset) {
127 DWORD move_method = static_cast<DWORD>(whence);
file_posix.cc 27 // Make sure our Whence mappings match the system headers.
280 int64 File::Seek(Whence whence, int64 offset) {
287 static_cast<int>(whence));
  /external/chromium_org/base/
platform_file_posix.cc 25 // Make sure our Whence mappings match the system headers.
126 PlatformFileWhence whence,
132 return lseek(file, static_cast<off_t>(offset), static_cast<int>(whence));
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_persist/src/
SyncML_DM_FileHandle.cc 256 DMFileHandler::seek(XPL_FS_SEEK_MODE_T whence, INT32 offset)
271 if ( (file_pos = XPL_FS_Seek(m_nFileHandle, offset, whence,&result)) >=0 )
  /packages/apps/OMA-DM/engine/dmlib/portlib/lj/src/
xpl_File.cc 166 XPL_FS_SEEK_MODE_T whence,
174 switch(whence)
  /packages/apps/OMA-DM/engine/xpl/src/
xpl_File.cc 165 XPL_FS_SEEK_MODE_T whence,
173 switch(whence)
  /external/strace/
file.c 404 int whence; local
409 whence = tcp->u_arg[2];
410 if (whence == SEEK_SET)
414 printxval(whence_codes, whence, "SEEK_???");
423 int whence; local
428 whence = tcp->u_arg[2];
429 if (whence == SEEK_SET)
433 printxval(whence_codes, whence, "SEEK_???");
    [all...]
  /external/bison/lib/
stdio.in.h 457 _GL_FUNCDECL_RPL (fseek, int, (FILE *fp, long offset, int whence)
459 _GL_CXXALIAS_RPL (fseek, int, (FILE *fp, long offset, int whence));
461 _GL_CXXALIAS_SYS (fseek, int, (FILE *fp, long offset, int whence));
478 _GL_FUNCDECL_RPL (fseeko, int, (FILE *fp, off_t offset, int whence)
480 _GL_CXXALIAS_RPL (fseeko, int, (FILE *fp, off_t offset, int whence));
483 _GL_FUNCDECL_SYS (fseeko, int, (FILE *fp, off_t offset, int whence)
486 _GL_CXXALIAS_SYS (fseeko, int, (FILE *fp, off_t offset, int whence));
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
FwdLockEngine.cpp 644 off64_t offset, int whence) {
647 off_t offset, int whence) {
654 offval = FwdLockFile_lseek(session->fileDesc, offset, whence);
  /hardware/ti/omap4-aah/security/tf_crypto_sst/
sst_stub.c 412 SST_WHENCE whence)
419 switch(whence)
438 sOperation.params[1].value.b = (uint32_t)whence;
  /hardware/ti/omap4xxx/security/tf_crypto_sst/
sst_stub.c 413 SST_WHENCE whence)
420 switch(whence)
439 sOperation.params[1].value.b = (uint32_t)whence;
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 161 @Override public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException {
163 return os.lseek(fd, offset, whence);

Completed in 2439 milliseconds

1 2 3 4 56 7 8 91011