Lines Matching full:node

51                     const char *node, unsigned int owner, unsigned int domid,  in xs_node_create()  argument
54 trace_xs_node_create(node); in xs_node_create()
56 if (!qemu_xen_xs_create(h, tid, owner, domid, perms, node)) { in xs_node_create()
57 error_setg_errno(errp, errno, "failed to create node '%s'", node); in xs_node_create()
62 const char *node, Error **errp) in xs_node_destroy() argument
64 trace_xs_node_destroy(node); in xs_node_destroy()
66 if (!qemu_xen_xs_destroy(h, tid, node)) { in xs_node_destroy()
67 error_setg_errno(errp, errno, "failed to destroy node '%s'", node); in xs_node_destroy()
72 const char *node, const char *key, Error **errp, in xs_node_vprintf() argument
78 path = (strlen(node) != 0) ? g_strdup_printf("%s/%s", node, key) : in xs_node_vprintf()
94 const char *node, const char *key, Error **errp, in xs_node_printf() argument
100 xs_node_vprintf(h, tid, node, key, errp, fmt, ap); in xs_node_printf()
105 const char *node, const char *key, Error **errp, in xs_node_vscanf() argument
111 if (node && strlen(node) != 0) { in xs_node_vscanf()
112 value = xs_node_read(h, tid, NULL, errp, "%s/%s", node, key); in xs_node_vscanf()
129 const char *node, const char *key, Error **errp, in xs_node_scanf() argument
136 rc = xs_node_vscanf(h, tid, node, key, errp, fmt, ap); in xs_node_scanf()
164 struct qemu_xs_watch *xs_node_watch(struct qemu_xs_handle *h, const char *node, in xs_node_watch() argument
171 path = (strlen(node) != 0) ? g_strdup_printf("%s/%s", node, key) : in xs_node_watch()
178 error_setg_errno(errp, errno, "failed to watch node '%s'", path); in xs_node_watch()