Lines Matching refs:new0
102 #define new0(n,s,p,i,x) wrap_mk_nvlist(newnv(n, s, p, i, x))
103 #define new_n(n) new0(n, NULL, NULL, 0, NULL)
104 #define new_nx(n, x) new0(n, NULL, NULL, 0, x)
105 #define new_ns(n, s) new0(n, s, NULL, 0, NULL)
106 #define new_si(s, i) new0(NULL, s, NULL, i, NULL)
107 #define new_spi(s, p, i) new0(NULL, s, p, i, NULL)
108 #define new_nsi(n,s,i) new0(n, s, NULL, i, NULL)
109 #define new_np(n, p) new0(n, NULL, p, 0, NULL)
110 #define new_s(s) new0(NULL, s, NULL, 0, NULL)
111 #define new_p(p) new0(NULL, NULL, p, 0, NULL)
112 #define new_px(p, x) new0(NULL, NULL, p, 0, x)
113 #define new_sx(s, x) new0(NULL, s, NULL, 0, x)
114 #define new_nsx(n,s,x) new0(n, s, NULL, 0, x)
115 #define new_i(i) new0(NULL, NULL, NULL, i, NULL)