/external/vboot_reference/scripts/image_signing/ |
ensure_no_password.sh | 14 echo "Usage $0 <image>" 18 IMAGE=$1 20 mount_image_partition_ro "$IMAGE" 3 "$ROOTFS"
|
convert_recovery_to_ssd.sh | 7 # Script to convert a recovery image into an SSD image. Changes are made in- 12 Usage: $PROG <image> [--force] [--cgpt=/path/to/cgpt] 14 In-place converts recovery <image> into an SSD image. With --force, does not 24 IMAGE=$1 52 echo "This will modify ${IMAGE} in-place and convert it into an SSD image." 58 kerna_offset=$(partoffset ${IMAGE} 2) 59 kernb_offset=$(partoffset ${IMAGE} 4 [all...] |
strip_boot_from_image.sh | 7 # Script to remove /boot directory from an image. 15 DEFINE_string image "chromiumos_image.bin" \ 16 "Input file name of Chrome OS image to strip /boot from." 26 die "Error: need a valid file by --image" 43 local image=$1 45 # Mount image so we can modify it. 47 mount_image_partition ${image} 3 ${rootfs_dir} 54 # done when the image was built, but needs to be repeated now that we've 60 IMAGE=$(readlink -f "${FLAGS_image}") 61 if [[ -z "${IMAGE}" || ! -f "${IMAGE}" ]]; the [all...] |
make_dev_firmware.sh | 8 # image or system live firmware (EEPROM), and assign proper HWID, FLAGS as well. 41 # the image we are (temporary) working with 42 IMAGE="$(make_temp_file)" 43 IMAGE="$(readlink -f "$IMAGE")" 66 # Reads $IMAGE from $FLAGS_from 71 flashrom -V -r "$IMAGE" 73 flashrom -r "$IMAGE" >"$EXEC_LOG" 2>&1 77 cp -f "$FLAGS_from" "$IMAGE" 81 # Writes $IMAGE to $FLAGS_t [all...] |
tag_image.sh | 16 "Input file name of Chrome OS image to tag/stamp." 50 # Global variable to track if the image is modified. 197 IMAGE=$(readlink -f "${FLAGS_from}") 198 if [[ -z "${IMAGE}" || ! -f "${IMAGE}" ]]; then 199 echo "Missing required argument: --from (image to update)" 206 mount_image_partition_ro "${IMAGE}" 3 "${rootfs}" 210 # mount_image_partition ${IMAGE} 1 ${stateful_dir} 218 mount_image_partition "${IMAGE}" 3 "${rootfs}" 220 # second round, apply the modification to image [all...] |
/external/opencv/otherlibs/highgui/ |
cvcap_socket.cpp | 65 #define IMAGE( i, x, y, n ) *(( unsigned char * )(( i )->imageData \ 176 LOGV("Releasing Image"); 196 IMAGE( img, x, y, 0 ) = pixels[pos + 3] & 0xFF; 198 IMAGE( img, x, y, 1 ) = pixels[pos + 2] & 0xFF; 200 IMAGE( img, x, y, 2 ) = pixels[pos + 1] & 0xFF; 207 // Grabs a frame (image) from a socket. 238 // Release the image if it hasn't been already because we are going to overwrite it.
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
UsimServiceTable.java | 47 IMAGE,
|
/external/vboot_reference/utility/ |
vbutil_what_keys | 9 Usage: vbutil_what_keys [-v|-V] IMAGE [IMAGE...] 11 Given a ChromiumOS disk (or BIOS) image, try to figure out how it's signed.
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
shaders_cache.h | 58 #define SHADERS_GET_IMAGE_SHADER(id) _SHADERS_GET_STAGE(IMAGE, id)
|
/external/opencv/ |
cvjni.h | 42 #define IMAGE( i, x, y, n ) *(( unsigned char * )(( i )->imageData \
154 IMAGE( img, x, y, 0 ) = pixels[x+y*width] & 0xFF;
156 IMAGE( img, x, y, 1 ) = pixels[x+y*width] >> 8 & 0xFF;
158 IMAGE( img, x, y, 2 ) = pixels[x+y*width] >> 16 & 0xFF;
|
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/ |
MusicProvider.java | 55 private static String IMAGE = "image"; 106 String image = music.getString(IMAGE); local 107 if (!image.startsWith("http")) { 108 image = path + image; 115 image, trackNumber, totalTrackCount, duration));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
CreateAssetSetWizardState.java | 32 import java.awt.image.BufferedImage; 66 /** Whether empty space around the source image should be trimmed */ 72 /** If {@link #sourceType} is a {@link SourceType#CLIPART}, the name of the clipart image */ 75 /** If {@link #sourceType} is a {@link SourceType#IMAGE}, the path to the input image */ 81 /** The amount of padding to add around the source image */ 87 /** Whether the image should be cropped */ 150 /** Generate the icon using the image pointed to by {@link #imagePath} */ 151 IMAGE, 174 BufferedImage image = mImageCache != null ? mImageCache.get(path) : null local 189 BufferedImage image = null; local [all...] |
ConfigureAssetSetPage.java | 20 import static java.awt.image.BufferedImage.TYPE_INT_ARGB; 67 import org.eclipse.swt.graphics.Image; 85 import java.awt.image.BufferedImage; 140 /** Most recently set image path: preserved across wizard sessions */ 215 mImageRadio.setText("Image"); 236 fileLabel.setText("Image File:"); 433 showGroup(type.needsColors() && mValues.sourceType != SourceType.IMAGE, 460 // We update the image selection here rather than in {@link #createControl} because 462 // user has chosen a project before attempting to look up the right default image to use 480 // Initial image - use the most recently used image, or the default launche 988 BufferedImage image = entry.getValue(); local 1213 BufferedImage image = entry.getValue(); local 1241 Image image = SwtUtils.convertToSwt(display, coloredImage, false, -1); local [all...] |
/hardware/intel/img/psb_video/src/ |
psb_output.c | 60 #define IMAGE(id) ((object_image_p) object_heap_lookup( &driver_data->image_heap, id )) 221 VAImage *image, 230 /* check for image */ 232 if (*src_x > image->width) *src_x = image->width - 1; 234 if (*src_y > image->height) *src_y = image->height - 1; 236 if (((*width) + (*src_x)) > image->width) *width = image->width - *src_x; 237 if (((*height) + (*src_y)) > image->height) *height = image->height - *src_x 1299 VAImage *image = &obj_image->image; local [all...] |
/prebuilts/go/darwin-x86/src/image/png/ |
reader_test.go | 11 "image" 12 "image/color" 58 func readPNG(filename string) (image.Image, error) { 68 func sng(w io.WriteCloser, filename string, png image.Image) { 80 var paletted *image.Paletted 92 paletted = png.(*image.Paletted) 147 // Write the IMAGE. 148 io.WriteString(w, "IMAGE {\n pixels hex\n" [all...] |
/prebuilts/go/linux-x86/src/image/png/ |
reader_test.go | 11 "image" 12 "image/color" 58 func readPNG(filename string) (image.Image, error) { 68 func sng(w io.WriteCloser, filename string, png image.Image) { 80 var paletted *image.Paletted 92 paletted = png.(*image.Paletted) 147 // Write the IMAGE. 148 io.WriteString(w, "IMAGE {\n pixels hex\n" [all...] |
/hardware/intel/img/psb_video/src/android/ |
psb_output_android.c | 55 #define IMAGE(id) ((object_image_p) object_heap_lookup( &driver_data->image_heap, id ))
|
/hardware/intel/img/psb_video/src/x11/ |
psb_x11.c | 53 #define IMAGE(id) ((object_image_p) object_heap_lookup( &driver_data->image_heap, id ))
|
psb_ctexture.c | 56 #define IMAGE(id) ((object_image_p) object_heap_lookup( &driver_data->image_heap, id )) 430 /* adjust local window on MIPI, make sure it is not covered by HDMI image */
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
NewProjectWizard.java | 140 iconState.sourceType = CreateAssetSetWizardState.SourceType.IMAGE;
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/common/ |
html.js | 85 IMAGE: 'image',
|
/external/owasp/sanitizer/lib/htmlparser-1.3/ |
htmlparser-1.3-with-transitions.jar | |
htmlparser-1.3.jar | |
/prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ |
Tix.py | 43 IMAGE = 'image' 92 search for image files. The standard bitmap directory 95 command, the image files of an applications can 160 """Locates an image file of the name name.xpm, name.xbm or name.ppm 163 extensions) exist, then the image type is chosen according to the 167 image files in your application. When successful, this command 168 returns the name of the newly created image, which can be used to 169 configure the -image option of the Tk and Tix widgets. 403 raise RuntimeError, 'Too early to create image' [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/ |
Tix.py | 43 IMAGE = 'image' 92 search for image files. The standard bitmap directory 95 command, the image files of an applications can 160 """Locates an image file of the name name.xpm, name.xbm or name.ppm 163 extensions) exist, then the image type is chosen according to the 167 image files in your application. When successful, this command 168 returns the name of the newly created image, which can be used to 169 configure the -image option of the Tk and Tix widgets. 403 raise RuntimeError, 'Too early to create image' [all...] |