OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SANITIZE_ALLOW_PATH
(Results
1 - 4
of
4
) sorted by null
/external/curl/tests/unit/
unit1604.c
52
((flags &
SANITIZE_ALLOW_PATH
) ?
53
"
SANITIZE_ALLOW_PATH
" : ""),
106
{ "f:foo",
SANITIZE_ALLOW_PATH
,
112
{ "f:\\foo",
SANITIZE_ALLOW_PATH
,
118
{ "f:/foo",
SANITIZE_ALLOW_PATH
,
122
{ "\\\\?\\C:\\foo",
SANITIZE_ALLOW_PATH
,
162
{ "f:\\com1",
SANITIZE_ALLOW_PATH
,
171
{ "f:\\com1", SANITIZE_ALLOW_RESERVED |
SANITIZE_ALLOW_PATH
,
174
{ "com1:\\com1",
SANITIZE_ALLOW_PATH
,
177
{ "com1:\\com1", SANITIZE_ALLOW_RESERVED |
SANITIZE_ALLOW_PATH
,
[
all
...]
/external/curl/src/
tool_doswin.h
29
#define
SANITIZE_ALLOW_PATH
(1<<1) /* Allow path separators and colons */
tool_doswin.c
109
f:\foo:bar => f:\foo:bar (flag
SANITIZE_ALLOW_PATH
)
120
SANITIZE_ALLOW_PATH
: Allow path separators and colons.
152
if((flags &
SANITIZE_ALLOW_PATH
)) {
184
if((flags &
SANITIZE_ALLOW_PATH
) && !strncmp(target, "\\\\?\\", 4))
196
(!(flags & (SANITIZE_ALLOW_COLONS|
SANITIZE_ALLOW_PATH
)) && *p == ':') ||
197
(!(flags &
SANITIZE_ALLOW_PATH
) && (*p == '/' || *p == '\\'))) {
211
if(!(flags &
SANITIZE_ALLOW_PATH
) && len) {
372
*d = ((flags & (SANITIZE_ALLOW_COLONS|
SANITIZE_ALLOW_PATH
))) ? ':' : '_';
379
if((flags & (SANITIZE_ALLOW_COLONS|
SANITIZE_ALLOW_PATH
)) && *s == ':')
381
else if((flags &
SANITIZE_ALLOW_PATH
) && (*s == '/' || *s == '\\')
[
all
...]
tool_urlglob.c
701
(
SANITIZE_ALLOW_PATH
|
Completed in 238 milliseconds