Searched refs:np (Results 1 - 7 of 7) sorted by relevance
/systemd/src/journal/ |
H A D | sd-journal.c | 512 uint64_t np = 0; local 540 if (np == 0 || (direction == DIRECTION_DOWN ? cp < np : cp > np)) 541 np = cp; 545 if (np == 0) 558 r = next_for_match(j, m->matches, f, after_offset, direction, NULL, &np); 562 assert(direction == DIRECTION_DOWN ? np >= after_offset : np <= after_offset); 568 r = next_for_match(j, i, f, np, directio 634 uint64_t np = 0; local 668 uint64_t np = 0; local [all...] |
H A D | journal-file.c | 1375 uint64_t np; local 1387 r = journal_file_append_object(f, OBJECT_ENTRY, osize, &o, &np); 1399 r = journal_file_hmac_put_object(f, OBJECT_ENTRY, o, np); 1404 r = journal_file_link_entry(f, o, np); 1412 *offset = np;
|
/systemd/src/libsystemd/sd-bus/ |
H A D | busctl-introspect.c | 204 const char *np = prefix; local 248 r = parse_xml_node(context, np, n_depth+1); 260 r = context->ops->on_path(node_path ? node_path : np, context->userdata); 293 np = node_path;
|
H A D | bus-message.c | 160 void *op, *np; local 180 np = realloc(m->header, ALIGN8(new_size)); 181 if (!np) 188 np = malloc(ALIGN8(new_size)); 189 if (!np) 192 memcpy(np, m->header, sizeof(struct bus_header)); 197 memzero((uint8_t*) np + old_size, start - old_size); 200 m->header = np; 220 return (uint8_t*) np + start;
|
/systemd/src/nspawn/ |
H A D | nspawn.c | 3143 _cleanup_free_ char *np = NULL; local 3157 r = tempfn_random_child(arg_directory, "machine.", &np); 3159 r = tempfn_random(arg_directory, "machine.", &np); 3165 r = image_path_lock(np, (arg_read_only ? LOCK_SH : LOCK_EX) | LOCK_NB, &tree_global_lock, &tree_local_lock); 3167 log_error_errno(r, "Failed to lock %s: %m", np); 3171 r = btrfs_subvol_snapshot(arg_directory, np, (arg_read_only ? BTRFS_SNAPSHOT_READ_ONLY : 0) | BTRFS_SNAPSHOT_FALLBACK_COPY | BTRFS_SNAPSHOT_RECURSIVE | BTRFS_SNAPSHOT_QUOTA); 3173 log_error_errno(r, "Failed to create snapshot %s from %s: %m", np, arg_directory); 3178 arg_directory = np; 3179 np = NULL;
|
/systemd/src/shared/ |
H A D | install.c | 986 _cleanup_free_ char *np = NULL; local 995 r = readlink_and_make_absolute_root(root_dir, path, &np); 999 if (path_equal(np, "/dev/null")) 1005 bn = basename(np); 1033 info->symlink_target = np; 1034 np = NULL;
|
/systemd/src/basic/ |
H A D | btrfs-util.c | 1600 _cleanup_free_ char *p = NULL, *c = NULL, *np = NULL; local 1645 np = strjoin(subvolume, "/", ino_args.name, NULL); 1646 if (!np) 1649 new_child_fd = openat(new_fd, np, O_RDONLY|O_NOCTTY|O_CLOEXEC|O_DIRECTORY);
|
Completed in 552 milliseconds