您当前的位置:首页 > IT编程 > C++
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch | 异常检测 | Transformers | 情感分类 | 知识图谱 |

自学教程:C++ DebugTrace函数代码示例

51自学网 2021-06-01 20:25:48
  C++
这篇教程C++ DebugTrace函数代码示例写得很实用,希望能帮到您。

本文整理汇总了C++中DebugTrace函数的典型用法代码示例。如果您正苦于以下问题:C++ DebugTrace函数的具体用法?C++ DebugTrace怎么用?C++ DebugTrace使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。

在下文中一共展示了DebugTrace函数的28个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: NtfsCompleteMdl

NTSTATUSNtfsCompleteMdl (    IN PIRP_CONTEXT IrpContext,    IN PIRP Irp    )/*++Routine Description:    This routine performs the function of completing Mdl read and write    requests.  It should be called only from NtfsFsdRead and NtfsFsdWrite.Arguments:    Irp - Supplies the originating Irp.Return Value:    NTSTATUS - Will always be STATUS_PENDING or STATUS_SUCCESS.--*/{    PFILE_OBJECT FileObject;    PIO_STACK_LOCATION IrpSp;    PNTFS_ADVANCED_FCB_HEADER Header;    ASSERT( FlagOn( IrpContext->TopLevelIrpContext->State, IRP_CONTEXT_STATE_OWNS_TOP_LEVEL ));    PAGED_CODE();    DebugTrace( +1, Dbg, ("NtfsCompleteMdl/n") );    DebugTrace( 0, Dbg, ("IrpContext = %08lx/n", IrpContext) );    DebugTrace( 0, Dbg, ("Irp        = %08lx/n", Irp) );    //    // Do completion processing.    //    FileObject = IoGetCurrentIrpStackLocation( Irp )->FileObject;    switch( IrpContext->MajorFunction ) {    case IRP_MJ_READ:        CcMdlReadComplete( FileObject, Irp->MdlAddress );        break;    case IRP_MJ_WRITE:        try {            PSCB Scb;            VBO StartingVbo;            LONGLONG ByteCount;            LONGLONG ByteRange;            BOOLEAN DoingIoAtEof = FALSE;            ASSERT( FlagOn( IrpContext->State, IRP_CONTEXT_STATE_WAIT ));            IrpSp = IoGetCurrentIrpStackLocation( Irp );            Scb = (PSCB)(IrpSp->FileObject->FsContext);            Header = &(Scb->Header);            //            //  Now synchronize with the FsRtl Header and Scb.            //            if (Header->PagingIoResource != NULL) {                StartingVbo = IrpSp->Parameters.Write.ByteOffset.QuadPart;                ByteCount = (LONGLONG) IrpSp->Parameters.Write.Length;                ByteRange = StartingVbo + ByteCount + PAGE_SIZE - 1;                ClearFlag( ((ULONG) ByteRange), PAGE_SIZE - 1 );                ExAcquireResourceSharedLite( Header->PagingIoResource, TRUE );                NtfsAcquireFsrtlHeader( Scb );                //                //  Now see if this is at EOF.                //  Recursive flush will generate IO which ends on page boundary                //  which is why we rounded the range                //                if (ByteRange > Header->ValidDataLength.QuadPart) {                    //                    //  Mark that we are writing to EOF.  If someone else is currently                    //  writing to EOF, wait for them.                    //                    ASSERT( ByteRange - StartingVbo < MAXULONG );                    DoingIoAtEof = !FlagOn( Header->Flags, FSRTL_FLAG_EOF_ADVANCE_ACTIVE ) ||                                   NtfsWaitForIoAtEof( Header, (PLARGE_INTEGER)&StartingVbo, (ULONG)(ByteRange - StartingVbo) );                    if (DoingIoAtEof) {                        SetFlag( Header->Flags, FSRTL_FLAG_EOF_ADVANCE_ACTIVE );//.........这里部分代码省略.........
开发者ID:Nevermore2015,项目名称:ndas4windows,代码行数:101,


示例2: DebugTrace

void JNetwork::ThreadProc(void* param){  JNetwork* pThis = reinterpret_cast<JNetwork*>(param);  JSocket* pSocket = NULL;  if (pThis->serverIP.size()) {    DebugTrace("Starting Client Thread");    pThis->socket = new JSocket(pThis->serverIP);    if(pThis->socket->isConnected())      pSocket = pThis->socket;  } else {    DebugTrace("Starting Server Thread");    pThis->socket = new JSocket();    // Wait for some client    pSocket = pThis->socket->Accept();  }  while(pSocket && pSocket->isConnected()) {    char buff[1024];    {      boost::mutex::scoped_lock l(pThis->receiveMutex);      int len =  pSocket->Read(buff, sizeof(buff));      if(len) {        DebugTrace("receiving " << len << " bytes : " << buff);        pThis->received << buff;      }      // Checking for some command to execute      size_t found = pThis->received.str().find("Command");      if(found != string::npos)      {        map<string, processCmd>::iterator ite = sCommandMap.find((pThis->received.str()).substr(0, found) + "Command");        if(ite != sCommandMap.end())        {          DebugTrace("begin of command received : "<< pThis->received.str() );          DebugTrace("begin of command toSend : "<< pThis->toSend.str() );          boost::mutex::scoped_lock l(pThis->sendMutex);          pThis->toSend << pThis->received.str().substr(0, found) + "Response ";          pThis->received.str("");          processCmd theMethod = (ite)->second;          theMethod(pThis->received, pThis->toSend);          DebugTrace("end of command received : "<< pThis->received.str() );          DebugTrace("end of command toSend : "<< pThis->toSend.str() );        }      }      // Checking for some response to execute      found = pThis->received.str().find("Response");      if(found != string::npos)      {        map<string, processCmd>::iterator ite = sCommandMap.find((pThis->received.str()).substr(0, found) + "Response");        if(ite != sCommandMap.end())        {          DebugTrace("begin of response received : "<< pThis->received.str() );          DebugTrace("begin of response toSend : "<< pThis->toSend.str() );          boost::mutex::scoped_lock l(pThis->sendMutex);          string aString;          pThis->received >> aString;          processCmd theMethod = (ite)->second;          theMethod(pThis->received, pThis->toSend);          pThis->received.str("");          DebugTrace("end of response received : "<< pThis->received.str() );          DebugTrace("end of response toSend : "<< pThis->toSend.str() );        }      }    }
开发者ID:zwvc,项目名称:wagic-x,代码行数:67,


示例3: NdFatSecondaryCommonRead

NTSTATUSNdFatSecondaryCommonRead (    IN PIRP_CONTEXT IrpContext,    IN PIRP			Irp,    IN ULONG		BytesToRead){    NTSTATUS					status;    PVOLUME_DEVICE_OBJECT		volDo = CONTAINING_RECORD( IrpContext->Vcb, VOLUME_DEVICE_OBJECT, Vcb );    BOOLEAN						secondarySessionResourceAcquired = FALSE;    PIO_STACK_LOCATION			irpSp = IoGetCurrentIrpStackLocation( Irp );    PFILE_OBJECT				fileObject = irpSp->FileObject;    struct Read					read;    PSECONDARY_REQUEST			secondaryRequest = NULL;    PNDFS_REQUEST_HEADER		ndfsRequestHeader;    PNDFS_WINXP_REQUEST_HEADER	ndfsWinxpRequestHeader;    PNDFS_WINXP_REPLY_HEADER	ndfsWinxpReplytHeader;    LARGE_INTEGER				timeOut;    TYPE_OF_OPEN				typeOfOpen;    PVCB						vcb;    PFCB						fcb;    PCCB						ccb;    BOOLEAN						fcbAcquired = FALSE;    PUCHAR						outputBuffer;    ULONG						totalReadLength;    _U64						primaryFileHandle = 0;    ASSERT( KeGetCurrentIrql() < DISPATCH_LEVEL );    typeOfOpen = FatDecodeFileObject( fileObject, &vcb, &fcb, &ccb );    ASSERT( typeOfOpen == UserFileOpen );    if (FlagOn(ccb->NdFatFlags, ND_FAT_CCB_FLAG_UNOPENED)) {        /*if (FlagOn( fcb->FcbState, FCB_STATE_FILE_DELETED )) {        	ASSERT( FALSE );        	FatRaiseStatus( IrpContext, STATUS_FILE_DELETED, NULL, NULL );        } else */{            ASSERT( FlagOn(ccb->NdFatFlags, ND_FAT_CCB_FLAG_CORRUPTED) );            return STATUS_FILE_CORRUPT_ERROR;        }    }    if (!FlagOn(IrpContext->Flags, IRP_CONTEXT_FLAG_WAIT)) {        ASSERT( FALSE );        DebugTrace2( 0, Dbg, ("Can't wait in create/n") );        status = FatFsdPostRequest( IrpContext, Irp );        DebugTrace2( -1, Dbg2, ("NdFatSecondaryCommonRead:  FatFsdPostRequest -> %08lx/n", status) );        return status;    }    if (irpSp->Parameters.Read.ByteOffset.QuadPart == FILE_WRITE_TO_END_OF_FILE &&            irpSp->Parameters.Read.ByteOffset.HighPart == -1) {        read.ByteOffset = fcb->Header.FileSize;    } else {        read.ByteOffset = irpSp->Parameters.Read.ByteOffset;    }    read.Key	= 0;    read.Length	= irpSp->Parameters.Read.Length;    read.Length = BytesToRead;    ASSERT( FlagOn(IrpContext->Flags, IRP_CONTEXT_FLAG_WAIT) );    //FatAcquireSharedFcb( IrpContext, fcb );    //fcbAcquired = TRUE;    try {        secondarySessionResourceAcquired            = SecondaryAcquireResourceExclusiveLite( IrpContext,                    &volDo->Secondary->SessionResource,                    BooleanFlagOn(IrpContext->Flags, IRP_CONTEXT_FLAG_WAIT) );        if (FlagOn(volDo->Secondary->Thread.Flags, SECONDARY_THREAD_FLAG_REMOTE_DISCONNECTED) ) {            PrintIrp( Dbg2, "SECONDARY_THREAD_FLAG_REMOTE_DISCONNECTED", NULL, IrpContext->OriginatingIrp );            FatRaiseStatus( IrpContext, STATUS_CANT_WAIT );//.........这里部分代码省略.........
开发者ID:yzx65,项目名称:ndas4windows,代码行数:101,


示例4: FatFspDispatch

VOIDFatFspDispatch (    IN PVOID Context    )/*++Routine Description:    This is the main FSP thread routine that is executed to receive    and dispatch IRP requests.  Each FSP thread begins its execution here.    There is one thread created at system initialization time and subsequent    threads created as needed.Arguments:    Context - Supplies the thread id.Return Value:    None - This routine never exits--*/{    NTSTATUS Status;    PIRP Irp;    PIRP_CONTEXT IrpContext;    PIO_STACK_LOCATION IrpSp;    BOOLEAN VcbDeleted;    PVOLUME_DEVICE_OBJECT VolDo;    IrpContext = (PIRP_CONTEXT)Context;    Irp = IrpContext->OriginatingIrp;    IrpSp = IoGetCurrentIrpStackLocation( Irp );    //    //  Now because we are the Fsp we will force the IrpContext to    //  indicate true on Wait.    //    SetFlag(IrpContext->Flags, IRP_CONTEXT_FLAG_WAIT | IRP_CONTEXT_FLAG_IN_FSP);    //    //  If this request has an associated volume device object, remember it.    //    if ( IrpSp->FileObject != NULL ) {        VolDo = CONTAINING_RECORD( IrpSp->DeviceObject,                                   VOLUME_DEVICE_OBJECT,                                   DeviceObject );    } else {        VolDo = NULL;    }    //    //  Now case on the function code.  For each major function code,    //  either call the appropriate FSP routine or case on the minor    //  function and then call the FSP routine.  The FSP routine that    //  we call is responsible for completing the IRP, and not us.    //  That way the routine can complete the IRP and then continue    //  post processing as required.  For example, a read can be    //  satisfied right away and then read can be done.    //    //  We'll do all of the work within an exception handler that    //  will be invoked if ever some underlying operation gets into    //  trouble (e.g., if FatReadSectorsSync has trouble).    //    while ( TRUE ) {        DebugTrace(0, Dbg, "FatFspDispatch: Irp = 0x%08lx/n", Irp);        //        //  If this Irp was top level, note it in our thread local storage.        //        FsRtlEnterFileSystem();        if ( FlagOn(IrpContext->Flags, IRP_CONTEXT_FLAG_RECURSIVE_CALL) ) {            IoSetTopLevelIrp( (PIRP)FSRTL_FSP_TOP_LEVEL_IRP );        } else {            IoSetTopLevelIrp( Irp );        }#if __NDAS_FAT__		do {#if __NDAS_FAT_SECONDARY__//.........这里部分代码省略.........
开发者ID:tigtigtig,项目名称:ndas4windows,代码行数:101,


示例5: xixfs_IsFromLocal

////	compare addresses to see if the address is local.//BOOLEANxixfs_IsFromLocal(		PLPX_ADDRESS	Addr	) {	NTSTATUS				ntStatus;	SOCKETLPX_ADDRESS_LIST	socketLpxAddressList;	LONG					idx_addr ;		PAGED_CODE();	DebugTrace(DEBUG_LEVEL_TRACE, DEBUG_TARGET_HOSTCOM,		("Enter  xixfs_IsFromLocal /n"));	DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM, 		( "[LFS] xixfs_IsFromLocal: Entered with Addr:%02x:%02x:%02x:%02x:%02x:%02x/n",				Addr->Node[0], Addr->Node[1], Addr->Node[2], 				Addr->Node[3], Addr->Node[4], Addr->Node[5]			));	//	//	get addresses from LPX	//	socketLpxAddressList.iAddressCount = 0 ;	ntStatus = LpxTdiGetAddressList(		&socketLpxAddressList    	) ;		if(!NT_SUCCESS(ntStatus)) {		DebugTrace( DEBUG_LEVEL_ERROR, DEBUG_TARGET_ALL, ( "[LFS] xixfs_IsFromLocal: LpxTdiGetAddressList() failed./n")) ;		return FALSE ;	}	if(0 == socketLpxAddressList.iAddressCount) {		DebugTrace( DEBUG_LEVEL_ERROR, DEBUG_TARGET_ALL, ( "[LFS] xixfs_IsFromLocal: No NICs in the host./n")) ;		return FALSE ;	}	for(idx_addr = 0 ; idx_addr < socketLpxAddressList.iAddressCount ; idx_addr ++ ) {		//		//	BUG FIX for LPX: skip SocketLpxDevice		//		if( (0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[0]) &&			(0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[1]) &&			(0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[2]) &&			(0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[3]) &&			(0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[4]) &&			(0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[5]) ) {			DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM,  ( "[LFS] xixfs_IsFromLocal: We don't use SocketLpx device./n") );			continue ;		}		if( RtlCompareMemory(Addr->Node, socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node, ETHER_ADDR_LENGTH)			== ETHER_ADDR_LENGTH ) {				DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM, ( "[LFS] xixfs_IsFromLocal: found a address matching./n")) ;				return TRUE ;		}	}	DebugTrace(DEBUG_LEVEL_TRACE, DEBUG_TARGET_HOSTCOM,		("Exit  xixfs_IsFromLocal /n"));	return FALSE ;}
开发者ID:Nevermore2015,项目名称:ndas4windows,代码行数:68,


示例6: FatCheckFileAccess

BOOLEANFatCheckFileAccess (    PIRP_CONTEXT IrpContext,    IN UCHAR DirentAttributes,    IN PACCESS_MASK DesiredAccess    )/*++Routine Description:    This routine checks if a desired access is allowed to a file represented    by the specified DirentAttriubutes.Arguments:    DirentAttributes - Supplies the Dirent attributes to check access for    DesiredAccess - Supplies the desired access mask that we are checking forReturn Value:    BOOLEAN - TRUE if access is allowed and FALSE otherwise--*/{    BOOLEAN Result;    DebugTrace(+1, Dbg, "FatCheckFileAccess/n", 0);    DebugTrace( 0, Dbg, "DirentAttributes = %8lx/n", DirentAttributes);    DebugTrace( 0, Dbg, "DesiredAccess    = %8lx/n", *DesiredAccess);    PAGED_CODE();    //    //  This procedures is programmed like a string of filters each    //  filter checks to see if some access is allowed,  if it is not allowed    //  the filter return FALSE to the user without further checks otherwise    //  it moves on to the next filter.  The filter check is to check for    //  desired access flags that are not allowed for a particular dirent    //    Result = TRUE;    try {        //        //  Check for Volume ID or Device Dirents, these are not allowed user        //  access at all        //        if (FlagOn(DirentAttributes, FAT_DIRENT_ATTR_VOLUME_ID) ||            FlagOn(DirentAttributes, FAT_DIRENT_ATTR_DEVICE)) {            DebugTrace(0, Dbg, "Cannot access volume id or device/n", 0);            try_return( Result = FALSE );        }        //        //  Check the desired access for the object - we only blackball that        //  we do not understand.  The model of filesystems using ACLs is that        //  they do not type the ACL to the object the ACL is on.  Permissions        //  are not checked for consistency vs. the object type - dir/file.        //        if (FlagOn(*DesiredAccess, ~(DELETE |                                     READ_CONTROL |                                     WRITE_OWNER |                                     WRITE_DAC |                                     SYNCHRONIZE |                                     ACCESS_SYSTEM_SECURITY |                                     FILE_WRITE_DATA |                                     FILE_READ_EA |                                     FILE_WRITE_EA |                                     FILE_READ_ATTRIBUTES |                                     FILE_WRITE_ATTRIBUTES |                                     FILE_LIST_DIRECTORY |                                     FILE_TRAVERSE |                                     FILE_DELETE_CHILD |                                     FILE_APPEND_DATA))) {            DebugTrace(0, Dbg, "Cannot open object/n", 0);            try_return( Result = FALSE );        }        //        //  Check for a read-only Dirent        //        if (FlagOn(DirentAttributes, FAT_DIRENT_ATTR_READ_ONLY)) {            //            //  Check the desired access for a read-only dirent.  AccessMask will contain            //  the flags we're going to allow.            //            ACCESS_MASK AccessMask = DELETE | READ_CONTROL | WRITE_OWNER | WRITE_DAC |//.........这里部分代码省略.........
开发者ID:Realhram,项目名称:wdk81,代码行数:101,


示例7: FatCommonSetVolumeInfo

NTSTATUSFatCommonSetVolumeInfo (    IN PIRP_CONTEXT IrpContext,    IN PIRP Irp    )/*++Routine Description:    This is the common routine for setting Volume Information called by both    the fsd and fsp threads.Arguments:    Irp - Supplies the Irp being processedReturn Value:    NTSTATUS - The return status for the operation--*/{    NTSTATUS Status;    PIO_STACK_LOCATION IrpSp;    PVCB Vcb;    PFCB Fcb;    PCCB Ccb;    TYPE_OF_OPEN TypeOfOpen;    ULONG Length;    FS_INFORMATION_CLASS FsInformationClass;    PVOID Buffer;    //    //  Get the current stack location    //    IrpSp = IoGetCurrentIrpStackLocation( Irp );    DebugTrace(+1, Dbg, "FatCommonSetVolumeInfo.../n", 0);    DebugTrace( 0, Dbg, "Irp                  = %08lx/n", Irp );    DebugTrace( 0, Dbg, "->Length             = %08lx/n", IrpSp->Parameters.SetVolume.Length);    DebugTrace( 0, Dbg, "->FsInformationClass = %08lx/n", IrpSp->Parameters.SetVolume.FsInformationClass);    DebugTrace( 0, Dbg, "->Buffer             = %08lx/n", Irp->AssociatedIrp.SystemBuffer);    //    //  Reference our input parameters to make things easier    //    Length = IrpSp->Parameters.SetVolume.Length;    FsInformationClass = IrpSp->Parameters.SetVolume.FsInformationClass;    Buffer = Irp->AssociatedIrp.SystemBuffer;    //    //  Decode the file object to get the Vcb    //    TypeOfOpen = FatDecodeFileObject( IrpSp->FileObject, &Vcb, &Fcb, &Ccb );    if (TypeOfOpen != UserVolumeOpen) {        FatCompleteRequest( IrpContext, Irp, STATUS_ACCESS_DENIED );        DebugTrace(-1, Dbg, "FatCommonSetVolumeInfo -> STATUS_ACCESS_DENIED/n", 0);        return STATUS_ACCESS_DENIED;    }#ifndef DOUBLE_SPACE_WRITE    ASSERT(Vcb->Dscb == NULL);#endif // DOUBLE_SPACE_WRITE    //    //  Acquire exclusive access to the Vcb and enqueue the Irp if we didn't    //  get access    //    if (!FatAcquireExclusiveVcb( IrpContext, Vcb )) {        DebugTrace(0, Dbg, "Cannot acquire Vcb/n", 0);        Status = FatFsdPostRequest( IrpContext, Irp );        DebugTrace(-1, Dbg, "FatCommonSetVolumeInfo -> %08lx/n", Status );        return Status;    }    try {        //        //  Make sure the vcb is in a usable condition.  This will raise        //  and error condition if the volume is unusable        //        //  Also verify the Root Dcb since we need info from there.        //        FatVerifyFcb( IrpContext, Vcb->RootDcb );//.........这里部分代码省略.........
开发者ID:BillTheBest,项目名称:WinNT4,代码行数:101,


示例8: FatQueryFsVolumeInfo

NTSTATUSFatQueryFsVolumeInfo (    IN PIRP_CONTEXT IrpContext,    IN PVCB Vcb,    IN PFILE_FS_VOLUME_INFORMATION Buffer,    IN OUT PULONG Length    )/*++Routine Description:    This routine implements the query volume info callArguments:    Vcb - Supplies the Vcb being queried    Buffer - Supplies a pointer to the output buffer where the information        is to be returned    Length - Supplies the length of the buffer in byte.  This variable        upon return recieves the remaining bytes free in the bufferReturn Value:    NTSTATUS - Returns the status for the query--*/{    ULONG BytesToCopy;    NTSTATUS Status;    DebugTrace(0, Dbg, "FatQueryFsVolumeInfo.../n", 0);    //    //  Zero out the buffer, then extract and fill up the non zero fields.    //    RtlZeroMemory( Buffer, sizeof(FILE_FS_VOLUME_INFORMATION) );    Buffer->VolumeSerialNumber = Vcb->Vpb->SerialNumber;    Buffer->SupportsObjects = FALSE;    *Length -= FIELD_OFFSET(FILE_FS_VOLUME_INFORMATION, VolumeLabel[0]);    //    //  Check if the buffer we're given is long enough    //    if ( *Length >= (ULONG)Vcb->Vpb->VolumeLabelLength ) {        BytesToCopy = Vcb->Vpb->VolumeLabelLength;        Status = STATUS_SUCCESS;    } else {        BytesToCopy = *Length;        Status = STATUS_BUFFER_OVERFLOW;    }    //    //  Copy over what we can of the volume label, and adjust *Length    //    Buffer->VolumeLabelLength = Vcb->Vpb->VolumeLabelLength;    RtlCopyMemory( &Buffer->VolumeLabel[0],                   &Vcb->Vpb->VolumeLabel[0],                   BytesToCopy );    *Length -= BytesToCopy;    //    //  Set our status and return to our caller    //    UNREFERENCED_PARAMETER( IrpContext );    return Status;}
开发者ID:BillTheBest,项目名称:WinNT4,代码行数:86,


示例9: DumpStatistics

    void DumpStatistics()    {#ifdef TRACK_OBJECT_USAGE        DebugTrace("-----------------------------------------------------------");        DebugTrace("Object Usage Stats" << std::endl);        DebugTrace("CardPrimitive current count: " << InstanceCounter<CardPrimitive>::GetCurrentObjectCount());        DebugTrace("CardPrimitive current byte usage: " << InstanceCounter<CardPrimitive>::GetCurrentByteCount());        DebugTrace("CardPrimitive max count: " << InstanceCounter<CardPrimitive>::GetMaximumObjectCount());        DebugTrace("CardPrimitive max byte usage: " << InstanceCounter<CardPrimitive>::GetMaximumByteCount() << std::endl);        DebugTrace("MTGCard current count: " << InstanceCounter<MTGCard>::GetCurrentObjectCount());        DebugTrace("MTGCard current byte usage: " << InstanceCounter<MTGCard>::GetCurrentByteCount());        DebugTrace("MTGCard max count: " << InstanceCounter<MTGCard>::GetMaximumObjectCount());        DebugTrace("MTGCard max byte usage: " << InstanceCounter<MTGCard>::GetMaximumByteCount() << std::endl);        DebugTrace("MTGCardInstance current count: " << InstanceCounter<MTGCardInstance>::GetCurrentObjectCount());        DebugTrace("MTGCardInstance current byte usage: " << InstanceCounter<MTGCardInstance>::GetCurrentByteCount());        DebugTrace("MTGCardInstance max count: " << InstanceCounter<MTGCardInstance>::GetMaximumObjectCount());        DebugTrace("MTGCardInstance max byte usage: " << InstanceCounter<MTGCardInstance>::GetMaximumByteCount() << std::endl);        DebugTrace("ManaCost current count: " << InstanceCounter<ManaCost>::GetCurrentObjectCount());        DebugTrace("ManaCost current byte usage: " << InstanceCounter<ManaCost>::GetCurrentByteCount());        DebugTrace("ManaCost max count: " << InstanceCounter<ManaCost>::GetMaximumObjectCount());        DebugTrace("ManaCost max byte usage: " << InstanceCounter<ManaCost>::GetMaximumByteCount() << std::endl);        DebugTrace("ExtraCost current count: " << InstanceCounter<ExtraCost>::GetCurrentObjectCount());        DebugTrace("ExtraCost current byte usage: " << InstanceCounter<ExtraCost>::GetCurrentByteCount());        DebugTrace("ExtraCost max count: " << InstanceCounter<ExtraCost>::GetMaximumObjectCount());        DebugTrace("ExtraCost max byte usage: " << InstanceCounter<ExtraCost>::GetMaximumByteCount() << std::endl);        DebugTrace("-----------------------------------------------------------");#endif    }
开发者ID:Azurami,项目名称:wagic,代码行数:35,


示例10: FatCommonQueryVolumeInfo

NTSTATUSFatCommonQueryVolumeInfo (    IN PIRP_CONTEXT IrpContext,    IN PIRP Irp    )/*++Routine Description:    This is the common routine for querying volume information called by both    the fsd and fsp threads.Arguments:    Irp - Supplies the Irp being processedReturn Value:    NTSTATUS - The return status for the operation--*/{    NTSTATUS Status;    PIO_STACK_LOCATION IrpSp;    PVCB Vcb;    PFCB Fcb;    PCCB Ccb;    ULONG Length;    FS_INFORMATION_CLASS FsInformationClass;    PVOID Buffer;    BOOLEAN WeAcquiredVcb = FALSE;    //    //  Get the current stack location    //    IrpSp = IoGetCurrentIrpStackLocation( Irp );    DebugTrace(+1, Dbg, "FatCommonQueryVolumeInfo.../n", 0);    DebugTrace( 0, Dbg, "Irp                  = %08lx/n", Irp );    DebugTrace( 0, Dbg, "->Length             = %08lx/n", IrpSp->Parameters.QueryVolume.Length);    DebugTrace( 0, Dbg, "->FsInformationClass = %08lx/n", IrpSp->Parameters.QueryVolume.FsInformationClass);    DebugTrace( 0, Dbg, "->Buffer             = %08lx/n", Irp->AssociatedIrp.SystemBuffer);    //    //  Reference our input parameters to make things easier    //    Length = IrpSp->Parameters.QueryVolume.Length;    FsInformationClass = IrpSp->Parameters.QueryVolume.FsInformationClass;    Buffer = Irp->AssociatedIrp.SystemBuffer;    //    //  Decode the file object to get the Vcb    //    (VOID) FatDecodeFileObject( IrpSp->FileObject, &Vcb, &Fcb, &Ccb );    try {        //        //  Make sure the vcb is in a usable condition.  This will raise        //  and error condition if the volume is unusable        //        //  Also verify the Root Dcb since we need info from there.        //        FatVerifyFcb( IrpContext, Vcb->RootDcb );        //        //  Based on the information class we'll do different actions.  Each        //  of the procedures that we're calling fills up the output buffer        //  if possible and returns true if it successfully filled the buffer        //  and false if it couldn't wait for any I/O to complete.        //        switch (FsInformationClass) {        case FileFsVolumeInformation:            //            //  This is the only routine we need the Vcb shared because of            //  copying the volume label.  All other routines copy fields that            //  cannot change or are just manifest constants.            //            if (!FatAcquireSharedVcb( IrpContext, Vcb )) {                DebugTrace(0, Dbg, "Cannot acquire Vcb/n", 0);                Status = FatFsdPostRequest( IrpContext, Irp );            } else {                Status = FatQueryFsVolumeInfo( IrpContext, Vcb, Buffer, &Length );//.........这里部分代码省略.........
开发者ID:BillTheBest,项目名称:WinNT4,代码行数:101,


示例11: FatCommonRead

NTSTATUSFatCommonRead (    IN PIRP_CONTEXT IrpContext,    IN PIRP Irp)/*++Routine Description:    This is the common read routine for NtReadFile, called from both    the Fsd, or from the Fsp if a request could not be completed without    blocking in the Fsd.  This routine has no code where it determines    whether it is running in the Fsd or Fsp.  Instead, its actions are    conditionalized by the Wait input parameter, which determines whether    it is allowed to block or not.  If a blocking condition is encountered    with Wait == FALSE, however, the request is posted to the Fsp, who    always calls with WAIT == TRUE.Arguments:    Irp - Supplies the Irp to processReturn Value:    NTSTATUS - The return status for the operation--*/{    PVCB Vcb;    PFCB FcbOrDcb;    PCCB Ccb;    VBO StartingVbo;    ULONG ByteCount;    ULONG RequestedByteCount;    PIO_STACK_LOCATION IrpSp;    PFILE_OBJECT FileObject;    TYPE_OF_OPEN TypeOfRead;    BOOLEAN PostIrp = FALSE;    BOOLEAN OplockPostIrp = FALSE;    BOOLEAN FcbOrDcbAcquired = FALSE;    BOOLEAN Wait;    BOOLEAN PagingIo;    BOOLEAN NonCachedIo;    BOOLEAN SynchronousIo;    NTSTATUS Status;    FAT_IO_CONTEXT StackFatIoContext;    //    // A system buffer is only used if we have to access the    // buffer directly from the Fsp to clear a portion or to    // do a synchronous I/O, or a cached transfer.  It is    // possible that our caller may have already mapped a    // system buffer, in which case we must remember this so    // we do not unmap it on the way out.    //    PVOID SystemBuffer = NULL;    LARGE_INTEGER StartingByte;    //    // Get current Irp stack location.    //    IrpSp = IoGetCurrentIrpStackLocation( Irp );    FileObject = IrpSp->FileObject;    //    // Initialize the appropriate local variables.    //    Wait          = BooleanFlagOn(IrpContext->Flags, IRP_CONTEXT_FLAG_WAIT);    PagingIo      = BooleanFlagOn(Irp->Flags, IRP_PAGING_IO);    NonCachedIo   = BooleanFlagOn(Irp->Flags,IRP_NOCACHE);    SynchronousIo = BooleanFlagOn(FileObject->Flags, FO_SYNCHRONOUS_IO);    DebugTrace(+1, Dbg, "CommonRead/n", 0);    DebugTrace( 0, Dbg, "  Irp                   = %8lx/n", Irp);    DebugTrace( 0, Dbg, "  ->ByteCount           = %8lx/n", IrpSp->Parameters.Read.Length);    DebugTrace( 0, Dbg, "  ->ByteOffset.LowPart  = %8lx/n", IrpSp->Parameters.Read.ByteOffset.LowPart);    DebugTrace( 0, Dbg, "  ->ByteOffset.HighPart = %8lx/n", IrpSp->Parameters.Read.ByteOffset.HighPart);    //    //  Extract starting Vbo and offset.    //    StartingByte = IrpSp->Parameters.Read.ByteOffset;    StartingVbo = StartingByte.LowPart;    ByteCount = IrpSp->Parameters.Read.Length;//.........这里部分代码省略.........
开发者ID:BillTheBest,项目名称:WinNT4,代码行数:101,


示例12: FatPostStackOverflowRead

NTSTATUSFatPostStackOverflowRead (    IN PIRP_CONTEXT IrpContext,    IN PIRP Irp,    IN PFCB Fcb)/*++Routine Description:    This routine posts a read request that could not be processed by    the fsp thread because of stack overflow potential.Arguments:    Irp - Supplies the request to process.    Fcb - Supplies the file.Return Value:    STATUS_PENDING.--*/{    PKEVENT Event;    PERESOURCE Resource;    DebugTrace(0, Dbg, "Getting too close to stack limit pass request to Fsp/n", 0 );    //    //  Allocate an event and get shared on the resource we will    //  be later using the common read.    //    Event = FsRtlAllocatePool( NonPagedPool, sizeof(KEVENT) );    KeInitializeEvent( Event, NotificationEvent, FALSE );    if (FlagOn(Irp->Flags, IRP_PAGING_IO) && (Fcb->Header.PagingIoResource != NULL)) {        Resource = Fcb->Header.PagingIoResource;    } else {        Resource = Fcb->Header.Resource;    }    ExAcquireResourceShared( Resource, TRUE );    try {        //        //  Make the Irp just like a regular post request and        //  then send the Irp to the special overflow thread.        //  After the post we will wait for the stack overflow        //  read routine to set the event that indicates we can        //  now release the scb resource and return.        //        FatPrePostIrp( IrpContext, Irp );        //        //  If this read is the result of a verify, we have to        //  tell the overflow read routne to temporarily        //  hijack the Vcb->VerifyThread field so that reads        //  can go through.        //        if (Fcb->Vcb->VerifyThread == KeGetCurrentThread()) {            SetFlag(IrpContext->Flags, IRP_CONTEXT_FLAG_VERIFY_READ);        }        FsRtlPostStackOverflow( IrpContext, Event, FatStackOverflowRead );        //        //  And wait for the worker thread to complete the item        //        (VOID) KeWaitForSingleObject( Event, Executive, KernelMode, FALSE, NULL );    }    finally {        ExReleaseResource( Resource );        ExFreePool( Event );    }    return STATUS_PENDING;}
开发者ID:BillTheBest,项目名称:WinNT4,代码行数:93,


示例13: FatFsdRead

NTSTATUSFatFsdRead (    IN PVOLUME_DEVICE_OBJECT VolumeDeviceObject,    IN PIRP Irp)/*++Routine Description:    This is the driver entry to the common read routine for NtReadFile calls.    For synchronous requests, the CommonRead is called with Wait == TRUE,    which means the request will always be completed in the current thread,    and never passed to the Fsp.  If it is not a synchronous request,    CommonRead is called with Wait == FALSE, which means the request    will be passed to the Fsp only if there is a need to block.Arguments:    VolumeDeviceObject - Supplies the volume device object where the        file being Read exists    Irp - Supplies the Irp being processedReturn Value:    NTSTATUS - The FSD status for the IRP--*/{    PFCB Fcb;    NTSTATUS Status;    PIRP_CONTEXT IrpContext = NULL;    BOOLEAN TopLevel;    DebugTrace(+1, Dbg, "FatFsdRead/n", 0);    //    //  Call the common Read routine, with blocking allowed if synchronous    //    FsRtlEnterFileSystem();    //    //  We are first going to do a quick check for paging file IO.    //    Fcb = (PFCB)(IoGetCurrentIrpStackLocation(Irp)->FileObject->FsContext);    if ((NodeType(Fcb) == FAT_NTC_FCB) &&            FlagOn(Fcb->FcbState, FCB_STATE_PAGING_FILE)) {        //        //  Do the usual STATUS_PENDING things.        //        IoMarkIrpPending( Irp );        //        //  If there is not enough stack to do this read, then post this        //  read to the overflow queue.        //        if (IoGetRemainingStackSize() < OVERFLOW_READ_THRESHHOLD) {            KEVENT Event;            PAGING_FILE_OVERFLOW_PACKET Packet;            Packet.Irp = Irp;            Packet.Fcb = Fcb;            KeInitializeEvent( &Event, NotificationEvent, FALSE );            FsRtlPostPagingFileStackOverflow( &Packet, &Event, FatOverflowPagingFileRead );            //            //  And wait for the worker thread to complete the item            //            (VOID) KeWaitForSingleObject( &Event, Executive, KernelMode, FALSE, NULL );        } else {            //            //  Perform the actual IO, it will be completed when the io finishes.            //            FatPagingFileIo( Irp, Fcb );        }        FsRtlExitFileSystem();        return STATUS_PENDING;    }    try {        TopLevel = FatIsIrpTopLevel( Irp );//.........这里部分代码省略.........
开发者ID:BillTheBest,项目名称:WinNT4,代码行数:101,


示例14: xixfs_FindOutChanges

static VOIDxixfs_FindOutChanges(		PSOCKETLPX_ADDRESS_LIST	Original,		PSOCKETLPX_ADDRESS_LIST	Updated,		PSOCKETLPX_ADDRESS_LIST	Disabled,		PSOCKETLPX_ADDRESS_LIST	Enabled	) {	LONG	idx_ori, idx_updated, idx_disabled, idx_enabled ;	BOOLEAN	found ;	UINT32	matchmask ;	PAGED_CODE();	DebugTrace(DEBUG_LEVEL_TRACE, DEBUG_TARGET_HOSTCOM,		("Enter xixfs_FindOutChanges /n"));	ASSERT(sizeof(matchmask) * 8 >= MAX_SOCKETLPX_INTERFACE) ;	idx_disabled  = 0 ;	Disabled->iAddressCount = 0 ;	matchmask = 0 ;	for(idx_ori = 0 ; idx_ori < Original->iAddressCount ; idx_ori ++ ) {		found = FALSE ;		//		//	find disabled ones.		//		for(idx_updated = 0 ; idx_updated < Updated->iAddressCount ; idx_updated ++) {						if( RtlCompareMemory(						Original->SocketLpx[idx_ori].LpxAddress.Node,						Updated->SocketLpx[idx_updated].LpxAddress.Node,						ETHER_ADDR_LENGTH						) == ETHER_ADDR_LENGTH ) {				//				//	check this match in the bit mask.				//	help find enabled ones.				//				matchmask |= 1 << idx_updated ;				found = TRUE ;				break ;			}					}		//		//	add disabled one to the list		//		if(!found) {			RtlCopyMemory(Disabled->SocketLpx[idx_disabled].LpxAddress.Node,							Original->SocketLpx[idx_ori].LpxAddress.Node,							ETHER_ADDR_LENGTH						) ;			Disabled->iAddressCount ++ ;			idx_disabled ++ ;		}	}	//	//	find enabled ones.	//	idx_enabled = 0 ;	Enabled->iAddressCount = 0 ;	for(idx_updated = 0 ; idx_updated < Updated->iAddressCount ; idx_updated ++) {		//		//	add enabled one to the list.		//		if(!(matchmask & (1 << idx_updated))) {			RtlCopyMemory( 					Enabled->SocketLpx[idx_enabled].LpxAddress.Node,					Updated->SocketLpx[idx_updated].LpxAddress.Node,					ETHER_ADDR_LENGTH				) ;			Enabled->iAddressCount ++ ;			idx_enabled ++ ;		}	}		DebugTrace(DEBUG_LEVEL_TRACE, DEBUG_TARGET_HOSTCOM,		("Exit xixfs_FindOutChanges /n"));}
开发者ID:Nevermore2015,项目名称:ndas4windows,代码行数:86,


示例15: FatQueryFsSizeInfo

NTSTATUSFatQueryFsSizeInfo (    IN PIRP_CONTEXT IrpContext,    IN PVCB Vcb,    IN PFILE_FS_SIZE_INFORMATION Buffer,    IN OUT PULONG Length    )/*++Routine Description:    This routine implements the query volume size callArguments:    Vcb - Supplies the Vcb being queried    Buffer - Supplies a pointer to the output buffer where the information        is to be returned    Length - Supplies the length of the buffer in byte.  This variable        upon return recieves the remaining bytes free in the bufferReturn Value:    Status - Returns the status for the query--*/{    PDSCB Dscb = Vcb->Dscb;    DebugTrace(0, Dbg, "FatQueryFsSizeInfo.../n", 0);    RtlZeroMemory( Buffer, sizeof(FILE_FS_SIZE_INFORMATION) );    //    //  Set the output buffer.  If this is a double space volume, we have    //  some additional work to do.    //    Dscb = Vcb->Dscb;    if (Dscb && (Dscb->SectorsAllocated != 0)) {        ULONG EstimatedClustersFree;        //        //  Compute how many clusters we think we can represent on this        //  disk.  This is:        //        //      (Total - Allocated) * (Represented / Allocated)        //        //  which for computational reasons, we reduce to:        //        //      (Total * Represented / Allocated) - Represented        //        EstimatedClustersFree =            (ULONG)            ((((LONGLONG)(Dscb->CvfLayout.CvfHeap.Size / 512) *              (LONGLONG)(Dscb->SectorsRepresented)) /             Dscb->SectorsAllocated)             -             Dscb->SectorsRepresented)            /            Vcb->Bpb.SectorsPerCluster;        //        //  Now, if this number is smaller than the remaining clusters in        //  the FAT table, then use it.        //        Buffer->AvailableAllocationUnits.LowPart =            EstimatedClustersFree < Vcb->AllocationSupport.NumberOfFreeClusters ?            EstimatedClustersFree : Vcb->AllocationSupport.NumberOfFreeClusters;        //        //  To get the total number of clusters, take how many FAT clusters        //  we have used, and add the number returned above.        //        Buffer->TotalAllocationUnits.LowPart =            Vcb->AllocationSupport.NumberOfClusters -            Vcb->AllocationSupport.NumberOfFreeClusters +            Buffer->AvailableAllocationUnits.LowPart;    } else {        Buffer->TotalAllocationUnits.LowPart =                                    Vcb->AllocationSupport.NumberOfClusters;        Buffer->AvailableAllocationUnits.LowPart =                                    Vcb->AllocationSupport.NumberOfFreeClusters;    }//.........这里部分代码省略.........
开发者ID:BillTheBest,项目名称:WinNT4,代码行数:101,


示例16: xixfs_SendDatagram

////	send a packet.//NTSTATUSxixfs_SendDatagram(	IN PLFSDG_Socket		socket,	IN PXIXFSDG_PKT			pkt,	PLPX_ADDRESS		LpxRemoteAddress) {	NTSTATUS	ntStatus ;	ULONG		result ;	ULONG		idx_addr ;	PAGED_CODE();	DebugTrace(DEBUG_LEVEL_TRACE, DEBUG_TARGET_HOSTCOM,		("Enter  xixfs_SendDatagram /n"));	//	//	send a packet	//	for(idx_addr = 0 ; idx_addr < socket->SocketCnt ; idx_addr ++ ) {		RtlCopyMemory(&pkt->SourceAddr, &socket->Sockets[idx_addr].NICAddr, sizeof(LPX_ADDRESS)) ;				DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM, 			( "[LFS] xixfs_SendDatagram: Souce address: [0x%02X:%02X:%02X:%02X:%02X:%02X] : Port (%ld)/n",					pkt->SourceAddr.Node[0],pkt->SourceAddr.Node[1],pkt->SourceAddr.Node[2],					pkt->SourceAddr.Node[3],pkt->SourceAddr.Node[4],pkt->SourceAddr.Node[5], NTOHS(pkt->SourceAddr.Port)) );		DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM, 			( "[LFS] xixfs_SendDatagram: Dest address: [0x%02X:%02X:%02X:%02X:%02X:%02X] : Port (%ld)/n",					LpxRemoteAddress->Node[0],LpxRemoteAddress->Node[1],LpxRemoteAddress->Node[2],					LpxRemoteAddress->Node[3],LpxRemoteAddress->Node[4],LpxRemoteAddress->Node[5], NTOHS(LpxRemoteAddress->Port) ));		ntStatus = LpxTdiSendDataGram(				socket->Sockets[idx_addr].AddressFile,				LpxRemoteAddress,				(PUCHAR)&pkt->RawHeadDG,				pkt->PacketSize,				0,				&result			) ;		if(STATUS_PENDING == ntStatus) {			DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM,				( "[COM] xixfs_SendDatagram: outgoing packet is pending./n")) ;		} else if(!NT_SUCCESS(ntStatus)) {			DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM,				( "[COM] xixfs_SendDatagram: sending failed./n")) ;		} else if(result != pkt->PacketSize) {			DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM,				( "[COM] xixfs_SendDatagram: unexpected data length sent. len:%lu/n", result)) ;		}		//		//	patch02172004		//	Some NICs don't support loop-back for broadcast packet.		//	set Source address here.		//if(NT_SUCCESS(ntStatus)) {						DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM,				( "[COM] xixfs_SendDatagram: Sending OK. /n")) ;		//	RtlCopyMemory(&pkt->SourceAddr, &socket->Sockets[idx_addr].NICAddr, sizeof(LPX_ADDRESS)) ;		//}	}	DebugTrace(DEBUG_LEVEL_TRACE, DEBUG_TARGET_HOSTCOM,		("Exit  xixfs_SendDatagram /n"));	return STATUS_SUCCESS ;}
开发者ID:Nevermore2015,项目名称:ndas4windows,代码行数:76,


示例17: FatQueryFsDeviceInfo

NTSTATUSFatQueryFsDeviceInfo (    IN PIRP_CONTEXT IrpContext,    IN PVCB Vcb,    IN PFILE_FS_DEVICE_INFORMATION Buffer,    IN OUT PULONG Length    )/*++Routine Description:    This routine implements the query volume device callArguments:    Vcb - Supplies the Vcb being queried    Buffer - Supplies a pointer to the output buffer where the information        is to be returned    Length - Supplies the length of the buffer in byte.  This variable        upon return recieves the remaining bytes free in the bufferReturn Value:    Status - Returns the status for the query--*/{    DebugTrace(0, Dbg, "FatQueryFsDeviceInfo.../n", 0);    RtlZeroMemory( Buffer, sizeof(FILE_FS_DEVICE_INFORMATION) );    //    //  Set the output buffer    //    Buffer->DeviceType = FILE_DEVICE_DISK;    Buffer->Characteristics = Vcb->TargetDeviceObject->Characteristics;    if (Vcb->Dscb != NULL) {        SetFlag( Buffer->Characteristics, FILE_VIRTUAL_VOLUME );    }    //    //  Adjust the length variable    //    *Length -= sizeof(FILE_FS_DEVICE_INFORMATION);    //    //  And return success to our caller    //    UNREFERENCED_PARAMETER( IrpContext );    return STATUS_SUCCESS;}
开发者ID:BillTheBest,项目名称:WinNT4,代码行数:62,


示例18: FatFsdCleanup

NTSTATUSFatFsdCleanup (    IN PVOLUME_DEVICE_OBJECT VolumeDeviceObject,    IN PIRP Irp    )/*++Routine Description:    This routine implements the FSD part of closing down a handle to a    file object.Arguments:    VolumeDeviceObject - Supplies the volume device object where the        file being Cleanup exists    Irp - Supplies the Irp being processedReturn Value:    NTSTATUS - The FSD status for the IRP--*/{    NTSTATUS Status;    PIRP_CONTEXT IrpContext = NULL;    BOOLEAN TopLevel;    PAGED_CODE();#if __NDAS_FAT__	if ((PVOID)FatControlDeviceObject == VolumeDeviceObject) {		Status = Irp->IoStatus.Status = STATUS_SUCCESS;		Irp->IoStatus.Information = FILE_OPENED;		IoCompleteRequest( Irp, IO_DISK_INCREMENT );		return Status;	}#endif    //    //  If we were called with our file system device object instead of a    //  volume device object, just complete this request with STATUS_SUCCESS    //    if ( FatDeviceIsFatFsdo( VolumeDeviceObject))  {        Irp->IoStatus.Status = STATUS_SUCCESS;        Irp->IoStatus.Information = FILE_OPENED;        IoCompleteRequest( Irp, IO_DISK_INCREMENT );        return STATUS_SUCCESS;    }    DebugTrace(+1, Dbg, "FatFsdCleanup/n", 0);    //    //  Call the common Cleanup routine, with blocking allowed.    //    FsRtlEnterFileSystem();    TopLevel = FatIsIrpTopLevel( Irp );#if __NDAS_FAT__	do {			try {			if (IrpContext == NULL) { 				IrpContext = FatCreateIrpContext( Irp, TRUE );				IrpContext->TopLevel = TopLevel;#if __NDAS_FAT_PRIMARY__			{				ULONG_PTR				stackBottom;				ULONG_PTR				stackTop;			    BOOLEAN					ValidPrimaryRequest = FALSE;				PPRIMARY_REQUEST_INFO	primaryRequestInfo;				PIO_STACK_LOCATION		irpSp = IoGetCurrentIrpStackLocation( Irp );    				//primaryRequestInfo = (PPRIMARY_REQUEST_INFO)FatGetTopLevelContext()->SavedTopLevelIrp;				primaryRequestInfo = (PPRIMARY_REQUEST_INFO)IoGetTopLevelIrp();			    IoGetStackLimits( &stackTop, &stackBottom );			    if ( (ULONG_PTR)primaryRequestInfo <= stackBottom - sizeof(PRIMARY_REQUEST_INFO)	&&					 (ULONG_PTR) primaryRequestInfo >= stackTop										&&					 (!FlagOn( (ULONG_PTR) primaryRequestInfo, 0x3 ))								&&//.........这里部分代码省略.........
开发者ID:olivecake,项目名称:ndas4windows,代码行数:101,


示例19: FatFsdQueryVolumeInformation

NTSTATUSFatFsdQueryVolumeInformation (    IN PVOLUME_DEVICE_OBJECT VolumeDeviceObject,    IN PIRP Irp    )/*++Routine Description:    This routine implements the Fsd part of the NtQueryVolumeInformation API    call.Arguments:    VolumeDeviceObject - Supplies the volume device object where the file        being queried exists.    Irp - Supplies the Irp being processed.Return Value:    NTSTATUS - The FSD status for the Irp.--*/{    NTSTATUS Status;    PIRP_CONTEXT IrpContext = NULL;    BOOLEAN TopLevel;    DebugTrace(+1, Dbg, "FatFsdQueryVolumeInformation/n", 0);    //    //  Call the common query routine, with blocking allowed if synchronous    //    FsRtlEnterFileSystem();    TopLevel = FatIsIrpTopLevel( Irp );    try {        IrpContext = FatCreateIrpContext( Irp, CanFsdWait( Irp ) );        Status = FatCommonQueryVolumeInfo( IrpContext, Irp );    } except(FatExceptionFilter( IrpContext, GetExceptionInformation() )) {        //        //  We had some trouble trying to perform the requested        //  operation, so we'll abort the I/O request with        //  the error status that we get back from the        //  execption code        //        Status = FatProcessException( IrpContext, Irp, GetExceptionCode() );    }    if (TopLevel) { IoSetTopLevelIrp( NULL ); }    FsRtlExitFileSystem();    //    //  And return to our caller    //    DebugTrace(-1, Dbg, "FatFsdQueryVolumeInformation -> %08lx/n", Status);    UNREFERENCED_PARAMETER( VolumeDeviceObject );    return Status;}
开发者ID:BillTheBest,项目名称:WinNT4,代码行数:74,


示例20: FatQueryFsAttributeInfo

NTSTATUSFatQueryFsAttributeInfo (    IN PIRP_CONTEXT IrpContext,    IN PVCB Vcb,    IN PFILE_FS_ATTRIBUTE_INFORMATION Buffer,    IN OUT PULONG Length    )/*++Routine Description:    This routine implements the query volume attribute callArguments:    Vcb - Supplies the Vcb being queried    Buffer - Supplies a pointer to the output buffer where the information        is to be returned    Length - Supplies the length of the buffer in byte.  This variable        upon return recieves the remaining bytes free in the bufferReturn Value:    Status - Returns the status for the query--*/{    ULONG BytesToCopy;    NTSTATUS Status;    DebugTrace(0, Dbg, "FatQueryFsAttributeInfo.../n", 0);    //    //  Determine how much of the file system name will fit.    //    if ( (*Length - FIELD_OFFSET( FILE_FS_ATTRIBUTE_INFORMATION,                                  FileSystemName[0] )) >= 6 ) {        BytesToCopy = 6;        *Length -= FIELD_OFFSET( FILE_FS_ATTRIBUTE_INFORMATION,                                 FileSystemName[0] ) + 6;        Status = STATUS_SUCCESS;    } else {        BytesToCopy = *Length - FIELD_OFFSET( FILE_FS_ATTRIBUTE_INFORMATION,                                              FileSystemName[0]);        *Length = 0;        Status = STATUS_BUFFER_OVERFLOW;    }    //    //  Set the output buffer    //    Buffer->FileSystemAttributes = FILE_CASE_PRESERVED_NAMES |                                   FILE_UNICODE_ON_DISK;#ifdef WE_WON_ON_APPEAL    if (FlagOn(Vcb->VcbState, VCB_STATE_FLAG_COMPRESSED_VOLUME)) {        SetFlag( Buffer->FileSystemAttributes, FILE_VOLUME_IS_COMPRESSED );    }#endif // WE_WON_ON_APPEAL    Buffer->MaximumComponentNameLength = FatData.ChicagoMode ? 255 : 12;    Buffer->FileSystemNameLength       = BytesToCopy;    RtlCopyMemory( &Buffer->FileSystemName[0], L"FAT", BytesToCopy );    //    //  And return success to our caller    //    UNREFERENCED_PARAMETER( IrpContext );    UNREFERENCED_PARAMETER( Vcb );    return Status;}
开发者ID:BillTheBest,项目名称:WinNT4,代码行数:88,


示例21: W2KNtfsCleanupAttributeContext

VOIDW2KNtfsCleanupAttributeContext (    IN OUT PIRP_CONTEXT IrpContext,    IN OUT PATTRIBUTE_ENUMERATION_CONTEXT AttributeContext    )/*++Routine Description:    This routine is called to free any resources claimed within an enumeration    context and to unpin mapped or pinned data.Arguments:    IrpContext - context of the call    AttributeContext - Pointer to the enumeration context to perform cleanup                       on.Return Value:    None.--*/{    UNREFERENCED_PARAMETER( IrpContext );    PAGED_CODE();    DebugTrace( +1, Dbg, ("NtfsCleanupAttributeContext/n") );    //    //  TEMPCODE   We need a call to cleanup any Scb's created.    //    //    //  Unpin any Bcb's pinned here.    //    NtfsUnpinBcb( IrpContext, &AttributeContext->FoundAttribute.Bcb );    NtfsUnpinBcb( IrpContext, &AttributeContext->AttributeList.Bcb );    NtfsUnpinBcb( IrpContext, &AttributeContext->AttributeList.NonresidentListBcb );    //    //  Originally, we zeroed the entire context at this point.  This is    //  wildly inefficient since the context is either deallocated soon thereafter    //  or is initialized again.    //    //  RtlZeroMemory( AttributeContext, sizeof(ATTRIBUTE_ENUMERATION_CONTEXT) );    //    //  BUGBUG - set entire contents to -1 (and reset Bcb's to NULL) to verify    //  that no one reuses this data structure#if DBG    RtlFillMemory( AttributeContext, sizeof( *AttributeContext ), -1 );    AttributeContext->FoundAttribute.Bcb = NULL;    AttributeContext->AttributeList.Bcb = NULL;    AttributeContext->AttributeList.NonresidentListBcb = NULL;#endif    DebugTrace( -1, Dbg, ("NtfsCleanupAttributeContext -> VOID/n") );    return;}
开发者ID:tigtigtig,项目名称:ndas4windows,代码行数:68,


示例22: FatSetFsLabelInfo

NTSTATUSFatSetFsLabelInfo (    IN PIRP_CONTEXT IrpContext,    IN PVCB Vcb,    IN PFILE_FS_LABEL_INFORMATION Buffer    )/*++Routine Description:    This routine implements the set volume label callArguments:    Vcb - Supplies the Vcb being queried    Buffer - Supplies the input where the information is stored.Return Value:    NTSTATUS - Returns the status for the operation--*/{    NTSTATUS Status;    PDIRENT Dirent;    PBCB DirentBcb = NULL;    ULONG ByteOffset;    WCHAR TmpBuffer[11];    UCHAR OemBuffer[11];    OEM_STRING OemLabel;    UNICODE_STRING UnicodeString;    UNICODE_STRING UpcasedLabel;    DebugTrace(+1, Dbg, "FatSetFsLabelInfo.../n", 0);    //    //  Setup our local variable    //    UnicodeString.Length = (USHORT)Buffer->VolumeLabelLength;    UnicodeString.MaximumLength = UnicodeString.Length;    UnicodeString.Buffer = (PWSTR) &Buffer->VolumeLabel[0];    //    //  Make sure the name can fit into the stack buffer    //    if ( UnicodeString.Length > 11*sizeof(WCHAR) ) {        return STATUS_INVALID_VOLUME_LABEL;    }    //    //  Upcase the name and convert it to the Oem code page.    //    OemLabel.Buffer = &OemBuffer[0];    OemLabel.Length = 0;    OemLabel.MaximumLength = 11;    Status = FatUpcaseUnicodeStringToCountedOemString( &OemLabel,                                                       &UnicodeString,                                                       FALSE );    //    //  Volume label that fits in 11 unicode character length limit    //  is not necessary within 11 characters in OEM character set.    //    if (!NT_SUCCESS( Status )) {        DebugTrace(-1, Dbg, "FatSetFsLabelInfo:  Label must be too long. %08lx/n", Status );        return STATUS_INVALID_VOLUME_LABEL;    }    //    //  Get the Unicode upcased string to store in the VPB.    //    UpcasedLabel.Length = UnicodeString.Length;    UpcasedLabel.MaximumLength = 11*sizeof(WCHAR);    UpcasedLabel.Buffer = &TmpBuffer[0];    Status = RtlOemStringToCountedUnicodeString( &UpcasedLabel,                                                 &OemLabel,                                                 FALSE );    if (!NT_SUCCESS( Status )) {        DebugTrace(-1, Dbg, "FatSetFsLabelInfo:  Label must be too long. %08lx/n", Status );        return STATUS_INVALID_VOLUME_LABEL;    }//.........这里部分代码省略.........
开发者ID:BillTheBest,项目名称:WinNT4,代码行数:101,


示例23: handleInterruptRequest

bool ActionStack::CheckUserInput(JButton inputKey){    JButton key = inputKey;    JButton trigger = (options[Options::REVERSETRIGGERS].number ? JGE_BTN_NEXT : JGE_BTN_PREV);    if (mode == ACTIONSTACK_STANDARD)    {                if (askIfWishesToInterrupt)        {            int x,y;            if(observer->getInput()->GetLeftClickCoordinates(x, y))            {                key = handleInterruptRequest(inputKey, x, y);            }                        if (JGE_BTN_SEC == key && gModRules.game.canInterrupt())            {                setIsInterrupting(askIfWishesToInterrupt);                return true;            }            else if ((JGE_BTN_OK == key) || (trigger == key))            {                cancelInterruptOffer();                return true;            }            else if ((JGE_BTN_PRI == key))            {                cancelInterruptOffer(DONT_INTERRUPT_ALL);                return true;            }            return true;        }        else if (observer->isInterrupting)        {            if (JGE_BTN_SEC == key)            {                endOfInterruption();                return true;            }        }    }    else if (mode == ACTIONSTACK_TARGET)    {        if (modal)        {            if (JGE_BTN_UP == key)            {                if (mObjects[mCurr])                {                    int n = getPreviousIndex(((Interruptible *) mObjects[mCurr]), 0, 0, 1);                    if (n != -1 && n != mCurr && mObjects[mCurr]->Leaving(JGE_BTN_UP))                    {                        mCurr = n;                        mObjects[mCurr]->Entering();                        DebugTrace("ACTIONSTACK UP TO mCurr = " << mCurr);                    }                }                return true;            }            else if (JGE_BTN_DOWN == key)            {                if( mObjects[mCurr])                {                    int n = getNextIndex(((Interruptible *) mObjects[mCurr]), 0, 0, 1);                    if (n!= -1 && n != mCurr && mObjects[mCurr]->Leaving(JGE_BTN_DOWN))                    {                        mCurr = n;                        mObjects[mCurr]->Entering();                        DebugTrace("ACTIONSTACK DOWN TO mCurr " << mCurr);                    }                }                return true;            }            else if (JGE_BTN_OK == key)            {                DebugTrace("ACTIONSTACK CLICKED mCurr = " << mCurr);                observer->stackObjectClicked(((Interruptible *) mObjects[mCurr]));                return true;            }            return true; //Steal the input to other layers if we're visible        }        if (JGE_BTN_CANCEL == key)        {            if (modal) modal = 0;            else modal = 1;            return true;        }    }    return false;}
开发者ID:zwvc,项目名称:wagic-x,代码行数:90,


示例24: xixfs_NetEventDetectorProc

static VOIDxixfs_NetEventDetectorProc(		PVOID lpParameter   // thread data	) {	PNETEVTCTX	NetEvtCtx  = (PNETEVTCTX)lpParameter;	NTSTATUS	ntStatus ;	SOCKETLPX_ADDRESS_LIST	addressList ;	LARGE_INTEGER	TimeOut ;	LONG			idx_callbacks ;		PAGED_CODE();	DebugTrace(DEBUG_LEVEL_TRACE, DEBUG_TARGET_HOSTCOM,		("Enter xixfs_NetEventDetectorProc /n"));	DebugTrace(DEBUG_LEVEL_TRACE, DEBUG_TARGET_HOSTCOM,		("[LFS] xixfs_NetEventDetectorProc: Initializing Networking event detector.../n")) ;	//	//	get the address list	//	ntStatus = LpxTdiGetAddressList(			&NetEvtCtx->AddressList		);	if(!NT_SUCCESS(ntStatus)) {		DebugTrace( DEBUG_LEVEL_ERROR, DEBUG_TARGET_ALL, 			( "[LFS] xixfs_NetEventDetectorProc: LpxTdiGetAddressList() failed. NTSTATUS:%lu/n", ntStatus));//		goto termination ;	}	DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM,		("[LFS] xixfs_NetEventDetectorProc: Networking event detector started.../n")) ;	// Main loop...	while(1) {		TimeOut.QuadPart = - NETEVT_FREQ ;		ntStatus = KeWaitForSingleObject(				&NetEvtCtx->ShutdownEvent,				Executive,				KernelMode,				FALSE,				&TimeOut			);				DebugTrace(DEBUG_LEVEL_TRACE, DEBUG_TARGET_HOSTCOM,			( "[LFS] xixfs_NetEventDetectorProc: NTSTATUS:%lu/n", ntStatus));		if(0 == ntStatus) {			DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM,				( "[COM] xixfs_NetEventDetectorProc: ShutDown event received. NTSTATUS:%lu/n", ntStatus));			break ;		} else if(STATUS_TIMEOUT == ntStatus) {			//			//	Time Out.			//			DebugTrace(DEBUG_LEVEL_TRACE, DEBUG_TARGET_HOSTCOM,				( "[COM] xixfs_NetEventDetectorProc: Time out. Go ahead and check changes. NTSTATUS:%lu/n", ntStatus));		} else {			DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM,				( "[COM] xixfs_NetEventDetectorProc: KeWaitForSingleObject() failed. NTSTATUS:%lu/n", ntStatus));			break ;		}		//		//	check changes		//		ntStatus = LpxTdiGetAddressList(				&addressList			);		if(!NT_SUCCESS(ntStatus)) {			DebugTrace( DEBUG_LEVEL_ERROR, DEBUG_TARGET_ALL, 				( "[LFS] xixfs_NetEventDetectorProc: LpxTdiGetAddressList() failed. NTSTATUS:%lu/n", ntStatus));			continue ;		}		xixfs_FindOutChanges(				&NetEvtCtx->AddressList,				&addressList,				&NetEvtCtx->DisabledAddressList,				&NetEvtCtx->EnabledAddressList			);		//		//	call back		//		if(			NetEvtCtx->DisabledAddressList.iAddressCount == 0 &&			NetEvtCtx->EnabledAddressList.iAddressCount == 0			) {			continue ;		}		DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM,			( "[LFS] xixfs_NetEventDetectorProc: Networking event detected./n"));		//		//	call callbacks and update address list.		//		for(idx_callbacks = 0 ; idx_callbacks < NetEvtCtx->CallbackCnt ; idx_callbacks ++ ) {//.........这里部分代码省略.........
开发者ID:Nevermore2015,项目名称:ndas4windows,代码行数:101,


示例25: _makepath

// staticNamedType* NamedType::CreateFromArchive(TypeArchive& ar, uint32 id, TypeLib* typelib, StringIn qname){	//ASSERT(typelib->m_loaded);	/*	if (!typelib->m_loaded)	{		typelib->m_loaded = true;		char fullname[260];		_makepath(fullname, "C:", "//mmstudio//Win32//bin//debug", typelib->m_typeinfo_filename->c_str(), "typeinfo");		IO::FileByteStream file(new StringA(fullname), IO::FileMode_Read);		TypeArchive ar2(TypeArchive::Mode_Load, &file);		ar2.m_pGlobalNamespace = ar.m_pGlobalNamespace;		ar2.m_bSortedDecls = ar.m_bSortedDecls;		ar2.m_typestuff = ar.m_typestuff;		ar2 >> ar2.m_typelib;		uint ntypelibs;		ar2 >> ntypelibs;		for (uint i = 0; i < ntypelibs; i++)		{			TypeLib* typelib;			ar2 >> typelib;		}		Namespace* pNamespace;		ar2 >> pNamespace;		uint ntypes;		ar2 >> ntypes;		for (i = 0; i < ntypes; i++)		{			NamedType* type;			ar2 >> type;			typelib->m_alltypes.insert(map<StringA*, NamedType*, Ref_Less<StringA> >::value_type(type->m_qname, type));		}	}	*///	map<StringA*, NamedType*, Ref_Less<StringA> >::iterator it = typelib->m_typesByName.find(qname);	NamedType* pobj = typelib->FindNamedType(qname);	if (pobj == NULL)	{		/*		char buffer[1024];		sprintf_s(buffer, "'%S' imports '%S', but couldn't find type '%s'/n", ar.m_typelib->m_typeinfo_filename->c_str(), typelib->m_typeinfo_filename->c_str(), qname->c_str());	//	throw std::exception(buffer);		printf(buffer);		*/		DebugTrace(__FILE__ <<  paren(__LINE__) << " : TODO; FIX BUG HERE/n");	//	ASSERT(0);		ar.m_typeLoad.push_back(NULL);		return NULL;	}	else	{	//	ar.m_objectmapLoad.insert(map<uint32, TypeSerializable*>::value_type(id, pobj));		if (ar.m_typeLoad.size() < id+1) ar.m_typeLoad.resize(id+1);		ar.m_typeLoad[id] = pobj;	//	ASSERT(ar.m_typeLoad.size() == id);		return pobj;	}}
开发者ID:sigurdle,项目名称:FirstProject2,代码行数:75,


示例26: xixfs_OpenDGSocket

////	open a datagram socket//NTSTATUSxixfs_OpenDGSocket(	OUT PLFSDG_Socket		Socket,	IN USHORT				PortNo) {	HANDLE						addressFileHandle = NULL;	HANDLE						connectionFileHandle = NULL;	PFILE_OBJECT					addressFileObject = NULL;	PFILE_OBJECT					connectionFileObject = NULL;	NTSTATUS					ntStatus ;	SOCKETLPX_ADDRESS_LIST		socketLpxAddressList;	LONG						idx_addr ;	ULONG						open_addr ;	LPX_ADDRESS				NICAddr ;	PAGED_CODE();	DebugTrace(DEBUG_LEVEL_TRACE, DEBUG_TARGET_HOSTCOM,		("Enter  xixfs_OpenDGSocket /n"));		Socket->SocketCnt = 0 ;	//	//	get addresses from LPX	//	ntStatus = LpxTdiGetAddressList(				&socketLpxAddressList   				 ) ;		if(!NT_SUCCESS(ntStatus)) {		return ntStatus;	}	if(0 == socketLpxAddressList.iAddressCount) {		return STATUS_INSUFFICIENT_RESOURCES;	}	//	//	open a port for each NIC.	//	open_addr = 0 ;	for(idx_addr = 0 ; idx_addr < socketLpxAddressList.iAddressCount; idx_addr ++) {		if( (0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[0]) &&			(0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[1]) &&			(0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[2]) &&			(0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[3]) &&			(0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[4]) &&			(0 == socketLpxAddressList.SocketLpx[idx_addr].LpxAddress.Node[5]) ) {			continue ;		}		RtlCopyMemory(&NICAddr, &socketLpxAddressList.SocketLpx[idx_addr].LpxAddress, sizeof(LPX_ADDRESS)) ;		NICAddr.Port = HTONS(PortNo) ;		//		//	open a connection and address.		//	if this calling for a datagram server, don't create a connection.		//		ntStatus = LpxTdiOpenAddress(				&addressFileHandle,				&addressFileObject,				&NICAddr			);		if(!NT_SUCCESS(ntStatus)) {			DebugTrace( DEBUG_LEVEL_ERROR, DEBUG_TARGET_ALL, 				( "[LFS] xixfs_OpenDGSocket: couldn't open a address %d:'%02X:%02X:%02X:%02X:%02X:%02X/%d'/n",						idx_addr,						NICAddr.Node[0],NICAddr.Node[1],NICAddr.Node[2],						NICAddr.Node[3],NICAddr.Node[4],NICAddr.Node[5],						(int)NTOHS(NICAddr.Port) ) );			continue ;		}		DebugTrace(DEBUG_LEVEL_INFO, DEBUG_TARGET_HOSTCOM, 			( "[LFS] xixfs_OpenDGSocket: opened a address:'%02X:%02X:%02X:%02X:%02X:%02X/%d'/n",					NICAddr.Node[0],NICAddr.Node[1],NICAddr.Node[2],					NICAddr.Node[3],NICAddr.Node[4],NICAddr.Node[5],					(int)NTOHS(NICAddr.Port)			) );		//		//	return values		//	close handles, but leave objects		//		Socket->Sockets[open_addr].AddressFile = addressFileObject ;		Socket->Sockets[open_addr].AddressFileHandle = addressFileHandle ;		RtlCopyMemory(&Socket->Sockets[open_addr].NICAddr, &NICAddr, sizeof(LPX_ADDRESS)) ;		open_addr ++ ;	}	Socket->SocketCnt = (USHORT)open_addr ;//.........这里部分代码省略.........
开发者ID:Nevermore2015,项目名称:ndas4windows,代码行数:101,


示例27: Ext2CommonClose

/*************************************************************************** Function: Ext2CommonClose()** Description:*	The actual work is performed here. This routine may be invoked in one'*	of the two possible contexts:*	(a) in the context of a system worker thread*	(b) in the context of the original caller** Expected Interrupt Level (for execution) :**  IRQL_PASSIVE_LEVEL** Return Value: Does not matter!**************************************************************************/NTSTATUS NTAPI Ext2CommonClose(PtrExt2IrpContext			PtrIrpContext,PIRP						PtrIrp,BOOLEAN						FirstAttempt ){	NTSTATUS					RC = STATUS_SUCCESS;	PIO_STACK_LOCATION	PtrIoStackLocation = NULL;	PFILE_OBJECT			PtrFileObject = NULL;	PtrExt2FCB				PtrFCB = NULL;	PtrExt2CCB				PtrCCB = NULL;	PtrExt2VCB				PtrVCB = NULL;	PtrExt2NTRequiredFCB	PtrReqdFCB = NULL;	PERESOURCE				PtrResourceAcquired = NULL;	PERESOURCE				PtrPagingIoResourceAcquired = NULL;	BOOLEAN					CompleteIrp = TRUE;	BOOLEAN					PostRequest = FALSE;	BOOLEAN					AcquiredVCB = FALSE;	BOOLEAN					BlockForResource;	int						i = 1;	try 	{		// First, get a pointer to the current I/O stack location		PtrIoStackLocation = IoGetCurrentIrpStackLocation(PtrIrp);		ASSERT(PtrIoStackLocation);		PtrFileObject = PtrIoStackLocation->FileObject;		ASSERT(PtrFileObject);		if( !PtrFileObject->FsContext2 )		{			//	This must be a Cleanup request received 			//	as a result of IoCreateStreamFileObject			//	Only such a File object would have a NULL CCB			DebugTrace( DEBUG_TRACE_SPECIAL, " === Close with NULL CCB", 0);			if( PtrFileObject )			{				DebugTrace( DEBUG_TRACE_SPECIAL, "###### File Pointer 0x%LX [Close]", PtrFileObject);			}			try_return();		}		// Get the FCB and CCB pointers		Ext2GetFCB_CCB_VCB_FromFileObject ( 			PtrFileObject, &PtrFCB, &PtrCCB, &PtrVCB );		PtrVCB = (PtrExt2VCB)(PtrIrpContext->TargetDeviceObject->DeviceExtension);		ASSERT( PtrVCB );		if( PtrFCB && PtrFCB->FCBName && PtrFCB->FCBName->ObjectName.Length && PtrFCB->FCBName->ObjectName.Buffer )		//if( PtrFileObject->FileName.Length && PtrFileObject->FileName.Buffer )		{			DebugTrace(DEBUG_TRACE_FILE_NAME, " === Close File Name : -%S-", PtrFCB->FCBName->ObjectName.Buffer );		}		else		{			DebugTrace(DEBUG_TRACE_FILE_NAME,   " === Close File Name : -null-", 0);		}		//	(a) Acquiring the VCBResource Exclusively...		//	This is done to synchronise with the close and cleanup routines...//		if( ExTryToAcquireResourceExclusiveLite(&(PtrVCB->VCBResource) ) )		BlockForResource = !FirstAttempt;		if( !FirstAttempt )		{			DebugTrace(DEBUG_TRACE_MISC, "*** Going into a block to acquire VCB Exclusively [Close]", 0);		}		else		{			DebugTrace(DEBUG_TRACE_MISC, "*** Attempting to acquire VCB Exclusively [Close]", 0);		}		if( PtrFileObject )		{			DebugTrace(DEBUG_TRACE_FILE_OBJ, "###### File Pointer 0x%LX [Close]", PtrFileObject);		}		i = 1;		while( !AcquiredVCB )		{//.........这里部分代码省略.........
开发者ID:RPG-7,项目名称:reactos,代码行数:101,


示例28: NtfsPreparePinWriteStream

VOIDNtfsPreparePinWriteStream (    IN PIRP_CONTEXT IrpContext,    IN PSCB Scb,    IN LONGLONG FileOffset,    IN ULONG Length,    IN BOOLEAN Zero,    OUT PVOID *Bcb,    OUT PVOID *Buffer    )/*++Routine Description:Arguments:Return Value:--*/{    ASSERT_IRP_CONTEXT( IrpContext );    ASSERT_SCB( Scb );    PAGED_CODE();    DebugTrace( +1, Dbg, ("NtfsPreparePinWriteStream/n") );    DebugTrace( 0, Dbg, ("Scb        = %08lx/n", Scb) );    DebugTrace( 0, Dbg, ("FileOffset = %016I64x/n", FileOffset) );    DebugTrace( 0, Dbg, ("Length     = %08lx/n", Length) );    //    //  The file object should already exist in the Scb.    //    ASSERT( Scb->FileObject != NULL );    //    //  If we are trying to go beyond the end of the allocation, assume    //  we have some corruption.    //    if ((FileOffset + Length) > Scb->Header.AllocationSize.QuadPart) {        NtfsRaiseStatus( IrpContext, STATUS_FILE_CORRUPT_ERROR, NULL, Scb->Fcb );    }    //    //  Call the cache manager to do it.  This call may raise, or    //  will return FALSE if waiting is required.    //    if (!CcPreparePinWrite( Scb->FileObject,                            (PLARGE_INTEGER)&FileOffset,                            Length,                            Zero,                            FlagOn( IrpContext->State, IRP_CONTEXT_STATE_WAIT ),                            Bcb,                            Buffer )) {        ASSERT( !FlagOn( IrpContext->State, IRP_CONTEXT_STATE_WAIT ));        //        // Could not pin the data without waiting (cache miss).        //        NtfsRaiseStatus( IrpContext, STATUS_CANT_WAIT, NULL, NULL );    }#ifdef MAPCOUNT_DBG    IrpContext->MapCount++;#endif    DebugTrace( 0, Dbg, ("Bcb -> %08lx/n", *Bcb) );    DebugTrace( 0, Dbg, ("Buffer -> %08lx/n", *Buffer) );    DebugTrace( -1, Dbg, ("NtfsPreparePinWriteStream -> VOID/n") );    return;}
开发者ID:Nevermore2015,项目名称:ndas4windows,代码行数:79,



注:本文中的DebugTrace函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


C++ DebugUnwind函数代码示例
C++ DebugRoutine函数代码示例
万事OK自学网:51自学网_软件自学网_CAD自学网自学excel、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。