Home
last modified time | relevance | path

Searched refs:IgnoreCase (Results 1 – 19 of 19) sorted by relevance

/reactos/ntoskrnl/fsrtl/
H A Dname.c23 IN BOOLEAN IgnoreCase, in FsRtlIsNameInExpressionPrivate() argument
56 ASSERT(!IgnoreCase || UpcaseTable); in FsRtlIsNameInExpressionPrivate()
80 if (!IgnoreCase) in FsRtlIsNameInExpressionPrivate()
298 IN BOOLEAN IgnoreCase, in FsRtlAreNamesEqual() argument
312 if ((IgnoreCase) && !(UpcaseTable)) in FsRtlAreNamesEqual()
330 IgnoreCase = FALSE; in FsRtlAreNamesEqual()
335 if (!IgnoreCase) in FsRtlAreNamesEqual()
516 IN BOOLEAN IgnoreCase, in FsRtlIsNameInExpression() argument
523 if (IgnoreCase && !UpcaseTable) in FsRtlIsNameInExpression()
531 IgnoreCase = FALSE; in FsRtlIsNameInExpression()
[all …]
/reactos/drivers/filesystems/cdfs/
H A Dcreate.c38 _In_ BOOLEAN IgnoreCase,
63 _In_ BOOLEAN IgnoreCase,
76 _In_ BOOLEAN IgnoreCase,
91 _In_ BOOLEAN IgnoreCase,
183 BOOLEAN IgnoreCase; in _Requires_lock_held_() local
908 if (IgnoreCase) { in _Requires_lock_held_()
1034 _In_ BOOLEAN IgnoreCase, in CdNormalizeFileNames() argument
1988 _In_ BOOLEAN IgnoreCase, in _Requires_lock_held_()
2041 if (IgnoreCase) { in _Requires_lock_held_()
2191 if (IgnoreCase) { in CdOpenDirectoryFromPathEntry()
[all …]
H A Dprefxsup.c56 _In_ BOOLEAN IgnoreCase, in CdInsertPrefix() argument
125 if (IgnoreCase) { in CdInsertPrefix()
293 _In_ BOOLEAN IgnoreCase in _Requires_lock_held_()
371 if (IgnoreCase) { in _Requires_lock_held_()
408 if (IgnoreCase) { in _Requires_lock_held_()
H A Ddirsup.c537 _In_ ULONG IgnoreCase in CdUpdateDirentName() argument
642 if (IgnoreCase) { in CdUpdateDirentName()
797 if (!IgnoreCase) { in CdUpdateDirentName()
828 _In_ BOOLEAN IgnoreCase, in CdFindFile() argument
910 CdUpdateDirentName( IrpContext, Dirent, IgnoreCase ); in CdFindFile()
1001 _In_ BOOLEAN IgnoreCase, in CdFindDirectory() argument
1069 CdUpdateDirentName( IrpContext, Dirent, IgnoreCase ); in CdFindDirectory()
1112 _In_ BOOLEAN IgnoreCase, in CdFindFileByShortName() argument
1212 CdUpdateDirentName( IrpContext, Dirent, IgnoreCase ); in CdFindFileByShortName()
H A Dpathsup.c306 _In_ BOOLEAN IgnoreCase, in CdFindPathEntry() argument
442 CdUpdatePathEntryName( IrpContext, &CompoundPathEntry->PathEntry, IgnoreCase ); in CdFindPathEntry()
784 _In_ BOOLEAN IgnoreCase in CdUpdatePathEntryName() argument
869 if (IgnoreCase) { in CdUpdatePathEntryName()
981 if (IgnoreCase) { in CdUpdatePathEntryName()
H A Dcdprocs.h433 _In_ ULONG IgnoreCase
441 _In_ BOOLEAN IgnoreCase,
451 _In_ BOOLEAN IgnoreCase,
461 _In_ BOOLEAN IgnoreCase,
738 _In_ BOOLEAN IgnoreCase,
746 _In_ BOOLEAN IgnoreCase
786 _In_ BOOLEAN IgnoreCase,
803 _In_ BOOLEAN IgnoreCase
/reactos/modules/rostests/winetests/vbscript/
H A Dregexp.vbs26 Call ok(getVT(x.IgnoreCase) = "VT_BOOL", "getVT(RegExp.IgnoreCase) = " & getVT(x.IgnoreCase))
27 Call ok(x.IgnoreCase = false, "RegExp.IgnoreCase = " & x.IgnoreCase)
110 x.IgnoreCase = true
127 x.IgnoreCase = false
173 Call ok(x.IgnoreCase = false, "RegExp.IgnoreCase = " & x.IgnoreCase)
H A Dvbsregexp55.idl52 HRESULT IgnoreCase([out, retval] VARIANT_BOOL *pIgnoreCase);
55 HRESULT IgnoreCase([in] VARIANT_BOOL pIgnoreCase);
97 HRESULT IgnoreCase([out, retval] VARIANT_BOOL *pIgnoreCase);
100 HRESULT IgnoreCase([in] VARIANT_BOOL pIgnoreCase);
/reactos/dll/win32/vbscript/
H A Dvbsregexp55.idl51 HRESULT IgnoreCase([out, retval] VARIANT_BOOL *pIgnoreCase);
54 HRESULT IgnoreCase([in] VARIANT_BOOL pIgnoreCase);
96 HRESULT IgnoreCase([out, retval] VARIANT_BOOL *pIgnoreCase);
99 HRESULT IgnoreCase([in] VARIANT_BOOL pIgnoreCase);
H A Dvbsregexp10.idl51 HRESULT IgnoreCase([out, retval] VARIANT_BOOL *pIgnoreCase);
54 HRESULT IgnoreCase([in] VARIANT_BOOL pIgnoreCase);
/reactos/drivers/filesystems/udfs/
H A Dnamesup.cpp161 IN BOOLEAN IgnoreCase, in UDFIsNameInExpression() argument
177 Match = FsRtlIsNameInExpression( PtrSearchPattern, FileName, IgnoreCase, NULL ); in UDFIsNameInExpression()
179 } else if (RtlCompareUnicodeString(FileName, PtrSearchPattern, IgnoreCase)) { in UDFIsNameInExpression()
H A Ddircntrl.cpp262 #define IgnoreCase (FNM_Flags & UDF_FNM_FLAG_IGNORE_CASE) in UDFQueryDirectory() macro
291 if(IgnoreCase && pStackLocation->Parameters.QueryDirectory.FileName) { in UDFQueryDirectory()
637 #define IgnoreCase (FNM_Flags & UDF_FNM_FLAG_IGNORE_CASE) in UDFFindNextMatch() macro
649 if(UDFIsNameInExpression(Vcb, &(DirNdx->FName),PtrSearchPattern, NULL,IgnoreCase, in UDFFindNextMatch()
H A Dnamesup.h17 IN BOOLEAN IgnoreCase,
H A Dcreate.cpp228 BOOLEAN IgnoreCase; in UDFCommonCreate() local
460 IgnoreCase = (IrpSp->Flags & SL_CASE_SENSITIVE) ? FALSE : TRUE; in UDFCommonCreate()
789 RC = UDFGetOpenParamsByFileId(Vcb, Id, &TmpPath, &IgnoreCase); in UDFCommonCreate()
1190 IgnoreCase,TRUE,&CurName, in UDFCommonCreate()
1432 if(NT_SUCCESS(RC = UDFFindFile__(Vcb, IgnoreCase, in UDFCommonCreate()
1556 RC = UDFCreateFile__(Vcb, IgnoreCase, &LastGoodTail, 0, 0, in UDFCommonCreate()
1725 RC = UDFCreateFile__(Vcb, IgnoreCase, &StreamName, 0, 0, in UDFCommonCreate()
2173 if(!IgnoreCase) { in UDFCommonCreate()
/reactos/modules/rostests/kmtests/ntos_fsrtl/
H A DFsRtlExpression.c18 BOOLEAN IgnoreCase; member
196 TestResult = FsRtlIsNameInExpression(&Expression, &Name, Tests[i].IgnoreCase, NULL); in FsRtlIsNameInExpressionTest()
199 …&Expression, &Name, Tests[i].IgnoreCase ? "TRUE" : "FALSE", Tests[i].Expected ? "TRUE" : "FALSE", … in FsRtlIsNameInExpressionTest()
221 if (Tests[i].IgnoreCase) in FsRtlIsDbcsInExpressionTest()
/reactos/drivers/filesystems/udfs/udf_info/
H A Dudf_info.h108 IN BOOLEAN IgnoreCase,
115 IN BOOLEAN IgnoreCase, in UDFFindFile__() argument
122 return UDFFindFile(Vcb, IgnoreCase, TRUE, Name, DirInfo, &i); in UDFFindFile__()
635 IN BOOLEAN IgnoreCase,
653 IN BOOLEAN IgnoreCase,
752 IN BOOLEAN IgnoreCase,
935 IN BOOLEAN IgnoreCase,
H A Ddirtree.cpp984 IN BOOLEAN IgnoreCase, in UDFFindFile() argument
1010 if(!IgnoreCase && !CanBe8d3) { in UDFFindFile()
1032 (!RtlCompareUnicodeString(&(DirNdx->FName), Name, IgnoreCase)) ) { in UDFFindFile()
1041 if(!RtlCompareUnicodeString(&ShortName, Name, IgnoreCase)) in UDFFindFile()
1060 (!RtlCompareUnicodeString(&(DirNdx->FName), Name, IgnoreCase)) ) { in UDFFindFile()
1068 if(!RtlCompareUnicodeString(&ShortName, Name, IgnoreCase)) { in UDFFindFile()
H A Dudf_info.cpp2006 IN BOOLEAN IgnoreCase, in UDFOpenFile__() argument
2032 if(!OS_SUCCESS(status = UDFFindFile(Vcb, IgnoreCase, NotDeleted, fn, DirInfo, &i))) in UDFOpenFile__()
2580 IN BOOLEAN IgnoreCase, in UDFCreateFile__() argument
2616 status = UDFFindFile(Vcb, IgnoreCase, FALSE, _fn, DirInfo, &i); in UDFCreateFile__()
2624 if(OS_SUCCESS(UDFFindFile(Vcb, IgnoreCase, TRUE, _fn, DirInfo, &j))) { in UDFCreateFile__()
2647 status = UDFOpenFile__(Vcb, IgnoreCase, TRUE, _fn, DirInfo, _FileInfo,&i); in UDFCreateFile__()
3178 IN BOOLEAN IgnoreCase, in UDFRenameMoveFile__() argument
3202 if(OS_SUCCESS(status = UDFFindFile(Vcb, IgnoreCase, TRUE, fn, DirInfo2, &j)) && in UDFRenameMoveFile__()
3244 if(!OS_SUCCESS(status = UDFCreateFile__(Vcb, IgnoreCase, fn, UDFGetFileEALength(FileInfo), in UDFRenameMoveFile__()
4674 IN BOOLEAN IgnoreCase, in UDFHardLinkFile__() argument
[all …]
/reactos/sdk/include/xdk/
H A Dfsrtlfuncs.h797 _In_ BOOLEAN IgnoreCase,
808 _In_ BOOLEAN IgnoreCase,