Searched refs:lseek (Results 1 – 12 of 12) sorted by relevance
/curl/src/ |
H A D | tool_cb_see.c | 68 if(LSEEK_ERROR == lseek(per->infd, 0, SEEK_SET)) in tool_seek_cb() 74 if(LSEEK_ERROR == lseek(per->infd, step, SEEK_CUR)) in tool_seek_cb() 83 if(LSEEK_ERROR == lseek(per->infd, offset, whence)) in tool_seek_cb()
|
H A D | tool_util.c | 169 # define _lseeki64(hnd,ofs,whence) lseek(hnd,ofs,whence)
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_SEEKDATA.md | 43 #include <unistd.h> /* for lseek() */ 52 lseek(d->our_fd, offset, origin);
|
H A D | CURLOPT_SEEKFUNCTION.md | 49 connection. The function shall work like fseek(3) or lseek(3) and it gets 61 If you forward the input arguments directly to fseek(3) or lseek(3), note that 74 #include <unistd.h> /* for lseek */ 82 lseek(d->our_fd, offset, origin);
|
H A D | CURLOPT_IOCTLDATA.md | 41 #include <unistd.h> /* for lseek */ 51 lseek(io->fd, 0, SEEK_SET);
|
H A D | CURLOPT_IOCTLFUNCTION.md | 72 #include <unistd.h> /* for lseek */ 82 lseek(io->fd, 0, SEEK_SET);
|
/curl/lib/ |
H A D | curl_setup.h | 468 # undef lseek 469 # define lseek(fdes,offset,whence) _lseeki64(fdes, offset, whence) macro 492 # undef lseek 493 # define lseek(fdes,offset,whence) _lseek(fdes, (long)offset, whence) macro
|
H A D | file.c | 557 lseek(fd, data->state.resume_from, SEEK_SET)) in file_do()
|
/curl/tests/ |
H A D | smbserver.py | 346 os.lseek(fid, 0, os.SEEK_SET)
|
/curl/docs/libcurl/ |
H A D | curl_mime_data_cb.md | 85 seek to a certain position. The function shall work like fseek(3) or lseek(3)
|
/curl/.github/scripts/ |
H A D | spellcheck.words | 466 lseek
|
/curl/tests/server/ |
H A D | tftpd.c | 486 lseek(test->ofile, -1, SEEK_CUR); /* smash lf on top of the cr */ in write_behind()
|
Completed in 37 milliseconds