Changeset 107634 in vbox
- Timestamp:
- Jan 10, 2025 11:15:19 AM (2 months ago)
- svn:sync-xref-src-repo-rev:
- 166724
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/USBFilter.cpp
r107633 r107634 597 597 * Performs simple pattern matching. 598 598 * 599 * @returns true on match andfalse on mismatch.600 * @param pszExpr The numeric expression. 599 * @returns \c true on match and \c false on mismatch. 600 * @param pszExpr The numeric expression. NULL is not okay. 601 601 * @param u16Value The value to match. 602 602 */ 603 603 static bool usbfilterMatchNumExpression(const char *pszExpr, uint16_t u16Value) 604 604 { 605 AssertPtrReturn(pszExpr, false); 606 605 607 /* 606 608 * The string format is: "int:((<m>)|([<m>]-[<n>]))(,(<m>)|([<m>]-[<n>]))*"
Note:
See TracChangeset
for help on using the changeset viewer.