Home
last modified time | relevance | path

Searched refs:image (Results 1 – 25 of 108) sorted by relevance

12345

/device/sample/skins/WVGAMedDpi/
Dlayout4 image background_port.png
9 image background_land.png
24 image controls.png
28 image button.png
33 image button.png
38 image button.png
43 image arrow_up.png
48 image arrow_down.png
53 image arrow_left.png
58 image arrow_right.png
[all …]
/device/google/cuttlefish/tools/
Dcreate_base_image_gce.sh42 sudo mkdir /mnt/image
43 sudo mount /dev/sdb1 /mnt/image
44 cp "${debs[@]}" /mnt/image/tmp
45 sudo mount -t sysfs none /mnt/image/sys
46 sudo mount -t proc none /mnt/image/proc
47 sudo mount --bind /dev/ /mnt/image/dev
48 sudo mount --bind /dev/pts /mnt/image/dev/pts
49 sudo mount --bind /run /mnt/image/run
51 sudo cp /etc/resolv.conf /mnt/image/etc/
52 sudo chroot /mnt/image /usr/bin/apt update
[all …]
Dcreate_base_image_hostlib.sh99 --image-family="${FLAGS_source_image_family}" \
100 --image-project="${FLAGS_source_image_project}" \
108 --image-family="${FLAGS_source_image_family}" \
109 --image-project="${FLAGS_source_image_project}" \
140 --image-project="${FLAGS_build_project}" \
141 --image="${FLAGS_dest_image}" \
153 --source-image="${FLAGS_dest_image}" \
154 --source-image-project="${FLAGS_build_project}" \
Dflash-blk-dev.sh26 if [ ! -e "${image}" ]; then
80 imgsize=`ls -lah ${image} | awk -F " " {'print $5'}`
85 pv ${image} > /dev/${blk_dev}
87 dd if=${image} of=/dev/${blk_dev} bs=1M conv=sync,noerror status=progress
125 image=$1
126 if [ "${image}" == "" ]; then
/device/google/coral/
Dinit.qcom.modem_links.sh36 cd /firmware/image
74 ln -s /firmware/image/athwlan.bin /system/etc/firmware/athwlan.bin
75 ln -s /firmware/image/fakeboar.bin /system/etc/firmware/fakeBoardData_AR6004.bin
76 ln -s /firmware/image/otp.bin /system/etc/firmware/otp.bin
77 ln -s /firmware/image/utf.bin /system/etc/firmware/utf.bin
81 cd /firmware/image
86 ln -s /firmware/image/$imgfile /system/etc/firmware/$imgfile 2>/dev/null
92 log -p w -t PIL no modem image found;;
98 ln -s /firmware/image/$imgfile /system/etc/firmware/$imgfile 2>/dev/null
102 log -p w -t PIL no adsp image found;;
[all …]
/device/google/contexthub/util/nanoapp_encr/
Dnanoapp_encr.c60 struct ImageHeader *image; in handleEncrypt() local
82 if (bufUsed <= sizeof(*image)) { in handleEncrypt()
89 if (((bufUsed - sizeof(*image)) % AES_BLOCK_SIZE) != 0) in handleEncrypt()
90 padLen = AES_BLOCK_SIZE - ((bufUsed - sizeof(*image)) % AES_BLOCK_SIZE); in handleEncrypt()
100 image = (struct ImageHeader *)buf; in handleEncrypt()
102 if (bufUsed >= sizeof(*image) && image->aosp.magic == NANOAPP_AOSP_MAGIC && in handleEncrypt()
103 image->aosp.header_version == 1 && image->layout.magic == GOOGLE_LAYOUT_MAGIC) { in handleEncrypt()
110 if ((image->aosp.flags & NANOAPP_SIGNED_FLAG) != 0) { in handleEncrypt()
114 if ((image->aosp.flags & NANOAPP_ENCRYPTED_FLAG) != 0) { in handleEncrypt()
119 image->aosp.flags |= NANOAPP_ENCRYPTED_FLAG; in handleEncrypt()
[all …]
/device/google/contexthub/util/nanoapp_sign/
Dnanoapp_sign.c234 struct ImageHeader *image = (struct ImageHeader *)buf; in handleVerify() local
235 struct AppSecSignHdr *secHdr = (struct AppSecSignHdr *)&image[1]; in handleVerify()
242 if (bufUsed < (sizeof(*image) + sizeof(*secHdr))) { in handleVerify()
251 if (!(image->aosp.flags & NANOAPP_SIGNED_FLAG)) { in handleVerify()
255 sigData = bufUsed - (secHdr->appDataLen + sizeof(*image) + sizeof(*secHdr)); in handleVerify()
326 struct ImageHeader *image = (struct ImageHeader *)buf; in handleSign() local
327 struct AppSecSignHdr *secHdr = (struct AppSecSignHdr *)&image[1]; in handleSign()
329 if (!(image->aosp.flags & NANOAPP_SIGNED_FLAG)) { in handleSign()
333 image = (struct ImageHeader *)buf; in handleSign()
334 secHdr = (struct AppSecSignHdr *)&image[1]; in handleSign()
[all …]
/device/generic/goldfish-opengl/system/GLESv1/
Dgl.cpp62 EGLImage_t *image = (EGLImage_t*)img; in glEGLImageTargetTexture2DOES() local
64 if (image->target == EGL_NATIVE_BUFFER_ANDROID) { in glEGLImageTargetTexture2DOES()
66 android_native_buffer_t* native_buffer = image->native_buffer; in glEGLImageTargetTexture2DOES()
84 else if (image->target == EGL_GL_TEXTURE_2D_KHR) { in glEGLImageTargetTexture2DOES()
87 GLeglImageOES hostImage = reinterpret_cast<GLeglImageOES>((intptr_t)image->host_egl_image); in glEGLImageTargetTexture2DOES()
100 EGLImage_t *image = (EGLImage_t*)img; in glEGLImageTargetRenderbufferStorageOES() local
102 if (image->target == EGL_NATIVE_BUFFER_ANDROID) { in glEGLImageTargetRenderbufferStorageOES()
103 android_native_buffer_t* native_buffer = ((EGLImage_t*)image)->native_buffer; in glEGLImageTargetRenderbufferStorageOES()
/device/generic/goldfish-opengl/system/GLESv2/
Dgl2.cpp63 EGLImage_t *image = (EGLImage_t*)img; in glEGLImageTargetTexture2DOES() local
64 GLeglImageOES hostImage = reinterpret_cast<GLeglImageOES>((intptr_t)image->host_egl_image); in glEGLImageTargetTexture2DOES()
66 if (image->target == EGL_NATIVE_BUFFER_ANDROID) { in glEGLImageTargetTexture2DOES()
68 android_native_buffer_t* native_buffer = image->native_buffer; in glEGLImageTargetTexture2DOES()
87 else if (image->target == EGL_GL_TEXTURE_2D_KHR) { in glEGLImageTargetTexture2DOES()
103 EGLImage_t *image = (EGLImage_t*)img; in glEGLImageTargetRenderbufferStorageOES() local
105 if (image->target == EGL_NATIVE_BUFFER_ANDROID) { in glEGLImageTargetRenderbufferStorageOES()
106 android_native_buffer_t* native_buffer = ((EGLImage_t*)image)->native_buffer; in glEGLImageTargetRenderbufferStorageOES()
/device/google/cuttlefish/host/libs/config/
Ddata_image.cpp72 const std::string& image, int num_mb, const std::string& image_fmt) { in CreateBlankImage() argument
73 LOG(DEBUG) << "Creating " << image; in CreateBlankImage()
79 auto fd = cuttlefish::SharedFD::Open(image, O_CREAT | O_TRUNC | O_RDWR, 0666); in CreateBlankImage()
81 LOG(ERROR) << "`truncate --size=" << num_mb << "M " << image in CreateBlankImage()
88 cuttlefish::execute({"/sbin/mkfs.ext4", image}); in CreateBlankImage()
91 cuttlefish::execute({make_f2fs_path, "-t", image_fmt, image, "-g", "android"}); in CreateBlankImage()
105 image}); in CreateBlankImage()
116 auto fd = cuttlefish::SharedFD::Open(image, O_RDWR); in CreateBlankImage()
118 LOG(ERROR) << "Writing MBR to " << image << " failed:" << fd->StrError(); in CreateBlankImage()
123 << "' for " << image << ", treating as 'none'."; in CreateBlankImage()
/device/generic/opengl-transport/host/libs/virglrenderer/
DEglImage.h32 : pfnEglDestroyImageKHR(pfnEglDestroyImageKHR_), image(image_), dpy(dpy_), id(nextId++) { in EglImage()
37 pfnEglDestroyImageKHR(dpy, image); in ~EglImage()
42 EGLImageKHR image; member
DRenderControl.cpp617 if (!res->image) { in rcBindTexture()
623 EGLImageKHR image = s_egl.eglCreateImageKHR( in rcBindTexture() local
625 if (image == EGL_NO_IMAGE_KHR) in rcBindTexture()
628 EglImage* img = new (std::nothrow) EglImage(rc->dpy, image, s_egl.eglDestroyImageKHR); in rcBindTexture()
630 s_egl.eglDestroyImageKHR(rc->dpy, image); in rcBindTexture()
636 res->image = img; in rcBindTexture()
641 s_gles1.glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, res->image->image); in rcBindTexture()
644 s_gles3.glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, res->image->image); in rcBindTexture()
656 if (!res->image) { in rcBindRenderbuffer()
662 EGLImageKHR image = s_egl.eglCreateImageKHR( in rcBindRenderbuffer() local
[all …]
DResource.h46 delete image; in ~Resource() local
69 EglImage* image = nullptr; member
/device/generic/goldfish/tools/
Dmk_vbmeta_boot_params.sh43 readonly VBMETA_DIGEST=$(${AVBTOOL:-avbtool} calculate_vbmeta_digest --image $VBMETAIMG)
46 readonly INFO_OUTPUT=$(${AVBTOOL:-avbtool} info_image --image $VBMETAIMG | grep "^Algorithm:")
63 MY_OUTPUT=$(${AVBTOOL:-avbtool} info_image --image $1 | grep "$2" )
DREADME.md21 * Combine multiple images into one image with multiple partitions
22 * Sparse image detection
25 Each line with the order of ``</path/to/image>`` ``<partition label>`` ``<partition number>``
/device/generic/goldfish/camera/
DJpegCompressor.cpp42 typedef int (*CompressFunc)(JpegStub* stub, const void* image,
69 status_t NV21JpegCompressor::compressRawImage(const void* image, in compressRawImage() argument
76 return (status_t)(*f)(&mStub, image, width, height, quality, exifData); in compressRawImage()
/device/google/cuttlefish/guest/hals/camera/
DJpegCompressor.cpp42 typedef int (*CompressFunc)(JpegStub* stub, const void* image, int width,
69 status_t NV21JpegCompressor::compressRawImage(const void* image, in compressRawImage() argument
77 return (status_t)(*f)(&mStub, image, width, height, quality, exifData); in compressRawImage()
/device/google/coral/json-c/
Dcheck.log1 HEAD is now at 6442a2f... json-c: Add libjson to the vendor image
2 HEAD is now at 6442a2f... json-c: Add libjson to the vendor image
/device/google/crosshatch/json-c/
Dcheck.log1 HEAD is now at 6442a2f... json-c: Add libjson to the vendor image
2 HEAD is now at 6442a2f... json-c: Add libjson to the vendor image
/device/google/bonito/json-c/
Dcheck.log1 HEAD is now at 6442a2f... json-c: Add libjson to the vendor image
2 HEAD is now at 6442a2f... json-c: Add libjson to the vendor image
/device/google/contexthub/firmware/os/core/
DappSec.c220 struct ImageHeader *image; in appSecProcessIncomingHdr() local
229 image = (struct ImageHeader *)hdr; hdr += sizeof(*image); in appSecProcessIncomingHdr()
230 aosp = &image->aosp; in appSecProcessIncomingHdr()
234 image->layout.version != 1 || in appSecProcessIncomingHdr()
235 image->layout.magic != GOOGLE_LAYOUT_MAGIC) in appSecProcessIncomingHdr()
238 needBytes = sizeof(*image); in appSecProcessIncomingHdr()
310 .fwFlags = image->layout.flags, in appSecProcessIncomingHdr()
312 .payInfoType = image->layout.payload, in appSecProcessIncomingHdr()
317 if (image->layout.flags & FL_APP_HDR_CHRE) { in appSecProcessIncomingHdr()
329 switch(image->layout.payload) { in appSecProcessIncomingHdr()
/device/linaro/hikey/factory-images/
DREADME9 # Package with an existing image
10 # First download the image to the android build top directory
/device/google/cuttlefish/shared/
Dreleasetools.py42 return [BlockDifference(partition, image)
43 for partition, image in images.items()]
/device/google/wahoo/
Dinit.radio.sh26 cp -r /firmware/image/modem_pr/mcfg/configs/* /data/vendor/radio/modem_config
31 cp /firmware/image/modem_pr/mbn_ota.txt /data/vendor/radio/modem_config
/device/google/bonito/
Dinit.radio.sh30 cp -r /vendor/firmware_mnt/image/modem_pr/mcfg/configs/* /data/vendor/radio/modem_config
35 cp /vendor/firmware_mnt/image/modem_pr/mbn_ota.txt /data/vendor/radio/modem_config

12345