/curl/.github/ |
H A D | labeler.yml | 43 docs/libcurl/opts/CURLOPT_KRB*,\ 44 docs/libcurl/opts/CURLOPT_SASL*,\ 48 docs/libcurl/opts/CURLOPT_XOAUTH*,\ 111 - 'docs/cmdline-opts/**' 130 docs/libcurl/opts/CURLOPT_TCP*,\ 149 docs/cmdline-opts/cookie*,\ 214 docs/libcurl/opts/CURLOPT_FTP*,\ 331 docs/cmdline-opts/trace*,\ 364 docs/libcurl/opts/CURLOPT_DNS*,\ 365 docs/libcurl/opts/CURLOPT_DOH*,\ [all …]
|
/curl/tests/ |
H A D | test971.pl | 33 my $opts = $ARGV[0]; 40 my @opts = grep { /[a-z0-9].*\.md$/ && -f "$dir/$_" } readdir($dh); 43 for(@opts) { 47 return @opts; 98 my @veropts = mentions($opts); 107 print STDERR "--$c is in the option directory but not in $opts!\n";
|
H A D | test1139.pl | 155 my %opts = ( 224 $opts{$title} |= 1; 254 $opts{$combo} |= 2; 282 $opts{$combo} |= 4; 292 foreach my $o (keys %opts) { 293 my $where = $opts{$o};
|
/curl/scripts/ |
H A D | ciconfig.pl | 105 my ($opts)=@_; 109 while($opts =~ s/--with-([^ =]*)//) { 114 while($opts =~ s/--enable-([^ =]*)//) { 120 while($opts =~ s/--without-([^ =]*)//) { 125 while($opts =~ s/--disable-([^ =]*)//) {
|
H A D | completion.pl | 42 my @opts = parse_main_opts('--help all', $regex); 46 print qq{$_ \n} foreach (@opts); 50 $opts_str .= qq{ $_ \\\n} foreach (@opts);
|
H A D | delta | 65 my $opts; 68 $opts++; 72 return $opts;
|
/curl/src/ |
H A D | Makefile.mk | 70 include $(PROOT)/docs/cmdline-opts/Makefile.inc 71 $(PROOT)/docs/cmdline-opts/curl.txt: $(addprefix $(PROOT)/docs/cmdline-opts/,$(DPAGES)) $(PROOT)/sc… 72 cd $(PROOT)/docs/cmdline-opts && $(PERL) ../../scripts/managen ascii $(DPAGES) > curl.txt 78 tool_hugehelp.c: $(PROOT)/docs/cmdline-opts/curl.txt mkhelp.pl
|
H A D | Makefile.am | 121 ASCIIPAGE=$(top_builddir)/docs/cmdline-opts/curl.txt 201 (cd $(top_srcdir)/docs/cmdline-opts && make listhelp)
|
/curl/tests/data/ |
H A D | test1478 | 18 src/tool_listhelp.c is in sync with docs/cmdline-opts 22 …/scripts/managen -d %SRCDIR/../docs/cmdline-opts -I %SRCDIR/../include listhelp %SRCDIR/../docs/cm…
|
H A D | test1140 | 22 …ocs/ %PWD/../docs/libcurl/*.3 %PWD/../docs/libcurl/opts/*.3 %PWD/../docs/*.1 %PWD/../docs/cmdline-…
|
H A D | test1173 | 22 …ersions %PWD/../docs/*.1 %PWD/../docs/cmdline-opts/*.1 %PWD/../docs/libcurl/*.3 %PWD/../docs/libc…
|
H A D | test971 | 17 Verify that options-in-versions and docs/cmdline-opts are in sync 21 %SRCDIR/test971.pl %SRCDIR/../docs/options-in-versions %SRCDIR/../docs/cmdline-opts
|
H A D | test1707 | 23 %SRCDIR/test1707.pl %CURL --insecure %LOGDIR/help%TESTNUMBER ../docs/cmdline-opts/curl.txt
|
H A D | test1708 | 23 %SRCDIR/test1707.pl %CURL -F %LOGDIR/help%TESTNUMBER ../docs/cmdline-opts/curl.txt
|
H A D | test1710 | 23 %SRCDIR/test1707.pl %CURL --no-clobber %LOGDIR/help%TESTNUMBER ../docs/cmdline-opts/curl.txt
|
/curl/.github/workflows/ |
H A D | checkdocs.yml | 86 …/CHECKSRC.md docs/libcurl/curl_mprintf.md docs/libcurl/opts/CURLOPT_INTERFACE.md docs/cmdline-opts… 96 …run: find docs/cmdline-opts -name "*.md" ! -name "_*" ! -name MANPAGE.md -print0 | xargs -0 -n1 .g… 115 … run: find docs/libcurl/opts -name "CURL*.md" -print0 | xargs -0 -n1 .github/scripts/cleanspell.pl 118 …run: find docs/cmdline-opts -name "_*.md" -print0 | xargs -0 -n1 .github/scripts/cleancmd.pl --no-… 135 …/scripts/badwords.txt docs/*.md docs/libcurl/*.md docs/libcurl/opts/*.md docs/cmdline-opts/*.md do… 150 run: .github/scripts/verify-examples.pl docs/libcurl/curl*.3 docs/libcurl/opts/*.3
|
/curl/lib/ |
H A D | bufq.h | 102 int opts; /* options for handling queue, see below */ member 132 size_t max_chunks, int opts); 135 size_t max_chunks, int opts);
|
H A D | bufq.c | 231 size_t chunk_size, size_t max_chunks, int opts) in bufq_init() argument 239 q->opts = opts; in bufq_init() 243 int opts) in Curl_bufq_init2() argument 245 bufq_init(q, NULL, chunk_size, max_chunks, opts); in Curl_bufq_init2() 254 size_t max_chunks, int opts) in Curl_bufq_initp() argument 256 bufq_init(q, pool, pool->chunk_size, max_chunks, opts); in Curl_bufq_initp() 336 if(q->chunk_count >= q->max_chunks && (!(q->opts & BUFQ_OPT_SOFT_LIMIT))) in get_spare() 369 (q->opts & BUFQ_OPT_NO_SPARES)) { in prune_head() 412 (q->opts & BUFQ_OPT_NO_SPARES)) { in prune_tail() 459 if((q->chunk_count < q->max_chunks) || (q->opts & BUFQ_OPT_SOFT_LIMIT)) { in Curl_bufq_write()
|
H A D | dynhds.c | 41 const char *value, size_t valuelen, int opts) in entry_new() argument 57 if(opts & DYNHDS_OPT_LOWERCASE) in entry_new() 100 dynhds->opts = 0; in Curl_dynhds_init() 136 void Curl_dynhds_set_opts(struct dynhds *dynhds, int opts) in Curl_dynhds_set_opts() argument 138 dynhds->opts = opts; in Curl_dynhds_set_opts() 178 entry = entry_new(name, namelen, value, valuelen, dynhds->opts); in Curl_dynhds_add()
|
H A D | dynhds.h | 51 int opts; member 84 void Curl_dynhds_set_opts(struct dynhds *dynhds, int opts);
|
/curl/docs/libcurl/opts/ |
H A D | CMakeLists.txt | 29 add_custom_target(curl-opts-man DEPENDS ${man_MANS}) 30 add_dependencies(curl-man curl-opts-man)
|
/curl/tests/unit/ |
H A D | unit2601.c | 93 size_t wsize, size_t rsize, int opts) in check_bufq() argument 104 Curl_bufq_initp(&q, &pool, max_chunks, opts); in check_bufq() 107 Curl_bufq_init2(&q, chunk_size, max_chunks, opts); in check_bufq() 180 Curl_bufq_init2(&q, chunk_size, max_chunks, (opts|BUFQ_OPT_SOFT_LIMIT)); in check_bufq()
|
/curl/packages/OS400/ |
H A D | make-docs.sh | 41 cd cmdline-opts || exit 1
|
/curl/docs/libcurl/ |
H A D | Makefile.am | 27 SUBDIRS = opts
|
/curl/docs/examples/ |
H A D | crawler.c | 122 int opts = HTML_PARSE_NOBLANKS | HTML_PARSE_NOERROR | \ in follow_links() local 124 htmlDocPtr doc = htmlReadMemory(mem->buf, mem->size, url, NULL, opts); in follow_links()
|