Home
last modified time | relevance | path

Searched refs:pCcb (Results 1 – 7 of 7) sorted by relevance

/reactos/drivers/filesystems/vfatfs/
H A Ddir.c484 PVFATCCB pCcb; in DoQuery() local
545 if (!pCcb->SearchPattern.Buffer) in DoQuery()
552 if (!pCcb->SearchPattern.Buffer) in DoQuery()
559 pCcb->SearchPattern.Buffer[pCcb->SearchPattern.Length / sizeof(WCHAR)] = 0; in DoQuery()
562 else if (!pCcb->SearchPattern.Buffer) in DoQuery()
569 if (!pCcb->SearchPattern.Buffer) in DoQuery()
575 pCcb->SearchPattern.Buffer[0] = L'*'; in DoQuery()
576 pCcb->SearchPattern.Buffer[1] = 0; in DoQuery()
590 DirContext.DirIndex = pCcb->Entry; in DoQuery()
609 pCcb->Entry = DirContext.DirIndex; in DoQuery()
[all …]
H A Dclose.c164 PVFATCCB pCcb; in VfatCloseFile() local
172 pCcb = (PVFATCCB) (FileObject->FsContext2); in VfatCloseFile()
182 if (pCcb) in VfatCloseFile()
184 vfatDestroyCCB(pCcb); in VfatCloseFile()
H A Dcleanup.c28 PVFATCCB pCcb; in VfatCleanupFile() local
58 pCcb = FileObject->FsContext2; in VfatCleanupFile()
59 if (BooleanFlagOn(pCcb->Flags, CCB_DELETE_ON_CLOSE)) in VfatCleanupFile()
H A Dcreate.c415 PVFATCCB pCcb = NULL; in VfatCreateFile() local
698 pCcb = FileObject->FsContext2; in VfatCreateFile()
701 pCcb->Flags |= CCB_DELETE_ON_CLOSE; in VfatCreateFile()
1024 pCcb = FileObject->FsContext2; in VfatCreateFile()
1027 pCcb->Flags |= CCB_DELETE_ON_CLOSE; in VfatCreateFile()
H A Dfcb.c258 PVFATCCB pCcb) in vfatDestroyCCB() argument
260 if (pCcb->SearchPattern.Buffer) in vfatDestroyCCB()
262 ExFreePoolWithTag(pCcb->SearchPattern.Buffer, TAG_SEARCH); in vfatDestroyCCB()
264 ExFreeToNPagedLookasideList(&VfatGlobalData->CcbLookasideList, pCcb); in vfatDestroyCCB()
H A Dvfat.h995 PVFATCCB pCcb);
/reactos/drivers/filesystems/mup/
H A Dmup.c291 MupDecodeFileObject(PFILE_OBJECT FileObject, PMUP_FCB * pFcb, PMUP_CCB * pCcb) in MupDecodeFileObject() argument
298 *pCcb = FileObject->FsContext2; in MupDecodeFileObject()