/device/sample/skins/WVGAMedDpi/ |
D | layout | 4 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/ |
D | create_base_image_gce.sh | 42 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 …]
|
D | create_base_image_hostlib.sh | 99 --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}" \
|
D | flash-blk-dev.sh | 26 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/ |
D | init.qcom.modem_links.sh | 36 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/ |
D | nanoapp_encr.c | 60 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/ |
D | nanoapp_sign.c | 234 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/ |
D | gl.cpp | 62 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/ |
D | gl2.cpp | 63 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/ |
D | data_image.cpp | 72 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/ |
D | EglImage.h | 32 : pfnEglDestroyImageKHR(pfnEglDestroyImageKHR_), image(image_), dpy(dpy_), id(nextId++) { in EglImage() 37 pfnEglDestroyImageKHR(dpy, image); in ~EglImage() 42 EGLImageKHR image; member
|
D | RenderControl.cpp | 617 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 …]
|
D | Resource.h | 46 delete image; in ~Resource() local 69 EglImage* image = nullptr; member
|
/device/generic/goldfish/tools/ |
D | mk_vbmeta_boot_params.sh | 43 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" )
|
D | README.md | 21 * 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/ |
D | JpegCompressor.cpp | 42 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/ |
D | JpegCompressor.cpp | 42 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/ |
D | check.log | 1 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/ |
D | check.log | 1 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/ |
D | check.log | 1 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/ |
D | appSec.c | 220 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/ |
D | README | 9 # Package with an existing image 10 # First download the image to the android build top directory
|
/device/google/cuttlefish/shared/ |
D | releasetools.py | 42 return [BlockDifference(partition, image) 43 for partition, image in images.items()]
|
/device/google/wahoo/ |
D | init.radio.sh | 26 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/ |
D | init.radio.sh | 30 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
|