Searched +full:libev +full:- +full:dev (Results 1 – 9 of 9) sorted by relevance
| /external/libwebsockets/scripts/ |
| D | travis_install.sh | 7 sudo apt-get update -qq 9 if [ "$LWS_METHOD" == "lwsws" -o "$LWS_METHOD" == "lwsws2" ]; 11 …sudo apt-get install -y -qq realpath libjemalloc1 libev4 libuv-dev libdbus-1-dev valgrind mosquitto 12 sudo apt-get remove python-six 17 wget https://libwebsockets.org/openssl-1.1.0-trusty.tar.bz2 -O/tmp/openssl.tar.bz2 21 sudo update-ca-certificates 24 if [ "$LWS_METHOD" == "mbedtls" -o "$LWS_METHOD" == "ss+mbedtls" ]; 26 sudo apt-get install -y -qq realpath libjemalloc1 libev4 libuv-dev valgrind 27 wget https://libwebsockets.org/openssl-1.1.0-trusty.tar.bz2 -O/tmp/openssl.tar.bz2 31 sudo update-ca-certificates [all …]
|
| /external/curl/.github/workflows/ |
| D | osslq-linux.yml | 3 # SPDX-License-Identifier: curl 5 name: osslq-linux 10 - master 11 - '*/ci' 12 paths-ignore: 13 - '**/*.md' 14 - '**/CMakeLists.txt' 15 - '.azure-pipelines.yml' 16 - '.circleci/**' 17 - '.cirrus.yml' [all …]
|
| D | ngtcp2-linux.yml | 3 # SPDX-License-Identifier: curl 5 name: ngtcp2-linux 10 - master 11 - '*/ci' 12 paths-ignore: 13 - '**/*.md' 14 - '**/CMakeLists.txt' 15 - '.azure-pipelines.yml' 16 - '.circleci/**' 17 - '.cirrus.yml' [all …]
|
| D | quiche-linux.yml | 3 # SPDX-License-Identifier: curl 10 - master 11 - '*/ci' 12 paths-ignore: 13 - '**/*.md' 14 - '**/CMakeLists.txt' 15 - '.azure-pipelines.yml' 16 - '.circleci/**' 17 - '.cirrus.yml' 18 - 'appveyor.*' [all …]
|
| /external/libwebsockets/lib/event-libs/libev/ |
| D | libev.c | 2 * libwebsockets - small server side websockets and web server implementation 4 * Copyright (C) 2010 - 2020 Andy Green <andy@warmcat.com> 25 #include "private-lib-core.h" 26 #include "private-lib-event-libs-libev.h" 28 #define pt_to_priv_ev(_pt) ((struct lws_pt_eventlibs_libev *)(_pt)->evlib_pt) 29 #define vh_to_priv_ev(_vh) ((struct lws_vh_eventlibs_libev *)(_vh)->evlib_vh) 30 #define wsi_to_priv_ev(_w) ((struct lws_wsi_eventlibs_libev *)(_w)->evlib_wsi) 37 struct lws_context_per_thread *pt = ptpr->pt; in lws_ev_hrtimer_cb() 41 us = __lws_sul_service_ripe(pt->pt_sul_owner, LWS_COUNT_PT_SUL_OWNERS, in lws_ev_hrtimer_cb() 44 ev_timer_set(&ptpr->hrtimer, ((float)us) / 1000000.0, 0); in lws_ev_hrtimer_cb() [all …]
|
| /external/oss-fuzz/projects/knot-dns/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 FROM gcr.io/oss-fuzz-base/base-builder 18 RUN apt-get update && apt-get install -y \ 28 pkg-config \ 32 libev-dev 34 ENV GNULIB_TOOL $SRC/gnulib/gnulib-tool 36 RUN git clone --depth=1 --recursive https://git.savannah.gnu.org/git/libunistring.git 37 RUN git clone --depth=1 https://git.lysator.liu.se/nettle/nettle.git 38 RUN git clone --depth=1 https://gitlab.com/gnutls/gnutls.git 39 RUN git clone --depth=1 https://github.com/LMDB/lmdb.git [all …]
|
| /external/libwebsockets/READMEs/ |
| D | README.coding.md | 7 user callback found in test-server.c / test-server-http.c. 34 So it if highly recommended you put your protocol-specific code into the 36 use it dynamically-loaded. 47 - `lws_callback_on_writable(wsi)` for a specific `wsi`, or 49 - `lws_callback_on_writable_all_protocol(protocol)` for all connections 75 You will receive a message about "Illegal back-to-back write of ... detected" 82 and be buffered for completion by lws; it will be auto-completed by the 109 Notice stdout, stderr, stdin are all redirected to /dev/null to enforce your 145 the default poll() backend, and libuv, libev, and libevent event loop 146 libraries that also take this locking-free, nonblocking event loop approach that [all …]
|
| /external/curl/.github/scripts/ |
| D | spellcheck.words | 3 # SPDX-License-Identifier: curl 51 AWS-LC 182 dev 429 libev
|
| /external/libwebsockets/ |
| D | CMakeLists.txt | 2 # libwebsockets - small server side websockets and web server implementation 4 # Copyright (C) 2010 - 2020 Andy Green <andy@warmcat.com> 48 # For selecting between DEBUG / RELEASE, use -DCMAKE_BUILD_TYPE=DEBUG or =RELEASE 61 #set(CMAKE_TOOLCHAIN_FILE contrib/cross-esp32.cmake) 109 option(LWS_WITH_NETWORK "Compile with network-related code" ON) 118 option(LWS_WITH_CGI "Include CGI (spawn process with network-connected stdin/out/err) APIs" OFF) 124 option(LWS_WITH_ZIP_FOPS "Support serving pre-zipped files" OFF) 127 option(LWS_WITH_ACCESS_LOG "Support generating Apache-compatible access logs" OFF) 150 option(LWS_WITH_SECURE_STREAMS "Secure Streams protocol-agnostic API" OFF) 179 option(LWS_SSL_CLIENT_USE_OS_CA_CERTS "SSL support should make use of the OS-installed CA root cert… [all …]
|