/systemd-251/src/import/ |
D | curl-util.c | 18 msg = curl_multi_info_read(g->curl, &k); in curl_glue_check_finished() 45 if (curl_multi_socket_action(g->curl, fd, action, &k) != CURLM_OK) in curl_glue_on_io() 53 static int curl_glue_socket_callback(CURL *curl, curl_socket_t s, int action, void *userdata, void … in curl_glue_socket_callback() argument 59 assert(curl); in curl_glue_socket_callback() 95 if (curl_multi_assign(g->curl, s, io) != CURLM_OK) in curl_glue_socket_callback() 118 if (curl_multi_socket_action(g->curl, CURL_SOCKET_TIMEOUT, 0, &k) != CURLM_OK) in curl_glue_on_timer() 126 static int curl_glue_timer_callback(CURLM *curl, long timeout_ms, void *userdata) { in curl_glue_timer_callback() argument 130 assert(curl); in curl_glue_timer_callback() 166 if (g->curl) in curl_glue_unref() 167 curl_multi_cleanup(g->curl); in curl_glue_unref() [all …]
|
D | pull-job.c | 39 curl_glue_remove_and_free(j->glue, j->curl); in pull_job_unref() 101 curl_glue_remove_and_free(j->glue, j->curl); in pull_job_restart() 102 j->curl = NULL; in pull_job_restart() 125 void pull_job_curl_on_finished(CurlGlue *g, CURL *curl, CURLcode result) { in pull_job_curl_on_finished() argument 131 if (curl_easy_getinfo(curl, CURLINFO_PRIVATE, (char **)&j) != CURLE_OK) in pull_job_curl_on_finished() 142 code = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in pull_job_curl_on_finished() 151 code = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &status); in pull_job_curl_on_finished() 179 … code = curl_easy_getinfo(j->curl, CURLINFO_RESPONSE_CODE, &status); in pull_job_curl_on_finished() 561 code = curl_easy_getinfo(j->curl, CURLINFO_RESPONSE_CODE, &status); in pull_job_header_callback() 726 r = curl_glue_make(&j->curl, j->url, j); in pull_job_begin() [all …]
|
D | curl-util.h | 16 CURLM *curl; member 20 void (*on_finished)(CurlGlue *g, CURL *curl, CURLcode code);
|
D | pull-job.h | 46 CURL *curl; member 89 void pull_job_curl_on_finished(CurlGlue *g, CURL *curl, CURLcode result);
|
D | meson.build | 16 'curl-util.c', 17 'curl-util.h')
|
/systemd-251/tools/ |
D | update-hwdb.sh | 19 curl --fail -L -o usb.ids 'http://www.linux-usb.org/usb.ids' 20 curl --fail -L -o pci.ids 'http://pci-ids.ucw.cz/v2.2/pci.ids' 21 curl --fail -L -o ma-large.txt 'http://standards-oui.ieee.org/oui/oui.txt' 22 curl --fail -L -o ma-medium.txt 'http://standards-oui.ieee.org/oui28/mam.txt' 23 curl --fail -L -o ma-small.txt 'http://standards-oui.ieee.org/oui36/oui36.txt' 24 curl --fail -L -o pnp_id_registry.html 'https://uefi.org/uefi-pnp-export' 25 curl --fail -L -o acpi_id_registry.html 'https://uefi.org/uefi-acpi-export'
|
D | update-syscall-tables.sh | 7 curl --fail -L -o syscall-list.txt 'https://raw.githubusercontent.com/hrw/syscalls-table/master/sys… 10 …curl --fail -L -o "syscalls-$arch.txt" "https://raw.githubusercontent.com/hrw/syscalls-table/maste…
|
D | update-hwdb-autosuspend.sh | 7 (curl --fail -L 'https://chromium.googlesource.com/chromiumos/platform2/+/master/power_manager/udev… 16 curl --fail -L 'https://gitlab.freedesktop.org/libfprint/libfprint/-/raw/master/data/autosuspend.hw…
|
D | coverity.sh | 35 AUTH_RES=`curl -s --form project="$COVERITY_SCAN_PROJECT_NAME" --form token="$COVERITY_SCAN_TOKEN" … 129 response=$(curl \
|
/systemd-251/src/journal-remote/ |
D | journal-upload.c | 64 #define easy_setopt(curl, opt, value, level, cmd) \ argument 66 code = curl_easy_setopt(curl, opt, value); \ 208 _cleanup_(curl_easy_cleanupp) CURL *curl = NULL; in start_upload() 210 curl = curl_easy_init(); in start_upload() 211 if (!curl) in start_upload() 217 easy_setopt(curl, CURLOPT_TIMEOUT, in start_upload() 222 easy_setopt(curl, CURLOPT_POST, 1L, in start_upload() 225 easy_setopt(curl, CURLOPT_ERRORBUFFER, u->error, in start_upload() 229 easy_setopt(curl, CURLOPT_WRITEFUNCTION, output_callback, in start_upload() 232 easy_setopt(curl, CURLOPT_WRITEDATA, data, in start_upload() [all …]
|
/systemd-251/src/basic/linux/ |
D | update.sh | 7 …curl --fail "https://raw.githubusercontent.com/torvalds/linux/master/include/uapi/linux/$i" -o "$i"
|
/systemd-251/mkosi.default.d/arch/ |
D | 10-mkosi.arch | 17 curl
|
/systemd-251/src/shared/ |
D | format-table.c | 535 _cleanup_free_ char *curl = NULL; in table_dedup_cell() local 555 curl = strdup(od->url); in table_dedup_cell() 556 if (!curl) in table_dedup_cell() 573 nd->url = TAKE_PTR(curl); in table_dedup_cell() 758 _cleanup_free_ char *curl = NULL; in table_update() local 772 curl = strdup(od->url); in table_update() 773 if (!curl) in table_update() 790 nd->url = TAKE_PTR(curl); in table_update()
|
/systemd-251/ |
D | NEWS | 13328 # curl -H"Accept: application/json" http://localhost:19531/entries
|