Lines Matching refs:perm
142 let add_operation ~perm t request response =
144 && not (Perms.Connection.is_dom0 perm)
154 let write t perm path value =
156 Store.write t.store perm path value;
162 let mkdir ?(with_watch=true) t perm path =
163 Store.mkdir t.store perm path;
168 let setperms t perm path perms =
169 Store.setperms t.store perm path perms;
173 let rm t perm path =
174 Store.rm t.store perm path;
178 let ls t perm path =
179 let r = Store.ls t.store perm path in
183 let read t perm path =
184 let r = Store.read t.store perm path in
188 let getperms t perm path =
189 let r = Store.getperms t.store perm path in