Home
last modified time | relevance | path

Searched refs:content (Results 1 – 24 of 24) sorted by relevance

/xen-4.10.0-shim-comet/tools/python/xen/migration/
A Dlibxc.py241 if len(content) != 0:
249 if len(content) <= minsz:
315 if len(content) < 8:
331 if len(content) < minsz:
353 if len(content) != 4096:
363 if len(content) != sz:
379 if len(content) == 0:
388 if len(content) < sz:
401 if len(content) != sz:
413 if len(content) != 0:
[all …]
A Dlibxl.py128 content = self.rdexact(contentsz)
130 padding = content[length:]
146 if len(content) != 0:
153 if len(content) != 0:
164 if len(content) < minsz:
177 content = content[minsz:]
179 if len(content):
181 if content[-1] != '\x00':
199 if len(content) < minsz:
214 if len(content) != 0:
[all …]
/xen-4.10.0-shim-comet/tools/misc/
A Dxencov_split29 content = f.read()
33 while content:
34 off = content.find('\x00')
36 fn, = struct.unpack_from(fmt, content)
37 content = content[off+1:]
40 sz, = struct.unpack_from(fmt, content)
41 content = content[struct.calcsize(fmt):]
44 payload, = struct.unpack_from(fmt, content)
45 content = content[sz:]
A Dxen-detect.c141 char *content = NULL; in read_file_content() local
152 content = malloc(stab.st_size + 1); in read_file_content()
153 if ( !content ) in read_file_content()
160 datalen = fread(content, 1, stab.st_size, f); in read_file_content()
161 content[datalen] = 0; in read_file_content()
164 free(content); in read_file_content()
165 content = NULL; in read_file_content()
170 return content; in read_file_content()
/xen-4.10.0-shim-comet/tools/firmware/hvmloader/
A Dcacheattr.c60 uint64_t mtrr_cap, mtrr_def, content, addr_mask; in cacheattr_init() local
80 content = 0x0606060606060606ull; in cacheattr_init()
81 wrmsr(MSR_MTRRfix64K_00000, content); in cacheattr_init()
82 wrmsr(MSR_MTRRfix16K_80000, content); in cacheattr_init()
85 content = 0x0101010101010101ull; in cacheattr_init()
86 wrmsr(MSR_MTRRfix16K_A0000, content); in cacheattr_init()
88 content = 0x0606060606060606ull; in cacheattr_init()
90 wrmsr(MSR_MTRRfix4K_C0000 + i, content); in cacheattr_init()
/xen-4.10.0-shim-comet/tools/libxc/
A Dxc_offline_page.c274 void *content = NULL; in change_pte() local
292 content = xc_map_foreign_range(xch, domid, PAGE_SIZE, in change_pte()
294 if (!content) in change_pte()
300 pte = ((const uint32_t*)content)[j]; in change_pte()
302 pte = ((const uint64_t*)content)[j]; in change_pte()
326 munmap(content, PAGE_SIZE); in change_pte()
327 content = NULL; in change_pte()
337 if (content) in change_pte()
338 munmap(content, PAGE_SIZE); in change_pte()
/xen-4.10.0-shim-comet/docs/
A Dgen-html-index38 my ($file,$title,$content) = @_;
55 $content
/xen-4.10.0-shim-comet/docs/features/
A Dlivepatch.pandoc35 depending on the content of the live patch. Because of this, it is
60 crash due to the content of the live patch being incorrect or the
A Dfeature-levelling.pandoc192 once memory and vcpu content has been restored. This means that the receiving
193 Xen cannot verify the memory/vcpu content against the CPUID policy, and can
205 [Intel Flexmigration](http://www.intel.co.uk/content/dam/www/public/us/en/documents/application-not…
A Dintel_psr_cat_cdp.pandoc441 …-32 Architectures Software Developer Manuals, vol3](http://www.intel.com/content/www/us/en/process…
457 1. Add content in 'Areas for improvement';
/xen-4.10.0-shim-comet/docs/misc/
A Dstubdom.txt47 or you can provide the content of a menu.lst stored in dom0 by passing it as a
A Dvtd-pi.txt104 http://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-software…
123 http://www.intel.com/content/www/us/en/intelligent-systems/intel-technology/vt-directed-io-spec.htm…
226 http://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-software…
A Dxl-psr.markdown192 (http://www.intel.com/content/www/us/en/processors/architectures-software-developer-manuals.html).
A Dvtd.txt206 http://www.dell.com/content/products/category.aspx/optix?c=us&cs=555&l=en&s=biz
A Dpvcalls.markdown860 command, see **ref** parameter in their sections. The content of the
A Dlivepatch.markdown1012 content of specific source file. It may also trigger pulling in
/xen-4.10.0-shim-comet/tools/ocaml/xenstored/
A Doxenstored.conf.in36 # the xenstore tree and permissions, together with the content of the
/xen-4.10.0-shim-comet/docs/specs/
A Dlibxc-migration-stream.pandoc446 The content of the Shared Info page.
636 content should be elided on the source side, as their presence serves no
733 tolerate and ignore variable sized records with zero content. Xen releases
735 X86\_PV\_VCPU\_{EXTENDED,XSAVE,MSRS} records with zero-length content.
/xen-4.10.0-shim-comet/tools/libxl/
A Dlibxl_domain.c1504 const char *content; in libxl__update_avail_vcpus_xenstore() local
1505 rc = libxl__xs_read_checked(gc, XBT_NULL, path, &content); in libxl__update_avail_vcpus_xenstore()
1507 if (content && !strcmp(content, "online")) in libxl__update_avail_vcpus_xenstore()
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/vmx/
A Dvvmx.c236 u64 *content = (u64 *) vvmcs; in get_vvmcs_virtual() local
242 res = content[offset]; in get_vvmcs_virtual()
290 u64 *content = (u64 *) vvmcs; in set_vvmcs_virtual() local
296 res = content[offset]; in set_vvmcs_virtual()
320 content[offset] = res; in set_vvmcs_virtual()
/xen-4.10.0-shim-comet/docs/man/
A Dxl-disk-configuration.pod.5427 This is used by secondary. It buffers the original content that is modified
/xen-4.10.0-shim-comet/
A DMAINTAINERS95 K: Keyword perl extended regex pattern to match content in a
/xen-4.10.0-shim-comet/tools/firmware/vgabios/
A DChangeLog1093 dependant on ModeInfo content instead of hardcoded functions)
/xen-4.10.0-shim-comet/stubdom/grub.patches/
A D61btrfs.diff3044 + /* extract symlink content */
3061 + /* fill the rest of linkbuf with the content */

Completed in 28 milliseconds