Home
last modified time | relevance | path

Searched refs:dir (Results 1 – 25 of 109) sorted by relevance

12345

/xen/tools/firmware/
A DMakefile22 ovmf-dir:
26 seabios-dir:
30 rm -f seabios-dir/.version
89 rm -rf ovmf-dir ovmf-dir-remote
92 rm -rf seabios-dir seabios-dir-remote
95 ovmf-dir-force-update: ovmf-dir
98 cd ovmf-dir-remote; \
103 subdir-clean-ovmf-dir:
109 seabios-dir-force-update: seabios-dir
117 subdir-clean-seabios-dir:
[all …]
/xen/tools/
A DMakefile82 rm -rf qemu-xen-traditional-dir qemu-xen-traditional-dir-remote
83 rm -rf qemu-xen-dir qemu-xen-dir-remote qemu-xen-build
150 qemu-xen-traditional-dir-force-update: qemu-xen-traditional-dir-find
166 subdir-all-qemu-xen-traditional-dir: qemu-xen-traditional-dir-find
176 subdir-install-qemu-xen-traditional-dir: subdir-all-qemu-xen-traditional-dir
188 qemu-xen-dir-find:
190 mkdir -p qemu-xen-dir; \
197 qemu-xen-dir-force-update: qemu-xen-dir-find
211 subdir-all-qemu-xen-dir: qemu-xen-dir-find
264 subdir-install-qemu-xen-dir: subdir-all-qemu-xen-dir
[all …]
/xen/xen/common/
A Dversion.c190 const struct pe_external_debug_directory *dir = (const void *)n; in xen_build_init() local
196 BUILD_BUG_ON(sizeof(*n) > sizeof(*dir)); in xen_build_init()
198 if ( sz > sizeof(*dir) + sizeof(struct cv_info_pdb70) && in xen_build_init()
199 dir->type == PE_IMAGE_DEBUG_TYPE_CODEVIEW && in xen_build_init()
200 dir->size > sizeof(struct cv_info_pdb70) && in xen_build_init()
201 XEN_VIRT_START + dir->rva_of_data == (unsigned long)(dir + 1) ) in xen_build_init()
203 const struct cv_info_pdb70 *info = (const void *)(dir + 1); in xen_build_init()
A Dhypfs.c241 struct hypfs_entry_dir *dir, bool nofault) in hypfs_add_dir() argument
245 ret = add_entry(parent, &dir->e); in hypfs_add_dir()
304 list_for_each_entry ( entry, &dir->dirlist, list ) in hypfs_dir_findentry()
328 if ( dir->e.type != XEN_HYPFS_TYPE_DIR ) in hypfs_get_entry_rel()
332 return &dir->e; in hypfs_get_entry_rel()
339 ret = node_enter(&dir->e); in hypfs_get_entry_rel()
343 entry = dir->e.funcs->findentry(dir, path, name_len); in hypfs_get_entry_rel()
453 dyndata->dir = *template; in hypfs_gen_dyndir_id_entry()
454 dyndata->dir.e.name = dyndata->name; in hypfs_gen_dyndir_id_entry()
455 dyndata->dir.e.funcs = &dyndata->funcs; in hypfs_gen_dyndir_id_entry()
[all …]
/xen/
A DMakefile21 .PHONY: mini-os-dir
22 mini-os-dir:
30 .PHONY: mini-os-dir-force-update
31 mini-os-dir-force-update: mini-os-dir
150 install-stubdom: mini-os-dir install-tools
156 .PHONY: tools/firmware/seabios-dir-force-update
157 tools/firmware/seabios-dir-force-update:
160 .PHONY: tools/firmware/ovmf-dir-force-update
161 tools/firmware/ovmf-dir-force-update:
162 $(MAKE) -C tools/firmware ovmf-dir-force-update
[all …]
A D.gitignore160 tools/firmware/xen-dir/*.old
162 tools/firmware/xen-dir/xen-root
163 tools/firmware/xen-dir/xen-shim
270 xen/build-dir-cppcheck/
309 tools/qemu-xen-dir-remote
310 tools/qemu-xen-dir
313 tools/qemu-xen-traditional-dir
315 tools/firmware/seabios-dir-remote
316 tools/firmware/seabios-dir
318 tools/firmware/ovmf-dir-remote
[all …]
/xen/tools/tests/xenstore/
A Dtest-xenstore.c215 char **dir; in test_dir() local
218 dir = xs_directory(xsh, XBT_NULL, path, &num); in test_dir()
219 if ( !dir ) in test_dir()
222 free(dir); in test_dir()
228 char **dir; in test_dir_deinit() local
233 if ( !dir ) in test_dir_deinit()
239 if ( dir[i][0] == 'a' + j && dir[i][1] == 0 ) in test_dir_deinit()
246 free(dir); in test_dir_deinit()
427 char **dir; in cleanup() local
439 if ( dir && !num ) in cleanup()
[all …]
/xen/tools/libs/light/
A Dlibxl_linux.c247 DIR *dir; in libxl__pci_numdevs() local
251 dir = opendir("/sys/bus/pci/devices"); in libxl__pci_numdevs()
252 if (!dir) { in libxl__pci_numdevs()
257 while ((entry = readdir(dir))) { in libxl__pci_numdevs()
262 closedir(dir); in libxl__pci_numdevs()
272 DIR *dir; in libxl__pci_topology_init() local
276 dir = opendir("/sys/bus/pci/devices"); in libxl__pci_topology_init()
277 if (!dir) { in libxl__pci_topology_init()
283 while ((entry = readdir(dir))) { in libxl__pci_topology_init()
310 closedir(dir); in libxl__pci_topology_init()
/xen/automation/build/yocto/
A Dbuild-yocto.sh239 --xen-dir=DIR path to xen hypervisor source tree
242 --out-dir=DIR directory where to create the projectss
244 --log-dir=DIR directory to store logs
246 --cache-dir=DIR directory where to take and store build cache
248 --layer-dir=DIR directory containing the checkout of yocto layers
286 --xen-dir=*)
294 --out-dir=*)
297 --log-dir=*)
300 --cache-dir=*)
303 --layer-dir=*)
/xen/tools/libs/ctrl/
A Dxc_hcall_buf.c70 if ( b->ubuf == (void *)-1 || b->dir == XC_HYPERCALL_BUFFER_BOUNCE_NONE ) in xc__hypercall_bounce_pre()
86 if ( b->dir == XC_HYPERCALL_BUFFER_BOUNCE_IN || b->dir == XC_HYPERCALL_BUFFER_BOUNCE_BOTH ) in xc__hypercall_bounce_pre()
97 if ( b->ubuf == (void *)-1 || b->dir == XC_HYPERCALL_BUFFER_BOUNCE_NONE ) in xc__hypercall_bounce_post()
103 if ( b->dir == XC_HYPERCALL_BUFFER_BOUNCE_OUT || b->dir == XC_HYPERCALL_BUFFER_BOUNCE_BOTH ) in xc__hypercall_bounce_post()
/xen/m4/
A Dpaths.m47 dnl xenstored active at a time. All tools have to share this dir, even
42 AC_DEFINE_UNQUOTED([XEN_CONFIG_DIR], ["$XEN_CONFIG_DIR"], [Xen's config dir])
61 AC_ARG_WITH([sysconfig-leaf-dir],
62 AS_HELP_STRING([--with-sysconfig-leaf-dir=SUBDIR],
74 AC_ARG_WITH([libexec-leaf-dir],
75 AS_HELP_STRING([--with-libexec-leaf-dir=SUBDIR],
87 AC_DEFINE_UNQUOTED([XEN_SCRIPT_DIR], ["$XEN_SCRIPT_DIR"], [Xen's script dir])
129 AC_DEFINE_UNQUOTED([XENFIRMWAREDIR], ["$XENFIRMWAREDIR"], [Xen's firmware dir])
137 AC_DEFINE_UNQUOTED([XEN_LOG_DIR], ["$XEN_LOG_DIR"], [Xen's log dir])
145 AC_DEFINE_UNQUOTED([XEN_LIB_DIR], ["$XEN_LIB_DIR"], [Xen's lib dir])
[all …]
/xen/tools/ocaml/libs/xs/
A Dxst.ml34 readv = (fun dir vec -> Xsraw.readv tid dir vec xsh);
36 writev = (fun dir vec -> Xsraw.writev tid dir vec xsh);
41 setpermsv = (fun dir vec perms -> Xsraw.setpermsv tid dir vec perms xsh);
/xen/tools/libfsimage/common/
A Dfsimage_plugin.c126 DIR *dir = NULL; in fsi_init() local
141 if ((dir = opendir(fsdir)) == NULL) in fsi_init()
146 dp = readdir(dir); in fsi_init()
170 if (dir != NULL) in fsi_init()
171 (void) closedir(dir); in fsi_init()
/xen/tools/xenpmd/
A Dxenpmd.c389 DIR *dir; in write_one_time_battery_info() local
393 dir = opendir(BATTERY_DIR_PATH); in write_one_time_battery_info()
394 if ( !dir ) in write_one_time_battery_info()
397 while ( get_next_battery_info_or_status(dir, BIF, (void *)&info) ) in write_one_time_battery_info()
410 closedir(dir); in write_one_time_battery_info()
443 DIR *dir; in wait_for_and_update_battery_status_request() local
453 dir = opendir(BATTERY_DIR_PATH); in wait_for_and_update_battery_status_request()
454 if ( !dir ) in wait_for_and_update_battery_status_request()
457 while ( get_next_battery_info_or_status(dir, BST, (void *)&status) ) in wait_for_and_update_battery_status_request()
473 closedir(dir); in wait_for_and_update_battery_status_request()
/xen/tools/misc/
A Dxencov_split54 dir = opts.output_dir + path.dirname(fn)
56 os.makedirs(dir)
58 if e.errno == errno.EEXIST and os.path.isdir(dir):
63 full_path = dir + '/' + path.basename(fn)
A Dmktarball11 git --git-dir="$1"/.git \
38 cd $xen_root/tools/qemu-xen-dir-remote
48 git_archive_into $xen_root/tools/qemu-xen-traditional-dir-remote $tdir/xen-$desc/tools/qemu-xen-tra…
/xen/tools/hotplug/Linux/
A Dvscsi7 dir=$(dirname "$0")
8 . "$dir/xen-hotplug-common.sh"
A Dblock-enbd10 dir=$(dirname "$0")
11 . "$dir/block-common.sh"
A Dblock-nbd10 dir=$(dirname "$0")
11 . "$dir/block-common.sh"
A Dexternal-device-migrate26 dir=$(dirname "$0")
27 . "$dir/logging.sh"
81 filename="$dir/$typ$stype-migration.sh"
A Dxen-hotplug-common.sh.in17 dir=$(dirname "$0")
18 . "$dir/hotplugpath.sh"
19 . "$dir/logging.sh"
20 . "$dir/xen-script-common.sh"
21 . "$dir/locking.sh"
/xen/tools/tests/x86_emulator/
A Dsimd-gf.c18 # define transform(m, dir, x, c) ({ \ argument
20 asm ( "vgf2p8affine" #dir "qb %[imm], %[matrix]%{1to%c[n]%}, %[src], %[dst]" \
39 # define transform(m, dir, x, c) ({ \ argument
42 ((vec_t)GF(affine ## dir ## qb, , (vqi_t)(x), (vqi_t)m_, c)); \
/xen/tools/include/
A DMakefile11 all: xen-foreign xen-dir xen-xsm/.dir
23 .PHONY: xen-dir
24 xen-dir:
43 xen/lib/x86/all: xen-dir
51 xen-xsm/.dir: $(MKFLASK) $(FLASK_H_DEPEND)
/xen/xen/include/xen/
A Dhypfs.h45 struct hypfs_entry *(*findentry)(const struct hypfs_entry_dir *dir,
80 struct hypfs_entry_dir dir; /* Modified copy of template. */ member
166 struct hypfs_entry_dir *dir, bool nofault);
192 const struct hypfs_entry_dir *dir, const char *name, unsigned int name_len);
194 const struct hypfs_entry_dir *dir, const char *name, unsigned int name_len);
/xen/docs/misc/
A Ddistro_mapping.txt17 --with-sysconfig-leaf-dir=SUBDIR.
22 For example if a new distro uses /etc/bork as its config dir, it's not
24 existence of the bork dir in every context where config files are read.

Completed in 52 milliseconds

12345