Lines Matching full:guard
43 * dropped when the scope where guard() is invoked ends::
47 * guard(pci_dev)(dev);
49 * The lifetime of the lock obtained by the guard() helper follows the
56 * guard(pci_dev)(dev); // pci_dev_lock() invoked here
64 * Now, when a function uses both __free() and guard(), or multiple
109 * guard(mutex)(&lock);
123 * That bug is fixed by changing init() to call guard() and define +
126 * guard(mutex)(&lock);
272 * guard(name):
273 * an anonymous instance of the (guard) class, not recommended for
302 #define guard(_name) \ macro
303 CLASS(_name, __UNIQUE_ID(guard))