Searched refs:newFlags (Results 1 – 3 of 3) sorted by relevance
/reactos/sdk/lib/drivers/wdf/shared/irphandlers/pnp/ |
H A D | fxpkgpnp.cpp | 4522 ULONG oldFlags, newFlags; in SetUsageNotificationFlags() local 4554 newFlags = oldFlags & ~(DO_POWER_PAGABLE | DO_POWER_INRUSH); in SetUsageNotificationFlags() 4555 newFlags |= m_Device->GetAttachedDeviceObjectFlags() & in SetUsageNotificationFlags() 4557 m_Device->SetDeviceObjectFlags(newFlags); in SetUsageNotificationFlags() 4641 ULONG newFlags; in CommitUsageNotification() local 4643 newFlags = m_Device->GetDeviceObjectFlags(); in CommitUsageNotification() 4646 (newFlags & DO_POWER_PAGABLE) == 0) { in CommitUsageNotification() 4656 (newFlags & DO_POWER_PAGABLE) == DO_POWER_PAGABLE) { in CommitUsageNotification() 4679 GetUsageCount(Type), newFlags, in CommitUsageNotification()
|
/reactos/sdk/lib/crt/stdio/ |
H A D | file.c | 770 DWORD newFlags = (flags & _S_IWRITE)? oldFlags & ~FILE_ATTRIBUTE_READONLY: in _chmod() local 773 if (newFlags == oldFlags || SetFileAttributesA(path, newFlags)) in _chmod() 789 DWORD newFlags = (flags & _S_IWRITE)? oldFlags & ~FILE_ATTRIBUTE_READONLY: in _wchmod() local 792 if (newFlags == oldFlags || SetFileAttributesW(path, newFlags)) in _wchmod()
|
/reactos/dll/win32/comctl32/ |
H A D | imagelist.c | 2307 INT newFlags; in ImageList_Merge() local 2347 newFlags = (himl1->flags > himl2->flags ? himl1->flags : himl2->flags) & ILC_COLORDDB; in ImageList_Merge() 2348 if (newFlags == ILC_COLORDDB && (himl1->flags & ILC_COLORDDB) == ILC_COLOR16) in ImageList_Merge() 2349 newFlags = ILC_COLOR16; /* this is what native (at least v5) does, don't know why */ in ImageList_Merge() 2350 himlDst = ImageList_Create (cxDst, cyDst, ILC_MASK | newFlags, 1, 1); in ImageList_Merge()
|