Home
last modified time | relevance | path

Searched refs:expected (Results 1 – 25 of 41) sorted by relevance

12

/xen-4.10.0-shim-comet/tools/libxl/
A Dcheck-xl-vif-parse14 expected () { function
15 cat >$fprefix.expected
49 expected </dev/null
53 expected </dev/null
63 expected <<END
87 expected <<END
110 expected <<END
133 expected <<END
156 expected </dev/null
163 expected </dev/null
[all …]
A Dcheck-xl-disk-parse14 expected () { function
50 expected </dev/null
53 expected <<END
68 expected <<END
85 expected <<EOF
97 expected <<EOF
113 expected <<EOF
125 expected <<EOF
140 expected <<EOF
155 expected <<END
[all …]
A Dcheck-xl-vcpupin-parse38 expected () { function
39 cat >$fprefix.expected
55 diff -u $fprefix.expected $fprefix.actual
105 expected <<END
A Dcheck-xl-vcpupin-parse.data-example8 # test-string*expected-return-code*expected-output
/xen-4.10.0-shim-comet/tools/firmware/hvmloader/
A Dtests.c98 uint32_t expected; in rep_insb_test() member
133 uint32_t expected = 0; in rep_insb_test() local
136 expected = check[i].expected; in rep_insb_test()
139 if ( *p != expected ) in rep_insb_test()
142 (unsigned long)p, *p, expected); in rep_insb_test()
161 uint32_t expected; in rep_insw_test() member
196 uint32_t expected = 0; in rep_insw_test() local
200 expected = check[i].expected; in rep_insw_test()
203 if ( *p != expected ) in rep_insw_test()
206 (unsigned long)p, *p, expected); in rep_insw_test()
/xen-4.10.0-shim-comet/tools/misc/
A Dxen-detect.c221 enum guest_type detected, expected = 0; in main() local
242 expected = XEN_PV; in main()
245 expected = XEN_HVM; in main()
248 expected = XEN_NONE; in main()
290 return expected && (expected != detected); in main()
A Dxen-livepatch.c240 int expected; /* The state to be in after the function. */ member
246 .expected = LIVEPATCH_STATE_APPLIED,
252 .expected = LIVEPATCH_STATE_CHECKED,
258 .expected = -XEN_ENOENT,
264 .expected = LIVEPATCH_STATE_APPLIED,
327 if ( status.state == action_options[idx].expected ) in action_func()
375 if ( action_options[idx].expected == rc ) in action_func()
390 state2str(action_options[idx].expected)); in action_func()
/xen-4.10.0-shim-comet/tools/ocaml/xenstored/
A Dconfig.ml82 let validate cf expected other =
87 if not (List.mem_assoc k expected) then
89 else let ty = List.assoc k expected in
110 let read filename expected other =
112 validate cf expected other
/xen-4.10.0-shim-comet/tools/libacpi/
A DREADME6 Users of ACPI builder are expected to provide an include file that makes available
22 Usually, user is not expected to change the acpi_dsdt.asl.
/xen-4.10.0-shim-comet/xen/arch/x86/acpi/
A Dcpuidle_menu.c298 void menu_get_trace_data(u32 *expected, u32 *pred) in menu_get_trace_data() argument
301 *expected = data->expected_us; in menu_get_trace_data()
/xen-4.10.0-shim-comet/xen/include/xen/
A Dcpuidle.h97 extern void menu_get_trace_data(u32 *expected, u32 *pred);
/xen-4.10.0-shim-comet/docs/misc/
A Dprintk-formats.txt13 Up to 64 characters. Buffer length expected via the field_width
A Dpv-drivers-lifecycle.markdown33 The code is expected to work, be good quality and faithfully implement
A Dx86-xenpv-bootloader.markdown16 bootloader to load and the protocol/format expected from the
A Dxenstore-paths.markdown154 maximum. Valid values are "online" and "offline". The guest is expected to react to changes in this…
170 the guest is expected to make every effort to every effort use no more
183 event channel port it has acquired. The toolstack is expected to use
190 with reason code `SHUTDOWN_suspend`. The toolstack is expected to use
424 "0" -> the frontend should not be expected to respond, so fail the
426 "1" -> the frontend should be expected to respond, so wait for it to
/xen-4.10.0-shim-comet/tools/blktap2/drivers/
A Dblock-qcow.c687 size_t size, expected; in tdqcow_read_header() local
704 expected = size; in tdqcow_read_header()
706 expected = st.st_size; in tdqcow_read_header()
710 if (err != expected) { in tdqcow_read_header()
737 size_t expected; in tdqcow_load_l1_table() local
788 expected = l1_table_block; in tdqcow_load_l1_table()
790 expected = st.st_size; in tdqcow_load_l1_table()
794 if (err != expected) { in tdqcow_load_l1_table()
/xen-4.10.0-shim-comet/tools/console/testsuite/
A DREADME10 expected.
/xen-4.10.0-shim-comet/tools/ocaml/libs/xs/
A Dxsraw.ml25 let unexpected_packet expected received =
27 (Xb.Op.to_string expected)
217 _ -> raise (Packet.DataError (Printf.sprintf "int expected; got '%s'" data))
/xen-4.10.0-shim-comet/docs/
A DChangeLog4 the inter-domain protocols. When making such a change you are expected
113 Adds a BLKIF_OP_FLUSH_DISKCACHE request. The backend is expected to ask
/xen-4.10.0-shim-comet/tools/firmware/rombios/
A D32bitgateway.c81 ; dx, ax: 32 bit result of call (even if 'void' is expected)
/xen-4.10.0-shim-comet/tools/python/scripts/
A Dconvert-legacy-stream205 expected = 0xffffffff
207 expected = 0xffffffffffffffff
209 if marker != expected:
/xen-4.10.0-shim-comet/docs/misc/arm/
A Dsilicon-errata.txt12 Category C: A minor error that is not expected to occur under normal
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/vmx/
A Dvmcs.c173 static bool_t cap_check(const char *name, u32 expected, u32 saw) in cap_check() argument
175 if ( saw != expected ) in cap_check()
176 printk("VMX %s: saw %#x expected %#x\n", name, saw, expected); in cap_check()
177 return saw != expected; in cap_check()
/xen-4.10.0-shim-comet/docs/features/
A Dlivepatch.pandoc75 Note: It is expected that live patches are tested in a test environment
/xen-4.10.0-shim-comet/docs/man/
A Dxen-pv-channel.pod.794 name expected by the in-guest agent. In xl syntax this would be:

Completed in 125 milliseconds

12