Searched refs:Node (Results 1 – 12 of 12) sorted by relevance
/xen/tools/ocaml/xenstored/ |
A D | trie.ml | 16 module Node = module 81 f node.Node.key node.Node.value; 82 iter f node.Node.children 89 match node.Node.value with 93 { node with Node.value = value; Node.children = map f node.Node.children } 95 List.filter (fun n -> n.Node.value <> None || n.Node.children <> []) (List.map aux tree) 99 fold f node.Node.children (f node.Node.key node.Node.value accu) 140 f node.Node.key node.Node.value; 146 then Node.set_value node value 161 let node = Node.empty h in [all …]
|
A D | store.ml | 19 module Node = struct module 23 perms: Perms.Node.t; 183 Node.find node h 236 mutable root: Node.t; 255 Node.add_child node (Node.create name node.Node.perms "") in 272 Node.add_child node (Node.create name node.Node.perms value) in 319 ent.Node.value 324 ent.Node.value 349 c.Node.perms in 482 root = Node.create "" Perms.Node.default0 ""; [all …]
|
A D | perms.ml | 44 module Node = module 140 let check_owner (connection:Connection.t) (node:Node.t) = 142 then Connection.is_owner connection (Node.get_owner node) 146 let lacks (connection:Connection.t) request (node:Node.t) = 149 if List.mem_assoc domainid (Node.get_acl node) 150 then List.assoc domainid (Node.get_acl node) 151 else Node.get_other node 186 (Node.to_string perm1) = (Node.to_string perm2)
|
A D | connection.ml | 206 Store.Node.get_perms parent :: 207 try [Store.Node.get_perms (Store.Node.find parent name)] 224 let perms = perms |> List.map (Perms.Node.to_string ~sep:" ") |> String.concat ", " in
|
A D | transaction.ml | 32 not (Perms.equiv (Store.Node.get_perms n1) (Store.Node.get_perms n2)) || acc 85 oldroot: Store.Node.t;
|
A D | symbol.mli | 17 (** Node names *)
|
A D | disk.ml | 139 v.Store.setperms path (Perms.Node.of_strings (parse_perm perm)) in
|
A D | xenstored.ml | 166 (Perms.Node.of_string (unhexify perms ^ "\000")) 217 let name, perms, value = Store.Node.unpack node in 219 let permstr = Perms.Node.to_string perms in
|
A D | process.ml | 124 Perms.Node.to_string perms ^ "\000" 163 (Perms.Node.of_string perms)
|
/xen/tools/golang/xenlight/ |
A D | xenlight.go | 751 func (Ctx *Context) CpupoolCpuaddNode(Poolid uint32, Node int) (Cpus int, err error) { 754 ret := C.libxl_cpupool_cpuadd_node(Ctx.ctx, C.uint32_t(Poolid), C.int(Node), &ccpus) 766 func (Ctx *Context) CpupoolCpuremoveNode(Poolid uint32, Node int) (Cpus int, err error) { 769 ret := C.libxl_cpupool_cpuremove_node(Ctx.ctx, C.uint32_t(Poolid), C.int(Node), &ccpus)
|
A D | types.gen.go | 1066 Node uint32 member 1073 Node uint32 member
|
A D | helpers.gen.go | 3735 x.Node = uint32(xc.node) 3746 xc.node = C.uint32_t(x.Node) 3769 x.Node = uint32(xc.node) 3781 xc.node = C.uint32_t(x.Node)
|
Completed in 26 milliseconds