Searched defs:valid (Results 1 - 5 of 5) sorted by relevance
/systemd/src/libsystemd/sd-bus/ |
H A D | bus-type.c | 23 static const char valid[] = { local 43 return !!memchr(valid, c, sizeof(valid)); 47 static const char valid[] = { local 69 return !!memchr(valid, c, sizeof(valid)); 73 static const char valid[] = { local 89 return !!memchr(valid, c, sizeof(valid)); 93 static const char valid[] local 109 static const char valid[] = { local [all...] |
/systemd/src/basic/ |
H A D | capability-util.c | 52 static thread_local bool valid = false; local 57 if (valid) 66 valid = true; 92 valid = true;
|
/systemd/src/libsystemd-network/ |
H A D | sd-dhcp6-lease.c | 40 uint32_t valid = 0, t; local 47 if (valid < t) 48 valid = t; 52 if (t > valid) 55 *expire = valid - t;
|
/systemd/src/test/ |
H A D | test-hashmap-plain.c | 355 int valid; local 361 valid = hashmap_remove_and_put(m, "invalid key", "new key", NULL); 362 assert_se(valid == -ENOENT); 364 valid = hashmap_put(m, "key 1", (void*) (const char *) "val 1"); 365 assert_se(valid == 1); 367 valid = hashmap_remove_and_put(NULL, "key 1", "key 2", (void*) (const char *) "val 2"); 368 assert_se(valid == -ENOENT); 370 valid = hashmap_remove_and_put(m, "key 1", "key 2", (void*) (const char *) "val 2"); 371 assert_se(valid == 0); 377 valid 385 int valid; local [all...] |
/systemd/src/locale/ |
H A D | localed.c | 906 /* Check whether a variable changed and if it is valid */ 908 bool valid = false; local 917 valid = true; 930 if (!valid)
|
Completed in 40 milliseconds