| /freebsd/sys/contrib/edk2/Include/Protocol/ |
| H A D | HiiImage.h | 31 @param Flags Describe image characteristics. If 32 EFI_IMAGE_TRANSPARENT is set, then the image was 35 @param Width Image width, in pixels. 37 @param Height Image height, in pixels. 54 This function adds the image Image to the group of images 55 owned by PackageList, and returns a new image identifier 60 @param PackageList Handle of the package list where this image will be added. 62 @param ImageId On return, contains the new image id, which is 65 @param Image Points to the image. 67 @retval EFI_SUCCESS The new image was added [all …]
|
| H A D | LoadedImage.h | 2 UEFI 2.0 Loaded image protocol definition. 4 Every EFI driver and application is passed an image handle when it is loaded. 5 This image handle will contain a Loaded Image Protocol. 41 /// Can be used on any image handle to obtain information about the loaded image. 46 …EFI_HANDLE ParentHandle; ///< Parent image's image handle. NULL if the image is l… 48 EFI_SYSTEM_TABLE *SystemTable; ///< the image's EFI system table pointer. 51 // Source location of image 53 …EFI_HANDLE DeviceHandle; ///< The device handle that the EFI Image was loaded fro… 55 ///< that the EFI Image was loaded from. 62 VOID *LoadOptions; ///< A pointer to the image's binary load options. [all …]
|
| H A D | Security2.h | 4 Abstracts security-specific functions from the DXE Foundation of UEFI Image Verification, 5 Trusted Computing Group (TCG) measured boot, and User Identity policy for image loading and 13 The Security2 protocol must be used on every image being loaded. 17 When only Security architectural protocol is published, LoadImage must use it on every image 37 The DXE Foundation uses this service to measure and/or verify a UEFI image. 41 invokes the FileAuthentication() with a DevicePath and corresponding image in 43 appropriate PCR. The image verification logic will confirm the integrity and provenance of the 44 image in FileBuffer of length FileSize . The origin of the image will be DevicePath in 52 @param FileBuffer A pointer to the buffer with the UEFI file image. 63 policy dictates that the DXE Foundation may execute the image in [all …]
|
| /freebsd/lib/libpmcstat/ |
| H A D | libpmcstat_image.c | 60 pmcstat_image_add_symbols(struct pmcstat_image *image, Elf *e, in pmcstat_image_add_symbols() argument 92 firsttime = image->pi_symbols == NULL; in pmcstat_image_add_symbols() 93 symptr = reallocarray(image->pi_symbols, in pmcstat_image_add_symbols() 94 image->pi_symcount + nfuncsyms, sizeof(*symptr)); in pmcstat_image_add_symbols() 95 if (symptr == image->pi_symbols) /* realloc() failed. */ in pmcstat_image_add_symbols() 97 image->pi_symbols = symptr; in pmcstat_image_add_symbols() 102 symptr += image->pi_symcount; in pmcstat_image_add_symbols() 113 if (!firsttime && pmcstat_symbol_search(image, sym.st_value)) in pmcstat_image_add_symbols() 139 symptr->ps_start = sym.st_value - image->pi_vaddr; in pmcstat_image_add_symbols() 146 image->pi_symcount += newsyms; in pmcstat_image_add_symbols() [all …]
|
| H A D | libpmcstat_symbol.c | 59 struct pmcstat_image *image; in pmcstat_symbol_search_by_name() local 72 image = pcm->ppm_image; in pmcstat_symbol_search_by_name() 73 if (image->pi_name == NULL) in pmcstat_symbol_search_by_name() 75 name1 = pmcstat_string_unintern(image->pi_name); in pmcstat_symbol_search_by_name() 82 if (!found || image->pi_symbols == NULL) in pmcstat_symbol_search_by_name() 87 for (i = 0; i < image->pi_symcount; i++) { in pmcstat_symbol_search_by_name() 88 sym = &image->pi_symbols[i]; in pmcstat_symbol_search_by_name() 99 *addr_start = (image->pi_vaddr - image->pi_start + in pmcstat_symbol_search_by_name() 101 *addr_end = (image->pi_vaddr - image->pi_start + in pmcstat_symbol_search_by_name() 127 * Map an address to a symbol in an image. [all …]
|
| /freebsd/share/man/man9/ |
| H A D | firmware.9 | 33 .Nd firmware image loading and management 42 const void *data; /* location of image */ 43 size_t datasize; /* size of image in bytes */ 44 unsigned int version; /* version of the image */ 71 .Nm firmware image 73 .Nm image 83 An image is registered with the 90 specially crafted kernel modules that contain the firmware image. 99 of the firmware subsystem can request access to a given image 111 If a matching image is not already registered, [all …]
|
| /freebsd/contrib/processor-trace/libipt/src/ |
| H A D | pt_image.c | 109 void pt_image_init(struct pt_image *image, const char *name) in pt_image_init() argument 111 if (!image) in pt_image_init() 114 memset(image, 0, sizeof(*image)); in pt_image_init() 116 image->name = dupstr(name); in pt_image_init() 119 void pt_image_fini(struct pt_image *image) in pt_image_fini() argument 121 if (!image) in pt_image_fini() 124 pt_section_list_free_tail(image->sections); in pt_image_fini() 125 free(image->name); in pt_image_fini() 127 memset(image, 0, sizeof(*image)); in pt_image_fini() 132 struct pt_image *image; in pt_image_alloc() local [all …]
|
| /freebsd/contrib/processor-trace/libipt/internal/include/ |
| H A D | pt_image.h | 47 /* The image section identifier. */ 51 /* A traced image consisting of a collection of sections. */ 53 /* The optional image name. */ 69 /* Initialize an image with an optional @name. */ 70 extern void pt_image_init(struct pt_image *image, const char *name); 72 /* Finalize an image. 76 extern void pt_image_fini(struct pt_image *image); 78 /* Add a section to an image. 80 * Add @section identified by @isid to @image at @vaddr in @asid. If @section 86 * Returns -pte_internal if @image, @section, or @asid is NULL. [all …]
|
| /freebsd/contrib/processor-trace/libipt/test/src/ |
| H A D | ptunit-image.c | 77 /* A fake image section cache. */ 94 /* A test fixture providing an image, test sections, and asids. */ 96 /* The image. */ 97 struct pt_image image; member 114 /* An initially empty image as destination for image copies. */ 423 struct pt_image image; in init() local 425 memset(&image, 0xcd, sizeof(image)); in init() 427 pt_image_init(&image, NULL); in init() 428 ptu_null(image.name); in init() 429 ptu_null(image.sections); in init() [all …]
|
| H A D | ptunit-msec_cache.c | 104 /* A mock image. */ 106 /* The section stored in the image. 118 int pt_image_validate(struct pt_image *image, struct pt_mapped_section *msec, in pt_image_validate() argument 126 if (!image || !msec) in pt_image_validate() 129 section = image->section; in pt_image_validate() 139 int pt_image_find(struct pt_image *image, struct pt_mapped_section *msec, in pt_image_find() argument 146 if (!image || !msec || !asid) in pt_image_find() 149 section = image->section; in pt_image_find() 169 /* A test image. */ 170 struct pt_image image; member [all …]
|
| /freebsd/usr.sbin/makefs/ |
| H A D | makefs.8 | 41 .Nd create a file system image from a directory tree or a mtree manifest 57 .Op Fl s Ar image-size 60 .Ar image-file 66 creates a file system image into 67 .Ar image-file 80 .Ar image-file . 86 Set the byte order of the image to 104 free blocks exist in the image. 109 indicates a percentage of the calculated image size. 126 To create an image from a list of files in an mtree format manifest, [all …]
|
| /freebsd/sys/contrib/device-tree/src/powerpc/fsl/ |
| H A D | c293pcie.dts | 83 /* 1MB for DTB Image */ 85 label = "NOR DTB Image"; 89 /* 8 MB for Linux Kernel Image */ 91 label = "NOR Linux Kernel Image"; 97 label = "NOR Rootfs Image"; 107 /* 512KB for u-boot Bootloader Image and evn */ 109 label = "NOR U-Boot Image"; 122 /* 1MB for u-boot Bootloader Image */ 124 label = "NAND U-Boot Image"; 129 /* 1MB for DTB Image */ [all …]
|
| H A D | p1024rdb.dtsi | 53 /* 256KB for DTB Image */ 55 label = "NOR DTB Image"; 59 /* 3.5 MB for Linux Kernel Image */ 61 label = "NOR Linux Kernel Image"; 72 /* 512KB for u-boot Bootloader Image */ 75 label = "NOR U-Boot Image"; 89 /* 1MB for u-boot Bootloader Image */ 91 label = "NAND U-Boot Image"; 96 /* 1MB for DTB Image */ 98 label = "NAND DTB Image"; [all …]
|
| H A D | p2020rdb-pc.dtsi | 53 /* 256KB for DTB Image */ 55 label = "NOR DTB Image"; 59 /* 3.5 MB for Linux Kernel Image */ 61 label = "NOR Linux Kernel Image"; 72 /* 512KB for u-boot Bootloader Image */ 75 label = "NOR U-Boot Image"; 89 /* 1MB for u-boot Bootloader Image */ 91 label = "NAND U-Boot Image"; 96 /* 1MB for DTB Image */ 98 label = "NAND DTB Image"; [all …]
|
| H A D | p2020rdb.dts | 53 /* 256KB for DTB Image */ 55 label = "NOR (RO) DTB Image"; 60 /* 3.5 MB for Linux Kernel Image */ 62 label = "NOR (RO) Linux Kernel Image"; 74 /* 512KB for u-boot Bootloader Image */ 77 label = "NOR (RO) U-Boot Image"; 91 /* 1MB for u-boot Bootloader Image */ 93 label = "NAND (RO) U-Boot Image"; 98 /* 1MB for DTB Image */ 100 label = "NAND (RO) DTB Image"; [all …]
|
| H A D | p1021rdb-pc.dtsi | 53 /* 256KB for DTB Image */ 55 label = "NOR DTB Image"; 59 /* 3.5 MB for Linux Kernel Image */ 61 label = "NOR Linux Kernel Image"; 80 /* 512KB for u-boot Bootloader Image */ 83 label = "NOR U-Boot Image"; 96 /* 1MB for u-boot Bootloader Image */ 98 label = "NAND U-Boot Image"; 103 /* 1MB for DTB Image */ 105 label = "NAND DTB Image"; [all …]
|
| H A D | p1020rdb-pd.dts | 62 /* 128KB for DTB Image */ 64 label = "NOR DTB Image"; 68 /* 3.875 MB for Linux Kernel Image */ 70 label = "NOR Linux Kernel Image"; 89 /* 512KB for u-boot Bootloader Image */ 92 label = "NOR U-Boot Image"; 106 /* 1MB for u-boot Bootloader Image */ 108 label = "NAND U-Boot Image"; 113 /* 1MB for DTB Image */ 115 label = "NAND DTB Image"; [all …]
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | images | 4 # images: file(1) magic for image formats (see also "iff", and "c-lang" for 29 # and Image Type 1 2 3 9 10 11 32 33 32 # Targa image data (strength=70=110-40) before some Commodore disc image (strength=70=70+0 ./c64) l… 41 # skip more garbage like *.iso by looking for positive image type 43 # skip some compiled terminfo like xterm+tmux by looking for image type less equal 33 49 # skip few Commodore D64 disc image like "The Great Gianna Sisters.d64" and 52 >>>>>>>0 use tga-image 54 >>>>>>0 use tga-image 56 >>>>>>0 use tga-image 58 >>>>>>0 use tga-image [all …]
|
| H A D | apple | 19 >3 string \x31\xFF\x0A\x0D\x0A Applesauce A2R 1.x Disk Image 21 >3 string \x32\xFF\x0A\x0D\x0A Applesauce A2R 2.x Disk Image 23 >3 string \x33\xFF\x0A\x0D\x0A Applesauce A2R 3.x Disk Image 43 >3 string \x31\xFF\x0A\x0D\x0A Apple ][ WOZ 1.0 Disk Image 45 >3 string \x32\xFF\x0A\x0D\x0A Apple ][ WOZ 2.0 Disk Image 60 >4 string \xFF\x0A\x0D\x0A Apple Macintosh MOOF Disk Image 72 0 string \x01\x38\xB0\x03\x4C Apple ProDOS Image 85 0 string \x01\x8A\x48\xD8\x2C\x82\xC0\x8D\x0E\xC0\x8D\x0C Apple ProDOS ProBoot Image 94 0 string \x01\xA8\x8A\x20\x7B\xF8\x29\x07\x09\xC0\x99\x30 Apple ProDOS ProBoot Image 103 0 string \x01\x4A\xD0\x34\xE6\x3D\x8A\x20\x7B\xF8\x09\xC0 Apple ProDOS ProBoot Image [all …]
|
| /freebsd/release/scripts/ |
| H A D | make-oci-image.sh | 3 # Build an Open Container Initiative (OCI) container image 9 image=$1; shift 18 echo "Building OCI freebsd${major}-${image} image for ${abi}" 20 . ${curdir}/tools/oci-image-${image}.conf 44 # not already added by a parent image. 56 # resulting image. 103 local image=$1; shift 106 # Note: the diff_id (needed for image config) is the hash of the 125 …]},\"history\":[{\"created\":\"${create_time}\",\"created_by\":\"make-oci-image.sh\"}]}" > ${workd… 129 …image.manifest.v1+json\",\"config\":{\"mediaType\":\"application/vnd.oci.image.config.v1+json\",\"… [all …]
|
| /freebsd/tools/tools/vimage/ |
| H A D | vimage.8 | 65 A virtual image or vimage is a jail with its own independent network 76 as well as for execution of arbitrary processes in a targeted virtual image. 80 command spawns a new interactive shell in virtual image 91 Create a new virtual image named 100 Modify the parameters of a virtual image named 104 Delete the virtual image 106 No processes and/or sockets should exist in the target virtual image 108 Non-loopback interfaces residing in the target virtual image 109 will be reassigned to the virtual image's parent. 115 is provided, only the information regarding the target virtual image [all …]
|
| /freebsd/release/ |
| H A D | Makefile.vm | 5 VMTARGETS= vm-image 17 VHD_DESC= Azure, VirtualPC, Hyper-V, Xen disk image 18 VMDK_DESC= VMWare, VirtualBox disk image 19 QCOW2_DESC= Qemu, KVM disk image 20 RAW_DESC= Unformatted raw disk image 31 AZURE_DESC= Microsoft Azure platform image 34 BASIC-CI_DESC= Image for CI 41 EC2-BASE_DESC= Amazon EC2 image 42 EC2-BUILDER_DESC= Amazon EC2 AMI Builder image 43 EC2-CLOUD-INIT_DESC= Amazon EC2 Cloud-Init image [all …]
|
| /freebsd/lib/libsys/ |
| H A D | kexec_load.2 | 33 argument is the physical address of the entry point of the new kernel image. 37 argument is the number of segments in the image, currently limited to 16. 38 A value of 0 will unload the currently staged image, if one exists, without 39 staging a new image. 82 system call stages the kernel image in safe memory along with all 83 machine-dependent image data until 87 flag to load the image and execute the new kernel. 95 On success any previously loaded image is unloaded and replaced with the new 96 image. 97 On failure, the previously loaded image is unchanged. [all …]
|
| /freebsd/usr.bin/mkuzip/ |
| H A D | mkuzip.8 | 31 .Nd compress disk image for use with 46 utility compresses a disk image file so that the 48 class will be able to decompress the resulting image at run-time. 49 This allows for a significant reduction of size of disk image at 60 image is split into clusters; each cluster is compressed. 134 Setting this option results is moderate decrease of compressed image size, 135 typically around 3-5% of a final size of the compressed image. 163 Split the image into clusters of 181 increases compressed image sizes slightly, typically less than 0.1%. 186 For large cluster sizes (16kB and higher), typical overall image compression [all …]
|
| /freebsd/release/arm64/ |
| H A D | mkisoimages.sh | 12 # mkisoimages.sh [-b] image-label image-name base-bits-dir [extra-bits-dir] 14 # Where -b is passed if the ISO image should be made "bootable" by 16 # image-label is the ISO image label, image-name is the filename of the 17 # resulting ISO image, base-bits-dir contains the image contents and 19 # into base-bits-dir as part of making the image. 59 echo "Usage: $0 [-b] image-label image-name base-bits-dir [extra-bits-dir]" 84 # Look for the EFI System Partition image we dropped in the ISO image. 96 # Create a GPT image containing the EFI partition.
|