Home
last modified time | relevance | path

Searched refs:JSON_MANDATORY (Results 1 – 7 of 7) sorted by relevance

/systemd-251/src/nspawn/
Dnspawn-oci.c121 …JSON_VARIANT_UNSIGNED, oci_console_dimension, offsetof(Settings, console_height), JSON_MANDATORY }, in oci_console_size()
122 …JSON_VARIANT_UNSIGNED, oci_console_dimension, offsetof(Settings, console_width), JSON_MANDATORY }, in oci_console_size()
259 …soft", JSON_VARIANT_NUMBER, oci_rlimit_value, offsetof(struct rlimit_data, soft), JSON_MANDATORY }, in oci_rlimits()
260 …hard", JSON_VARIANT_NUMBER, oci_rlimit_value, offsetof(struct rlimit_data, hard), JSON_MANDATORY }, in oci_rlimits()
261 …type", JSON_VARIANT_STRING, oci_rlimit_type, offsetof(struct rlimit_data, type), JSON_MANDATORY }, in oci_rlimits()
416 … JSON_VARIANT_UNSIGNED, oci_uid_gid, offsetof(Settings, uid), JSON_MANDATORY }, in oci_user()
417 … JSON_VARIANT_UNSIGNED, oci_uid_gid, offsetof(Settings, gid), JSON_MANDATORY }, in oci_user()
549 …JSON_VARIANT_STRING, oci_absolute_path, offsetof(oci_mount_data, destination), JSON_MANDATORY }, in oci_mounts()
651 …, JSON_VARIANT_STRING, oci_namespace_type, offsetof(struct namespace_data, type), JSON_MANDATORY }, in oci_namespaces()
735 …VARIANT_UNSIGNED, oci_uid_gid, offsetof(struct mapping_data, container_id), JSON_MANDATORY }, in oci_uid_gid_mappings()
[all …]
/systemd-251/src/nss-resolve/
Dnss-resolve.c146 …RIANT_ARRAY, json_dispatch_variant, offsetof(ResolveHostnameReply, addresses), JSON_MANDATORY },
196 …ON_VARIANT_INTEGER, json_dispatch_family, offsetof(AddressParameters, family), JSON_MANDATORY },
197 …ON_VARIANT_ARRAY, json_dispatch_address, 0, JSON_MANDATORY },
564 …ON_VARIANT_ARRAY, json_dispatch_variant, offsetof(ResolveAddressReply, names), JSON_MANDATORY },
582 … JSON_VARIANT_STRING, json_dispatch_string, offsetof(NameParameters, name), JSON_MANDATORY },
/systemd-251/src/resolve/
Dresolved-varlink.c279 …JSON_VARIANT_STRING, json_dispatch_string, offsetof(LookupParameters, name), JSON_MANDATORY }, in vl_method_resolve_hostname()
458 …SON_VARIANT_UNSIGNED, json_dispatch_int, offsetof(LookupParameters, family), JSON_MANDATORY }, in vl_method_resolve_address()
459 …SON_VARIANT_ARRAY, json_dispatch_address, 0, JSON_MANDATORY }, in vl_method_resolve_address()
/systemd-251/src/oom/
Doomd-manager.c51 …ON_VARIANT_STRING, managed_oom_mode, offsetof(ManagedOOMMessage, mode), JSON_MANDATORY }, in process_managed_oom_message()
52 …ON_VARIANT_STRING, json_dispatch_string, offsetof(ManagedOOMMessage, path), JSON_MANDATORY }, in process_managed_oom_message()
53 …ON_VARIANT_STRING, json_dispatch_string, offsetof(ManagedOOMMessage, property), JSON_MANDATORY }, in process_managed_oom_message()
/systemd-251/src/shared/
Duser-record.c759 …_STRING, dispatch_pkcs11_uri, offsetof(Pkcs11EncryptedKey, uri), JSON_MANDATORY }, in dispatch_pkcs11_key()
760 …_STRING, dispatch_pkcs11_key_data, 0, JSON_MANDATORY }, in dispatch_pkcs11_key()
761 …_STRING, json_dispatch_string, offsetof(Pkcs11EncryptedKey, hashed_password), JSON_MANDATORY }, in dispatch_pkcs11_key()
886 …TRING, dispatch_fido2_hmac_credential, offsetof(Fido2HmacSalt, credential), JSON_MANDATORY }, in dispatch_fido2_hmac_salt()
887 …TRING, dispatch_fido2_hmac_salt_value, 0, JSON_MANDATORY }, in dispatch_fido2_hmac_salt()
888 …TRING, json_dispatch_string, offsetof(Fido2HmacSalt, hashed_password), JSON_MANDATORY }, in dispatch_fido2_hmac_salt()
934 …SON_VARIANT_STRING, json_dispatch_string, 0, JSON_MANDATORY }, in dispatch_recovery_key()
935 …SON_VARIANT_STRING, json_dispatch_string, offsetof(RecoveryKey, hashed_password), JSON_MANDATORY }, in dispatch_recovery_key()
Djson.h337 JSON_MANDATORY = 1 << 1, /* Should existence of this property be mandatory? */ enumerator
Djson.c4297 if ((merged_flags & JSON_MANDATORY) && !found[p-table]) { in json_dispatch()