Searched defs:negate (Results 1 - 5 of 5) sorted by relevance
/systemd/src/shared/ |
H A D | condition.h | 69 bool negate:1; member in struct:Condition 78 Condition* condition_new(ConditionType type, const char *parameter, bool trigger, bool negate);
|
H A D | condition.c | 57 Condition* condition_new(ConditionType type, const char *parameter, bool trigger, bool negate) { argument 71 c->negate = negate; 417 * store it in c->negate */ 457 b = (r > 0) == !c->negate; 474 c->negate ? "!" : "",
|
/systemd/src/libsystemd-network/ |
H A D | network-internal.c | 150 bool negate; local 159 negate = rvalue[0] == '!'; 160 if (negate) 167 c = condition_new(cond, s, false, negate);
|
/systemd/src/core/ |
H A D | load-fragment.c | 2245 bool trigger, negate; local 2264 negate = rvalue[0] == '!'; 2265 if (negate) 2279 c = condition_new(t, p, trigger, negate); 2302 bool trigger, negate; local 2321 negate = rvalue[0] == '!'; 2322 if (negate) 2331 c = condition_new(t, s, trigger, negate); 2352 bool trigger, negate; local 2370 negate [all...] |
/systemd/src/systemctl/ |
H A D | systemctl.c | 3997 int trigger, negate; local 4004 while ((r = sd_bus_message_read(m, "(sbbsi)", &cond, &trigger, &negate, ¶m, &state)) > 0) { 4005 log_debug("%s %d %d %s %d", cond, trigger, negate, param, state); 4009 i->failed_condition_negate = negate; 4022 int trigger, negate; local 4029 while ((r = sd_bus_message_read(m, "(sbbsi)", &cond, &trigger, &negate, ¶m, &state)) > 0) { 4030 log_debug("%s %d %d %s %d", cond, trigger, negate, param, state); 4034 i->failed_assert_negate = negate;
|
Completed in 1862 milliseconds