/device/google/wahoo/lisa/targetdev/ |
D | powerhint.py | 7 def restart_power_hal(target): argument 9 target.execute('pkill -f android\.hardware\.power') 12 def set_touch_param(target, opcode, new_val): argument 18 target.pull(DEVICE_PATH, tmp.name) 27 target.push(tmp.name, DEVICE_PATH) 30 restart_power_hal(target) 33 def set_touch_boost(target, boost=50): argument 38 set_touch_param(target, opcode, boost) 41 def set_touch_min_freq(target, cluster, freq=1100): argument 44 set_touch_param(target, opcode, freq) [all …]
|
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/ |
D | GLClientState.cpp | 477 int GLClientState::bindBuffer(GLenum target, GLuint id) in bindBuffer() argument 480 switch(target) { in bindBuffer() 523 void GLClientState::bindIndexedBuffer(GLenum target, GLuint index, GLuint buffer, GLintptr offset, … in bindIndexedBuffer() argument 524 switch (target) { in bindIndexedBuffer() 560 int GLClientState::getMaxIndexedBufferBindings(GLenum target) const { in getMaxIndexedBufferBindings() 561 switch (target) { in getMaxIndexedBufferBindings() 575 bool GLClientState::isNonIndexedBindNoOp(GLenum target, GLuint buffer) { in isNonIndexedBindNoOp() argument 576 if (buffer != !getLastEncodedBufferBind(target)) return false; in isNonIndexedBindNoOp() 578 int idOrError = getBuffer(target); in isNonIndexedBindNoOp() 586 bool GLClientState::isIndexedBindNoOp(GLenum target, GLuint index, GLuint buffer, GLintptr offset, … in isIndexedBindNoOp() argument [all …]
|
D | GLClientState.h | 71 GLenum target; member 243 int bindBuffer(GLenum target, GLuint id); 244 …void bindIndexedBuffer(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr siz… 245 int getMaxIndexedBufferBindings(GLenum target) const; 246 bool isNonIndexedBindNoOp(GLenum target, GLuint buffer); 247 …bool isIndexedBindNoOp(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr siz… 249 int getBuffer(GLenum target); 250 GLuint getLastEncodedBufferBind(GLenum target); 251 void setLastEncodedBufferBind(GLenum target, GLuint id); 311 void enableTextureTarget(GLenum target); [all …]
|
/device/generic/goldfish-opengl/system/egl/ |
D | ClientAPIExts.in | 9 (GLenum target, GLeglImageOES image), 10 (target, image)) 13 (GLenum target, GLeglImageOES image), 14 (target, image)) 114 (GLenum target, GLuint renderbuffer), 115 (target, renderbuffer)) 126 (GLenum target, GLenum internalformat, GLsizei width, GLsizei height), 127 (target, internalformat, width, height)) 130 (GLenum target, GLenum pname, GLint* params), 131 (target, pname, params)) [all …]
|
/device/generic/goldfish-opengl/tests/gles_android_wrapper/ |
D | gles.cpp | 126 void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params) in glGetTexParameterfv() argument 128 getDispatch()->glGetTexParameterfv(target, pname, params); in glGetTexParameterfv() 176 void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) in glMultiTexCoord4f() argument 178 getDispatch()->glMultiTexCoord4f(target, s, t, r, q); in glMultiTexCoord4f() 221 void glTexEnvf(GLenum target, GLenum pname, GLfloat param) in glTexEnvf() argument 223 getDispatch()->glTexEnvf(target, pname, param); in glTexEnvf() 226 void glTexEnvfv(GLenum target, GLenum pname, const GLfloat *params) in glTexEnvfv() argument 228 getDispatch()->glTexEnvfv(target, pname, params); in glTexEnvfv() 231 void glTexParameterf(GLenum target, GLenum pname, GLfloat param) in glTexParameterf() argument 233 getDispatch()->glTexParameterf(target, pname, param); in glTexParameterf() [all …]
|
/device/generic/goldfish-opengl/system/GLESv2/ |
D | gl2.cpp | 56 void glEGLImageTargetTexture2DOES(void * self, GLenum target, GLeglImageOES img) in glEGLImageTargetTexture2DOES() argument 59 (void)target; in glEGLImageTargetTexture2DOES() 61 DBG("glEGLImageTargetTexture2DOES v2 target=%#x img=%p\n", target, img); in glEGLImageTargetTexture2DOES() 66 if (image->target == EGL_NATIVE_BUFFER_ANDROID) { in glEGLImageTargetTexture2DOES() 81 ctx->override2DTextureTarget(target); in glEGLImageTargetTexture2DOES() 82 ctx->associateEGLImage(target, hostImage); in glEGLImageTargetTexture2DOES() 85 ctx->restore2DTextureTarget(target); in glEGLImageTargetTexture2DOES() 87 else if (image->target == EGL_GL_TEXTURE_2D_KHR) { in glEGLImageTargetTexture2DOES() 89 ctx->override2DTextureTarget(target); in glEGLImageTargetTexture2DOES() 90 ctx->associateEGLImage(target, hostImage); in glEGLImageTargetTexture2DOES() [all …]
|
/device/generic/goldfish-opengl/system/GLESv1_enc/ |
D | GLEncoder.cpp | 355 void GLEncoder::s_glBindBuffer(void *self, GLenum target, GLuint id) in s_glBindBuffer() argument 359 ctx->m_state->bindBuffer(target, id); in s_glBindBuffer() 361 ctx->m_glBindBuffer_enc(self, target, id); in s_glBindBuffer() 364 void GLEncoder::s_glBufferData(void * self, GLenum target, GLsizeiptr size, const GLvoid * data, GL… in s_glBufferData() argument 367 GLuint bufferId = ctx->m_state->getBuffer(target); in s_glBufferData() 372 ctx->m_glBufferData_enc(self, target, size, data, usage); in s_glBufferData() 375 void GLEncoder::s_glBufferSubData(void * self, GLenum target, GLintptr offset, GLsizeiptr size, con… in s_glBufferSubData() argument 378 GLuint bufferId = ctx->m_state->getBuffer(target); in s_glBufferSubData() 384 ctx->m_glBufferSubData_enc(self, target, offset, size, data); in s_glBufferSubData() 657 void GLEncoder::s_glBindTexture(void* self, GLenum target, GLuint texture) in s_glBindTexture() argument [all …]
|
D | gl_entry.cpp | 22 void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat* params); 32 void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); 41 void glTexEnvf(GLenum target, GLenum pname, GLfloat param); 42 void glTexEnvfv(GLenum target, GLenum pname, const GLfloat* params); 43 void glTexParameterf(GLenum target, GLenum pname, GLfloat param); 44 void glTexParameterfv(GLenum target, GLenum pname, const GLfloat* params); 48 void glBindBuffer(GLenum target, GLuint buffer); 49 void glBindTexture(GLenum target, GLuint texture); 51 void glBufferData(GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage); 52 void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data); [all …]
|
D | GLEncoder.h | 48 void override2DTextureTarget(GLenum target); 135 static void s_glBindBuffer(void *self, GLenum target, GLuint id); 136 …static void s_glBufferData(void *self, GLenum target, GLsizeiptr size, const GLvoid * data, GLenum… 137 …static void s_glBufferSubData(void *self, GLenum target, GLintptr offset, GLsizeiptr size, const G… 148 static void s_glBindTexture(void* self, GLenum target, GLuint texture); 152 static void s_glGetTexParameterfv(void* self, GLenum target, GLenum pname, GLfloat* params); 153 static void s_glGetTexParameteriv(void* self, GLenum target, GLenum pname, GLint* params); 154 static void s_glGetTexParameterxv(void* self, GLenum target, GLenum pname, GLfixed* params); 155 static void s_glTexParameterf(void* self, GLenum target, GLenum pname, GLfloat param); 156 static void s_glTexParameterfv(void* self, GLenum target, GLenum pname, const GLfloat* params); [all …]
|
/device/generic/goldfish-opengl/system/GLESv2_enc/ |
D | GL2Encoder.cpp | 113 #define OVERRIDEWITH(name, target) do { \ in GL2Encoder() argument 114 m_##target##_enc = this-> target; \ in GL2Encoder() 115 this-> target = &s_##name; \ in GL2Encoder() 444 ScopedQueryUpdate(GL2Encoder* ctx, uint32_t bytes, T* target) : in ScopedQueryUpdate() argument 447 mTarget(target), in ScopedQueryUpdate() 547 void GL2Encoder::s_glBindBuffer(void *self, GLenum target, GLuint id) in s_glBindBuffer() argument 551 SET_ERROR_IF(!GLESv2Validation::bufferTarget(ctx, target), GL_INVALID_ENUM); in s_glBindBuffer() 553 bool nop = ctx->m_state->isNonIndexedBindNoOp(target, id); in s_glBindBuffer() 557 ctx->m_state->bindBuffer(target, id); in s_glBindBuffer() 559 ctx->m_glBindBuffer_enc(ctx, target, id); in s_glBindBuffer() [all …]
|
D | gl2_entry.cpp | 11 void glBindBuffer(GLenum target, GLuint buffer); 12 void glBindFramebuffer(GLenum target, GLuint framebuffer); 13 void glBindRenderbuffer(GLenum target, GLuint renderbuffer); 14 void glBindTexture(GLenum target, GLuint texture); 20 void glBufferData(GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage); 21 void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data); 22 GLenum glCheckFramebufferStatus(GLenum target); 29 …void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsi… 30 …void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei w… 31 …void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei… [all …]
|
D | GL2Encoder.h | 88 void override2DTextureTarget(GLenum target); 89 void restore2DTextureTarget(GLenum target); 90 void associateEGLImage(GLenum target, GLeglImageOES eglImage); 93 GLuint boundBuffer(GLenum target) const; 94 BufferData* getBufferData(GLenum target) const; 97 bool isBufferTargetMapped(GLenum target) const; 163 bool texture2DNeedsOverride(GLenum target) const; 164 bool isCompleteFbo(GLenum target, const GLClientState* state, GLenum attachment) const; 165 bool checkFramebufferCompleteness(GLenum target, const GLClientState* state) const; 195 static void s_glBindBuffer(void *self, GLenum target, GLuint id); [all …]
|
/device/generic/opengl-transport/host/libs/virglrenderer/OpenGLESDispatch/ |
D | gles1_extensions.entries | 18 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image); 19 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image); 22 void glBindRenderbufferOES(GLenum target, GLuint renderbuffer); 25 void glRenderbufferStorageOES(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); 26 void glGetRenderbufferParameterivOES(GLenum target, GLenum pname, GLint* params); 28 void glBindFramebufferOES(GLenum target, GLuint framebuffer); 31 GLenum glCheckFramebufferStatusOES(GLenum target); 32 void glFramebufferRenderbufferOES(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLui… 33 void glFramebufferTexture2DOES(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, … 34 void glGetFramebufferAttachmentParameterivOES(GLenum target, GLenum attachment, GLenum pname, GLint… [all …]
|
D | gles1_core.entries | 22 void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params); 32 void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); 41 void glTexEnvf(GLenum target, GLenum pname, GLfloat param); 42 void glTexEnvfv(GLenum target, GLenum pname, const GLfloat *params); 43 void glTexParameterf(GLenum target, GLenum pname, GLfloat param); 44 void glTexParameterfv(GLenum target, GLenum pname, const GLfloat *params); 48 void glBindBuffer(GLenum target, GLuint buffer); 49 void glBindTexture(GLenum target, GLuint texture); 51 void glBufferData(GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage); 52 void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data); [all …]
|
D | gles2_extensions.entries | 5 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image); 6 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image); 8 void glTexImage3DOES(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei heig… 9 void glTexSubImage3DOES(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GL… 10 void glCopyTexSubImage3DOES(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset… 11 void glCompressedTexImage3DOES(GLenum target, GLint level, GLenum internalformat, GLsizei width, GL… 12 void glCompressedTexSubImage3DOES(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint z… 13 void glFramebufferTexture3DOES(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, …
|
D | gles2_core.entries | 8 void glBindBuffer(GLenum target, GLuint buffer); 9 void glBindFramebuffer(GLenum target, GLuint framebuffer); 10 void glBindRenderbuffer(GLenum target, GLuint renderbuffer); 11 void glBindTexture(GLenum target, GLuint texture); 17 void glBufferData(GLenum target, GLsizeiptr size, const void *data, GLenum usage); 18 void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const void *data); 19 GLenum glCheckFramebufferStatus(GLenum target); 26 void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsiz… 27 void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei wi… 28 void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei … [all …]
|
D | gles3_only.entries | 10 void glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, … 11 void glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsiz… 12 void glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, G… 13 void glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsiz… 14 void glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoff… 18 void glBeginQuery(GLenum target, GLuint id); 19 void glEndQuery(GLenum target); 20 void glGetQueryiv(GLenum target, GLenum pname, GLint *params); 22 GLboolean glUnmapBuffer(GLenum target); 23 void glGetBufferPointerv(GLenum target, GLenum pname, void **params); [all …]
|
/device/generic/goldfish/fvpbase/ |
D | BoardConfig.mk | 27 include build/make/target/board/BoardConfigMainlineCommon.mk 53 $(OUT_DIR)/target/product/$(PRODUCT_DEVICE)/boot.img: $(OUT_DIR)/target/product/$(PRODUCT_DEVICE)/c… 55 $(OUT_DIR)/target/product/$(PRODUCT_DEVICE)/combined-ramdisk.img: $(OUT_DIR)/target/product/$(PRODU… 58 BOARD_MKBOOTIMG_ARGS := --header_version 2 --ramdisk $(OUT_DIR)/target/product/$(PRODUCT_DEVICE)/co… 60 BOARD_PREBUILT_DTBIMAGE_DIR := $(OUT_DIR)/target/product/$(PRODUCT_DEVICE)
|
/device/generic/goldfish/tools/ |
D | mk_qemu_image.sh | 19 target=${dir_name}/$label-qemu.img 32 dd if=/dev/zero of=$target ibs=1024k count=1 > /dev/null 2>&1 33 dd if=$srcimg of=$target conv=notrunc,sync ibs=1024k obs=1024k seek=1 > /dev/null 2>&1 35 curdisksize=$(stat -c %s $target) 37 dd if=/dev/zero of=$target conv=notrunc bs=1 count=1024k seek=$curdisksize > /dev/null 2>&1 42 ${SGDISK:-sgdisk} --clear $target > /dev/null 2>&1 43 ${SGDISK:-sgdisk} --new=1:2048:$end --type=1:8300 --change-name=1:$label $target > /dev/null 2>&1
|
/device/generic/goldfish-opengl/system/GLESv1/ |
D | gl.cpp | 56 void glEGLImageTargetTexture2DOES(void * self, GLenum target, GLeglImageOES img) in glEGLImageTargetTexture2DOES() argument 60 DBG("glEGLImageTargetTexture2DOES v1 target=%#x img=%p", target, img); in glEGLImageTargetTexture2DOES() 64 if (image->target == EGL_NATIVE_BUFFER_ANDROID) { in glEGLImageTargetTexture2DOES() 79 ctx->override2DTextureTarget(target); in glEGLImageTargetTexture2DOES() 84 else if (image->target == EGL_GL_TEXTURE_2D_KHR) { in glEGLImageTargetTexture2DOES() 86 ctx->override2DTextureTarget(target); in glEGLImageTargetTexture2DOES() 88 ctx->m_glEGLImageTargetTexture2DOES_enc(self, target, hostImage); in glEGLImageTargetTexture2DOES() 93 void glEGLImageTargetRenderbufferStorageOES(void *self, GLenum target, GLeglImageOES img) in glEGLImageTargetRenderbufferStorageOES() argument 96 (void)target; in glEGLImageTargetRenderbufferStorageOES() 102 if (image->target == EGL_NATIVE_BUFFER_ANDROID) { in glEGLImageTargetRenderbufferStorageOES()
|
/device/generic/goldfish-opengl/system/include/GLES/ |
D | glext.h | 635 GL_API void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); 636 GL_API void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); 638 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image… 639 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImag… 681 GL_API void GL_APIENTRY glGetTexParameterxvOES (GLenum target, GLenum pname, GLfixed *params); 691 GL_API void GL_APIENTRY glMultiTexCoord4xOES (GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfix… 701 GL_API void GL_APIENTRY glTexEnvxOES (GLenum target, GLenum pname, GLfixed param); 702 GL_API void GL_APIENTRY glTexEnvxvOES (GLenum target, GLenum pname, const GLfixed *params); 703 GL_API void GL_APIENTRY glTexParameterxOES (GLenum target, GLenum pname, GLfixed param); 704 GL_API void GL_APIENTRY glTexParameterxvOES (GLenum target, GLenum pname, const GLfixed *params); [all …]
|
/device/generic/opengl-transport/host/libs/virglrenderer/GLESv1_dec/ |
D | gles1.in | 15 GL_ENTRY(void, glGetTexParameterfv, GLenum target, GLenum pname, GLfloat *params) 25 GL_ENTRY(void, glMultiTexCoord4f, GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) 34 GL_ENTRY(void, glTexEnvf, GLenum target, GLenum pname, GLfloat param) 35 GL_ENTRY(void, glTexEnvfv, GLenum target, GLenum pname, const GLfloat *params) 36 GL_ENTRY(void, glTexParameterf, GLenum target, GLenum pname, GLfloat param) 37 GL_ENTRY(void, glTexParameterfv, GLenum target, GLenum pname, const GLfloat *params) 41 GL_ENTRY(void, glBindBuffer, GLenum target, GLuint buffer) 42 GL_ENTRY(void, glBindTexture, GLenum target, GLuint texture) 44 GL_ENTRY(void, glBufferData, GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage) 45 GL_ENTRY(void, glBufferSubData, GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data) [all …]
|
/device/linaro/dragonboard/qcom/qrtr/ |
D | Makefile | 75 define add-inc-target 83 define add-target-deps 91 define add-bin-target 93 $(call add-target-deps,$1) 106 define add-lib-target 108 $(call add-target-deps,$1) 123 define add-systemd-service-target 134 $(foreach v,$(filter-out %.so,$(targets)),$(eval $(call add-bin-target,$v))) 135 $(foreach v,$(filter %.so,$(targets)),$(eval $(call add-lib-target,$v))) 136 $(eval $(call add-inc-target,lib,libqrtr.h)) [all …]
|
/device/google/cuttlefish/host/commands/fetcher/ |
D | build_api.cc | 63 return out << "(id=\"" << build.id << "\", target=\"" << build.target << "\")"; in operator <<() 68 return out << "(paths=\"" << paths << "\", target=\"" << build.target << "\")"; in operator <<() 77 const std::string& target) in DirectoryBuild() argument 78 : paths(paths), target(target), id("eng") { in DirectoryBuild() 94 const std::string& target) { in LatestBuildId() argument 97 + "&buildType=submitted&maxResults=1&successful=true&target=" + target; in LatestBuildId() 100 << target << "\" on \"" << branch << "\". Response was " << response; in LatestBuildId() 103 LOG(WARNING) << "expected to receive 1 build for \"" << target << "\" on \"" in LatestBuildId() 112 std::string url = BUILD_API + "/builds/" + build.id + "/" + build.target; in BuildStatus() 121 std::string url = BUILD_API + "/builds/" + build.id + "/" + build.target; in ProductName() [all …]
|
/device/ti/beagle_x15/ |
D | fstab.beagle_x15board_v5 | 9 …00000.ocp/48000000.interconnect/48000000.interconnect:segment@0/480b4000.target-module/480b4000.mm… 10 …00000.ocp/48000000.interconnect/48000000.interconnect:segment@0/480b4000.target-module/480b4000.mm… 11 …00000.ocp/48000000.interconnect/48000000.interconnect:segment@0/480b4000.target-module/480b4000.mm… 12 …00000.ocp/48000000.interconnect/48000000.interconnect:segment@0/480b4000.target-module/480b4000.mm… 16 /devices/platform/48800000.interconnect/48800000.interconnect:segment@0/488c0000.target-module/488c… 17 /devices/platform/48800000.interconnect/48800000.interconnect:segment@0/48880000.target-module/4888… 18 /devices/platform/48000000.interconnect/48000000.interconnect:segment@0/4809c000.target-module/4809…
|