/systemd/src/basic/ |
H A D | replace-var.c | 76 size_t skip, d, nl; local 90 skip = strlen(v) + 2; 93 nl = l - skip + strlen(n); 103 f += skip;
|
H A D | calendarspec.c | 352 size_t skip; local 357 skip = strlen(day_nr[i].name); 359 if ((*p)[skip] != '-' && 360 (*p)[skip] != ',' && 361 (*p)[skip] != ' ' && 362 (*p)[skip] != 0) 377 *p += skip;
|
H A D | env-util.c | 300 goto skip; 313 skip:
|
H A D | time-util.c | 560 size_t skip; local 565 skip = strlen(day_nr[i].name); 566 if (t[skip] != ' ') 570 t += skip + 1;
|
/systemd/src/journal/ |
H A D | test-journal-stream.c | 36 static void verify_contents(sd_journal *j, unsigned skip) { argument 59 if (skip > 0) { 62 i += skip; 72 if (skip > 0)
|
H A D | journal-send.c | 345 static int fill_iovec_perror_and_send(const char *message, int skip, struct iovec iov[]) { argument 374 IOVEC_SET_STRING(iov[skip+0], "PRIORITY=3"); 375 IOVEC_SET_STRING(iov[skip+1], buffer); 376 IOVEC_SET_STRING(iov[skip+2], error); 378 return sd_journal_sendv(iov, skip + 3);
|
H A D | journald-stream.c | 398 size_t skip; local 402 skip = end - p + 1; 405 skip = remaining; 415 remaining -= skip; 416 p += skip;
|
H A D | sd-journal.c | 878 static int real_journal_next_skip(sd_journal *j, direction_t direction, uint64_t skip) { argument 884 if (skip == 0) { 885 /* If this is not a discrete skip, then at least 901 skip--; 903 } while (skip > 0); 908 _public_ int sd_journal_next_skip(sd_journal *j, uint64_t skip) { argument 909 return real_journal_next_skip(j, DIRECTION_DOWN, skip); 912 _public_ int sd_journal_previous_skip(sd_journal *j, uint64_t skip) { argument 913 return real_journal_next_skip(j, DIRECTION_UP, skip);
|
/systemd/src/bootchart/ |
H A D | store.c | 51 static int skip = 0; variable 478 /* test to see if we need to skip another field */ 479 if (skip == 0) { 487 skip = 2; 490 skip = 1; 498 /* skip one line, this contains the object mapped. */ 509 /* skip one more line if this is a newer kernel */ 510 if (skip == 2) {
|
/systemd/src/journal-remote/ |
H A D | journal-upload-journal.c | 310 static int process_journal_input(Uploader *u, int skip) { argument 316 r = sd_journal_next_skip(u->journal, skip); 318 return log_error_errno(r, "Failed to skip to next entry: %m"); 319 else if (r < skip)
|
/systemd/src/udev/ |
H A D | udevadm-info.c | 36 static const char* const skip[] = { local 47 for (i = 0; i < ELEMENTSOF(skip); i++) 48 if (streq(name, skip[i])) 69 /* skip any values that look like a path */ 73 /* skip nonprintable attributes */
|
H A D | udevd.c | 429 * cause udev to skip the event handling; in the case udev 447 goto skip; 479 skip:
|
/systemd/src/systemd/ |
H A D | sd-journal.h | 94 int sd_journal_previous_skip(sd_journal *j, uint64_t skip); 95 int sd_journal_next_skip(sd_journal *j, uint64_t skip);
|
/systemd/src/core/ |
H A D | socket.c | 2233 int fd, skip = 0; local 2236 if (sscanf(value, "%i %n", &fd, &skip) < 1 || fd < 0 || !fdset_contains(fds, fd)) 2242 path_equal_or_files_same(p->path, value+skip)) 2252 int fd, skip = 0; local 2255 if (sscanf(value, "%i %n", &fd, &skip) < 1 || fd < 0 || !fdset_contains(fds, fd)) 2261 path_equal_or_files_same(p->path, value+skip)) 2271 int fd, skip = 0; local 2274 if (sscanf(value, "%i %n", &fd, &skip) < 1 || fd < 0 || !fdset_contains(fds, fd)) 2280 streq(p->path, value+skip)) 2290 int fd, type, skip local 2308 int fd, skip = 0; local 2326 int fd, skip = 0; local [all...] |
/systemd/test/ |
H A D | networkd-test.py | 360 @unittest.skip('networkd does not have DHCPv6 server support') 364 @unittest.skip('networkd does not have DHCPv6 server support')
|
/systemd/src/boot/efi/ |
H A D | boot.c | 917 skip: 933 goto skip; 950 goto skip; 957 goto skip;
|
/systemd/src/cryptsetup/ |
H A D | cryptsetup.c | 198 } else if (startswith(option, "skip=")) { 201 log_error("skip= parse failure, refusing."); 234 log_warning("skip= ignored with type %s", arg_type); 495 .skip = arg_skip,
|
/systemd/src/systemctl/ |
H A D | systemctl.c | 4046 goto skip; 4062 goto skip; 4067 goto skip; 4072 skip: 4090 /* skip what we didn't read */ 7074 /* We skip the time argument */
|