Searched refs:ci (Results 1 – 25 of 26) sorted by relevance
12
/curl/lib/ |
H A D | cookie.c | 328 if(!ci) in Curl_cookie_loadfiles() 1173 if(ci->running) in Curl_cookie_add() 1218 if(!ci) { in Curl_cookie_init() 1223 if(!ci) in Curl_cookie_init() 1284 return ci; in Curl_cookie_init() 1363 if(!ci || !Curl_llist_count(&ci->cookielist[myhash])) in Curl_cookie_getlist() 1367 remove_expired(ci); in Curl_cookie_getlist() 1456 if(ci) { in Curl_cookie_clearall() 1481 if(!ci) in Curl_cookie_clearsess() 1507 if(ci) { in Curl_cookie_cleanup() [all …]
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_CERTINFO.md | 68 struct curl_certinfo *ci; 69 res = curl_easy_getinfo(curl, CURLINFO_CERTINFO, &ci); 73 printf("%d certs!\n", ci->num_of_certs); 75 for(i = 0; i < ci->num_of_certs; i++) { 78 for(slist = ci->certinfo[i]; slist; slist = slist->next)
|
H A D | CURLINFO_CERTINFO.md | 76 struct curl_certinfo *ci; 77 res = curl_easy_getinfo(curl, CURLINFO_CERTINFO, &ci); 80 printf("%d certs!\n", ci->num_of_certs); 82 for(i = 0; i < ci->num_of_certs; i++) { 85 for(slist = ci->certinfo[i]; slist; slist = slist->next)
|
/curl/.github/workflows/ |
H A D | fuzz.yml | 11 - '*/ci' 46 uses: curl/curl-fuzzer/.github/workflows/ci.yml@master
|
H A D | distcheck.yml | 11 - '*/ci' 57 make -j5 test-ci 82 make -j5 test-ci 105 make -j5 test-ci
|
H A D | non-native.yml | 11 - '*/ci' 71 cmake --build bld --config Debug --target test-ci 110 cmake --build bld --config Debug --target test-ci 153 make test-ci V=1 TFLAGS='-j4' 184 cmake --build bld --config Debug --target test-ci 215 gmake test-ci V=1
|
H A D | codeql-analysis.yml | 11 - '*/ci'
|
H A D | linux-old.yml | 25 - '*/ci' 117 run: make -C bld-cares test-ci
|
H A D | checksrc.yml | 13 - '*/ci'
|
H A D | http3-linux.yml | 11 - '*/ci' 517 cmake --build . --verbose --target test-ci 519 make V=1 test-ci 534 cmake --build . --verbose --target curl-pytest-ci 536 make V=1 pytest-ci
|
H A D | curl-for-win.yml | 11 - '*/ci'
|
H A D | windows.yml | 11 - '*/ci' 126 make -C bld -j5 V=1 test-ci 176 cmake --build bld --config '${{ matrix.type }}' --target test-ci 310 make -C bld -j5 V=1 test-ci 401 cmake --build bld --config '${{ matrix.type }}' --target test-ci 525 cmake --build bld --config '${{ matrix.type }}' --target test-ci 814 cmake --build bld --config '${{ matrix.type }}' --target test-ci
|
H A D | checkdocs.yml | 14 - '*/ci'
|
H A D | linux.yml | 11 - '*/ci' 641 … cmake --build . --verbose --target ${{ matrix.build.torture && 'test-torture' || 'test-ci' }} 643 make V=1 ${{ matrix.build.torture && 'test-torture' || 'test-ci' }} 660 cmake --build . --verbose --target curl-pytest-ci 662 make V=1 pytest-ci
|
H A D | macos.yml | 11 - '*/ci' 339 make -C bld V=1 ${{ matrix.build.torture && 'test-torture' || 'test-ci' }} 341 cmake --build bld --target ${{ matrix.build.torture && 'test-torture' || 'test-ci' }}
|
/curl/ |
H A D | Makefile.am | 125 test-ci: test 127 pytest-ci: test 152 test-ci: 153 @(cd tests; $(MAKE) all ci-test) 158 pytest-ci: 159 @(cd tests; $(MAKE) all ci-pytest)
|
H A D | appveyor.sh | 144 cmake --build _bld --config "${PRJ_CFG}" --target test-ci
|
H A D | appveyor.yml | 25 # https://ci.appveyor.com/project/curlorg/curl/history 209 - /\/ci$/
|
/curl/src/ |
H A D | tool_writeout.c | 166 if(wovar->ci) { in writeTime() 167 if(!curl_easy_getinfo(per->curl, wovar->ci, &us)) in writeTime() 294 if(wovar->ci) { in writeString() 295 if(wovar->ci == CURLINFO_HTTP_VERSION) { in writeString() 310 if(!curl_easy_getinfo(per->curl, wovar->ci, &strinfo) && strinfo) in writeString() 442 if(wovar->ci) { in writeLong() 443 if(!curl_easy_getinfo(per->curl, wovar->ci, &longinfo)) in writeLong() 506 if(wovar->ci) { in writeOffset() 507 if(!curl_easy_getinfo(per->curl, wovar->ci, &offinfo)) in writeOffset()
|
H A D | tool_writeout.h | 107 CURLINFO ci; member
|
/curl/tests/ |
H A D | Makefile.am | 168 ci-test: perlcheck all 183 default-pytest: ci-pytest 185 ci-pytest: all
|
H A D | CMakeLists.txt | 50 if(NOT _targetname STREQUAL "test-ci") 70 if(NOT _targetname STREQUAL "pytest-ci") 107 add_runtests(test-ci "-a -p ~flaky ~timing-dependent -r -rm -j20") 112 add_pytest(curl-pytest-ci "-v")
|
/curl/lib/vtls/ |
H A D | vtls.c | 883 struct curl_certinfo *ci = &data->info.certs; in Curl_ssl_free_certinfo() local 885 if(ci->num_of_certs) { in Curl_ssl_free_certinfo() 888 for(i = 0; i < ci->num_of_certs; i++) { in Curl_ssl_free_certinfo() 889 curl_slist_free_all(ci->certinfo[i]); in Curl_ssl_free_certinfo() 890 ci->certinfo[i] = NULL; in Curl_ssl_free_certinfo() 894 ci->certinfo = NULL; in Curl_ssl_free_certinfo() 895 ci->num_of_certs = 0; in Curl_ssl_free_certinfo() 912 ci->num_of_certs = num; in Curl_ssl_init_certinfo() 913 ci->certinfo = table; in Curl_ssl_init_certinfo() 932 DEBUGASSERT(certnum < ci->num_of_certs); in Curl_ssl_push_certinfo_len() [all …]
|
/curl/tests/data/ |
H A D | DISABLED | 50 # example: https://travis-ci.org/curl/curl/builds/81633600
|
/curl/.circleci/ |
H A D | config.yml | 149 - run: make -j3 V=1 test-ci TFLAGS='-j14'
|
Completed in 34 milliseconds
12