Home
last modified time | relevance | path

Searched refs:store (Results 1 – 25 of 35) sorted by relevance

12

/xen-4.10.0-shim-comet/tools/ocaml/xenstored/
A Dstore.ml228 let get_root store = store.root
229 let set_root store root = store.root <- root
231 let get_quota store = store.quota
232 let set_quota store quota = store.quota <- quota
375 let dump_fct store f = traversal store.root f
377 let dump_stdout store = dump_store stdout store.root
378 let dump_buffer store = dump_store_buf store.root
406 store.root <- path_mkdir store perm path;
414 store.root <- path_rm store perm path;
429 store: t; RecordField
[all …]
A Dtransaction.ml76 Store.t * (* Original store *)
83 store: Store.t; (* This is the store that we change in write operations. *) RecordField
119 let make ?(internal=false) id store =
120 let ty = if id = none then No else Full(id, Store.copy store, store) in
124 store = if id = none then store else Store.copy store;
137 let get_store t = t.store
156 Store.write t.store perm path value;
163 Store.mkdir t.store perm path;
174 Store.rm t.store perm path;
179 let r = Store.ls t.store perm path in
[all …]
A Dxenstored.ml30 fct store cons domains c
54 let process_domains store cons domains =
68 let sigusr1_handler store =
202 let from_file store cons doms file =
207 let to_channel store cons chan =
215 (* dump the store *)
226 let to_file store cons file =
268 let store = Store.create () in var
299 info "reading store from disk";
300 Disk.read store
[all …]
A Dprocess.ml95 let quota = (Store.get_quota t.Transaction.store) in
327 let can_apply_on store = (
328 let store = Store.copy store in
374 let store = Transaction.get_store t in
499 let process_packet ~store ~cons ~doms ~con ~req =
507 Transaction.make tid store
517 let before = Store.copy store in
519 let after = Store.copy store in
540 let do_input store cons doms con =
565 process_packet ~store ~cons ~doms ~con ~req;
[all …]
A Ddisk.ml111 let read store =
113 let v = Store.get_ops store Perms.Connection.full_rights in
146 let write store =
152 Store.dump store channel;
A Dhistory.ml18 before: Store.t; (* the store before the change *)
19 after: Store.t; (* the store after the change *)
A DMakefile48 store \
A Dquota.ml28 maxsize: int; (* max size of data store in one node *)
A Dconnection.ml235 let start_transaction con store =
241 let ntrans = Transaction.make id store in
/xen-4.10.0-shim-comet/xen/arch/x86/boot/
A Dedd.S37 # boot_edd_info, the first four bytes of which are used to store the device
39 # bytes are used to store the legacy cylinders, heads, and sectors from fn08.
40 # The following 74 bytes are used to store the results from fn48.
56 movb %dl, %ds:-8(%si) # store device number
57 movb %ah, %ds:-7(%si) # store version
58 movw %cx, %ds:-6(%si) # store extensions
152 movb %dl, (%bx) # store BIOS drive number
153 movl %ecx, 4(%bx) # store signature from MBR
A Dmem.S60 movl %edx,bootsym(highmem_kb) # store extended memory size
/xen-4.10.0-shim-comet/xen/arch/arm/arm32/lib/
A Dbitops.h28 .macro testop, name, instr, store
85 .macro testop, name, instr, store
97 \store r2, [r1]
/xen-4.10.0-shim-comet/tools/hotplug/Linux/
A Dxen-hotplug-common.sh.in84 # Write each of the key/value pairs to the store.
94 # Write each of the key/value pairs to the store, and exit this script if any
/xen-4.10.0-shim-comet/xen/arch/arm/
A DKconfig96 If a Cortex-A53 processor is executing a store or prefetch for
119 If the processor is executing a load and store exclusive sequence at
140 Affected Cortex-A57 parts might deadlock when exclusive load/store
/xen-4.10.0-shim-comet/tools/python/scripts/
A Dconvert-legacy-stream516 io, bufio, store = unpack_exact("QQQ")
517 info("Magic pfns: 0x%x 0x%x 0x%x" % (io, bufio, store))
520 public.HVM_PARAM_STORE_PFN, store])
/xen-4.10.0-shim-comet/tools/libacpi/
A Dssdt_pm.asl192 * Helper method 4 to indirectly get battery data and store it in a
241 /* Helper methods to help store battery data retrieved through
/xen-4.10.0-shim-comet/m4/
A Dpaths.m456 [Name of subdirectory in /etc to store runtime options for runlevel
/xen-4.10.0-shim-comet/docs/misc/
A Ddump-core-format.txt49 This section is used as note section to store xen dump-core
199 hypervisor. The each members store the result of
A Dxenstore-paths.markdown314 #### ~/store/port = EVTCHN [DEPRECATED]
324 #### ~/store/ring-ref = GNTREF [DEPRECATED]
328 As with ~/store/port this path is deprecated.
544 The /vm/$UUID namespace is used by toolstacks to store various
/xen-4.10.0-shim-comet/docs/man/
A Dxen-vtpmmgr.pod.721 =item 1. Securely store the encryption keys for vTPMs
223 The vTPM Manager requires a disk image to store its encrypted data. The image
A Dxen-vtpm.pod.7167 The vTPM Manager requires a disk image to store its encrypted data. The image
202 The vTPM requires a disk image to store its persistent data (RSA keys, NVRAM,
/xen-4.10.0-shim-comet/tools/xl/
A DCODING_STYLE145 Local variables used to store return values should have descriptive name
/xen-4.10.0-shim-comet/xen/arch/x86/
A Dmm.c4270 bool store; in arch_memory_op() local
4279 store = !guest_handle_is_null(ctxt.map.buffer); in arch_memory_op()
4281 if ( store && ctxt.map.nr_entries < e820.nr_map + 1 ) in arch_memory_op()
4286 if ( store && !guest_handle_okay(buffer, ctxt.map.nr_entries) ) in arch_memory_op()
4303 if ( store ) in arch_memory_op()
/xen-4.10.0-shim-comet/stubdom/grub.patches/
A D60ext4.diff205 + __u16 eh_max; /* capacity of store in entries */
/xen-4.10.0-shim-comet/tools/libxl/
A DCODING_STYLE261 Local variables used to store return values should have descriptive name

Completed in 49 milliseconds

12