| /xen/xen/tools/kconfig/tests/ |
| A D | conftest.py | 30 def __init__(self, request): argument 36 self._test_dir = os.path.dirname(str(request.fspath)) 289 def conf(request): argument 291 return Conf(request)
|
| /xen/docs/misc/ |
| A D | netif-staging-grants.pandoc | 122 2) Make first request for the packet. 132 request `flags`. 138 8) Fill the total packet size in the first request. 142 10) Update the request producer index (`req_prod`) 155 14) Backend consume a request from the ring 210 on the first produced request from frontend. 238 31) Updates `rsp_cons` (request consumer index) 306 request boundary is 8 octets. 331 5) Sets up flags/checksum info on first request. 337 8) Update the request consumer index (`req_cons`) [all …]
|
| A D | 9pfs.pandoc | 17 However it is useful to know that each 9pfs request and response has the 32 The size of the request or response. 35 The 9pfs request or response operation. 38 Unique id that identifies a specific request/response pair. It is used 147 Each of them is mono-directional, and there is no static request size: 149 [ring.h] they are combined, and the request size is static and 255 The client chooses one of the available rings, then it sends a request 259 The server receives the notification and reads the request, following 262 header. The server processes the request and sends back a response on 264 usual. Thus, every request/response pair is on one ring.
|
| A D | pvcalls.pandoc | 158 request ring. | 367 - **req_id**: echoed back from request 368 - **cmd**: echoed back from request 408 - **id**: echoed back from request 476 - **id**: echoed back from request 531 - **id**: echoed back from request 574 - **id**: echoed back from request 612 - **id**: echoed back from request 652 - frontend issues an **accept** request 723 - **id**: echoed back from request [all …]
|
| A D | vtd-pi.txt | 42 which an interrupt request is recorded in a memory-resident 107 Interrupt posting is the process by which an interrupt request (from IOAPIC 111 request arriving at the root-complex carry the identity of the interrupt 112 request source and a 'remapping-index'. The remapping-index is used to 329 on the vector value in the interrupt request, and use that hash to pick a logical
|
| A D | xenstore.txt | 68 type ERROR, and only req_id and tx_id copied from the request. 142 The following are the actual type values, including the request and 229 spuriously. The tx_id in a WATCH request is ignored. 267 tx_id request header field. When transaction is started whole 274 request the tx_id is no longer valid and may be reused by
|
| A D | xenstore-paths.pandoc | 194 The guest does not need to explicitly acknowledge the request; indeed, 439 acknowledges a request by writing the empty string back to the command node. 447 activities. The guest acknowledges a request by writing the empty 503 necessary. The guest acknowledges a request by writing the empty
|
| /xen/tools/ocaml/xenstored/ |
| A D | perms.ml | 145 let lacks (connection:Connection.t) request (node:Node.t) = 152 match perm, request with 173 let check connection request node = 174 if lacks connection request node 178 let has connection request node = not (lacks connection request node)
|
| A D | packet.ml | 1 type request = { type
|
| A D | transaction.ml | 87 mutable operations: (Packet.request * Packet.response) list; 159 let add_operation t request response = 160 t.operations <- (request, response) :: t.operations
|
| A D | process.ml | 473 let perform_exn ~wlog txn (request, response) = 474 if wlog then write_access_log ~ty:request.Packet.ty ~tid ~con ~data:request.Packet.data; 475 let fct = function_of_type_simple_op request.Packet.ty in 476 let response' = input_handle_error ~cons ~doms ~fct ~con:c ~t:txn ~req:request in 477 if wlog then write_response_log ~ty:request.Packet.ty ~tid ~con ~response:response'; 718 …(* Remember the request and response for this operation in case we need to replay the transaction …
|
| A D | parse_arg.ml | 57 "to request that the daemon does not fork");
|
| /xen/tools/libs/vchan/ |
| A D | io.c | 133 static inline int fast_get_data_ready(struct libxenvchan *ctrl, size_t request) in fast_get_data_ready() argument 136 if (ready >= request) in fast_get_data_ready() 175 static inline int fast_get_buffer_space(struct libxenvchan *ctrl, size_t request) in fast_get_buffer_space() argument 178 if (ready >= request) in fast_get_buffer_space()
|
| /xen/automation/eclair_analysis/ECLAIR/ |
| A D | action_pull_request.sh | 47 curl -sS --request POST \
|
| A D | action_push.sh | 69 curl -sS --request POST \
|
| /xen/docs/hypervisor-guide/x86/ |
| A D | how-xen-boots.rst | 42 The Multiboot 1 headers request aligned modules and memory information. Entry 46 The Multiboot 2 headers are more flexible, and in addition request that the 50 Headers for the EFI MB2 extensions are also present. These request that
|
| /xen/docs/ |
| A D | README.colo | 3 (SVM) run in parallel. They receive the same request from client, and generate
|
| /xen/tools/hotplug/Linux/ |
| A D | external-device-migrate | 39 -recover : indicates recovery request; an error
|
| /xen/.github/workflows/ |
| A D | coverity.yml | 3 # We only want to test official release code, not every pull request.
|
| /xen/docs/process/ |
| A D | sending-patches.pandoc | 111 A backport tag is an optional tag in the commit message to request a 131 Maintainers request the Backport tag to be added on commit. Contributors 133 appropriate. Maintainers will request for it to be removed when that is 136 Please note that the Backport tag is a **request** for backport, which 172 explicit request to add the patch. It is in the format:
|
| /xen/tools/libacpi/ |
| A D | ssdt_pm.asl | 116 * to request, initialize battery data port 0x86 and then return 153 * indicating battery info initialization request. First thing written 170 * indicating request of battery data returned through battery data
|
| /xen/docs/man/ |
| A D | xen-pci-device-reservations.7.pod | 24 =item 1. A vendor may request a range of device IDs by submitting a patch to
|
| /xen/xen/common/ |
| A D | page_alloc.c | 945 unsigned long request = 1UL << order; in alloc_heap_pages() local 967 if ( (outstanding_claims + request > total_avail_pages) && in alloc_heap_pages() 969 !d || d->outstanding_pages < request) ) in alloc_heap_pages() 1012 ASSERT(avail[node][zone] >= request); in alloc_heap_pages() 1013 avail[node][zone] -= request; in alloc_heap_pages() 1014 total_avail_pages -= request; in alloc_heap_pages()
|
| /xen/stubdom/ |
| A D | vtpm-deepquote.patch | 152 + * UINT32 paramSize Total size of request
|
| A D | vtpm-parent-sign-ek.patch | 157 + * UINT32 paramSize Total size of request
|