HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 1 - 25 of 60) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/grub/grub-0.97/util/
grub-image.in 2 # 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...]
mkbimage 2 # MaKe a Bootable IMAGE --- 1.44, 2.88 and El Torito no-emulation mode
46 image=
65 Make a Bootable IMAGE using GRUB as a bootloader
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 filesyste
    [all...]
Makefile.solaris 25 $(OPTION_UTILS)NOINSTALL_SCRIPTS = grub-image
43 SRC_FILES = Makefile.am Makefile.in grub-image.in grub-install.in \
  /onnv/onnv-gate/usr/src/lib/libdhcpsvc/modules/binfiles/
dhcp_network.c 110 * 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
    [all...]
  /onnv/onnv-gate/usr/src/lib/libdhcpsvc/modules/binfiles/tools/
printnet.c 89 (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...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
font.h 46 unsigned char *image; member in struct:bitmap_data
visual_io.h 99 char *image; /* cursor image bits */ member in struct:vis_cursor
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
croak.t 32 if ($@ =~ /Storable binary image v127.255 more recent than I am \(v2\.\d+\)/)
  /onnv/onnv-gate/usr/src/cmd/tsol/demo/
clonebylabel.sh 41 image=$2
63 echo Cloning $zonename from $image ...
71 /usr/sbin/zfs clone $image zone/$zonename
  /onnv/onnv-gate/usr/src/uts/common/io/fibre-channel/fca/emlxs/
emlxs_fw.c 93 /* Validate requested fw image */
101 /* Return image data and size */
102 fw->image = fw_table->image;
109 fw->image = NULL;
  /onnv/onnv-gate/usr/src/lib/libdll/common/
dlfcn.c 326 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, name)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/libelf/common/
begin.c 199 elf_memory(char *image, size_t sz)
220 elf->ed_image = elf->ed_ident = image;
223 elf->ed_class = image[EI_CLASS];
224 elf->ed_encode = image[EI_DATA];
225 if ((elf->ed_version = image[EI_VERSION]) == 0)
239 * Return a new elf_descriptor which uses the memory image from
240 * ref as the base image of the elf file. Before this elf_begin()
245 * data image of the file in question.
251 * descriptor then the memory image that the ELF_C_IMAGE
257 * elf_update(elf1, ELF_C_WRIMAGE); build memory image
322 char *image; local
    [all...]
update.c 453 char *image; local
468 * manipulate the resulting image. It is expected that the linker
469 * will call elf_swap_wrimage() if necessary to convert the image
497 if ((image = _elf_outmap(elf->ed_fd, outsz, &flag)) == 0)
528 dst.d_buf = (Elf_Void *)image;
553 dst.d_buf = (Elf_Void *)(image + eh->e_phoff);
574 char *start = image + sh->sh_offset;
644 * image.
662 (void) memset(image + hi, byte, sz);
667 dst.d_buf = (Elf_Void *)(image + eh->e_shoff)
    [all...]
  /onnv/onnv-gate/usr/src/tools/elfextract/
elfextract.c 44 static char *image; /* pointer to the ELF file in memory */ variable
46 #define ELFSEEK(offset) ((void *)(image + offset))
236 image = mmap(NULL, len, PROT_READ, MAP_SHARED, fd, 0);
237 if (image == MAP_FAILED) {
  /onnv/onnv-gate/usr/src/tools/mbh_patch/
mbh_patch.c 44 static char *image; /* pointer to the ELF file in memory */ variable
46 #define ELFSEEK(offset) ((void *)(image + offset))
191 image = mmap(NULL, 8192, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
192 if (image == MAP_FAILED) {
  /onnv/onnv-gate/usr/src/cmd/ntfsprogs/
ntfsclone.c 6 * 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 Restore from the special image format\n
1815 ntfs_walk_clusters_ctx image; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/base/
Util.java 42 import java.awt.image.RGBImageFilter;
43 import java.awt.image.FilteredImageSource;
306 * Get an image given a url. If we are on Windows 95, then we
309 public Image getWorkaroundImage(URL url, Component comp) {
310 Image image = comp.getToolkit().getImage(url); local
311 return getWorkaroundImage(image, comp);
315 * Get an image given another. If we are on Windows 95, then we
317 * Otherwise, just return the image directly.
319 public Image getWorkaroundImage(Image image, Component comp)
    [all...]
  /onnv/onnv-gate/usr/src/uts/intel/io/drm/
radeon_state.c 2531 drm_radeon_tex_image_t image; local
    [all...]
radeon_io32.h 102 uint32_t image; member in struct:drm_radeon_texture_32
  /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postmd/
README 23 A program that can be used to display a matrix as a gray scale image on PostScript
34 (254 by default) and PostScript's image operator maps that integer into a gray
  /onnv/onnv-gate/usr/src/cmd/mailx/hdr/
glob.h 75 extern int image; /* File descriptor for image of msg */
  /onnv/onnv-gate/usr/src/uts/common/sys/fibre-channel/fca/emlxs/
emlxs_fw.h 38 #define EMLXS_FW_IMAGE_DEF /* Causes the firmware image to be */
44 /* Unique id for each firmware image */
56 /* Firmware image descriptor */
61 uint8_t *image; member in struct:emlxs_firmware
  /onnv/onnv-gate/usr/src/cmd/file/
magic 101 0 short 0433 Curses screen image
102 0 short 0434 Curses screen image
419 >20 long 0 old format image
420 >20 long 1 standard format image
421 >20 long 2 run-length byte encoded image
422 >20 long 3 XRGB or RGB format image
423 >20 long 4 tiff format image
424 >20 long 5 iff (TAAC format) image
425 >20 long 0xffff experimental format image
429 >23 long 0 old format image
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mailx/
names.c 230 if (image < 0) {
246 image = open(tempEdit, O_RDWR);
248 if (image < 0) {
268 * Now either copy "image" to the desired file
282 dup(image);
283 close(image);
304 fin = Fdopen(image, "r");
307 gettext("Can't reopen image\n"));
360 if (image >= 0) {
361 close(image);
    [all...]
init.c 83 int image; /* File descriptor for image of msg */ variable

Completed in 600 milliseconds

1 2 3