Searched refs:f (Results 1 – 7 of 7) sorted by relevance
/libuv/docs/src/ |
H A D | conf.py | 21 with open('../../include/uv/version.h') as f: 22 data = f.read()
|
/libuv/tools/ |
H A D | vswhere_usability_wrapper.cmd | 23 for /f "usebackq tokens=*" %%i in (`vswhere %VSWHERE_ARGS%`) do (
|
/libuv/src/unix/ |
H A D | thread.c | 144 } f; in uv_thread_create_ex() local 171 f.in = entry; in uv_thread_create_ex() 172 err = pthread_create(tid, attr, f.out, arg); in uv_thread_create_ex()
|
H A D | fs.c | 476 ssize_t (*f)(int, const struct iovec*, uv__iovcnt, off_t); in uv__preadv_or_pwritev() local 493 memcpy(&f, &p, sizeof(p)); in uv__preadv_or_pwritev() 494 return f(fd, bufs, nbufs, off); in uv__preadv_or_pwritev()
|
/libuv/ |
H A D | configure.ac | 32 # Xlc has a flag "-f<filename>". Need to use CC_CHECK_FLAG_SUPPORTED_APPEND so
|
H A D | LICENSE-docs | 103 f. Licensed Material means the artistic or literary work, database,
|
/libuv/test/ |
H A D | test-fs.c | 1251 int f, r; in test_sendfile() local 1262 f = open("test_file", UV_FS_O_WRONLY | UV_FS_O_CREAT, S_IWUSR | S_IRUSR); in test_sendfile() 1263 ASSERT_NE(f, -1); in test_sendfile() 1266 setup(f); in test_sendfile() 1268 r = close(f); in test_sendfile() 1330 static void sendfile_setup(int f) { in sendfile_setup() argument 1331 ASSERT_EQ(6, write(f, "begin\n", 6)); in sendfile_setup() 1332 ASSERT_EQ(65542, lseek(f, 65536, SEEK_CUR)); in sendfile_setup() 1333 ASSERT_EQ(4, write(f, "end\n", 4)); in sendfile_setup()
|
Completed in 69 milliseconds