Home
last modified time | relevance | path

Searched refs:l (Results 1 – 25 of 82) sorted by relevance

1234

/curl/scripts/
H A Dchecksrc.pl384 my $l = "";
397 my $l = $_;
422 code => $l
432 code => $l
439 checkwarn("LONGLINE", $line, length($l), $file, $l,
443 if($l =~ /^(.*)\t/) {
490 $l="";
603 $line, length($l)-length($postparen), $file, $l,
717 if($l =~ /^(.*\W)
898 if(($l eq $nostr) &&
[all …]
H A Drelease-notes.pl64 for my $l (@releasenotes) {
112 for my $l (@gitlog) {
113 chomp $l;
114 if($l =~ /^commit/) {
183 for my $l (@releasenotes) {
185 push @o, $l;
200 elsif($l =~ /^ o .*/) {
201 push @bullets, $l;
217 push @o, $l;
231 for my $l (@o) {
[all …]
H A Dlog2changes.pl64 my $l = $_;
66 if($l =~/^commit ([[:xdigit:]]*) ?(.*)/) {
74 elsif($l =~ /^Author: *(.*) +</) {
77 elsif($l =~ /^CommitDate: (.*)/) {
80 elsif($l =~ /^( )(.*)/) {
H A Dcopyright.pl55 my $l = $_;
57 if($l =~ /.* ?copyright .* (\d\d\d\d|)/i) {
59 while($l =~ /([\d]{4})/g) {
63 col => index($l, $1),
64 code => $l
73 col => index($l, $1),
74 code => $l
80 if($l =~ /SPDX-License-Identifier:/) {
H A Dsingleuse.pl177 my $l = $_;
178 chomp $l;
180 if($l =~ /^([0-9a-z_-]+)\.o:/) {
183 if($l =~ /^([0-9a-f]+) T (.*)/) {
189 elsif($l =~ /^ U (.*)/) {
H A Dmanagen65 my $l;
82 $l = "\\fI\\-\\-$klong\\fP$trail";
84 return $l;
141 my $l = length($e);
143 if(($w + $l + $spaces) >= $width) {
150 $w += $l; # new width
169 for my $l (@desc) {
171 if($l !~ /^[\n\r]+/) {
173 $l =~ s/^\[([0-9q]*)\]//;
186 chomp $l;
[all …]
/curl/docs/examples/
H A Dadddocsref.pl34 my $l = $_;
35 if($l =~ /\/* $docroot/) {
38 elsif($l =~ /^( *).*curl_easy_setopt\([^,]*, *([^ ,]*) *,/) {
42 print NEW $l;
44 elsif($l =~ /^( *).*(curl_([^\(]*))\(/) {
47 print NEW $l;
50 print NEW $l;
H A Dheaderapi.c31 static size_t write_cb(char *data, size_t n, size_t l, void *userp) in write_cb() argument
36 return n*l; in write_cb()
/curl/tests/
H A Dtest1139.pl111 my $l= $_;
112 if($l =~ /(CURL(OPT|INFO|MOPT)_\w+) *([0-9.]*) *([0-9.-]*) *([0-9.]*)/) {
195 my ($l, $s, $rd)=($1, $2, $3);
199 if(($l cmp $prevlong) < 0) {
200 print STDERR "tool_getparam.c:$no: '$l' is NOT placed in alpha-order\n";
202 if($l =~ /\"(.*)\"/) {
214 $prevlong = $l;
228 my $l= $_;
229 $l =~ s/\\-/-/g;
230 if($l =~ /^\.IP \"(-[^\"]*)\"/) {
[all …]
H A Dtest1275.pl44 my $l;
51 $l++;
52 if(($l == 1) && ($line =~ /^---/)) {
74 "$f:$l:$c:error: lowercase $word after period\n";
96 "$f:$l:$c:error: lowercase $word after period\n";
H A Dtest1140.pl64 my $l = $_;
65 while($l =~ s/\\f(.)([^ ]*)\\f(.)//) {
88 if($l =~ /(curl([^ ]*)\(3\))/i) {
92 if($l =~ /^\.BR (.*)/) {
H A Dtest1276.pl27 my ($l) = @_;
28 $l =~ s/([^\x20-\x7f])/sprintf "%%%02x", ord $1/eg;
29 return $l;
/curl/lib/
H A Dhttp_aws_sigv4.c83 struct curl_slist *l; in trim_headers() local
84 for(l = head; l; l = l->next) { in trim_headers()
88 Curl_strntolower(l->data, l->data, colon); in trim_headers()
90 value = &l->data[colon]; in trim_headers()
147 struct curl_slist *l; in make_headers() local
212 for(l = data->set.headers; l; l = l->next) { in make_headers()
273 for(l = head; l; l = l->next) { in make_headers()
277 char *tmp = l->data; in make_headers()
279 l->data = next->data; in make_headers()
286 for(l = head; l; l = l->next) { in make_headers()
[all …]
H A Doptiontable.pl75 my $l = $_;
78 if($l =~ /(.*)\),/) {
88 chomp $l;
89 $fl .= $l;
H A Dllist.c39 Curl_llist_init(struct Curl_llist *l, Curl_llist_dtor dtor) in Curl_llist_init() argument
41 l->size = 0; in Curl_llist_init()
42 l->dtor = dtor; in Curl_llist_init()
43 l->head = NULL; in Curl_llist_init()
44 l->tail = NULL; in Curl_llist_init()
H A Dhash.c106 struct Curl_llist *l; in Curl_hash_add2() local
119 l = FETCH_LIST(h, key, key_len); in Curl_hash_add2()
121 for(le = l->head; le; le = le->next) { in Curl_hash_add2()
124 Curl_llist_remove(l, le, (void *)h); in Curl_hash_add2()
132 Curl_llist_append(l, he, &he->list); in Curl_hash_add2()
162 struct Curl_llist *l; in Curl_hash_delete() local
167 l = FETCH_LIST(h, key, key_len); in Curl_hash_delete()
169 for(le = l->head; le; le = le->next) { in Curl_hash_delete()
189 struct Curl_llist *l; in Curl_hash_pick() local
194 l = FETCH_LIST(h, key, key_len); in Curl_hash_pick()
[all …]
H A Dsplay.c45 struct Curl_tree N, *l, *r, *y; in Curl_splay() local
50 l = r = &N; in Curl_splay()
80 l->larger = t; /* link larger */ in Curl_splay()
81 l = t; in Curl_splay()
88 l->larger = t->smaller; /* assemble */ in Curl_splay()
/curl/.github/scripts/
H A Dbadwords.pl31 my $l = 0;
35 $l++;
50 print STDERR "$f:$l:$c: error: found bad word \"$w\"\n";
51 printf STDERR " %4d | $in\n", $l;
H A Dverify-examples.pl49 my $l = 0;
85 $l++;
91 return ($fail ? 0 : $l);
H A Dverify-synopsis.pl43 my $l = 0;
65 $l++;
H A Dcleanspell.pl83 for my $l (@out) {
84 print O $l;
/curl/packages/OS400/
H A Dccsidcurl.c168 int l; in dynconvert() local
182 if(l < 0) { in dynconvert()
199 l += l2; in dynconvert()
402 if(l <= 0) in convert_version_info_string()
406 *bufp += l; in convert_version_info_string()
703 int l; in Curl_formadd_convert() local
720 l = convert(cp, MAX_CONV_EXPANSION * l, ASCII_CCSID, in Curl_formadd_convert()
723 if(l < 0) { in Curl_formadd_convert()
738 return l; in Curl_formadd_convert()
1027 int l; in Curl_formget_callback_ccsid() local
[all …]
/curl/tests/libtest/
H A Dlib1945.c45 static size_t write_cb(char *data, size_t n, size_t l, void *userp) in write_cb() argument
50 return n*l; in write_cb()
H A Dlib1947.c29 static size_t writecb(char *data, size_t n, size_t l, void *userp) in writecb() argument
34 return n*l; in writecb()
H A Dlib1523.c43 static size_t write_cb(char *d, size_t n, size_t l, void *p) in write_cb() argument
48 return n*l; in write_cb()

Completed in 66 milliseconds

1234