Searched refs:domid_str (Results 1 – 4 of 4) sorted by relevance
/xen/tools/xenstore/ |
A D | xs.c | 1091 char domid_str[MAX_STRLEN(domid)]; in xs_introduce_domain() local 1096 snprintf(domid_str, sizeof(domid_str), "%u", domid); in xs_introduce_domain() 1100 iov[0].iov_base = domid_str; in xs_introduce_domain() 1101 iov[0].iov_len = strlen(domid_str) + 1; in xs_introduce_domain() 1114 char domid_str[MAX_STRLEN(domid)]; in xs_set_target() local 1118 snprintf(domid_str, sizeof(domid_str), "%u", domid); in xs_set_target() 1121 iov[0].iov_base = domid_str; in xs_set_target() 1134 char domid_str[MAX_STRLEN(domid)]; in single_with_domid() local 1136 snprintf(domid_str, sizeof(domid_str), "%u", domid); in single_with_domid() 1154 char domid_str[MAX_STRLEN(domid)]; in xs_get_domain_path() local [all …]
|
A D | xenstored_domain.c | 531 const char *domid_str = onearg(in); in onearg_domain() local 534 if (!domid_str) in onearg_domain() 537 domid = atoi(domid_str); in onearg_domain() 578 const char *domid_str = onearg(in); in do_get_domain_path() local 580 if (!domid_str) in do_get_domain_path() 583 path = talloc_domain_path(conn, atoi(domid_str)); in do_get_domain_path() 598 const char *domid_str = onearg(in); in do_is_domain_introduced() local 600 if (!domid_str) in do_is_domain_introduced() 603 domid = atoi(domid_str); in do_is_domain_introduced()
|
/xen/tools/libvchan/ |
A D | init.c | 252 char* domid_str = NULL; in init_xs_srv() local 257 domid_str = xs_read(xs, 0, "domid", NULL); in init_xs_srv() 258 if (!domid_str) in init_xs_srv() 262 perms[0].id = atoi(domid_str); in init_xs_srv() 295 free(domid_str); in init_xs_srv()
|
/xen/tools/console/daemon/ |
A D | io.c | 796 char domid_str[3 + MAX_STRLEN(dom->domid)]; in watch_domain() local 800 snprintf(domid_str, sizeof(domid_str), "dom%u", dom->domid); in watch_domain() 802 success = xs_watch(xs, con->xspath, domid_str); in watch_domain() 806 xs_unwatch(xs, con->xspath, domid_str); in watch_domain() 808 success = xs_unwatch(xs, con->xspath, domid_str); in watch_domain()
|
Completed in 11 milliseconds