/xen-4.10.0-shim-comet/xen/tools/kconfig/ |
A D | util.c | 16 struct file *file; in file_lookup() local 19 for (file = file_list; file; file = file->next) { in file_lookup() 22 return file; in file_lookup() 26 file = xmalloc(sizeof(*file)); in file_lookup() 27 memset(file, 0, sizeof(*file)); in file_lookup() 28 file->name = file_name; in file_lookup() 30 file_list = file; in file_lookup() 31 return file; in file_lookup() 39 struct file *file; in file_write_dep() local 48 for (file = file_list; file; file = file->next) { in file_write_dep() [all …]
|
A D | kxgettext.c | 65 const char *file; member 76 self->file = file; in file_line__new() 93 const char *file, int lineno) in message__new() argument 100 self->files = file_line__new(file, lineno); in message__new() 137 struct file_line *fl = file_line__new(file, lineno); in message__add_file_line() 158 rc = message__add_file_line(m, file, lineno); in message__add() 160 m = message__new(escaped, option, file, lineno); in message__add() 176 menu->file == NULL ? "Root Menu" : menu->file->name, in menu_build_message_list() 181 menu->file == NULL ? "Root Menu" : menu->file->name, in menu_build_message_list() 197 printf("#: %s:%d", fl->file, fl->lineno); in message__print_file_lineno() [all …]
|
A D | expr.h | 20 struct file { struct 21 struct file *next; argument 22 struct file *parent; argument 154 struct file *file; /* what file was this property defined */ member 177 struct file *file; member 194 extern struct file *file_list; 195 extern struct file *current_file; 196 struct file *lookup_file(const char *name);
|
A D | zconf.l | 22 struct file *file; member 106 current_pos.file = current_file; 318 printf("%s:%d: can't open file \"%s\"\n", 329 "Inclusion path:\n current file : '%s'\n",
|
/xen-4.10.0-shim-comet/tools/pygrub/src/fsimage/ |
A D | fsimage.c | 43 fsi_file_t *file; member 76 err = fsi_pread_file(file->file, buf, bufsize, in fsimage_file_read() 125 if (file->file != NULL) in fsimage_file_dealloc() 126 fsi_close_file(file->file); in fsimage_file_dealloc() 127 Py_XDECREF(file->fs); in fsimage_file_dealloc() 128 PyObject_DEL(file); in fsimage_file_dealloc() 170 if (file == NULL) in fsimage_fs_open_file() 173 file->fs = fs; in fsimage_fs_open_file() 175 Py_INCREF(file->fs); in fsimage_fs_open_file() 176 if ((file->file = fsi_open_file(fs->fs, name)) == NULL) { in fsimage_fs_open_file() [all …]
|
/xen-4.10.0-shim-comet/tools/hotplug/Linux/ |
A D | block | 88 local file 99 if [ -e "$file" ] 101 local d=$(device_major_minor "$file") 186 local file="$1" 282 file) 286 test -f "$file" || fatal "$file does not exist." 304 "File $file is read-only, and so I will not 310 inode=$(stat -c '%i' "$file") 311 dev=$(stat -c '%D' "$file") 333 do_or_die losetup $roflag "$loopdev" "$file" [all …]
|
A D | block-dummy | 42 file=${params[1]} 43 if [ -z "$type" ] || [ -z "$file" ]; then 56 test -f "$file" || fatal "$file does not exist." 71 do_or_die losetup $roflag "$loopdev" "$file"
|
A D | block-tap | 53 file=${params[1]} 54 if [ -z "$type" ] || [ -z "$file" ]; then 65 if [ -z "$type" ] || [ -z "$file" ]; then 69 info=$(tap-ctl list -t $type -f $file)
|
/xen-4.10.0-shim-comet/tools/hotplug/Linux/systemd/ |
A D | show_service_dependencies.sh | 6 for file in "$@" 8 if test -f "$file" 10 unit=${file##*/} 12 requires="`grep ^Requires= $file | cut -f 2- -d =`" 13 before="`grep ^Before= $file | cut -f 2- -d =`" 14 after="`grep ^After= $file | cut -f 2- -d =`"
|
/xen-4.10.0-shim-comet/tools/libfsimage/ext2fs-lib/ |
A D | ext2fs-lib.c | 75 fsi_file_t *file; in ext2lib_open() local 98 file = fsip_file_alloc(fsi, f); in ext2lib_open() 99 if (file == NULL) in ext2lib_open() 101 return (file); in ext2lib_open() 105 ext2lib_read(fsi_file_t *file, void *buf, size_t nbytes) in ext2lib_read() argument 107 ext2_file_t *f = fsip_file_data(file); in ext2lib_read() 121 ext2lib_pread(fsi_file_t *file, void *buf, size_t nbytes, uint64_t off) in ext2lib_pread() argument 123 ext2_file_t *f = fsip_file_data(file); in ext2lib_pread() 151 ext2lib_close(fsi_file_t *file) in ext2lib_close() argument 153 ext2_file_t *f = fsip_file_data(file); in ext2lib_close()
|
/xen-4.10.0-shim-comet/tools/memshr/ |
A D | shm.c | 56 static int shm_area_open(const char *file, size_t size, int unlink, shm_area_t *shma) in shm_area_open() argument 60 if(unlink) shm_unlink(file); in shm_area_open() 63 shma->fd = shm_open(file, in shm_area_open() 118 strcpy(shared_info->vbd_images[0].file, "list-head"); in shm_shared_info_open() 189 uint16_t shm_vbd_image_get(const char* file, vbd_image_info_t *vbd_imgs) in shm_vbd_image_get() argument 199 if(strncmp(img->file, file, MAX_NAME_LEN) == 0) in shm_vbd_image_get() 219 if(strlen(file) > MAX_NAME_LEN - 1) in shm_vbd_image_get() 221 DPRINTF("Filename: %s too long (>%d).\n", file, MAX_NAME_LEN - 1); in shm_vbd_image_get() 227 strcpy(img->file, file); in shm_vbd_image_get() 259 memset(img->file, 0, MAX_NAME_LEN); in shm_vbd_image_put()
|
/xen-4.10.0-shim-comet/tools/ |
A D | config.h.in | 27 /* Define to 1 if you have the <inttypes.h> header file. */ 45 /* Define to 1 if you have the <memory.h> header file. */ 54 /* Define to 1 if you have the <stdint.h> header file. */ 57 /* Define to 1 if you have the <stdlib.h> header file. */ 60 /* Define to 1 if you have the <strings.h> header file. */ 63 /* Define to 1 if you have the <string.h> header file. */ 72 /* Define to 1 if you have the <sys/stat.h> header file. */ 75 /* Define to 1 if you have the <sys/types.h> header file. */ 78 /* Define to 1 if you have the <unistd.h> header file. */ 81 /* Define to 1 if you have the <utmp.h> header file. */ [all …]
|
/xen-4.10.0-shim-comet/xen/common/ |
A D | README.source | 3 This file documents the upstream sources for files and directories 11 The file is licensed under LGPLv2 (or later) 15 This file was originally imported from the Linux tree 17 The file is licensed under LGPLv2.1 (or later) 21 This file was originally imported from the compcache project at 24 The file is dually licensed under GPLv2.0 and LGPLv2.1 30 This directory is licensed under LGPLv2.1 (see COPYING file) 41 This file was originally imported from the LZ4 project 44 The file is licensed under a BSD 2-clause license
|
/xen-4.10.0-shim-comet/tools/blktap2/vhd/ |
A D | vhd-update.c | 153 open_journal(vhd_journal_t *journal, const char *file, const char *jfile) in open_journal() argument 157 err = vhd_journal_create(journal, file, jfile); in open_journal() 159 printf("error creating journal for %s: %d\n", file, err); in open_journal() 183 char *file, *jfile; in main() local 187 file = NULL; in main() 194 file = optarg; in main() 215 if (!file) in main() 223 err = open_journal(&journal, file, jfile); in main()
|
/xen-4.10.0-shim-comet/scripts/ |
A D | get_maintainer.pl | 401 foreach my $file (@ARGV) { 402 if ($file ne "&STDIN") { 404 if ((-d $file)) { 406 } elsif (!(-f $file)) { 411 push(@files, $file); 412 if ($file ne "MAINTAINERS" && -f $file && ($keywords || $file_emails)) { 433 open(my $patch, "< $file") 709 vcs_file_blame($file); 1378 my ($file) = @_; 1884 my ($file) = @_; [all …]
|
/xen-4.10.0-shim-comet/tools/python/ |
A D | README | 1 The file test.py here is from the Zope project, and is Copyright (c) 2001, 2 2002 Zope Corporation and Contributors. This file is released under the Zope 3 Public License, version 2.0, a copy of which is in the file ZPL-2.0.
|
/xen-4.10.0-shim-comet/tools/blktap2/drivers/ |
A D | tapdisk-log.c | 64 char *file; member 72 open_tlog(char *file, size_t bytes, int level, int append) in open_tlog() argument 76 if (asprintf(&tapdisk_log.file, "%s.%d", file, getpid()) == -1) in open_tlog() 80 free(tapdisk_log.file); in open_tlog() 102 free(tapdisk_log.file); in close_tlog() 237 fd = open(tapdisk_log.file, flags, 0644); in tlog_flush()
|
/xen-4.10.0-shim-comet/docs/misc/ |
A D | efi.markdown | 10 normal Image format, so a single binary may be booted as an Image file or as an 12 configuration file as described below unless a bootloader, such as GRUB, has 25 The binary itself will require a configuration file (names with the `.efi` 27 file is found - trailing name components dropped at `.`, `-`, and `_` 32 This configuration file and EFI commandline are only used for booting directly 38 The configuration file consists of one or more sections headed by a section 42 settings in case individual sections don't specify them). This file (for now) 43 needs to be of ASCII type and not e.g. UTF-8 or UTF-16. A typical file would 65 first instance within the file will be used. 103 Specifies a device tree file to load. The platform firmware may provide a [all …]
|
A D | amd-ucode-container.txt | 17 * There is one single file (container file) containing all microcode patches 19 * For AMD processor families 15h and later, there is a separate container file 22 sure you have the latest container file for your AMD processor family. 29 family specific container file. (e.g. microcode_amd_fam15h.bin) 78 Once the patch is applied, further parsing of the file is skipped. 79 Therefore, if a subsequent container file has a newer/updated patch, that
|
A D | kconfig.txt | 1 This file contains some assistance for using "make *config". 15 this happens, using a previously working .config file and running 35 file name to override the default name of ".config". 60 checks for a file named "all{yes/mod/no/def/random}.config" 62 that are to be forced. If this file is not found, it checks for a 63 file named "all.config" to contain forced values. 67 in. Then the kernel config system generates the full .config file, 68 including symbols of your miniconfig file. 70 This 'KCONFIG_ALLCONFIG' file is a config file which contains 132 "auto.conf" file. Its default value is "include/config/auto.conf". [all …]
|
/xen-4.10.0-shim-comet/tools/xenpmd/ |
A D | xenpmd.c | 101 FILE *file = 0; in get_next_battery_file() local 118 file = fopen(file_name, "r"); in get_next_battery_file() 119 } while ( !file ); in get_next_battery_file() 121 return file; in get_next_battery_file() 293 FILE *file; in get_next_battery_info_or_status() local 304 file = get_next_battery_file(battery_dir, type); in get_next_battery_info_or_status() 305 if ( !file ) in get_next_battery_info_or_status() 308 while ( fgets(line_info, sizeof(line_info), file) != NULL ) in get_next_battery_info_or_status() 311 fclose(file); in get_next_battery_info_or_status()
|
/xen-4.10.0-shim-comet/tools/hotplug/NetBSD/rc.d/ |
A D | xendomains | 66 file=`printf "${xendomains_config}" $domain` 67 if [ -f "$file" ]; then 68 ${ctl_command} create "$file"
|
/xen-4.10.0-shim-comet/tools/ocaml/xenstored/ |
A D | parse_arg.ml | 9 * exception on linking described in file LICENSE. 45 ("--config-file", Arg.Set_string config_file, 46 "set an alternative location for the configuration file"); 52 "do not create a xenstore-access.log file"); 53 ("--pid-file", Arg.Set_string pidfile, ""); (* for compatibility *) 59 …let usage_msg = "usage : xenstored [--config-file <filename>] [--no-domain-init] [--help] [--no-fo…
|
/xen-4.10.0-shim-comet/tools/xl/ |
A D | xl_cdrom.c | 92 char *file = NULL; /* modified by cd_insert tokenising it */ in main_cd_insert() local 100 file = argv[optind + 2]; in main_cd_insert() 102 if (cd_insert(domid, virtdev, file)) in main_cd_insert()
|
/xen-4.10.0-shim-comet/tools/libxl/ |
A D | check-libxl-api-rules | 11 my $file = defined($specfile) ? $specfile : $ARGV; 21 die "$file:$line:missing LIBXL_EXTERNAL_CALLERS_ONLY";
|