Lines Matching refs:a
82 #define XHAT_FREE_START(a) \ argument
83 XHAT_HOPS(a, xhat_free_start, ((struct xhat *)(a)))
84 #define XHAT_FREE_END(a) \ argument
85 XHAT_HOPS(a, xhat_free_end, ((struct xhat *)(a)))
86 #define XHAT_DUP(a, b, c, d, e) \ argument
87 ((XHAT_PROPS(a)->xhat_dup == NULL) ? (0) : \
88 XHAT_PROPS(a)->xhat_dup((struct xhat *)(a), \
90 #define XHAT_SWAPIN(a) \ argument
91 XHAT_HOPS(a, xhat_swapin, ((struct xhat *)(a)))
92 #define XHAT_SWAPOUT(a) \ argument
93 XHAT_HOPS(a, xhat_swapout, ((struct xhat *)(a)))
94 #define XHAT_MEMLOAD(a, b, c, d, e) \ argument
95 XHAT_HOPS(a, xhat_memload, ((struct xhat *)(a), b, c, d, e))
96 #define XHAT_MEMLOAD_ARRAY(a, b, c, d, e, f) \ argument
97 XHAT_HOPS(a, xhat_memload_array, ((struct xhat *)(a), b, c, d, e, f))
98 #define XHAT_DEVLOAD(a, b, c, d, e, f) \ argument
99 XHAT_HOPS(a, xhat_devload, ((struct xhat *)(a), b, c, d, e, f))
100 #define XHAT_UNLOAD(a, b, c, d) \ argument
101 XHAT_HOPS(a, xhat_unload, ((struct xhat *)(a), b, c, d))
102 #define XHAT_UNLOAD_CALLBACK(a, b, c, d, e) \ argument
103 XHAT_HOPS(a, xhat_unload_callback, ((struct xhat *)(a), b, c, d, e))
104 #define XHAT_SETATTR(a, b, c, d) \ argument
105 XHAT_HOPS(a, xhat_setattr, ((struct xhat *)(a), b, c, d))
106 #define XHAT_CLRATTR(a, b, c, d) \ argument
107 XHAT_HOPS(a, xhat_clrattr, ((struct xhat *)(a), b, c, d))
108 #define XHAT_CHGATTR(a, b, c, d) \ argument
109 XHAT_HOPS(a, xhat_chgattr, ((struct xhat *)(a), b, c, d))
110 #define XHAT_UNSHARE(a, b, c) \ argument
111 XHAT_HOPS(a, xhat_unshare, ((struct xhat *)(a), b, c))
112 #define XHAT_CHGPROT(a, b, c, d) \ argument
113 XHAT_HOPS(a, xhat_chgprot, ((struct xhat *)(a), b, c, d))
114 #define XHAT_PAGEUNLOAD(a, b, c, d) \ argument
115 ((XHAT_PROPS(a)->xhat_pageunload == NULL) ? (0) : \
116 XHAT_PROPS(a)->xhat_pageunload((struct xhat *)(a), b, c, d))