首页 > 其他分享 >findstr /s "AttachedDevice" *.cpp

findstr /s "AttachedDevice" *.cpp

时间:2023-06-18 11:02:01浏览次数:48  
标签:findstr DeviceObject NT Driver chapter12 cpp AttachedDevice


findstr /s "AttachedDevice" *.cpp
chapter22\FileFilter\DriverEntry.cpp:           if (!fido->AttachedDevice || (fi
do->AttachedDevice->Flags & DO_POWER_PAGABLE))
chapter22\FileFilter\DriverEntry.cpp:   PDEVICE_OBJECT ldo = IoGetAttachedDevice
Reference(pdo);
chapter04\NT_Driver\2\Driver.cpp:               KdPrint(("Device AttachedDevice:
0X%08X\n",pDevice->AttachedDevice));
chapter04\WDM_Driver\2\HelloWDM.cpp:            KdPrint(("Device AttachedDevice:
0X%08X\n",pDevice->AttachedDevice));
chapter04\WDM_Driver\2\HelloWDM.cpp:    for (;pDevice!=NULL;pDevice=pDevice->Att
achedDevice)
chapter04\WDM_Driver\2\HelloWDM.cpp:            KdPrint(("Device AttachedDevice:
0X%08X\n",pDevice->AttachedDevice));
chapter12\Test2\NT_Driver\Driver.cpp:GetAttachedDeviceInfo( PDEVICE_OBJECT DevOb
j )
chapter12\Test2\NT_Driver\Driver.cpp:  DeviceObject = DevObj->AttachedDevice;
chapter12\Test2\NT_Driver\Driver.cpp:    DeviceObject = DeviceObject->AttachedDe
vice;
chapter12\Test2\NT_Driver\Driver.cpp:    if ( DeviceObject->AttachedDevice )
chapter12\Test2\NT_Driver\Driver.cpp:      GetAttachedDeviceInfo( DeviceObject )
;
chapter12\Test2\NT_Driver\Driver.cpp:      if ( DeviceObject->Vpb->DeviceObject-
>AttachedDevice )
chapter12\Test2\NT_Driver\Driver.cpp:        GetAttachedDeviceInfo( DeviceObject
->Vpb->DeviceObject );
chapter16\Test4\MyDriver\HelloWDM.cpp:    targetObject = IoGetAttachedDeviceRefe
rence( DeviceObject );

标签:findstr,DeviceObject,NT,Driver,chapter12,cpp,AttachedDevice
From: https://blog.51cto.com/gjwrxz/6507758

相关文章

  • strDivide2.cpp字符串划分
    //strDivide2.cpp:Definestheentrypointfortheconsoleapplication.//#include"stdafx.h"#include"string.h"/*s为bwe@#$at111YYY*oo那么func(s)将打印atbweooYYY★树★(240028358)21:07:57先挑字母,再排序吧国嵌唐老师(22134670)21:21:25我来说说......
  • lower_bound upper_bound in cpp
    upper_boundReturnsaniteratorpointingtothefirstelementintherange[first,last)whichcomparesgreaterthanval.ReturnvalueAniteratortotheupperboundpositionforvalintherange.Ifnoelementintherangecomparesgreaterthanval,the......
  • cpp: Interpreter Pattern
     /*****************************************************************//***\fileDuSimple.h*\briefInterpreterPattern解释器模式C++14*2023年6月10日涂聚文GeovinDuVisualStudio2022edit.*\authorgeovindu*\dateJune2023**********......
  • 【八股cover#2】CPP语法 Q&A与知识点
    CPP语法Q&A与知识点简历cover1、熟练使用C的指针应用及内存管理指针与引用的区别指针是一个存储地址的变量,可以有多级,可以为空,并且在初始化后可以改变指向;引用是原变量的别名,只有一级,不能为NULL,必须在定义时初始化,并且一旦初始化后就不能再改变。指针在作为参数传递时不会......
  • cppcheck代码扫描安装及使用
    一、 简介& 官网简介:CppCheck是一个静态代码检查工具,支持c/c++代码;作为编译器的一种补充检查,CppCheck对产品的源代码执行严格的逻辑检查。官网:http://cppcheck.net 二、安装环境安装gcc/g++  sudoapt-getinstallgccg++三、编译unzipcppcheck-......
  • cpp: Memento Pattern
     /*****************************************************************//***\fileActorMemento.h*\brief备忘录模式MementoPattern亦称:快照、Snapshot、MementoC++14*2023年6月6日涂聚文GeovinDuVisualStudio2022edit.*\authorgeovindu*\da......
  • cpp test write content speed to ssd and usual disk respectively 1M,10M,100M row
    #include<chrono>#include<ctime>#include<fstream>#include<iomanip>#include<iostream>#include<sstream>#include<thread>#include<uuid/uuid.h>std::stringget_time_now(){autonow=std::chro......
  • cpp: Bridge Pattern
     /*****************************************************************//***\fileGold.h*\brief桥接模式BridgePatternC++14*2023年6月3日涂聚文GeovinDuVisualStudio2022edit.*\authorgeovindu*\dateJune2023***********************......
  • cpp: Proxy Pattern
     /*****************************************************************//***\fileGoldWebSite.h*\brief代理模式ProxyPatternC++14*2023年5月31日涂聚文GeovinDuVisualStudio2022edit.*\authorgeovindu*\dateMay2023******************......
  • cassandra cpp driver中bind list——用cass_statement_bind_collection函数
     CassErrorinsert_into_collections(CassSession*session,constchar*key,constchar*items[]){CassErrorrc=CASS_OK;CassStatement*statement=NULL;CassFuture*future=NULL;CassCollection*collection=NULL;constchar**item=NULL;c......