Searched refs:current (Results 1 - 11 of 11) sorted by relevance
/systemd/test/mocks/ |
H A D | fsck | 23 for (( current=0; current<=${maxprogress}; current++)); do 24 echo "$pass $current $maxprogress $device">&$fd
|
/systemd/src/boot/efi/ |
H A D | graphics.c | 62 EFI_CONSOLE_CONTROL_SCREEN_MODE current; local 72 /* check current mode */ 73 err = uefi_call_wrapper(ConsoleControl->GetMode, 4, ConsoleControl, ¤t, &uga_exists, &stdin_locked); 79 if (new == current)
|
/systemd/src/basic/ |
H A D | string-util.c | 143 const char *current; local 145 current = *state; 147 if (!*current) { 152 current += strspn(current, separator); 153 if (!*current) { 154 *state = current; 158 if (quoted && strchr("\'\"", *current)) { 159 char quotechars[2] = {*current, '\0'}; 161 *l = strcspn_escaped(current [all...] |
H A D | capability-util.c | 235 uint64_t current, after; local 251 current = (uint64_t) lo | ((uint64_t) hi << 32ULL); 252 after = current & keep; 254 if (current == after)
|
H A D | hashmap.c | 330 static uint8_t current[HASH_KEY_SIZE]; local 341 random_bytes(current, sizeof(current)); 345 memcpy(hash_key, current, sizeof(current)); 569 * We allow removing the current entry while iterating, but removal may cause 626 * We allow removing the current entry while iterating, but removal may cause 668 /* ... or remove entries other than the current one */ 1130 * Not much to do if by luck the entry hashes to its current 1146 * Find the new bucket for the current entr [all...] |
/systemd/src/udev/ |
H A D | udev-builtin-keyboard.c | 58 /* copy current content */ 105 static inline char* parse_token(const char *current, int32_t *val_out) { argument 109 if (!current) 112 val = strtol(current, &next, 0); 116 if (next != current)
|
/systemd/src/vconsole/ |
H A D | vconsole-setup.c | 75 long current = 0; local 77 if (ioctl(fd, KDGKBMODE, ¤t) < 0 || current == K_XLATE) { 79 * Change the current keyboard to unicode, unless it
|
/systemd/src/libsystemd/sd-bus/ |
H A D | busctl-introspect.c | 43 const char *current; member in struct:Context 81 t = xml_tokenize(&context->current, &name, &context->xml_state, NULL); 219 t = xml_tokenize(&context->current, &name, &context->xml_state, NULL); 745 .current = xml, 757 r = xml_tokenize(&context.current, &name, &context.xml_state, NULL);
|
/systemd/src/journal/ |
H A D | journalctl.c | 223 return log_error_errno(r, "Failed to add match for the current boot: %m"); 287 " --user Show the user journal for the current user\n" 294 " -b --boot[=ID] Show current boot or the specified boot\n" 296 " -k --dmesg Show kernel message log from the current boot\n" 1086 * the last (and current) boot, while 1 is considered the 1136 _cleanup_free_ BootId *current = NULL; local 1138 r = discover_next_boot(j, ¤t, advance_older, !query_ref_boot); 1144 if (!current) 1154 query_ref_boot->id = current->id; 1158 LIST_INSERT_AFTER(boot_list, head, tail, current); [all...] |
/systemd/src/libsystemd/sd-resolve/ |
H A D | sd-resolve.c | 82 sd_resolve_query *current; member in struct:sd_resolve 663 resolve->current = sd_resolve_query_ref(q); 679 resolve->current = NULL; 860 assert_return(!resolve->current, -EBUSY);
|
/systemd/src/libsystemd/sd-event/ |
H A D | sd-event.c | 183 sd_event_source *current; member in struct:signal_data 286 * prepared in the current iteration */ 734 assert(!d->current); 928 if (d && d->current == s) 929 d->current = NULL; 2184 if (d->current) 2215 d->current = s;
|
Completed in 2751 milliseconds