Home
last modified time | relevance | path

Searched refs:_found (Results 1 – 5 of 5) sorted by relevance

/systemd-251/src/basic/
Dstrv.h199 char *_found = NULL; \
201 _found = startswith(_p, *_i); \
202 if (_found) \
205 _found; \
211 char *_found = NULL; \
213 _found = endswith(_p, *_i); \
214 if (_found) \
217 _found; \
Dsocket-util.h183 struct cmsghdr *_found; \
184 _found = cmsg_find(mh, level, type, CMSG_LEN(sizeof(ctype))); \
185 (ctype*) (_found ? CMSG_DATA(_found) : NULL); \
/systemd-251/src/fundamental/
Dmacro-fundamental.h251 sd_bool _found = sd_false; \
260 _found = sd_true; \
265 _found; \
/systemd-251/src/core/
Dunit.h841 int unit_load_related_unit(Unit *u, const char *type, Unit **_found);
1079 bool _found; \
1087 _found = !!data.by_unit; \
1091 _found = hashmap_iterate(data.by_type, \
1095 _found; \
Dunit.c3407 int unit_load_related_unit(Unit *u, const char *type, Unit **_found) { in unit_load_related_unit() argument
3413 assert(_found); in unit_load_related_unit()
3421 r = manager_load_unit(u->manager, t, NULL, NULL, _found); in unit_load_related_unit()
3422 assert(r < 0 || *_found != u); in unit_load_related_unit()