Searched defs:target (Results 76 - 99 of 99) sorted by relevance

1234

/frameworks/base/services/java/com/android/server/net/
H A DNetworkPolicyManagerService.java1601 private static void collectKeys(SparseIntArray source, SparseBooleanArray target) { argument
1604 target.put(source.keyAt(i), true);
1608 private static void collectKeys(SparseBooleanArray source, SparseBooleanArray target) { argument
1611 target.put(source.keyAt(i), true);
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java2466 public void finishInstrumentation(IApplicationThread target, argument
2471 data.writeStrongBinder(target != null ? target.asBinder() : null);
H A DIActivityManager.java190 public void finishInstrumentation(IApplicationThread target, argument
/frameworks/base/media/libstagefright/
H A DOMXCodec.cpp190 void setCodec(const sp<OMXCodec> &target) { argument
191 mTarget = target;
921 // Check whether the target color format is supported.
1154 // Are the target profile and level supported by the encoder?
2408 "returning output buffer at target timestamp "
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java88 public void glBindTexture(int target, int texture) { argument
90 mgl.glBindTexture(target, texture);
167 public void glCompressedTexImage2D(int target, int level, argument
171 mgl.glCompressedTexImage2D(target, level, internalformat, width,
176 public void glCompressedTexSubImage2D(int target, int level, int xoffset, argument
180 mgl.glCompressedTexSubImage2D(target, level, xoffset, yoffset, width,
185 public void glCopyTexImage2D(int target, int level, int internalformat, argument
188 mgl.glCopyTexImage2D(target, level, internalformat, x, y, width,
193 public void glCopyTexSubImage2D(int target, int level, int xoffset, argument
196 mgl.glCopyTexSubImage2D(target, leve
384 glHint(int target, int mode) argument
576 glMultiTexCoord4f(int target, float s, float t, float r, float q) argument
583 glMultiTexCoord4x(int target, int s, int t, int r, int q) argument
743 glTexEnvf(int target, int pname, float param) argument
749 glTexEnvfv(int target, int pname, float[] params, int offset) argument
755 glTexEnvfv(int target, int pname, FloatBuffer params) argument
761 glTexEnvx(int target, int pname, int param) argument
767 glTexEnvxv(int target, int pname, int[] params, int offset) argument
773 glTexEnvxv(int target, int pname, IntBuffer params) argument
779 glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, Buffer pixels) argument
788 glTexParameterf(int target, int pname, float param) argument
794 glTexParameterx(int target, int pname, int param) argument
800 glTexParameteriv(int target, int pname, int[] params, int offset) argument
806 glTexParameteriv(int target, int pname, IntBuffer params) argument
812 glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, Buffer pixels) argument
962 glBindBuffer(int target, int buffer) argument
968 glBufferData(int target, int size, Buffer data, int usage) argument
974 glBufferSubData(int target, int offset, int size, Buffer data) argument
1033 glGetBufferParameteriv(int target, int pname, int[] params, int offset) argument
1040 glGetBufferParameteriv(int target, int pname, IntBuffer params) argument
1172 glGetTexParameterfv(int target, int pname, float[] params, int offset) argument
1179 glGetTexParameterfv(int target, int pname, FloatBuffer params) argument
1185 glGetTexParameteriv(int target, int pname, int[] params, int offset) argument
1192 glGetTexParameteriv(int target, int pname, IntBuffer params) argument
1198 glGetTexParameterxv(int target, int pname, int[] params, int offset) argument
1205 glGetTexParameterxv(int target, int pname, IntBuffer params) argument
1286 glTexEnvi(int target, int pname, int param) argument
1292 glTexEnviv(int target, int pname, int[] params, int offset) argument
1298 glTexEnviv(int target, int pname, IntBuffer params) argument
1304 glTexParameterfv(int target, int pname, float[] params, int offset) argument
1311 glTexParameterfv(int target, int pname, FloatBuffer params) argument
1317 glTexParameteri(int target, int pname, int param) argument
1323 glTexParameterxv(int target, int pname, int[] params, int offset) argument
1329 glTexParameterxv(int target, int pname, IntBuffer params) argument
1381 glBindFramebufferOES(int target, int framebuffer) argument
1388 glBindRenderbufferOES(int target, int renderbuffer) argument
1417 glCheckFramebufferStatusOES(int target) argument
1453 glFramebufferRenderbufferOES(int target, int attachment, int renderbuffertarget, int renderbuffer) argument
1461 glFramebufferTexture2DOES(int target, int attachment, int textarget, int texture, int level) argument
1469 glGenerateMipmapOES(int target) argument
1504 glGetFramebufferAttachmentParameterivOES(int target, int attachment, int pname, int[] params, int offset) argument
1512 glGetFramebufferAttachmentParameterivOES(int target, int attachment, int pname, IntBuffer params) argument
1520 glGetRenderbufferParameterivOES(int target, int pname, int[] params, int offset) argument
1528 glGetRenderbufferParameterivOES(int target, int pname, IntBuffer params) argument
1594 glRenderbufferStorageOES(int target, int internalformat, int width, int height) argument
[all...]
H A DGLES10.java293 // C function void glBindTexture ( GLenum target, GLuint texture )
296 int target,
414 // C function void glCompressedTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data )
417 int target,
427 // C function void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data )
430 int target,
441 // C function void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border )
444 int target,
454 // C function void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height )
457 int target,
295 glBindTexture( int target, int texture ) argument
416 glCompressedTexImage2D( int target, int level, int internalformat, int width, int height, int border, int imageSize, java.nio.Buffer data ) argument
429 glCompressedTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, java.nio.Buffer data ) argument
443 glCopyTexImage2D( int target, int level, int internalformat, int x, int y, int width, int height, int border ) argument
456 glCopyTexSubImage2D( int target, int level, int xoffset, int yoffset, int x, int y, int width, int height ) argument
695 glHint( int target, int mode ) argument
927 glMultiTexCoord4f( int target, float s, float t, float r, float q ) argument
937 glMultiTexCoord4x( int target, int s, int t, int r, int q ) argument
1189 glTexEnvf( int target, int pname, float param ) argument
1197 glTexEnvfv( int target, int pname, float[] params, int offset ) argument
1206 glTexEnvfv( int target, int pname, java.nio.FloatBuffer params ) argument
1214 glTexEnvx( int target, int pname, int param ) argument
1222 glTexEnvxv( int target, int pname, int[] params, int offset ) argument
1231 glTexEnvxv( int target, int pname, java.nio.IntBuffer params ) argument
1239 glTexImage2D( int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.Buffer pixels ) argument
1253 glTexParameterf( int target, int pname, float param ) argument
1261 glTexParameterx( int target, int pname, int param ) argument
1269 glTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
[all...]
H A DGLLogWrapper.java344 private String getTextureTarget(int target) { argument
345 switch (target) {
349 return getHex(target);
353 private String getTextureEnvTarget(int target) { argument
354 switch (target) {
358 return getHex(target);
751 private String getHintTarget(int target) { argument
752 switch (target) {
766 return getHex(target);
1203 public void glBindTexture(int target, in argument
1338 glCompressedTexImage2D(int target, int level, int internalformat, int width, int height, int border, int imageSize, Buffer data) argument
1357 glCompressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, Buffer data) argument
1377 glCopyTexImage2D(int target, int level, int internalformat, int x, int y, int width, int height, int border) argument
1395 glCopyTexSubImage2D(int target, int level, int xoffset, int yoffset, int x, int y, int width, int height) argument
1770 glHint(int target, int mode) argument
2098 glMultiTexCoord4f(int target, float s, float t, float r, float q) argument
2111 glMultiTexCoord4x(int target, int s, int t, int r, int q) argument
2395 glTexEnvf(int target, int pname, float param) argument
2406 glTexEnvfv(int target, int pname, float[] params, int offset) argument
2418 glTexEnvfv(int target, int pname, FloatBuffer params) argument
2429 glTexEnvx(int target, int pname, int param) argument
2440 glTexEnvxv(int target, int pname, int[] params, int offset) argument
2452 glTexEnvxv(int target, int pname, IntBuffer params) argument
2463 glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, Buffer pixels) argument
2483 glTexParameterf(int target, int pname, float param) argument
2494 glTexParameterx(int target, int pname, int param) argument
2505 glTexParameteriv(int target, int pname, int[] params, int offset) argument
2516 glTexParameteriv(int target, int pname, IntBuffer params) argument
2527 glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, Buffer pixels) argument
2770 glBindBuffer(int target, int buffer) argument
2779 glBufferData(int target, int size, Buffer data, int usage) argument
2790 glBufferSubData(int target, int offset, int size, Buffer data) argument
2869 glGetBufferParameteriv(int target, int pname, int[] params, int offset) argument
2881 glGetBufferParameteriv(int target, int pname, IntBuffer params) argument
3091 glGetTexParameterfv(int target, int pname, float[] params, int offset) argument
3102 glGetTexParameterfv(int target, int pname, FloatBuffer params) argument
3112 glGetTexParameteriv(int target, int pname, int[] params, int offset) argument
3123 glGetTexParameteriv(int target, int pname, IntBuffer params) argument
3133 glGetTexParameterxv(int target, int pname, int[] params, int offset) argument
3145 glGetTexParameterxv(int target, int pname, IntBuffer params) argument
3248 glTexEnvi(int target, int pname, int param) argument
3258 glTexEnviv(int target, int pname, int[] params, int offset) argument
3269 glTexEnviv(int target, int pname, IntBuffer params) argument
3279 glTexParameterfv(int target, int pname, float[] params, int offset) argument
3291 glTexParameterfv(int target, int pname, FloatBuffer params) argument
3301 glTexParameteri(int target, int pname, int param) argument
3311 glTexParameterxv(int target, int pname, int[] params, int offset) argument
3323 glTexParameterxv(int target, int pname, IntBuffer params) argument
3451 glBindFramebufferOES(int target, int framebuffer) argument
3461 glBindRenderbufferOES(int target, int renderbuffer) argument
3503 glCheckFramebufferStatusOES(int target) argument
3555 glFramebufferRenderbufferOES(int target, int attachment, int renderbuffertarget, int renderbuffer) argument
3568 glFramebufferTexture2DOES(int target, int attachment, int textarget, int texture, int level) argument
3582 glGenerateMipmapOES(int target) argument
3633 glGetFramebufferAttachmentParameterivOES(int target, int attachment, int pname, int[] params, int offset) argument
3647 glGetFramebufferAttachmentParameterivOES(int target, int attachment, int pname, IntBuffer params) argument
3660 glGetRenderbufferParameterivOES(int target, int pname, int[] params, int offset) argument
3673 glGetRenderbufferParameterivOES(int target, int pname, IntBuffer params) argument
3774 glRenderbufferStorageOES(int target, int internalformat, int width, int height) argument
[all...]
H A DGLES20.java353 // C function void glBindBuffer ( GLenum target, GLuint buffer )
356 int target,
360 // C function void glBindFramebuffer ( GLenum target, GLuint framebuffer )
363 int target,
367 // C function void glBindRenderbuffer ( GLenum target, GLuint renderbuffer )
370 int target,
374 // C function void glBindTexture ( GLenum target, GLuint texture )
377 int target,
419 // C function void glBufferData ( GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage )
422 int target,
355 glBindBuffer( int target, int buffer ) argument
362 glBindFramebuffer( int target, int framebuffer ) argument
369 glBindRenderbuffer( int target, int renderbuffer ) argument
376 glBindTexture( int target, int texture ) argument
421 glBufferData( int target, int size, java.nio.Buffer data, int usage ) argument
430 glBufferSubData( int target, int offset, int size, java.nio.Buffer data ) argument
487 glCompressedTexImage2D( int target, int level, int internalformat, int width, int height, int border, int imageSize, java.nio.Buffer data ) argument
500 glCompressedTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, java.nio.Buffer data ) argument
514 glCopyTexImage2D( int target, int level, int internalformat, int x, int y, int width, int height, int border ) argument
527 glCopyTexSubImage2D( int target, int level, int xoffset, int yoffset, int x, int y, int width, int height ) argument
715 glFramebufferRenderbuffer( int target, int attachment, int renderbuffertarget, int renderbuffer ) argument
724 glFramebufferTexture2D( int target, int attachment, int textarget, int texture, int level ) argument
904 glGetBufferParameteriv( int target, int pname, int[] params, int offset ) argument
913 glGetBufferParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
941 glGetFramebufferAttachmentParameteriv( int target, int attachment, int pname, int[] params, int offset ) argument
951 glGetFramebufferAttachmentParameteriv( int target, int attachment, int pname, java.nio.IntBuffer params ) argument
1014 glGetRenderbufferParameteriv( int target, int pname, int[] params, int offset ) argument
1023 glGetRenderbufferParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
1131 glGetTexParameterfv( int target, int pname, float[] params, int offset ) argument
1140 glGetTexParameterfv( int target, int pname, java.nio.FloatBuffer params ) argument
1148 glGetTexParameteriv( int target, int pname, int[] params, int offset ) argument
1157 glGetTexParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
1240 glHint( int target, int mode ) argument
1332 glRenderbufferStorage( int target, int internalformat, int width, int height ) argument
1447 glTexImage2D( int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.Buffer pixels ) argument
1461 glTexParameterf( int target, int pname, float param ) argument
1469 glTexParameterfv( int target, int pname, float[] params, int offset ) argument
1478 glTexParameterfv( int target, int pname, java.nio.FloatBuffer params ) argument
1486 glTexParameteri( int target, int pname, int param ) argument
1494 glTexParameteriv( int target, int pname, int[] params, int offset ) argument
1503 glTexParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
1511 glTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
[all...]
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java78 "Application %s (SDK target %d) called a GL11 Pointer method with an indirect Buffer.",
106 // C function void glBindTexture ( GLenum target, GLuint texture )
109 int target,
227 // C function void glCompressedTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data )
230 int target,
240 // C function void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data )
243 int target,
254 // C function void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border )
257 int target,
267 // C function void glCopyTexSubImage2D ( GLenum target, GLin
108 glBindTexture( int target, int texture ) argument
229 glCompressedTexImage2D( int target, int level, int internalformat, int width, int height, int border, int imageSize, java.nio.Buffer data ) argument
242 glCompressedTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, java.nio.Buffer data ) argument
256 glCopyTexImage2D( int target, int level, int internalformat, int x, int y, int width, int height, int border ) argument
269 glCopyTexSubImage2D( int target, int level, int xoffset, int yoffset, int x, int y, int width, int height ) argument
503 glHint( int target, int mode ) argument
735 glMultiTexCoord4f( int target, float s, float t, float r, float q ) argument
745 glMultiTexCoord4x( int target, int s, int t, int r, int q ) argument
997 glTexEnvf( int target, int pname, float param ) argument
1005 glTexEnvfv( int target, int pname, float[] params, int offset ) argument
1014 glTexEnvfv( int target, int pname, java.nio.FloatBuffer params ) argument
1022 glTexEnvx( int target, int pname, int param ) argument
1030 glTexEnvxv( int target, int pname, int[] params, int offset ) argument
1039 glTexEnvxv( int target, int pname, java.nio.IntBuffer params ) argument
1047 glTexImage2D( int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.Buffer pixels ) argument
1061 glTexParameterf( int target, int pname, float param ) argument
1069 glTexParameterx( int target, int pname, int param ) argument
1077 glTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
1167 glBindBuffer( int target, int buffer ) argument
1174 glBufferData( int target, int size, java.nio.Buffer data, int usage ) argument
1183 glBufferSubData( int target, int offset, int size, java.nio.Buffer data ) argument
1294 glGetBufferParameteriv( int target, int pname, int[] params, int offset ) argument
1303 glGetBufferParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
1473 glGetTexParameterfv( int target, int pname, float[] params, int offset ) argument
1482 glGetTexParameterfv( int target, int pname, java.nio.FloatBuffer params ) argument
1490 glGetTexParameteriv( int target, int pname, int[] params, int offset ) argument
1499 glGetTexParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
1507 glGetTexParameterxv( int target, int pname, int[] params, int offset ) argument
1516 glGetTexParameterxv( int target, int pname, java.nio.IntBuffer params ) argument
1630 glTexEnvi( int target, int pname, int param ) argument
1638 glTexEnviv( int target, int pname, int[] params, int offset ) argument
1647 glTexEnviv( int target, int pname, java.nio.IntBuffer params ) argument
1655 glTexParameterfv( int target, int pname, float[] params, int offset ) argument
1664 glTexParameterfv( int target, int pname, java.nio.FloatBuffer params ) argument
1672 glTexParameteri( int target, int pname, int param ) argument
1680 glTexParameteriv( int target, int pname, int[] params, int offset ) argument
1689 glTexParameteriv( int target, int pname, java.nio.IntBuffer params ) argument
1697 glTexParameterxv( int target, int pname, int[] params, int offset ) argument
1706 glTexParameterxv( int target, int pname, java.nio.IntBuffer params ) argument
1904 glBindFramebufferOES( int target, int framebuffer ) argument
1911 glBindRenderbufferOES( int target, int renderbuffer ) argument
1976 glFramebufferRenderbufferOES( int target, int attachment, int renderbuffertarget, int renderbuffer ) argument
1985 glFramebufferTexture2DOES( int target, int attachment, int textarget, int texture, int level ) argument
2031 glGetFramebufferAttachmentParameterivOES( int target, int attachment, int pname, int[] params, int offset ) argument
2041 glGetFramebufferAttachmentParameterivOES( int target, int attachment, int pname, java.nio.IntBuffer params ) argument
2050 glGetRenderbufferParameterivOES( int target, int pname, int[] params, int offset ) argument
2059 glGetRenderbufferParameterivOES( int target, int pname, java.nio.IntBuffer params ) argument
2130 glRenderbufferStorageOES( int target, int internalformat, int width, int height ) argument
[all...]
/frameworks/base/tools/aapt/
H A DResourceTable.cpp19 const sp<AaptFile>& target,
23 sp<XMLNode> root = XMLNode::parse(target);
28 return compileXmlFile(assets, root, target, table, options);
32 const sp<AaptFile>& target,
37 sp<XMLNode> root = XMLNode::parse(target);
47 const sp<AaptFile>& target,
81 err = root->flatten(target,
90 tree.setTo(target->getData(), target->getSize());
93 target
18 compileXmlFile(const sp<AaptAssets>& assets, const sp<AaptFile>& target, ResourceTable* table, int options) argument
31 compileXmlFile(const sp<AaptAssets>& assets, const sp<AaptFile>& target, const sp<AaptFile>& outTarget, ResourceTable* table, int options) argument
45 compileXmlFile(const sp<AaptAssets>& assets, const sp<XMLNode>& root, const sp<AaptFile>& target, ResourceTable* table, int options) argument
[all...]
/frameworks/base/core/java/android/content/
H A DIntent.java824 * @param target The Intent that the user will be selecting an activity
831 public static Intent createChooser(Intent target, CharSequence title) { argument
833 intent.putExtra(EXTRA_INTENT, target);
935 * <p>Input: {@link #getData} is URI describing the target.
2182 * describes the specific action the target will perform. This generally
2816 * existing one, then the reply target of the existing activity will be
2819 * the reply target of the original activity.
5296 * into the target intent, replacing any that were previously there.
/frameworks/base/core/java/android/view/
H A DKeyEvent.java2540 * @param target The target of the dispatch, for use in tracking.
2545 Object target) {
2549 if (DEBUG) Log.v(TAG, "Key down to " + target + " in " + state
2555 state.startTracking(this, target);
2570 if (DEBUG) Log.v(TAG, "Key up to " + target + " in " + state
2619 * Stop any tracking associated with this target.
2621 public void reset(Object target) { argument
2622 if (mDownTarget == target) {
2623 if (DEBUG) Log.v(TAG, "Reset in " + target
2544 dispatch(Callback receiver, DispatcherState state, Object target) argument
2639 startTracking(KeyEvent event, Object target) argument
[all...]
H A DView.java5522 * Pass the touch screen motion event down to the target view, or this
5523 * view if it is the target.
6151 * input connection target is trying to make a call on the manager. The
8866 info.target = this;
13345 * to the target Views. For example, it can contain flags that differentiate between a
14135 * get a chance to respond before the target view.
14154 * get a chance to respond before the target view.
14172 * get a chance to respond before the target view.
14190 * get a chance to respond before the target view.
14374 * to a Handler. This class contains the target (Vie
14401 View target; field in class:View.AttachInfo.InvalidateInfo
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES20.cpp174 /* void glBindBuffer ( GLenum target, GLuint buffer ) */
177 (JNIEnv *_env, jobject _this, jint target, jint buffer) {
179 (GLenum)target,
184 /* void glBindFramebuffer ( GLenum target, GLuint framebuffer ) */
187 (JNIEnv *_env, jobject _this, jint target, jint framebuffer) {
189 (GLenum)target,
194 /* void glBindRenderbuffer ( GLenum target, GLuint renderbuffer ) */
197 (JNIEnv *_env, jobject _this, jint target, jint renderbuffer) {
199 (GLenum)target,
204 /* void glBindTexture ( GLenum target, GLuin
176 android_glBindBuffer__II(JNIEnv *_env, jobject _this, jint target, jint buffer) argument
186 android_glBindFramebuffer__II(JNIEnv *_env, jobject _this, jint target, jint framebuffer) argument
196 android_glBindRenderbuffer__II(JNIEnv *_env, jobject _this, jint target, jint renderbuffer) argument
206 android_glBindTexture__II(JNIEnv *_env, jobject _this, jint target, jint texture) argument
269 android_glBufferData__IILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint target, jint size, jobject data_buf, jint usage) argument
297 android_glBufferSubData__IIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint offset, jint size, jobject data_buf) argument
323 android_glCheckFramebufferStatus__I(JNIEnv *_env, jobject _this, jint target) argument
394 android_glCompressedTexImage2D__IIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint border, jint imageSize, jobject data_buf) argument
418 android_glCompressedTexSubImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint imageSize, jobject data_buf) argument
443 android_glCopyTexImage2D__IIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint x, jint y, jint width, jint height, jint border) argument
459 android_glCopyTexSubImage2D__IIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint x, jint y, jint width, jint height) argument
883 android_glFramebufferRenderbuffer__IIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint renderbuffertarget, jint renderbuffer) argument
895 android_glFramebufferTexture2D__IIIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint textarget, jint texture, jint level) argument
984 android_glGenerateMipmap__I(JNIEnv *_env, jobject _this, jint target) argument
1629 android_glGetBufferParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
1671 android_glGetBufferParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
1762 android_glGetFramebufferAttachmentParameteriv__III_3II(JNIEnv *_env, jobject _this, jint target, jint attachment, jint pname, jintArray params_ref, jint offset) argument
1800 android_glGetFramebufferAttachmentParameteriv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint attachment, jint pname, jobject params_buf) argument
2626 android_glGetRenderbufferParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
2663 android_glGetRenderbufferParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
2933 android_glGetTexParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
2975 android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3002 android_glGetTexParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
3044 android_glGetTexParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3325 android_glHint__II(JNIEnv *_env, jobject _this, jint target, jint mode) argument
3481 android_glRenderbufferStorage__IIII(JNIEnv *_env, jobject _this, jint target, jint internalformat, jint width, jint height) argument
3668 android_glTexImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint border, jint format, jint type, jobject pixels_buf) argument
3695 android_glTexParameterf__IIF(JNIEnv *_env, jobject _this, jint target, jint pname, jfloat param) argument
3706 android_glTexParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
3744 android_glTexParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3769 android_glTexParameteri__III(JNIEnv *_env, jobject _this, jint target, jint pname, jint param) argument
3780 android_glTexParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
3818 android_glTexParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3843 android_glTexSubImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint type, jobject pixels_buf) argument
[all...]
H A Dcom_google_android_gles_jni_GLImpl.cpp291 /* void glBindTexture ( GLenum target, GLuint texture ) */
294 (JNIEnv *_env, jobject _this, jint target, jint texture) {
296 (GLenum)target,
439 /* void glCompressedTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data ) */
442 (JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint border, jint imageSize, jobject data_buf) {
449 (GLenum)target,
463 /* void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ) */
466 (JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint imageSize, jobject data_buf) {
473 (GLenum)target,
488 /* void glCopyTexImage2D ( GLenum target, GLin
293 android_glBindTexture__II(JNIEnv *_env, jobject _this, jint target, jint texture) argument
441 android_glCompressedTexImage2D__IIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint border, jint imageSize, jobject data_buf) argument
465 android_glCompressedTexSubImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint imageSize, jobject data_buf) argument
490 android_glCopyTexImage2D__IIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint x, jint y, jint width, jint height, jint border) argument
506 android_glCopyTexSubImage2D__IIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint x, jint y, jint width, jint height) argument
1806 android_glHint__II(JNIEnv *_env, jobject _this, jint target, jint mode) argument
2837 android_glMultiTexCoord4f__IFFFF(JNIEnv *_env, jobject _this, jint target, jfloat s, jfloat t, jfloat r, jfloat q) argument
2850 android_glMultiTexCoord4x__IIIII(JNIEnv *_env, jobject _this, jint target, jint s, jint t, jint r, jint q) argument
3162 android_glTexEnvf__IIF(JNIEnv *_env, jobject _this, jint target, jint pname, jfloat param) argument
3173 android_glTexEnvfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
3233 android_glTexEnvfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3280 android_glTexEnvx__III(JNIEnv *_env, jobject _this, jint target, jint pname, jint param) argument
3291 android_glTexEnvxv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
3351 android_glTexEnvxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3398 android_glTexImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint border, jint format, jint type, jobject pixels_buf) argument
3425 android_glTexParameterf__IIF(JNIEnv *_env, jobject _this, jint target, jint pname, jfloat param) argument
3436 android_glTexParameterx__III(JNIEnv *_env, jobject _this, jint target, jint pname, jint param) argument
3447 android_glTexSubImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint type, jobject pixels_buf) argument
3641 android_glBindBuffer__II(JNIEnv *_env, jobject _this, jint target, jint buffer) argument
3651 android_glBufferData__IILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint target, jint size, jobject data_buf, jint usage) argument
3679 android_glBufferSubData__IIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint offset, jint size, jobject data_buf) argument
4046 android_glGetBufferParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
4054 android_glGetBufferParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
5064 android_glGetTexParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
5106 android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
5133 android_glGetTexParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
5175 android_glGetTexParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
5202 android_glGetTexParameterxv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
5244 android_glGetTexParameterxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
5491 android_glTexEnvi__III(JNIEnv *_env, jobject _this, jint target, jint pname, jint param) argument
5502 android_glTexEnviv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
5562 android_glTexEnviv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
5609 android_glTexParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
5647 android_glTexParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
5672 android_glTexParameteri__III(JNIEnv *_env, jobject _this, jint target, jint pname, jint param) argument
5683 android_glTexParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
5721 android_glTexParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
5746 android_glTexParameterxv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
5784 android_glTexParameterxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
6195 android_glBindFramebufferOES__II(JNIEnv *_env, jobject _this, jint target, jint framebuffer) argument
6210 android_glBindRenderbufferOES__II(JNIEnv *_env, jobject _this, jint target, jint renderbuffer) argument
6271 android_glCheckFramebufferStatusOES__I(JNIEnv *_env, jobject _this, jint target) argument
6441 android_glFramebufferRenderbufferOES__IIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint renderbuffertarget, jint renderbuffer) argument
6458 android_glFramebufferTexture2DOES__IIIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint textarget, jint texture, jint level) argument
6476 android_glGenerateMipmapOES__I(JNIEnv *_env, jobject _this, jint target) argument
6644 android_glGetFramebufferAttachmentParameterivOES__III_3II(JNIEnv *_env, jobject _this, jint target, jint attachment, jint pname, jintArray params_ref, jint offset) argument
6687 android_glGetFramebufferAttachmentParameterivOES__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint attachment, jint pname, jobject params_buf) argument
6713 android_glGetRenderbufferParameterivOES__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
6755 android_glGetRenderbufferParameterivOES__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
7013 android_glRenderbufferStorageOES__IIII(JNIEnv *_env, jobject _this, jint target, jint internalformat, jint width, jint height) argument
[all...]
/frameworks/base/media/java/android/media/
H A DAudioService.java3119 * The target for the ACTION_MEDIA_BUTTON events.
3251 * precondition: mediaIntent != null, target != null
3253 private void pushMediaButtonReceiver(PendingIntent mediaIntent, ComponentName target) { argument
3270 rcse = new RemoteControlStackEntry(mediaIntent, target);
3276 MSG_PERSIST_MEDIABUTTONRECEIVER, 0, 0, target/*obj*/) );
3492 * precondition: mediaIntent != null, target != null
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java276 int target,
348 int target,
359 int target,
371 int target,
382 int target,
544 int target,
712 int target,
720 int target,
873 int target,
879 int target,
275 glBindTexture( int target, int texture ) argument
347 glCompressedTexImage2D( int target, int level, int internalformat, int width, int height, int border, int imageSize, java.nio.Buffer data ) argument
358 glCompressedTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, java.nio.Buffer data ) argument
370 glCopyTexImage2D( int target, int level, int internalformat, int x, int y, int width, int height, int border ) argument
381 glCopyTexSubImage2D( int target, int level, int xoffset, int yoffset, int x, int y, int width, int height ) argument
543 glHint( int target, int mode ) argument
711 glMultiTexCoord4f( int target, float s, float t, float r, float q ) argument
719 glMultiTexCoord4x( int target, int s, int t, int r, int q ) argument
872 glTexEnvf( int target, int pname, float param ) argument
878 glTexEnvfv( int target, int pname, float[] params, int offset ) argument
885 glTexEnvfv( int target, int pname, java.nio.FloatBuffer params ) argument
891 glTexEnvx( int target, int pname, int param ) argument
897 glTexEnvxv( int target, int pname, int[] params, int offset ) argument
904 glTexEnvxv( int target, int pname, java.nio.IntBuffer params ) argument
910 glTexImage2D( int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.Buffer pixels ) argument
922 glTexParameterf( int target, int pname, float param ) argument
928 glTexParameterx( int target, int pname, int param ) argument
934 glTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
[all...]
/frameworks/base/services/input/
H A DInputDispatcher.cpp1042 LOGD("Dropping event delivery to target with channel '%s' because it "
1168 // Reset input target wait timeout.
1323 /* Case 1: New splittable pointer going down, or need target for hover or scroll. */
1417 // Set target flags.
1751 InputTarget& target = mCurrentInputTargets.editTop(); local
1752 target.inputChannel = windowInfo->inputChannel;
1753 target.flags = targetFlags;
1754 target.xOffset = - windowInfo->frameLeft;
1755 target.yOffset = - windowInfo->frameTop;
1756 target
1764 InputTarget& target = mCurrentInputTargets.editTop(); local
2518 InputTarget target; local
[all...]
/frameworks/base/services/java/com/android/server/
H A DBackupManagerService.java2073 // Initiate the target's backup pass
3628 // Okay, the target app isn't installed. We can process
3982 private boolean signaturesMatch(Signature[] storedSigs, PackageInfo target) { argument
3983 // If the target resides on the system partition, we allow it to restore
3988 if ((target.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
3989 if (DEBUG) Slog.v(TAG, "System app " + target.packageName + " - skipping sig check");
3995 Signature[] deviceSigs = target.signatures;
5604 // If the caller is not privileged and is not coming from the target
H A DInputMethodManagerService.java725 void executeOrSendMessage(IInterface target, Message msg) { argument
726 if (target.asBinder() instanceof Binder) {
1533 // is more room for the target window + IME.
1566 // is more room for the target window + IME.
H A DPowerManagerService.java2140 void setTargetLocked(int target, int stepsToTarget, int initialValue, argument
2145 } else if (targetValue == target) {
2148 targetValue = target;
2155 + " target=" + target + " targetValue=" + targetValue + " delta=" + delta
2171 Slog.i(TAG, "Step target " + mask + ": cur=" + curValue
2172 + " target=" + targetValue + " delta=" + delta);
/frameworks/base/core/java/android/provider/
H A DContactsContract.java1080 * sense for its target market.
1100 * its target market.
7570 * @param target Specific {@link View} from your layout that this dialog
7585 public static void showQuickContact(Context context, View target, Uri lookupUri, int mode, argument
7587 // Find location and bounds of target view, adjusting based on the
7591 target.getLocationOnScreen(pos);
7596 rect.right = (int) ((pos[0] + target.getWidth()) * appScale + 0.5f);
7597 rect.bottom = (int) ((pos[1] + target.getHeight()) * appScale + 0.5f);
7611 * @param target Specific {@link Rect} that this dialog should be
7629 public static void showQuickContact(Context context, Rect target, Ur argument
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2476 public StyledTextInputConnection(InputConnection target, EditStyledText est) { argument
2477 super(target, true);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java496 IBinder target = filter.receiverList.receiver.asBinder();
498 if (dest.get(i).receiverList.receiver.asBinder() == target) {
3990 if (DEBUG_BACKUP) Slog.v(TAG, "New app is backup target, launching agent for " + app);
4515 // If the target is not exported, then nobody else can get to it.
4583 // Is the component private from the target uid?
4587 // target or the target is holding the read permission.
4597 // target or the target is holding the read permission.
4607 // the target hold
13346 finishInstrumentation(IApplicationThread target, int resultCode, Bundle results) argument
[all...]

Completed in 617 milliseconds

1234