Home
last modified time | relevance | path

Searched refs:checksrc (Results 1 – 17 of 17) sorted by relevance

/external/curl/projects/
Dchecksrc.bat116 … %%i in ('dir "%SRC_DIR%\src\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\…
117 … %%i in ('dir "%SRC_DIR%\src\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\…
124 … %%i in ('dir "%SRC_DIR%\lib\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\…
125 … %%i in ('dir "%SRC_DIR%\lib\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\…
130 …n ('dir "%SRC_DIR%\lib\vauth\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\…
131 …n ('dir "%SRC_DIR%\lib\vauth\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\…
136 …n ('dir "%SRC_DIR%\lib\vquic\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\…
137 …n ('dir "%SRC_DIR%\lib\vquic\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\…
142 …in ('dir "%SRC_DIR%\lib\vssh\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\…
143 …in ('dir "%SRC_DIR%\lib\vssh\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\…
[all …]
/external/curl/docs/
DCHECKSRC.md1 # checksrc chapter
8 checksrc.pl [options] [file1] [file2] ...
19 ## What does checksrc warn for?
21 checksrc does not check and verify the code against the entire style guide,
27 checksrc.pl -h
30 problems it detects. At the time of this writing, the existing checksrc
43 - `BADCOMMAND`: There's a bad !checksrc! instruction in the code. See the
107 - `UNUSEDIGNORE`: a checksrc inlined warning ignore was asked for but not used,
113 turned off by default. To enable these warnings, place a `.checksrc` file in
125 Due to the nature of the source code and the flaws of the checksrc tool, there
[all …]
DCODE_REVIEW.md45 Most code style nits are detected by checksrc but not all. Only leave remarks
46 on style deviation once checksrc doesn't find any more.
DCODE_STYLE.md12 `lib/checksrc.pl` script. Invoked with `make checksrc` or even by default by
DCONTRIBUTE.md67 likely to happen. Run `make checksrc` before you submit anything, to make sure
/external/curl/tests/
DMakefile.am112 checksrc: target
113 cd libtest && $(MAKE) checksrc
114 cd unit && $(MAKE) checksrc
115 cd server && $(MAKE) checksrc
119 all-local: checksrc
/external/curl/include/curl/
DMakefile.am33 checksrc: target
34 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(top_srcdir)/include/curl $(pkginclude_HEADERS)
38 all-local: checksrc
/external/curl/tests/server/
DMakefile.am64 checksrc: target
65 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl $(srcdir)/*.[ch]
69 all-local: checksrc
/external/curl/lib/
DMakefile.am32 firefox-db2pem.sh config-vxworks.h Makefile.vxworks checksrc.pl \
140 checksrc: target
141 $(CHECKSRC)(@PERL@ $(srcdir)/checksrc.pl -D$(srcdir) -W$(srcdir)/curl_config.h \
146 all-local: checksrc
Dchecksrc.pl299 sub checksrc { subroutine
378 checksrc($cmd, $line, $file, $l)
/external/curl/tests/libtest/
DMakefile.am142 checksrc: target
143 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(srcdir) $(srcdir)/*.[ch]
147 all-local: checksrc
/external/curl/docs/examples/
DMakefile.am69 checksrc: target
70 $(CHECKSRC)(@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(srcdir) $(srcdir)/*.c)
/external/curl/src/
DMakefile.am140 checksrc: target
141 $(CHECKSRC)(@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(srcdir) \
146 all-local: checksrc
/external/curl/tests/unit/
DMakefile.am72 checksrc: target
73 $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl $(srcdir)/*.[ch]
/external/curl/
DMakefile.am125 projects/checksrc.bat \
326 checksrc: target
327 (cd lib && $(MAKE) checksrc)
328 (cd src && $(MAKE) checksrc)
329 (cd tests && $(MAKE) checksrc)
330 (cd include/curl && $(MAKE) checksrc)
331 (cd docs/examples && $(MAKE) checksrc)
DRELEASE-NOTES28 o checksrc: detect // comments on column 0 [132]
29 o checksrc: verify do-while and spaces between the braces [2]
30 o checksrc: warn on space after exclamation mark [129]
DCHANGES113 - checksrc: detect // comments on column 0
184 - checksrc: warn on space after exclamation mark
1696 - checksrc: verify do-while and spaces between the braces
2204 - checksrc: invoke script with -D to find .checksrc proper
2206 Without the -D command line option, checksrc.pl won't know which
2207 directory to load the ".checksrc" file from when building out of the
2324 - checksrc: ban gmtime/localtime
4235 - Make checksrc complain on 'typedef struct {'
4243 - travis: remove the .checksrc fiddling
4354 - checksrc: enhance the ASTERISKSPACE and update code accordingly
[all …]