Searched defs:props (Results 1 - 12 of 12) sorted by relevance

/frameworks/native/services/batteryservice/
H A DIBatteryPropertiesListener.cpp32 void batteryPropertiesChanged(struct BatteryProperties props) argument
37 props.writeToParcel(&data);
/frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
H A DViewDumpParser.java40 Map<Short, Object> props = mViews.get(0);
41 Object name = getProperty(props, "__name__");
42 Object hash = getProperty(props, "__hash__");
51 private Object getProperty(Map<Short, Object> props, String key) { argument
52 return props.get(mIds.get(key));
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapBmessageParser.java91 private ParseException expected(Property... props) { argument
95 for (Property prop : props) {
/frameworks/base/libs/hwui/
H A DDamageAccumulator.cpp132 static inline void mapRect(const RenderProperties& props, const SkRect& in, SkRect* out) { argument
134 const SkMatrix* transform = props.getTransformMatrix();
139 temp.offset(props.getLeft(), props.getTop());
183 const RenderProperties& props = frame->renderNode->properties(); local
184 if (props.getAlpha() <= 0) {
189 if (props.getClipDamageToBounds() && !frame->pendingDirty.isEmpty()) {
190 if (!frame->pendingDirty.intersect(0, 0, props.getWidth(), props.getHeight())) {
196 mapRect(props, fram
[all...]
H A DRenderNode.cpp289 const LayerProperties& props = properties().layerProperties(); local
290 mLayer->setAlpha(props.alpha(), props.xferMode());
291 mLayer->setColorFilter(props.colorFilter());
292 mLayer->setBlend(props.needsBlending());
/frameworks/base/services/core/java/com/android/server/
H A DBatteryService.java294 private void update(BatteryProperties props) { argument
297 mBatteryProps = props;
301 mLastBatteryProps.set(props);
771 public void batteryPropertiesChanged(BatteryProperties props) { argument
774 BatteryService.this.update(props);
/frameworks/av/media/mtp/
H A DMtpDevice.cpp263 MtpObjectPropertyList* props = getObjectPropsSupported(format); local
264 if (props) {
265 for (size_t j = 0; j < props->size(); j++) {
266 MtpObjectProperty prop = (*props)[j];
/frameworks/native/cmds/dumpstate/
H A Dutils.c518 static char* props[2000]; variable
522 if (num_props < sizeof(props) / sizeof(props[0])) {
525 props[num_props++] = strdup(buf);
538 qsort(&props, num_props, sizeof(props[0]), compare_prop);
542 fputs(props[i], stdout);
543 free(props[i]);
/frameworks/rs/
H A DrsContext.h231 } props; member in class:android::renderscript::Context
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31.cpp683 /* void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params ) */
692 GLenum *props = (GLenum *) 0; local
703 _exceptionMessage = "props == null";
715 props = props_base + propsOffset;
756 (GLenum *)props,
780 /* void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params ) */
791 GLenum *props = (GLenum *) 0; local
797 props = (GLenum *)getPointer(_env, props_buf, (jarray*)&_propsArray, &_propsRemaining, &_propsBufferOffset);
800 if (props == NULL) {
802 props
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES31.java282 // C function void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params )
289 int[] props,
298 // C function void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params )
305 java.nio.IntBuffer props,
284 glGetProgramResourceiv( int program, int programInterface, int index, int propCount, int[] props, int propsOffset, int bufSize, int[] length, int lengthOffset, int[] params, int paramsOffset ) argument
300 glGetProgramResourceiv( int program, int programInterface, int index, int propCount, java.nio.IntBuffer props, int bufSize, java.nio.IntBuffer length, java.nio.IntBuffer params ) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp10726 void GLTrace_glGetProgramResourceiv(GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum * props, GLsizei bufSize, GLsizei * length, GLint * params) { argument
10756 // copy argument props
10760 arg_props->add_int64value((uintptr_t)props);
10783 glContext->hooks->gl.glGetProgramResourceiv(program, programInterface, index, propCount, props, bufSize, length, params);
10788 (void *) props,
[all...]

Completed in 593 milliseconds