Searched refs:mapped (Results 1 - 6 of 6) sorted by relevance

/systemd/src/libsystemd/sd-bus/
H A Dbus-kernel.h60 size_t mapped; member in struct:memfd_cache
75 int bus_kernel_pop_memfd(sd_bus *bus, void **address, size_t *mapped, size_t *allocated);
76 void bus_kernel_push_memfd(sd_bus *bus, int fd, void *address, size_t mapped, size_t allocated);
H A Dbus-kernel.c1430 int bus_kernel_pop_memfd(sd_bus *bus, void **address, size_t *mapped, size_t *allocated) { argument
1435 assert(mapped);
1453 *mapped = 0;
1461 assert(c->mapped == 0 || c->address);
1464 *mapped = c->mapped;
1480 void bus_kernel_push_memfd(sd_bus *bus, int fd, void *address, size_t mapped, size_t allocated) { argument
1485 assert(mapped == 0 || address);
1488 close_and_munmap(fd, address, mapped);
1497 close_and_munmap(fd, address, mapped);
[all...]
H A Dbus-message.h58 size_t mapped; member in struct:bus_body_part
H A Dbus-message.c72 bus_kernel_push_memfd(m->bus, part->memfd, part->data, part->mapped, part->allocated);
74 if (part->mapped > 0)
75 assert_se(munmap(part->mmap_begin, part->mapped) == 0);
81 munmap(part->mmap_begin, part->mapped);
1237 part->memfd = bus_kernel_pop_memfd(m->bus, &part->data, &part->mapped, &part->allocated);
1256 if (!part->data || sz > part->mapped) {
1260 if (part->mapped <= 0)
1263 n = mremap(part->mmap_begin, part->mapped, psz, MREMAP_MAYMOVE);
1271 part->mapped = psz;
3068 part->mapped
[all...]
/systemd/src/nss-mymachines/
H A Dnss-mymachines.c408 uint32_t mapped; local
457 r = sd_bus_message_read(reply, "u", &mapped);
461 /* Refuse to work if the mapped address is in the host UID range, or if there was no mapping at all. */
462 if (mapped < HOST_UID_LIMIT || mapped == uid)
474 pwd->pw_uid = mapped;
503 uint32_t mapped; local
537 r = sd_bus_message_read(reply, "sou", &machine, &object, &mapped);
541 if (mapped == uid)
544 if (snprintf(buffer, buflen, "vu-%s-" UID_FMT, machine, (uid_t) mapped) >
579 uint32_t mapped; local
671 uint32_t mapped; local
[all...]
/systemd/src/journal/
H A Djournald-audit.c216 * other's are generically mapped to _AUDIT_FIELD_XYZ= */
276 bool mapped = false; local
319 mapped = true;
325 if (!mapped) {

Completed in 2117 milliseconds