/xen-4.10.0-shim-comet/tools/xenstore/include/ |
A D | xenstore.h | 50 struct xs_handle; 77 struct xs_handle *xs_open(unsigned long flags); 80 void xs_close(struct xs_handle *xsh); 86 struct xs_handle *xs_daemon_open(void); 87 struct xs_handle *xs_domain_open(void); 93 struct xs_handle *xs_daemon_open_readonly(void); 98 void xs_daemon_close(struct xs_handle *); 180 int xs_fileno(struct xs_handle *h); 196 char **xs_check_watch(struct xs_handle *h); 227 bool xs_introduce_domain(struct xs_handle *h, [all …]
|
/xen-4.10.0-shim-comet/tools/misc/ |
A D | xen-lowmemd.c | 16 static struct xs_handle *xs_handle = NULL; variable 26 if (xs_handle) in cleanup() 27 xs_daemon_close(xs_handle); in cleanup() 77 if (!xs_write(xs_handle, XBT_NULL, in handle_low_mem() 105 xs_handle = xs_daemon_open(); in main() 106 if (xs_handle == NULL) in main()
|
/xen-4.10.0-shim-comet/tools/xenstore/ |
A D | xs.c | 50 struct xs_handle { struct 126 struct xs_handle { struct 168 int xs_fileno(struct xs_handle *h) in xs_fileno() 234 struct xs_handle *h = NULL; in get_handle() 292 struct xs_handle *xs_daemon_open(void) in xs_daemon_open() 302 struct xs_handle *xs_domain_open(void) in xs_domain_open() 309 struct xs_handle *xsh = NULL; in xs_open() 379 void xs_close(struct xs_handle* xsh) in xs_close() 1085 bool xs_set_target(struct xs_handle *h, in xs_set_target() 1167 struct xs_handle *xs; in xs_suspend_evtchn_port() [all …]
|
A D | xenstore_client.c | 108 do_rm(char *path, struct xs_handle *xsh, xs_transaction_t xth) in do_rm() 129 static void do_ls(struct xs_handle *h, char *path, int cur_depth, int show_perms) in do_ls() 230 int recurse, struct xs_handle *xsh, xs_transaction_t xth) in do_chmod() 276 do_watch(struct xs_handle *xsh, int max_events) in do_watch() 295 perform(enum mode mode, int optind, int argc, char **argv, struct xs_handle *xsh, in perform() 500 struct xs_handle *xsh; in main()
|
A D | xenstore_control.c | 10 struct xs_handle *xsh; in main()
|
/xen-4.10.0-shim-comet/tools/python/xen/lowlevel/xs/ |
A D | xs.c | 60 struct xs_handle *xh; 72 struct xs_handle *xh = self->xh; in xshandle() 102 struct xs_handle *xh; in xspy_read() 139 struct xs_handle *xh = xshandle(self); in xspy_write() 174 struct xs_handle *xh; in xspy_ls() 217 struct xs_handle *xh; in xspy_mkdir() 245 struct xs_handle *xh; in xspy_rm() 276 struct xs_handle *xh = xshandle(self); in xspy_get_permissions() 332 struct xs_handle *xh = xshandle(self); in xspy_set_permissions() 420 struct xs_handle *xh = xshandle(self); in xspy_watch() [all …]
|
/xen-4.10.0-shim-comet/tools/xenpaging/ |
A D | xenpaging.c | 63 struct xs_handle *xsh = paging->xs_handle; in xenpaging_mem_paging_flush_ioemu_cache() 86 fd[1].fd = xs_fileno(paging->xs_handle); in xenpaging_wait_for_event_or_timeout() 105 vec = xs_read_watch(paging->xs_handle, &num); in xenpaging_wait_for_event_or_timeout() 306 paging->xs_handle = xs_open(0); in xenpaging_init() 307 if ( paging->xs_handle == NULL ) in xenpaging_init() 334 if ( xs_watch(paging->xs_handle, watch_target_tot_pages, "") == false ) in xenpaging_init() 489 if ( paging->xs_handle ) in xenpaging_init() 490 xs_close(paging->xs_handle); in xenpaging_init() 521 xs_unwatch(paging->xs_handle, watch_target_tot_pages, ""); in xenpaging_teardown() 522 xs_unwatch(paging->xs_handle, "@releaseDomain", watch_token); in xenpaging_teardown() [all …]
|
A D | xenpaging.h | 47 struct xs_handle *xs_handle; member
|
/xen-4.10.0-shim-comet/tools/console/daemon/ |
A D | utils.h | 34 extern struct xs_handle *xs;
|
A D | utils.c | 38 struct xs_handle *xs;
|
A D | io.c | 616 static int xs_gather(struct xs_handle *xs, const char *dir, ...) in xs_gather()
|
/xen-4.10.0-shim-comet/tools/helpers/ |
A D | init-xenstore-domain.c | 299 static void do_xs_write(struct xs_handle *xsh, char *path, char *val) in do_xs_write() 305 static void do_xs_write_dom(struct xs_handle *xsh, char *path, char *val) in do_xs_write_dom() 317 struct xs_handle *xsh; in main()
|
A D | xen-init-dom0.c | 16 struct xs_handle *xsh; in main()
|
/xen-4.10.0-shim-comet/tools/xenstat/libxenstat/src/ |
A D | xenstat_priv.h | 37 struct xs_handle *xshandle; /* xenstore handle */
|
/xen-4.10.0-shim-comet/tools/console/client/ |
A D | main.c | 99 static int get_pty_fd(struct xs_handle *xs, char *path, int seconds) in get_pty_fd() 177 static int console_loop(int fd, struct xs_handle *xs, char *pty_path, in console_loop() 344 struct xs_handle *xs; in main()
|
/xen-4.10.0-shim-comet/tools/xenpmd/ |
A D | xenpmd.c | 86 static struct xs_handle *xs; 501 xs = (struct xs_handle *)xs_daemon_open(); in main()
|
/xen-4.10.0-shim-comet/tools/libvchan/ |
A D | init.c | 248 struct xs_handle *xs; in init_xs_srv() 386 struct xs_handle *xs = NULL; in libxenvchan_client_init()
|
/xen-4.10.0-shim-comet/tools/xenbackendd/ |
A D | xenbackendd.c | 56 struct xs_handle *xs;
|
/xen-4.10.0-shim-comet/tools/tests/mce-test/tools/ |
A D | xen-mceinj.c | 412 struct xs_handle *xs; in xs_get_dom_mem()
|
/xen-4.10.0-shim-comet/tools/libxl/ |
A D | libxl_exec.c | 174 struct xs_handle *xsh; in libxl__xenstore_child_wait_deprecated()
|
A D | libxl_internal.h | 442 struct xs_handle *xsh;
|
/xen-4.10.0-shim-comet/tools/tests/xenstore/ |
A D | xs-test.c | 48 static struct xs_handle *xsh;
|