Searched defs:id (Results 351 - 375 of 399) sorted by path

<<111213141516

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsHeader.java92 public int id; field in class:SmsHeader.MiscElt
126 int id = inStream.read();
130 switch (id) {
175 miscElt.id = id;
242 outStream.write(miscElt.id);
280 builder.append("{ id=" + miscElt.id);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DItem.java30 public int id; field in class:Item
36 public Item(int id, String text) { argument
37 this.id = id;
43 id = in.readInt();
53 dest.writeInt(id);
H A DResponseData.java51 private int id; field in class:SelectItemResponseData
53 public SelectItemResponseData(int id) { argument
55 this.id = id;
64 buf.write(id); // identifier of item chosen
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaDataConnection.java40 private CdmaDataConnection(CDMAPhone phone, String name, int id, RetryManager rm, argument
42 super(phone, name, id, rm, dct);
49 * @param id the connection id
53 static CdmaDataConnection makeDataConnection(CDMAPhone phone, int id, RetryManager rm, argument
56 "CdmaDC-" + mCount.incrementAndGet(), id, rm, dct);
H A DCdmaInformationRecords.java40 int id = p.readInt();
41 switch (id) {
44 record = new CdmaDisplayInfoRec(id, p.readString());
50 record = new CdmaNumberInfoRec(id, p.readString(), p.readInt(), p.readInt(),
80 + CdmaInformationRecords.idToString(id) + " ");
85 public static String idToString(int id) { argument
86 switch(id) {
132 public int id; field in class:CdmaInformationRecords.CdmaDisplayInfoRec
135 public CdmaDisplayInfoRec(int id, String alpha) { argument
136 this.id
150 public int id; field in class:CdmaInformationRecords.CdmaNumberInfoRec
157 CdmaNumberInfoRec(int id, String number, int numberType, int numberPlan, int pi, int si) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmDataConnection.java44 private GsmDataConnection(PhoneBase phone, String name, int id, RetryManager rm, argument
46 super(phone, name, id, rm, dct);
53 * @param id the connection id
57 static GsmDataConnection makeDataConnection(PhoneBase phone, int id, RetryManager rm, argument
60 "GsmDC-" + mCount.incrementAndGet(), id, rm, dct);
/frameworks/rs/cpp/
H A DAllocation.cpp50 Allocation::Allocation(void *id, RenderScript *rs, sp<const Type> t, uint32_t usage) : argument
51 BaseObj(id, rs) {
383 void *id = rsAllocationCreateTyped(rs->mContext, type->getID(), mips, usage, 0); local
384 if (id == 0) {
388 return new Allocation(id, rs, type, usage);
393 void *id = rsAllocationCreateTyped(rs->mContext, type->getID(), mips, usage, (uint32_t)pointer); local
394 if (id == 0) {
397 return new Allocation(id, rs, type, usage);
412 void *id = rsAllocationCreateTyped(rs->mContext, t->getID(), local
414 if (id
[all...]
H A DBaseObj.cpp29 ALOGE("Internal error: Object id 0.");
39 BaseObj::BaseObj(void *id, RenderScript *rs) { argument
41 mID = id;
H A DElement.cpp151 Element::Element(void *id, RenderScript *rs, argument
154 android::Vector<uint32_t> &arraySizes) : BaseObj(id, rs) {
225 Element::Element(void *id, RenderScript *rs, argument
227 BaseObj(id, rs)
251 Element(int id, RenderScript rs) {
252 super(id, rs);
299 void * id = rsElementCreate(rs->mContext, dt, RS_KIND_USER, false, 1); local
300 return new Element(id, rs, dt, RS_KIND_USER, false, 1);
307 void *id = rsElementCreate(rs->mContext, dt, RS_KIND_USER, false, size); local
308 return new Element(id, r
358 void * id = rsElementCreate(rs->mContext, dt, dk, true, size); local
420 void *id = rsElementCreate2(mRS->mContext, local
[all...]
H A DScript.cpp46 Script::Script(void *id, RenderScript *rs) : BaseObj(id, rs) { argument
H A DType.cpp67 Type::Type(void *id, RenderScript *rs) : BaseObj(id, rs) { argument
151 void * id = rsTypeCreate(mRS->mContext, mElement->getID(), mDimX, mDimY, mDimZ, local
153 Type *t = new Type(id, mRS);
/frameworks/rs/driver/
H A DrsdShaderCache.cpp244 uint32_t id = s->getStateBasedID(sId); local
246 if (mEntries[ct]->vtx == id) {
262 uint32_t id = s->getStateBasedID(sId); local
264 if (mEntries[ct]->frag == id) {
/frameworks/rs/
H A DrsAllocation.cpp342 ALOGE("allocation loading skipped due to invalid class id\n");
441 int32_t id = rsc->mHal.funcs.allocation.initSurfaceTexture(rsc, this); local
442 mHal.state.surfaceTextureID = id;
443 return id;
H A DrsScriptIntrinsic.cpp82 RsScript rsi_ScriptIntrinsicCreate(Context *rsc, uint32_t id, RsElement ve) { argument
84 ALOGE("rsi_ScriptIntrinsicCreate %i", id);
85 if (!si->init(rsc, (RsScriptIntrinsicID)id, (Element *)ve)) {
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DAllocation.java137 MipmapControl(int id) { argument
138 mID = id;
196 Allocation(int id, RenderScript rs, Type t, int usage) { argument
197 super(id, rs);
910 int id = rs.nAllocationCreateTyped(type.getID(rs), mips.mID, usage, 0);
911 if (id == 0) {
914 return new Allocation(id, rs, type, usage);
965 int id = rs.nAllocationCreateTyped(t.getID(rs), MipmapControl.MIPMAP_NONE.mID, usage, 0);
966 if (id == 0) {
969 return new Allocation(id, r
[all...]
H A DAllocationAdapter.java28 AllocationAdapter(int id, RenderScript rs, Allocation alloc) { argument
29 super(id, rs, alloc.mType, alloc.mUsage);
H A DBaseObj.java28 BaseObj(int id, RenderScript rs) { argument
31 mID = id;
35 void setID(int id) { argument
39 mID = id;
57 throw new RSRuntimeException("Internal error: Object id 0.");
H A DElement.java164 DataType(int id, int size) { argument
165 mID = id;
186 DataKind(int id) { argument
187 mID = id;
709 Element(int id, RenderScript rs, Element[] e, String[] n, int[] as) { argument
710 super(id, rs);
726 Element(int id, RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) { argument
727 super(id, rs);
745 Element(int id, RenderScript rs) { argument
746 super(id, r
[all...]
H A DRenderScript.java142 native void rsnObjDestroy(int con, int id); argument
143 synchronized void nObjDestroy(int id) { argument
148 rsnObjDestroy(mContext, id);
162 native void rsnElementGetNativeData(int con, int id, int[] elementData); argument
163 synchronized void nElementGetNativeData(int id, int[] elementData) { argument
165 rsnElementGetNativeData(mContext, id, elementData);
167 native void rsnElementGetSubElements(int con, int id, argument
169 synchronized void nElementGetSubElements(int id, int[] IDs, String[] names, int[] arraySizes) { argument
171 rsnElementGetSubElements(mContext, id, IDs, names, arraySizes);
179 native void rsnTypeGetNativeData(int con, int id, in argument
180 nTypeGetNativeData(int id, int[] typeData) argument
237 rsnAllocationData1D(int con, int id, int off, int mip, int count, int[] d, int sizeBytes) argument
238 nAllocationData1D(int id, int off, int mip, int count, int[] d, int sizeBytes) argument
242 rsnAllocationData1D(int con, int id, int off, int mip, int count, short[] d, int sizeBytes) argument
243 nAllocationData1D(int id, int off, int mip, int count, short[] d, int sizeBytes) argument
247 rsnAllocationData1D(int con, int id, int off, int mip, int count, byte[] d, int sizeBytes) argument
248 nAllocationData1D(int id, int off, int mip, int count, byte[] d, int sizeBytes) argument
252 rsnAllocationData1D(int con, int id, int off, int mip, int count, float[] d, int sizeBytes) argument
253 nAllocationData1D(int id, int off, int mip, int count, float[] d, int sizeBytes) argument
258 rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
259 nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
284 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) argument
285 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) argument
289 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) argument
290 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) argument
294 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) argument
295 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) argument
299 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
300 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
304 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
305 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
310 rsnAllocationRead(int con, int id, byte[] d) argument
311 nAllocationRead(int id, byte[] d) argument
315 rsnAllocationRead(int con, int id, short[] d) argument
316 nAllocationRead(int id, short[] d) argument
320 rsnAllocationRead(int con, int id, int[] d) argument
321 nAllocationRead(int id, int[] d) argument
325 rsnAllocationRead(int con, int id, float[] d) argument
326 nAllocationRead(int id, float[] d) argument
330 rsnAllocationGetType(int con, int id) argument
331 nAllocationGetType(int id) argument
336 rsnAllocationResize1D(int con, int id, int dimX) argument
337 nAllocationResize1D(int id, int dimX) argument
341 rsnAllocationResize2D(int con, int id, int dimX, int dimY) argument
342 nAllocationResize2D(int id, int dimX, int dimY) argument
357 rsnScriptInvoke(int con, int id, int slot) argument
358 nScriptInvoke(int id, int slot) argument
362 rsnScriptForEach(int con, int id, int slot, int ain, int aout, byte[] params) argument
363 rsnScriptForEach(int con, int id, int slot, int ain, int aout) argument
364 nScriptForEach(int id, int slot, int ain, int aout, byte[] params) argument
372 rsnScriptInvokeV(int con, int id, int slot, byte[] params) argument
373 nScriptInvokeV(int id, int slot, byte[] params) argument
377 rsnScriptSetVarI(int con, int id, int slot, int val) argument
378 nScriptSetVarI(int id, int slot, int val) argument
382 rsnScriptSetVarJ(int con, int id, int slot, long val) argument
383 nScriptSetVarJ(int id, int slot, long val) argument
387 rsnScriptSetVarF(int con, int id, int slot, float val) argument
388 nScriptSetVarF(int id, int slot, float val) argument
392 rsnScriptSetVarD(int con, int id, int slot, double val) argument
393 nScriptSetVarD(int id, int slot, double val) argument
397 rsnScriptSetVarV(int con, int id, int slot, byte[] val) argument
398 nScriptSetVarV(int id, int slot, byte[] val) argument
402 rsnScriptSetVarVE(int con, int id, int slot, byte[] val, int e, int[] dims) argument
404 nScriptSetVarVE(int id, int slot, byte[] val, int e, int[] dims) argument
409 rsnScriptSetVarObj(int con, int id, int slot, int val) argument
410 nScriptSetVarObj(int id, int slot, int val) argument
422 rsnScriptIntrinsicCreate(int con, int id, int eid) argument
423 nScriptIntrinsicCreate(int id, int eid) argument
628 Priority(int id) argument
[all...]
H A DSampler.java45 Value(int id) { argument
46 mID = id;
57 Sampler(int id, RenderScript rs) { argument
58 super(id, rs);
286 int id = mRS.nSamplerCreate(mMag.mID, mMin.mID,
288 Sampler sampler = new Sampler(id, mRS);
H A DScript.java38 KernelID(int id, RenderScript rs, Script s, int slot, int sig) { argument
39 super(id, rs);
64 int id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
65 if (id == 0) {
69 k = new KernelID(id, mRS, this, slot, sig);
85 FieldID(int id, RenderScript rs, Script s, int slot) { argument
86 super(id, rs);
107 int id = mRS.nScriptFieldIDCreate(getID(mRS), slot);
108 if (id == 0) {
112 f = new FieldID(id, mR
170 Script(int id, RenderScript rs) argument
[all...]
H A DScriptC.java41 * @param id
44 protected ScriptC(int id, RenderScript rs) { argument
45 super(id, rs);
58 int id = internalCreate(rs, resources, resourceID);
59 if (id == 0) {
62 setID(id);
H A DScriptGroup.java84 ScriptGroup(int id, RenderScript rs) { argument
85 super(id, rs);
392 int id = mRS.nScriptGroupCreate(kernels, src, dstk, dstf, types);
393 if (id == 0) {
397 ScriptGroup sg = new ScriptGroup(id, mRS);
H A DScriptIntrinsic.java28 ScriptIntrinsic(int id, RenderScript rs) { argument
29 super(id, rs);
H A DScriptIntrinsicBlend.java25 ScriptIntrinsicBlend(int id, RenderScript rs) { argument
26 super(id, rs);
40 int id = rs.nScriptIntrinsicCreate(7, e.getID(rs));
41 return new ScriptIntrinsicBlend(id, rs);
45 private void blend(int id, Allocation ain, Allocation aout) { argument
52 forEach(id, ain, aout, null);

Completed in 592 milliseconds

<<111213141516