Searched refs:_a (Results 1 – 11 of 11) sorted by relevance
/systemd-251/src/basic/ |
D | list.h | 93 typeof(*(head)) **_head = &(head), *_a = (a), *_b = (b); \ 95 if (!_a) { \ 101 if ((_b->name##_next = _a->name##_next)) \ 103 _b->name##_prev = _a; \ 104 _a->name##_next = _b; \ 111 typeof(*(head)) **_head = &(head), *_a = (a), *_b = (b); \ 113 if (!_a) { \ 127 if ((_b->name##_prev = _a->name##_prev)) \ 131 _b->name##_next = _a; \ 132 _a->name##_prev = _b; \ [all …]
|
D | alloc-util.h | 55 typeof(a)* _a = &(a); \ 57 free(*_a); \ 58 *_a = *_b; \
|
D | strv.h | 250 char ***_a = &(a); \ 252 strv_free(*_a); \ 253 (*_a) = (*_b); \
|
D | hash-funcs.h | 31 type *_a = a; \ 32 func(_a); \
|
/systemd-251/coccinelle/ |
D | macros.h | 126 typeof(*(head)) **_head = &(head), *_a = (a), *_b = (b); \ 128 if (!_a) { \ 134 if ((_b->name##_next = _a->name##_next)) \ 136 _b->name##_prev = _a; \ 137 _a->name##_next = _b; \ 142 typeof(*(head)) **_head = &(head), *_a = (a), *_b = (b); \ 144 if (!_a) { \ 158 if ((_b->name##_prev = _a->name##_prev)) \ 162 _b->name##_next = _a; \ 163 _a->name##_prev = _b; \
|
/systemd-251/src/resolve/ |
D | resolved-dns-rr.h | 298 typeof(a)* _a = &(a); \ 300 dns_resource_key_unref(*_a); \ 301 *_a = _b; \ 334 typeof(a)* _a = &(a); \ 336 dns_resource_record_unref(*_a); \ 337 *_a = _b; \
|
D | resolved-dns-answer.h | 50 typeof(a)* _a = &(a); \ 52 dns_answer_unref(*_a); \ 53 *_a = _b; \
|
D | resolved-dns-packet.h | 206 typeof(a)* _a = &(a); \ 208 dns_packet_unref(*_a); \ 209 *_a = _b; \
|
/systemd-251/src/shared/ |
D | udev-util.h | 76 … sd_device_action_t _a = _SD_DEVICE_ACTION_INVALID; \ 77 … (void) sd_device_get_action(_d, &_a); \ 81 … STAP_PROBEV(udev, name, device_action_to_string(_a), _n, _p, _s __VA_OPT__(,) __VA_ARGS__);\
|
/systemd-251/src/libsystemd/sd-bus/ |
D | sd-bus.c | 1327 _cleanup_free_ char *_a = NULL; in bus_set_address_user() local 1346 if (asprintf(&_a, DEFAULT_USER_BUS_ADDRESS_FMT, ee) < 0) in bus_set_address_user() 1348 a = _a; in bus_set_address_user()
|
/systemd-251/src/libsystemd/sd-journal/ |
D | sd-journal.c | 181 static bool same_field(const void *_a, size_t s, const void *_b, size_t t) { in same_field() argument 182 const uint8_t *a = _a, *b = _b; in same_field()
|