Lines Matching full:whence
1912 },llseek:function (stream, offset, whence) {
1914 if (whence === 1) { // SEEK_CUR.
1916 } else if (whence === 2) { // SEEK_END.
2417 },llseek:function (stream, offset, whence) {
2419 if (whence === 1) { // SEEK_CUR.
2421 } else if (whence === 2) { // SEEK_END.
3260 },llseek:function (stream, offset, whence) {
3264 return stream.stream_ops.llseek(stream, offset, whence);
3915 function _lseek(fildes, offset, whence) {
3916 // off_t lseek(int fildes, off_t offset, int whence);
3924 return FS.llseek(stream, offset, whence);
3937 }function _fseek(stream, offset, whence) {
3938 // int fseek(FILE *stream, long offset, int whence);
3941 var ret = _lseek(fd, offset, whence);