Lines Matching defs:w
50 struct spdk_json_write_ctx *w = ctx;
59 spdk_json_write_object_begin(w);
60 spdk_json_write_named_string(w, "method", "keyring_file_add_key");
61 spdk_json_write_named_object_begin(w, "params");
62 spdk_json_write_named_string(w, "name", spdk_key_get_name(key));
63 spdk_json_write_named_string(w, "path", kkey->path);
64 spdk_json_write_object_end(w);
65 spdk_json_write_object_end(w);
69 keyring_file_write_config(struct spdk_json_write_ctx *w)
71 spdk_keyring_for_each_key(NULL, w, keyring_file_write_key_config, 0);
75 keyring_file_dump_info(struct spdk_key *key, struct spdk_json_write_ctx *w)
79 spdk_json_write_named_string(w, "path", kkey->path);