/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 …]
|
H A D | libpmcstat_process.c | 56 * Associate an AOUT image with a process. 61 struct pmcstat_image *image, uintptr_t baseaddr) in pmcstat_process_aout_exec() argument 64 (void) image; in pmcstat_process_aout_exec() 70 * Associate an ELF image with a process. 75 struct pmcstat_image *image, uintptr_t baseaddr, uintptr_t dynaddr, in pmcstat_process_elf_exec() argument 81 assert(image->pi_type == PMCSTAT_IMAGE_ELF32 || in pmcstat_process_elf_exec() 82 image->pi_type == PMCSTAT_IMAGE_ELF64); in pmcstat_process_elf_exec() 89 pmcstat_image_link(pp, image, image->pi_vaddr + dynaddr); in pmcstat_process_elf_exec() 99 if (image->pi_isdynamic) { in pmcstat_process_elf_exec() 117 rtldimage = pmcstat_image_from_path(image->pi_dynlinkerpath, in pmcstat_process_elf_exec() [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 | 42 .Nd create a file system image from a directory tree or a mtree manifest 58 .Op Fl s Ar image-size 61 .Ar image-file 67 creates a file system image into 68 .Ar image-file 81 .Ar image-file . 87 Set the byte order of the image to 105 free blocks exist in the image. 110 indicates a percentage of the calculated image size. 127 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 …]
|
H A D | p1020rdb-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 …]
|
/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/ |
H A D | Makefile.vm | 7 VMTARGETS= vm-image 19 VHD_DESC= Azure, VirtualPC, Hyper-V, Xen disk image 20 VMDK_DESC= VMWare, VirtualBox disk image 21 QCOW2_DESC= Qemu, KVM disk image 22 RAW_DESC= Unformatted raw disk image 33 AZURE_DESC= Microsoft Azure platform image 36 BASIC-CI_DESC= Image for CI 43 EC2-BASE_DESC= Amazon EC2 image 44 EC2-CLOUD-INIT_DESC= Amazon EC2 Cloud-Init image 45 EC2-SMALL_DESC= Amazon EC2 small image [all …]
|
H A D | Makefile.mirrors | 80 . for IMAGE in ${IMAGES} 83 mv ${OSRELEASE}-${BOARDNAME}.${IMAGE}.xz \ 84 ${OSRELEASE}-${BOARDNAME}-${SNAP_SUFFIX}.${IMAGE}.xz 85 cp -p ${RELEASEDIR}/${OSRELEASE}-${BOARDNAME}-${SNAP_SUFFIX}.${IMAGE}.xz \ 86 ${ISO_DIR}/${OSRELEASE}-${BOARDNAME}-${SNAP_SUFFIX}.${IMAGE}.xz 89 …{TARGET}/${TARGET_ARCH}/ISO-IMAGES/${REVISION}/${OSRELEASE}-${BOARDNAME}-${SNAP_SUFFIX}.${IMAGE}.xz 91 . if exists(${RELEASEDIR}/${OSRELEASE}-${IMAGE}) 93 mv ${OSRELEASE}-${IMAGE} \ 94 ${OSRELEASE}-${SNAP_SUFFIX}-${IMAGE} 95 cp -p ${RELEASEDIR}/${OSRELEASE}-${SNAP_SUFFIX}-${IMAGE} \ [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/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/tools/tools/nanobsd/embedded/ |
H A D | README | 15 Image size is minimal, we grow the last partition on first boot to 22 beaglebone.cfg Create a bootable beaglebone image 23 qemu-amd64.cfg Create a bootable amd64 image for qemu (W) 24 qemu-i386.cfg Create a bootable i386 image for qemu (W) 25 qemu-powerpc.cfg Create a bootable 32-bit powerpc image for 27 qemu-powerpc64.cfg Create a bootable 64-bit IBM-flavor image for 29 rpi.cfg Create a bootable image for Raspberry Pi B 30 rpi2.cfg Create a bootable image for Raspberry Pi2 34 i386: qemu-system-i386 -m 512 -hda _.disk.image.qemu-i386.qcow2 -nographic 35 amd64: qemu-system-amd64 -m 512 -hda _.disk.image.qemu-amd64.qcow2 -nographic
|
/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. 70 echo "Usage: $0 [-b] image-label image-name base-bits-dir [extra-bits-dir]" 95 # Look for the EFI System Partition image we dropped in the ISO image. 107 # Create a GPT image containing the EFI partition.
|
/freebsd/release/riscv/ |
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. 70 echo "Usage: $0 [-b] image-label image-name base-bits-dir [extra-bits-dir]" 95 # Look for the EFI System Partition image we dropped in the ISO image. 107 # Create a GPT image containing the EFI partition.
|