Searched defs:eid (Results 1 - 9 of 9) sorted by relevance

/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DType.java196 public long getDummyType(RenderScript mRS, long eid) { argument
197 return mRS.nIncTypeCreate(eid, mDimX, mDimY, mDimZ, mDimMipmaps, mDimFaces, mDimYuv);
H A DRenderScript.java375 native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
376 synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
378 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
778 native long rsnScriptIntrinsicCreate(long con, int id, long eid, boolean mUseInc); argument
779 synchronized long nScriptIntrinsicCreate(int id, long eid, boolean mUseInc) { argument
804 return rsnScriptIntrinsicCreate(mIncCon, id, eid, mUseInc);
806 return rsnScriptIntrinsicCreate(mContext, id, eid, mUseInc);
1034 native long rsnIncTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
1035 synchronized long nIncTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
1037 return rsnIncTypeCreate(mIncCon, eid,
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
H A DEuiccConnector.java185 void onGetEidComplete(String eid); argument
644 public void onSuccess(String eid) {
647 .onGetEidComplete(eid);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/euicc/
H A DEuiccControllerTest.java179 callGetEid(true /* success */, "ABCDE" /* eid */);
185 assertEquals("ABCDE", callGetEid(true /* success */, "ABCDE" /* eid */));
191 assertEquals("ABCDE", callGetEid(true /* success */, "ABCDE" /* eid */));
197 assertNull(callGetEid(false /* success */, null /* eid */));
203 assertNull(callGetEid(true /* success */, null /* eid */));
782 private String callGetEid(final boolean success, final @Nullable String eid) { argument
788 cb.onGetEidComplete(eid);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp4379 int eid = Res_GETENTRY(resID); local
4380 if (eid < 0 || eid >= (int)t->getOrderedConfigs().size()) {
4385 sp<ConfigList> c = t->getOrderedConfigs()[eid];
/frameworks/rs/
H A DrsApiStubs.cpp619 extern "C" RsScript rsScriptIntrinsicCreate (RsContext ctxWrapper, uint32_t id, RsElement eid) argument
621 return RS_DISPATCH(ctxWrapper, ScriptIntrinsicCreate, id, eid);
/frameworks/rs/support/jni/
H A Dandroid_renderscript_RenderScript.cpp1013 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
1016 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
1017 (RsContext)con, eid, dimx, dimy, dimz, mips, faces, yuv);
1019 return (jlong)(uintptr_t)dispatchTab.TypeCreate((RsContext)con, (RsElement)eid, dimx, dimy,
1900 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid, jboolean mUseInc) argument
1902 LOG_API("nScriptIntrinsicCreate, con(%p) id(%i) element(%p)", (RsContext)con, id, (void *)eid);
1904 return (jlong)(uintptr_t)dispatchTabInc.ScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);
1906 return (jlong)(uintptr_t)dispatchTab.ScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);
2190 nIncTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
2193 LOG_API("nTypeCreate, con(%p) eid(
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java430 native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
431 synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
433 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
841 native long rsnScriptIntrinsicCreate(long con, int id, long eid); argument
842 synchronized long nScriptIntrinsicCreate(int id, long eid) { argument
844 return rsnScriptIntrinsicCreate(mContext, id, eid);
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp1181 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
1185 ALOGD("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
1186 (RsContext)con, (void*)eid, dimx, dimy, dimz, mips, faces, yuv);
1189 return (jlong)(uintptr_t)rsTypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, dimz, mips,
2251 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid) argument
2255 (void *)eid);
2257 return (jlong)(uintptr_t)rsScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);

Completed in 282 milliseconds