Searched refs:target (Results 1 – 12 of 12) sorted by relevance
/libuv/src/ |
H A D | idna.c | 465 char* target; in uv_utf16_to_wtf8() local 486 if (target == NULL) { in uv_utf16_to_wtf8() 489 *target_ptr = target; in uv_utf16_to_wtf8() 491 target = *target_ptr; in uv_utf16_to_wtf8() 505 *target++ = code_point; in uv_utf16_to_wtf8() 508 if (target == target_end) in uv_utf16_to_wtf8() 513 if (target == target_end) in uv_utf16_to_wtf8() 516 if (target == target_end) in uv_utf16_to_wtf8() 521 if (target == target_end) in uv_utf16_to_wtf8() 524 if (target == target_end) in uv_utf16_to_wtf8() [all …]
|
/libuv/src/win/ |
H A D | atomicops-inl.h | 38 static char INLINE uv__atomic_exchange_set(char volatile* target) { in uv__atomic_exchange_set() argument 39 return _InterlockedOr8(target, 1); in uv__atomic_exchange_set() 44 static inline char uv__atomic_exchange_set(char volatile* target) { in uv__atomic_exchange_set() argument 50 : "=r"(old_value), "=m"(*target) in uv__atomic_exchange_set() 51 : "0"(one), "m"(*target) in uv__atomic_exchange_set() 55 return __sync_fetch_and_or(target, 1); in uv__atomic_exchange_set()
|
H A D | process.c | 456 *(target++) = L'"'; in quote_cmd_arg() 458 return target; in quote_cmd_arg() 464 target += len; in quote_cmd_arg() 465 return target; in quote_cmd_arg() 475 target += len; in quote_cmd_arg() 477 return target; in quote_cmd_arg() 498 *(target++) = L'"'; in quote_cmd_arg() 499 start = target; in quote_cmd_arg() 514 target[0] = L'\0'; in quote_cmd_arg() 516 *(target++) = L'"'; in quote_cmd_arg() [all …]
|
H A D | winsock.c | 42 void **target) { in uv__get_extension_function() argument 50 (void*)target, in uv__get_extension_function() 51 sizeof(*target), in uv__get_extension_function() 57 *target = NULL; in uv__get_extension_function() 65 BOOL uv__get_acceptex_function(SOCKET socket, LPFN_ACCEPTEX* target) { in uv__get_acceptex_function() argument 67 return uv__get_extension_function(socket, wsaid_acceptex, (void**)target); in uv__get_acceptex_function() 71 BOOL uv__get_connectex_function(SOCKET socket, LPFN_CONNECTEX* target) { in uv__get_connectex_function() argument 73 return uv__get_extension_function(socket, wsaid_connectex, (void**)target); in uv__get_connectex_function()
|
H A D | internal.h | 301 BOOL uv__get_acceptex_function(SOCKET socket, LPFN_ACCEPTEX* target); 302 BOOL uv__get_connectex_function(SOCKET socket, LPFN_CONNECTEX* target);
|
/libuv/.github/workflows/ |
H A D | CI-unix.yml | 48 target: google_apis 142 name: build-cross-qemu-${{ matrix.config.target }} 148 …- {target: arm, toolchain: gcc-arm-linux-gnueabi, cc: arm-linux-gnueabi-gcc, qemu: qe… 149 …- {target: armhf, toolchain: gcc-arm-linux-gnueabihf, cc: arm-linux-gnueabihf-gcc, qemu: qe… 150 …- {target: aarch64, toolchain: gcc-aarch64-linux-gnu, cc: aarch64-linux-gnu-gcc, qemu: qe… 151 …- {target: riscv64, toolchain: gcc-riscv64-linux-gnu, cc: riscv64-linux-gnu-gcc, qemu: qe… 152 …- {target: ppc, toolchain: gcc-powerpc-linux-gnu, cc: powerpc-linux-gnu-gcc, qemu: qe… 153 …- {target: ppc64, toolchain: gcc-powerpc64-linux-gnu, cc: powerpc64-linux-gnu-gcc, qemu: qe… 154 …- {target: ppc64le, toolchain: gcc-powerpc64le-linux-gnu, cc: powerpc64le-linux-gnu-gcc, qemu: qe… 155 …- {target: s390x, toolchain: gcc-s390x-linux-gnu, cc: s390x-linux-gnu-gcc, qemu: qe… [all …]
|
/libuv/docs/ |
H A D | make.bat | 21 echo.Please use `make ^<target^>` where ^<target^> is one of
|
H A D | Makefile | 27 @echo "Please use \`make <target>' where <target> is one of"
|
/libuv/docs/src/guide/ |
H A D | threads.rst | 64 Unlike ``pthread_join()`` which allows the target thread to pass back a value to
|
/libuv/test/ |
H A D | test-spawn.c | 1148 WCHAR* quote_cmd_arg(const WCHAR *source, WCHAR *target);
|
/libuv/docs/src/ |
H A D | misc.rst | 453 the target `dst` pointer is unmodified.
|
/libuv/ |
H A D | ChangeLog | 3327 * unix: inline uv_pipe_bind() err_bind goto target (cjihrig) 4992 * unix: use struct sockaddr_storage for target UDP addr (Saúl Ibarra Corretgé) 5617 * build: fix check target for mingw (Sean Farrell) 5924 * build: add install target to the makefile (Navaneeth Kedaram Nambiathan)
|
Completed in 28 milliseconds