Searched refs:param (Results 1 – 7 of 7) sorted by relevance
/libuv/docs/src/ |
H A D | udp.rst | 202 :param flags: Indicate how the socket will be bound, 284 :param interface_addr: Interface address. 299 :param interface_addr: Interface address. 301 :param source_addr: Source address. 319 :param on: 1 for on, 0 for off. 332 :param ttl: 1 through 255. 345 :param interface_addr: interface address. 358 :param on: 1 for on, 0 for off. 371 :param ttl: 1 through 255. 396 :param bufs: List of buffers to send. [all …]
|
H A D | tcp.rst | 114 :param handle: TCP handle. It should have been initialized with :c:func:`uv_tcp_init`. 116 :param addr: Address to bind to. It should point to an initialized ``struct sockaddr_in`` 119 :param flags: Flags that control the behavior of binding the socket.
|
/libuv/test/ |
H A D | test-thread-priority.c | 53 struct sched_param param; in TEST_IMPL() local 67 ASSERT_OK(pthread_getschedparam(task_id, &policy, ¶m)); in TEST_IMPL()
|
/libuv/src/unix/ |
H A D | core.c | 1580 struct sched_param param; in uv_thread_getpriority() local 1588 r = pthread_getschedparam(tid, &policy, ¶m); in uv_thread_getpriority() 1603 *priority = param.sched_priority; in uv_thread_getpriority() 1636 struct sched_param param; in uv_thread_setpriority() local 1641 r = pthread_getschedparam(tid, &policy, ¶m); in uv_thread_setpriority() 1687 if (param.sched_priority != prio) { in uv_thread_setpriority() 1688 param.sched_priority = prio; in uv_thread_setpriority() 1689 r = pthread_setschedparam(tid, policy, ¶m); in uv_thread_setpriority()
|
/libuv/src/win/ |
H A D | thread.c | 41 static BOOL WINAPI uv__once_inner(INIT_ONCE *once, void* param, void** context) { in uv__once_inner() argument 42 uv__once_data_t* data = param; in uv__once_inner()
|
H A D | tty.c | 128 static DWORD WINAPI uv__tty_console_resize_message_loop_thread(void* param); 136 static DWORD WINAPI uv__tty_console_resize_watcher_thread(void* param); 2320 static DWORD WINAPI uv__tty_console_resize_message_loop_thread(void* param) { argument 2378 static DWORD WINAPI uv__tty_console_resize_watcher_thread(void* param) { argument
|
/libuv/ |
H A D | CMakeLists.txt | 140 set(lint-no-hides-param-msvc $<$<BOOL:${UV_LINT_NO_HIDES_PARAM}>:/wd4457>) 160 list(APPEND uv_cflags ${lint-no-hides-param-msvc})
|
Completed in 19 milliseconds