Searched defs:whence (Results 51 - 69 of 69) sorted by relevance

123

/external/ImageMagick/coders/
H A Dtiff.c883 static toff_t TIFFSeekBlob(thandle_t image,toff_t offset,int whence)
885 return((toff_t) SeekBlob((Image *) image,(MagickOffsetType) offset,whence));
877 TIFFSeekBlob(thandle_t image,toff_t offset,int whence) argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cc600 uptr internal_lseek(fd_t fd, OFF_T offset, int whence) { argument
601 return internal_syscall(SYSCALL(lseek), fd, offset, whence);
/external/curl/lib/
H A Dmime.c635 static int mime_mem_seek(void *instream, curl_off_t offset, int whence) argument
639 switch(whence) {
684 static int mime_file_seek(void *instream, curl_off_t offset, int whence) argument
688 if(whence == SEEK_SET && !offset && !part->fp)
694 return fseek(part->fp, (long) offset, whence)?
1046 static int mime_subparts_seek(void *instream, curl_off_t offset, int whence) argument
1053 if(whence != SEEK_SET || offset)
/external/python/cpython2/Modules/_io/
H A Dbufferedio.c642 _buffered_raw_seek(buffered *self, Py_off_t target, int whence) argument
650 whenceobj = PyLong_FromLong(whence);
1069 int whence = 0; local
1073 if (!PyArg_ParseTuple(args, "O|i:seek", &targetobj, &whence)) {
1076 if (whence < 0 || whence > 2) {
1078 "whence must be between 0 and 2, not %d", whence);
1088 if (whence != 2 && self->readable) {
1093 Don't know how to do that when whence
[all...]
H A Dtextio.c2008 int whence = 0; local
2014 if (!PyArg_ParseTuple(args, "O|i:seek", &cookieObj, &whence))
2026 if (whence == 1) {
2046 else if (whence == 2) {
2077 else if (whence != 0) {
2079 "invalid whence (%d, should be 0, 1 or 2)", whence);
/external/python/cpython2/Objects/
H A Dfileobject.c693 _portable_fseek(FILE *fp, Py_off_t offset, int whence) argument
696 return fseek(fp, offset, whence);
698 return fseeko(fp, offset, whence);
700 return fseek64(fp, offset, whence);
702 return _fseek(fp, offset, whence);
707 switch (whence) {
758 int whence; local
766 whence = 0;
767 if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &whence))
794 ret = _portable_fseek(f->f_fp, offset, whence);
[all...]
H A Dtypeobject.c1401 tail_contains(PyObject *list, int whence, PyObject *o) { argument
1405 for (j = whence+1; j < size; j++) {
/external/python/cpython3/Modules/_io/
H A Dbufferedio.c714 _buffered_raw_seek(buffered *self, Py_off_t target, int whence) argument
722 whenceobj = PyLong_FromLong(whence);
1240 whence: int = 0
1245 _io__Buffered_seek_impl(buffered *self, PyObject *targetobj, int whence) argument
1256 if ((whence < 0 || whence >2)
1258 && (whence != SEEK_HOLE)
1261 && (whence != SEEK_DATA)
1265 "whence value %d unsupported", whence);
[all...]
H A Dtextio.c2053 whence: int = 0
2058 _io_TextIOWrapper_seek_impl(textio *self, PyObject *cookieObj, int whence) argument
2076 if (whence == 1) {
2095 else if (whence == 2) {
2134 else if (whence != 0) {
2136 "invalid whence (%d, should be 0, 1 or 2)", whence);
/external/toybox/toys/posix/
H A Dps.c1376 long long whence; member in struct:proclist
1395 plnew->whence = millitime();
1439 if (filter(otb->slot, ntb->slot, new.whence-old.whence)) {
1569 if (timeout<=now) timeout = new.whence+TT.top.d;
/external/flac/libFLAC/
H A Dmetadata_iterators.c125 static int fseek_wrapper_(FLAC__IOHandle handle, FLAC__int64 offset, int whence);
3440 int fseek_wrapper_(FLAC__IOHandle handle, FLAC__int64 offset, int whence) argument
3442 return fseeko((FILE*)handle, (FLAC__off_t)offset, whence);
/external/kernel-headers/original/uapi/linux/
H A Dfuse.h782 uint32_t whence; member in struct:fuse_lseek_in
/external/python/cpython3/Objects/
H A Dtypeobject.c1534 tail_contains(PyObject *list, int whence, PyObject *o) { argument
1538 for (j = whence+1; j < size; j++) {
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 3884 milliseconds

123