/reactos/modules/rostests/kmtests/ntos_ke/ |
H A D | KeDpc.c | 24 IN PRKDPC Dpc, in DpcHandler() argument 40 ok_eq_uint(Dpc->Number, 0); in DpcHandler() 42 ok(Dpc->DpcListEntry.Blink != &Dpc->DpcListEntry, "\n"); in DpcHandler() 44 ok_eq_pointer(Dpc->DpcListEntry.Flink, Dpc->DpcListEntry.Blink->Flink); in DpcHandler() 47 ok(Dpc->DpcListEntry.Flink != &Dpc->DpcListEntry, "\n"); in DpcHandler() 49 ok_eq_pointer(Dpc->DpcListEntry.Blink, Dpc->DpcListEntry.Flink->Blink); in DpcHandler() 66 KDPC Dpc; in START_TEST() local 76 trace("Dpc = %p\n", &Dpc); in START_TEST() 77 memset(&Dpc, 0x55, sizeof Dpc); in START_TEST() 78 KeInitializeDpc(&Dpc, DpcHandler, &Dpc); in START_TEST() [all …]
|
/reactos/ntoskrnl/ke/ |
H A D | dpc.c | 79 KiTimerExpiration(IN PKDPC Dpc, in KiTimerExpiration() argument 566 PKDPC Dpc; in KiRetireDpcList() local 678 KiInitializeDpc(IN PKDPC Dpc, in KiInitializeDpc() argument 684 Dpc->Type = Type; in KiInitializeDpc() 685 Dpc->Number = 0; in KiInitializeDpc() 689 Dpc->DpcData = NULL; in KiInitializeDpc() 734 ASSERT_DPC(Dpc); in KeInsertQueueDpc() 882 ASSERT_DPC(Dpc); in KeRemoveQueueDpc() 888 DpcData = Dpc->DpcData; in KeRemoveQueueDpc() 980 ASSERT_DPC(Dpc); in KeSetImportanceDpc() [all …]
|
H A D | timerobj.c | 117 PKDPC Dpc = Timer->Dpc; in KiSignalTimer() local 151 if (Dpc) in KiSignalTimer() 155 KeInsertQueueDpc(Dpc, in KiSignalTimer() 283 IN PKDPC Dpc OPTIONAL) in KeSetTimer() 286 return KeSetTimerEx(Timer, DueTime, 0, Dpc); in KeSetTimer() 297 IN PKDPC Dpc OPTIONAL) in KeSetTimerEx() 306 Timer, DueTime.QuadPart, Period, Dpc); in KeSetTimerEx() 316 Timer->Dpc = Dpc; in KeSetTimerEx()
|
/reactos/sdk/include/wdf/kmdf/1.17/ |
H A D | wdfdpc.h | 61 WDFDPC Dpc 111 WDFDPC* Dpc 124 WDFDPC* Dpc in _IRQL_requires_max_() 141 WDFDPC Dpc 149 WDFDPC Dpc in _IRQL_requires_max_() 167 WDFDPC Dpc, 178 WDFDPC Dpc, in WdfDpcCancel() argument 197 WDFDPC Dpc 205 WDFDPC Dpc in _IRQL_requires_max_() 222 WDFDPC Dpc [all …]
|
/reactos/sdk/lib/drivers/wdf/kmdf/src/core/ |
H A D | fxdpcapi.cpp | 51 WDFDPC * Dpc in __drv_maxIRQL() 104 FxPointerNotNull(pFxDriverGlobals, Dpc); in __drv_maxIRQL() 125 status = FxDpc::_Create(pFxDriverGlobals, Config, Attributes, pParent, Dpc); in __drv_maxIRQL() 138 WDFDPC Dpc in __drv_maxIRQL() 161 Dpc, in __drv_maxIRQL() 176 WDFDPC Dpc in __drv_maxIRQL() 197 Dpc, in __drv_maxIRQL() 213 WDFDPC Dpc, in WDFEXPORT() 242 Dpc, in WDFEXPORT() 266 WDFDPC Dpc in __drv_maxIRQL() [all …]
|
H A D | fxdpc.cpp | 84 __out WDFDPC* Dpc in _Create() argument 115 Dpc in _Create() 131 __out WDFDPC* Dpc in Initialize() argument 251 status = Commit(Attributes, (WDFOBJECT*)Dpc, ParentObject); in Initialize() 296 __in PKDPC Dpc, in DpcHandler() argument 301 UNREFERENCED_PARAMETER(Dpc); in DpcHandler() 326 __in PKDPC Dpc, in FxDpcThunk() argument 355 Dpc, in FxDpcThunk()
|
/reactos/drivers/network/ndis/ndis/ |
H A D | time.c | 91 KeInitializeDpc (&Timer->Dpc, (PKDEFERRED_ROUTINE)TimerFunction, FunctionContext); in NdisInitializeTimer() 163 MiniTimerDpcFunction(PKDPC Dpc, in MiniTimerDpcFunction() argument 181 Timer->MiniportTimerFunction(Dpc, in MiniTimerDpcFunction() 213 KeInitializeDpc (&Timer->Dpc, MiniTimerDpcFunction, Timer); in NdisMInitializeTimer() 263 KeSetTimerEx(&Timer->Timer, Timeout, MillisecondsPeriod, &Timer->Dpc); in NdisMSetPeriodicTimer() 309 KeSetTimer(&Timer->Timer, Timeout, &Timer->Dpc); in NdisMSetTimer() 340 KeSetTimer (&Timer->Timer, Timeout, &Timer->Dpc); in NdisSetTimer() 356 Timer->Dpc.DeferredContext = FunctionContext; in NdisSetTimerEx()
|
/reactos/drivers/network/tdi/cte/ |
H A D | timer.c | 23 KDPC Dpc; member 33 InternalDpcRoutine(PKDPC Dpc, in InternalDpcRoutine() argument 55 KeInitializeDpc(&Timer->Dpc, InternalDpcRoutine, Timer); in CTEInitTimer() 83 KeSetTimer(&Timer->Timer, DueTime, &Timer->Dpc); in CTEStartTimer()
|
/reactos/sdk/lib/drivers/wdf/kmdf/inc/private/ |
H A D | fxdpc.hpp | 104 __out WDFDPC* Dpc 157 __out WDFDPC* Dpc 173 __in PKDPC Dpc,
|
/reactos/drivers/filesystems/msfs/ |
H A D | rw.c | 35 PKDPC Dpc; in MsfsRead() local 113 Dpc = &Context->Dpc; in MsfsRead() 121 KeInitializeDpc(Dpc, MsfsTimeout, (PVOID)Context); in MsfsRead() 122 KeSetTimer(Timer, Timeout, Dpc); in MsfsRead()
|
H A D | msfs.h | 47 KDPC Dpc; member 131 MsfsTimeout(PKDPC Dpc,
|
/reactos/sdk/lib/drivers/ntoskrnl_vista/ |
H A D | ke.c | 54 _In_opt_ PKDPC Dpc) in _IRQL_requires_max_() 56 return KeSetTimerEx(Timer, DueTime, Period, Dpc); in _IRQL_requires_max_()
|
/reactos/sdk/lib/drivers/wdf/shared/targets/usb/km/ |
H A D | fxusbpipekm.cpp | 58 __in struct _KDPC *Dpc, in __drv_maxIRQL() 74 pRepeater = CONTAINING_RECORD(Dpc, FxUsbPipeRepeatReader, Dpc); in __drv_maxIRQL() 156 KeInitializeDpc(&pRepeater->Dpc, _FxUsbPipeContinuousReadDpc, NULL); in Config()
|
/reactos/ntoskrnl/io/iomgr/ |
H A D | error.c | 22 KDPC Dpc; member 44 IopLogDpcRoutine(IN PKDPC Dpc, in IopLogDpcRoutine() argument 50 if (Dpc) ExFreePool(Dpc); in IopLogDpcRoutine() 100 KeInitializeDpc(&WorkerDpc->Dpc, IopLogDpcRoutine, WorkerDpc); in IopRestartLogWorker() 105 KeSetTimer(&WorkerDpc->Timer, Timeout, &WorkerDpc->Dpc); in IopRestartLogWorker()
|
/reactos/drivers/wdm/audio/backpln/portcls/ |
H A D | service_group.cpp | 17 IN struct _KDPC *Dpc, 47 …friend VOID NTAPI IServiceGroupDpc(IN struct _KDPC *Dpc, IN PVOID DeferredContext, IN PVOID Sys… 227 IN struct _KDPC *Dpc, in IServiceGroupDpc() argument
|
/reactos/sdk/include/xdk/ |
H A D | kefuncs.h | 81 _Inout_ PRKDPC Dpc, 149 _Inout_ PRKDPC Dpc, 286 _Out_ __drv_aliasesMem PRKDPC Dpc, 342 _Inout_ PRKDPC Dpc, 458 _Inout_ PRKDPC Dpc); 481 _Inout_ PRKDPC Dpc, 500 _In_opt_ PKDPC Dpc); 510 _In_opt_ PKDPC Dpc); 892 _Out_ PRKDPC Dpc, 1286 _Inout_ PKDPC Dpc, [all …]
|
/reactos/drivers/serial/serial/ |
H A D | serial.h | 249 IN PKDPC Dpc, 256 IN PKDPC Dpc, 263 IN PKDPC Dpc,
|
H A D | misc.c | 31 IN PKDPC Dpc, in SerialReceiveByte() argument 68 IN PKDPC Dpc, in SerialSendByte() argument 106 IN PKDPC Dpc, in SerialCompleteIrp() argument
|
/reactos/drivers/filesystems/npfs/ |
H A D | waitsup.c | 59 NpTimerDispatch(IN PKDPC Dpc, in NpTimerDispatch() argument 244 KeInitializeDpc(&WaitEntry->Dpc, NpTimerDispatch, WaitEntry); in NpAddWaiter() 296 KeSetTimer(&WaitEntry->Timer, DueTime, &WaitEntry->Dpc); in NpAddWaiter()
|
/reactos/drivers/base/beep/ |
H A D | beep.c | 34 BeepDPC(IN PKDPC Dpc, in BeepDPC() argument 41 UNREFERENCED_PARAMETER(Dpc); in BeepDPC() 344 KeSetTimer(&DeviceExtension->Timer, DueTime, &DeviceObject->Dpc); in BeepStartIo()
|
/reactos/sdk/lib/drivers/wdf/shared/object/km/ |
H A D | globalskm.cpp | 50 __in struct _KDPC *Dpc, in __drv_maxIRQL() 80 UNREFERENCED_PARAMETER(Dpc); in __drv_maxIRQL()
|
/reactos/drivers/ksfilter/ks/ |
H A D | event.c | 338 EventEntry->Object = EventData->Dpc.Dpc; in KspEnableEvent() 339 EventData->Dpc.ReferenceCount = 0; in KspEnableEvent() 624 InterlockedIncrement((PLONG)&EntryEvent->EventData->Dpc.ReferenceCount); in KsGenerateEvent()
|
/reactos/drivers/storage/port/storport/ |
H A D | storport.c | 1103 PSTOR_DPC Dpc; in StorPortNotification() local 1167 Dpc = (PSTOR_DPC)va_arg(ap, PSTOR_DPC); in StorPortNotification() 1168 DPRINT1("Dpc %p\n", Dpc); in StorPortNotification() 1172 KeInitializeDpc((PRKDPC)&Dpc->Dpc, in StorPortNotification() 1175 KeInitializeSpinLock(&Dpc->Lock); in StorPortNotification()
|
/reactos/ntoskrnl/config/ |
H A D | cmdelay.c | 41 CmpDelayCloseDpcRoutine(IN PKDPC Dpc, in _Function_class_() 211 CmpDelayDerefKCBDpcRoutine(IN PKDPC Dpc, in _Function_class_()
|
/reactos/sdk/lib/drivers/wdf/shared/core/ |
H A D | fxrequestbase.cpp | 628 __in PKDPC Dpc, in _TimerDPC() argument 657 UNREFERENCED_PARAMETER(Dpc); in _TimerDPC()
|