Searched refs:image (Results 1 - 25 of 33) sorted by relevance

12

/osnet-11/usr/src/grub/grub-0.97/util/
H A Dgrub-image.in2 # grub-image - Create a GRUB boot filesystem image and tarball
59 image=$bootdir.ext2fs
74 # Create a new filesystem image of the specified size.
75 if test ! -f $image; then
81 echo "# Creating $SIZE disk image \`$image'"
82 trap "rm -f $image" 0
83 dd if=/dev/zero of=$image bs=$SIZE count=1 >/dev/null
84 $mke2fs -F $image
[all...]
H A Dmkbimage46 image=
70 Directory where the boot.image and the partition subdirectories
83 Type of the image to create. Choices are '1.20', '1.44', '1.60',
141 # create a filesystem of type $fs in $image with offset $offset
150 mkfs.$fs -F $image
152 losetup $lo_options /dev/loop1 $image
160 # copy ${image}1/* to ${image}:/, assuming ${image} contains a filesystem
181 for dir in $(cd ${image}
[all...]
/osnet-11/usr/src/lib/libdhcpsvc/modules/binfiles/
H A Ddhcp_network.c110 * image, then, once the inactive image has completed the hash chain
112 * atomically switched, making the formerly-inactive image authoritative.
113 * After the image switch, the update code then updates the formerly-active
114 * image's hash chains to match the active image's hash chains.
118 * inactive image's hash chains with the active image's chains. Note that
119 * the atomic image switch serves as the "commit point" for the operation:
329 uchar_t image; local
573 uchar_t image; local
698 uchar_t image; local
833 uchar_t image; local
1189 uchar_t image, dirty; local
1430 read_hashhead(int fd, dn_recid_t *recid_headp, uint16_t cidhash, uchar_t image) argument
1446 write_hashhead(int fd, dn_recid_t recid_head, uint16_t cidhash, uchar_t image) argument
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/kern/efi/
H A Dinit.c85 grub_efi_loaded_image_t *image = NULL; local
88 image = grub_efi_get_loaded_image (grub_efi_image_handle);
89 if (!image)
91 *device = grub_efidisk_get_device_name (image->device_handle);
92 *path = grub_efi_get_filename (image->file_path);
94 grub_efi_net_config (image->device_handle, device, path);
H A Defi.c209 /* Search the mods section from the PE32/PE32+ image. This code uses
214 grub_efi_loaded_image_t *image; local
222 image = grub_efi_get_loaded_image (grub_efi_image_handle);
223 if (! image)
226 header = image->image_base;
244 info = (struct grub_module_info *) ((char *) image->image_base
/osnet-11/usr/src/lib/libdhcpsvc/modules/binfiles/tools/
H A Dprintnet.c89 (void) printf("%12s: %d\n", "active image", header.dnh_image);
90 (void) printf("%12s: %d\n", "temp image", header.dnh_tempimage);
105 unsigned int image, hash; local
108 for (image = 0; image < 2; image++) {
109 if (header.dnh_cidhash[hash][image] == DN_NOREC)
112 (void) printf(" hash %4d/%d: ", hash, image);
113 recid = header.dnh_cidhash[hash][image];
114 for (; recid != DN_NOREC; recid = rec.rec_next[image]) {
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Dcroak.t32 if ($@ =~ /Storable binary image v127.255 more recent than I am \(v2\.\d+\)/)
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-pe2elf.c1 /* grub-pe2elf.c - tool to convert pe image to elf. */
52 Tool to convert pe image to elf.\n\
124 write_section_data (FILE* fp, char *image, argument
130 char *pe_strtab = (image + pe_chdr->symtab_offset
192 grub_util_write_image_at (image + pe_shdr->raw_data_offset,
223 write_reloc_section (FILE* fp, char *image, argument
239 pe_rel = (struct grub_pe32_reloc *) (image + pe_sec->relocations_offset);
261 addr = (grub_uint32_t *)(image + pe_sec->raw_data_offset + ofs);
266 code = image[pe_sec->raw_data_offset + ofs - 1];
294 grub_util_write_image_at (image
313 write_symbol_table(FILE* fp, char *image, struct grub_pe32_coff_header *pe_chdr, struct grub_pe32_section_table *pe_shdr, int *section_map) argument
453 convert_pe(FILE* fp, char *image) argument
485 char *image; local
[all...]
H A Dgrub-mkstandalone.in4 # Make GRUB rescue image
46 Make GRUB rescue image.
52 -O, --format=FORMAT generate an image in format
59 $self generates a standalone image (containing all modules) in the selected format
H A Dgrub-mknetdir.in124 --debug-image)
126 --debug-image=*)
127 debug_image=`echo "$option" | sed 's/--debug-image=//'` ;;
H A Dgrub-mkrescue.in4 # Make GRUB rescue image
52 Make GRUB rescue image.
62 $self generates a bootable rescue image with specified source files, source
338 # build iso image
H A Dgrub-install.in150 image that's written to disk.
289 --debug-image)
291 --debug-image=*)
292 debug_image="`echo "$option" | sed 's/--debug-image=//'`" ;;
452 # devices, in order that only one image can be automatically loaded
453 # from them. The image must always reside under /EFI/BOOT, and it
603 # Create the core image. First, auto-detect the filesystem module.
708 # we need to hardcode the partition number in the core image's prefix.
818 # Try to make this image bootable using the EFI Boot Manager, if available.
841 # Add a new entry for the image w
[all...]
/osnet-11/usr/src/lib/libdll/common/
H A Ddlfcn.c326 NSImage image; member in struct:Dll_s
339 static const char e_static[] = T("image statically linked");
367 NSObjectFileImage image; local
390 switch (NSCreateObjectFileImageFromFile(path, &image))
393 dll->module = NSLinkModule(image, path, (mode & RTLD_LAZY) ? 0 : NSLINKMODULE_OPTION_BINDNOW);
394 NSDestroyObjectFileImage(image);
402 dll->image = NSAddImage(path, 0);
403 if (!dll->image)
448 else if (dll->image)
450 if (!NSIsSymbolNameDefinedInImage(dll->image, nam
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/loader/
H A Dxnu_resume.c35 /* Free loaded image */
50 void *image; local
96 /* Unload image if any. */
134 image = get_virtual_current_address (ch);
150 /* Read image. */
152 || grub_file_read (file, image, hibhead.image_size)
171 grub_dprintf ("xnu", "image at 0x%x\n",
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfsclone.c6 * Special image format support copyright (c) 2004 Per Olofsson
8 * Clone NTFS data and/or metadata to a sparse file, image, device or stdout.
149 ntfs_walk_clusters_ctx *image; member in struct:ntfs_walk_cluster
169 #define IMAGE_MAGIC "\0ntfsclone-image"
178 * stupidly used the volume version as the image version... )-: I hope NTFS
182 * NOTE: Only bump the minor version if the image format and header are still
303 " Efficiently clone NTFS to a sparse file, image, device or standard output.\n"
307 " -s, --save-image Save to the special image format\n"
308 " -r, --restore-image Restor
491 is_critical_metadata(ntfs_walk_clusters_ctx *image, runlist *rl) argument
655 dump_clusters(ntfs_walk_clusters_ctx *image, runlist *rl) argument
945 wipe_timestamps(ntfs_walk_clusters_ctx *image) argument
960 wipe_resident_data(ntfs_walk_clusters_ctx *image) argument
986 clone_logfile_parts(ntfs_walk_clusters_ctx *image, runlist *rl) argument
1740 ignore_bad_clusters(ntfs_walk_clusters_ctx *image) argument
1815 ntfs_walk_clusters_ctx image; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/gfxmenu/
H A Dgui_image.c1 /* gui_image.c - GUI component to display an image. */
157 grub_error (grub_errno, "failed to scale bitmap for image component");
265 grub_gui_image_t image; local
266 image = grub_zalloc (sizeof (*image));
267 if (! image)
269 image->component.ops = &image_ops;
270 return (grub_gui_component_t) image;
/osnet-11/usr/src/grub/grub2/util/powerpc/ieee1275/
H A Dgrub-mkrescue.in4 # Make GRUB rescue image
43 Make GRUB rescue image.
52 $self generates a bootable rescue CD image for PowerMac and CHRP.
/osnet-11/usr/src/grub/grub2/util/grub.d/
H A D10_linux.in150 echo "Found linux image: $linux" >&2
185 echo "Found initrd image: ${dirname}/${initrd}" >&2
/osnet-11/usr/src/grub/grub2/
H A Dgentpl.py414 def image(platform): function
415 r = set_canonical_name_suffix(".image")
416 r += gvar_add("noinst_PROGRAMS", "[+ name +].image")
433 r += rule("[+ name +].img", "[+ name +].image$(EXEEXT)", """
552 return rules("image", image)
/osnet-11/usr/src/grub/grub2/tests/util/
H A Dgrub-shell.in51 --files=FILES add files to the image
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/t/
H A Dautoescape.t183 onclick => 'alert("===> image button")',
187 qq{<input type="image" name="button_name" src="/source/URL" align="middle" onclick="alert("===> image button")" />},
/osnet-11/usr/src/lib/libldap4/misc/
H A Dldaptemplates.conf72 # jpeg - inlined JPEG image
73 # jpegbtn - JPEG image button
74 # fax - inlined Fax image
75 # faxbtn - Fax image button
545 "image icon"
551 image
/osnet-11/usr/src/lib/brand/solaris/zone/
H A Dcommon.ksh44 sanity_fail_vers=$(gettext " Sanity Check: the Solaris image (release %s) is not an OpenSolaris image and cannot be installed in this type of branded zone.")
45 p2ving=$(gettext " Updating: Converting image to non-global.")
64 f_gz_image=$(gettext "Cannot attach global zone image")
65 f_image_arch_mismatch=$(gettext "Current architecture (%s) doesn't match zone image architecture (%s).")
76 v_update_format=$(gettext "Updating image format")
77 e_update_format=$(gettext "Updating image format failed")
89 f_sanity_variant=$(gettext " Sanity Check: FAILED, couldn't determine %s from image.")
93 f_list=$(gettext "Could not list packages in image: %s")
94 f_osnet=$(gettext "Could not find the osnet-incorporation package installed in image
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/
H A Dh2xs.PL1765 my ($type, $image);
1766 if ( ($type, $image) =
1769 and not ($image eq 'T_PACKED' and $typemap eq $stdtypemap)) {
1770 $typemap{normalize_type($type)} = $image;
/osnet-11/usr/src/grub/grub2/build-bios/grub-core/
H A DMakefile22426 am__append_17405 = boot.image
22432 #am__append_17410 = boot.image
22438 #am__append_17415 = boot.image
22445 am__append_17420 = cdboot.image pxeboot.image \
22446 diskboot.image
22458 #am__append_17425 = diskboot.image
22465 am__append_17430 = lnxboot.image
22471 #am__append_17435 = xz_decompress.image
22477 #am__append_17440 = xz_decompress.image
[all...]

Completed in 154 milliseconds

12