Home
last modified time | relevance | path

Searched refs:eid (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/telephony/java/android/service/euicc/
H A DIGetEidCallback.aidl22 void onSuccess(String eid); in onSuccess() argument
H A DEuiccService.java826 String eid = EuiccService.this.onGetEid(slotId); in getEid()
828 callback.onSuccess(eid); in getEid()
/aosp14/frameworks/base/telephony/java/android/telephony/
H A DUiccCardInfo.java103 public UiccCardInfo(boolean isEuicc, int cardId, String eid, int physicalSlotIndex, in UiccCardInfo() argument
108 this.mEid = eid; in UiccCardInfo()
/aosp14/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java439 …native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, in… in rsnTypeCreate() argument
440 …synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv)… in nTypeCreate() argument
442 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv); in nTypeCreate()
848 native long rsnScriptIntrinsicCreate(long con, int id, long eid); in rsnScriptIntrinsicCreate() argument
849 synchronized long nScriptIntrinsicCreate(int id, long eid) { in nScriptIntrinsicCreate() argument
851 return rsnScriptIntrinsicCreate(mContext, id, eid); in nScriptIntrinsicCreate()
/aosp14/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp1181 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, in nTypeCreate() argument
1186 (RsContext)con, (void*)eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate()
1189 return (jlong)(uintptr_t)rsTypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, dimz, mips, in nTypeCreate()
2254 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid) in nScriptIntrinsicCreate() argument
2258 (void *)eid); in nScriptIntrinsicCreate()
2260 return (jlong)(uintptr_t)rsScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid); in nScriptIntrinsicCreate()
/aosp14/frameworks/base/tools/aapt/
H A DResourceTable.cpp4367 int eid = Res_GETENTRY(resID); in getEntry() local
4368 if (eid < 0 || eid >= (int)t->getOrderedConfigs().size()) { in getEntry()
4373 sp<ConfigList> c = t->getOrderedConfigs()[eid]; in getEntry()