Searched refs:slot (Results 1 - 25 of 135) sorted by relevance

123456

/frameworks/native/libs/gui/
H A DBufferQueueCore.cpp200 void BufferQueueCore::clearBufferSlotLocked(int slot) { argument
201 BQ_LOGV("clearBufferSlotLocked: slot %d", slot);
203 mSlots[slot].mGraphicBuffer.clear();
204 mSlots[slot].mBufferState.reset();
205 mSlots[slot].mRequestBufferCalled = false;
206 mSlots[slot].mFrameNumber = 0;
207 mSlots[slot].mAcquireCalled = false;
208 mSlots[slot].mNeedsReallocation = true;
211 if (mSlots[slot]
257 int slot = mUnusedSlots.back(); local
270 auto slot = mFreeSlots.begin(); local
275 int slot = mFreeBuffers.back(); local
[all...]
H A DConsumerBase.cpp190 status_t ConsumerBase::detachBuffer(int slot) { argument
199 status_t result = mConsumer->detachBuffer(slot);
205 freeBufferLocked(slot);
274 CB_LOGV("acquireBufferLocked: -> slot=%d/%" PRIu64,
280 status_t ConsumerBase::addReleaseFence(int slot, argument
283 return addReleaseFenceLocked(slot, graphicBuffer, fence);
286 status_t ConsumerBase::addReleaseFenceLocked(int slot, argument
288 CB_LOGV("addReleaseFenceLocked: slot=%d", slot);
292 if (!stillTracking(slot, graphicBuffe
315 releaseBufferLocked( int slot, const sp<GraphicBuffer> graphicBuffer, EGLDisplay display, EGLSyncKHR eglFence) argument
342 stillTracking(int slot, const sp<GraphicBuffer> graphicBuffer) argument
[all...]
H A DBufferQueueConsumer.cpp148 // Front buffer is still in mSlots, so mark the slot as free
196 int slot = BufferQueueCore::INVALID_BUFFER_SLOT; local
202 slot = mCore->mSharedBufferSlot;
206 outBuffer->mGraphicBuffer = mSlots[slot].mGraphicBuffer;
215 outBuffer->mSlot = slot;
216 outBuffer->mAcquireCalled = mSlots[slot].mAcquireCalled;
226 slot = front->mSlot;
230 ATRACE_BUFFER_INDEX(slot);
232 BQ_LOGV("acquireBuffer: acquiring { slot=%d/%" PRIu64 " buffer=%p }",
233 slot, outBuffe
276 detachBuffer(int slot) argument
356 auto slot = mCore->mFreeSlots.begin(); local
401 releaseBuffer(int slot, uint64_t frameNumber, const sp<Fence>& releaseFence, EGLDisplay eglDisplay, EGLSyncKHR eglFence) argument
[all...]
H A DBufferQueueProducer.cpp58 status_t BufferQueueProducer::requestBuffer(int slot, sp<GraphicBuffer>* buf) { argument
60 BQ_LOGV("requestBuffer: slot %d", slot);
73 if (slot < 0 || slot >= BufferQueueDefs::NUM_BUFFER_SLOTS) {
74 BQ_LOGE("requestBuffer: slot index %d out of range [0, %d)",
75 slot, BufferQueueDefs::NUM_BUFFER_SLOTS);
77 } else if (!mSlots[slot].mBufferState.isDequeued()) {
78 BQ_LOGE("requestBuffer: slot %d is not owned by the producer "
79 "(state = %s)", slot, mSlot
227 int slot = mCore->mFreeBuffers.front(); local
236 int slot = *(mCore->mFreeSlots.begin()); local
294 int slot = getFreeBufferLocked(); local
302 int slot = getFreeSlotLocked(); local
552 detachBuffer(int slot) argument
724 queueBuffer(int slot, const QueueBufferInput &input, QueueBufferOutput *output) argument
946 cancelBuffer(int slot, const sp<Fence>& fence) argument
1292 auto slot = mCore->mFreeSlots.begin(); local
[all...]
/frameworks/rs/
H A DrsScript.cpp45 void Script::setSlot(uint32_t slot, Allocation *a) { argument
46 //ALOGE("setSlot %i %p", slot, a);
47 if (slot >= mHal.info.exportedVariableCount) {
48 ALOGE("Script::setSlot unable to set allocation, invalid slot index");
54 mSlots[slot].set(a);
56 mRSC->mHal.funcs.script.setGlobalBind(mRSC, this, slot, a);
59 void Script::setVar(uint32_t slot, const void *val, size_t len) { argument
60 //ALOGE("setVar %i %p %i", slot, val, len);
61 if (slot >= mHal.info.exportedVariableCount) {
62 ALOGE("Script::setVar unable to set allocation, invalid slot inde
70 getVar(uint32_t slot, const void *val, size_t len) argument
82 setVar(uint32_t slot, const void *val, size_t len, Element *e, const uint32_t *dims, size_t dimLen) argument
95 setVarObj(uint32_t slot, ObjectBase *val) argument
122 ScriptKernelID(Context *rsc, Script *s, int slot, int sig) argument
132 ScriptInvokeID(Context *rsc, Script *s, int slot) argument
140 ScriptFieldID(Context *rsc, Script *s, int slot) argument
152 rsi_ScriptKernelIDCreate(Context *rsc, RsScript vs, int slot, int sig) argument
158 rsi_ScriptInvokeIDCreate(Context *rsc, RsScript vs, uint32_t slot) argument
164 rsi_ScriptFieldIDCreate(Context *rsc, RsScript vs, int slot) argument
170 rsi_ScriptBindAllocation(Context * rsc, RsScript vs, RsAllocation va, uint32_t slot) argument
195 rsi_ScriptForEachMulti(Context *rsc, RsScript vs, uint32_t slot, RsAllocation *vains, size_t inLen, RsAllocation vaout, const void *params, size_t paramLen, const RsScriptCall *sc, size_t scLen) argument
210 rsi_ScriptForEach(Context *rsc, RsScript vs, uint32_t slot, RsAllocation vain, RsAllocation vaout, const void *params, size_t paramLen, const RsScriptCall *sc, size_t scLen) argument
227 rsi_ScriptReduce(Context *rsc, RsScript vs, uint32_t slot, RsAllocation *vains, size_t inLen, RsAllocation vaout, const RsScriptCall *sc, size_t scLen) argument
239 rsi_ScriptInvoke(Context *rsc, RsScript vs, uint32_t slot) argument
245 rsi_ScriptInvokeData(Context *rsc, RsScript vs, uint32_t slot, void *data) argument
250 rsi_ScriptInvokeV(Context *rsc, RsScript vs, uint32_t slot, const void *data, size_t len) argument
255 rsi_ScriptSetVarI(Context *rsc, RsScript vs, uint32_t slot, int value) argument
260 rsi_ScriptSetVarObj(Context *rsc, RsScript vs, uint32_t slot, RsObjectBase value) argument
266 rsi_ScriptSetVarJ(Context *rsc, RsScript vs, uint32_t slot, int64_t value) argument
271 rsi_ScriptSetVarF(Context *rsc, RsScript vs, uint32_t slot, float value) argument
276 rsi_ScriptSetVarD(Context *rsc, RsScript vs, uint32_t slot, double value) argument
281 rsi_ScriptSetVarV(Context *rsc, RsScript vs, uint32_t slot, const void *data, size_t len) argument
286 rsi_ScriptGetVarV(Context *rsc, RsScript vs, uint32_t slot, void *data, size_t len) argument
291 rsi_ScriptSetVarVE(Context *rsc, RsScript vs, uint32_t slot, const void *data, size_t len, RsElement ve, const uint32_t *dims, size_t dimLen) argument
[all...]
H A DrsProgram.cpp152 void Program::bindAllocation(Context *rsc, Allocation *alloc, uint32_t slot) { argument
154 if (slot >= mHal.state.constantsCount) {
155 ALOGE("Attempt to bind alloc at slot %u, on shader id %" PRIuPTR ", but const count is %u",
156 slot, (uintptr_t)this, mHal.state.constantsCount);
160 if (alloc->getType() != mConstantTypes[slot].get()) {
161 ALOGE("Attempt to bind alloc at slot %u, on shader id %" PRIuPTR ", but types mismatch",
162 slot, (uintptr_t)this);
167 if (mConstants[slot].get() == alloc) {
170 if (mConstants[slot].get()) {
171 mConstants[slot]
181 bindTexture(Context *rsc, uint32_t slot, Allocation *a) argument
200 bindSampler(Context *rsc, uint32_t slot, Sampler *s) argument
215 rsi_ProgramBindConstants(Context *rsc, RsProgram vp, uint32_t slot, RsAllocation constants) argument
220 rsi_ProgramBindTexture(Context *rsc, RsProgram vpf, uint32_t slot, RsAllocation a) argument
225 rsi_ProgramBindSampler(Context *rsc, RsProgram vpf, uint32_t slot, RsSampler s) argument
[all...]
H A DrsScript.h38 IDBase(Context *rsc, Script *s, int slot) : argument
39 ObjectBase(rsc), mScript(s), mSlot(slot) {}
51 ScriptKernelID(Context *rsc, Script *s, int slot, int sig);
62 ScriptInvokeID(Context *rsc, Script *s, int slot);
70 ScriptFieldID(Context *rsc, Script *s, int slot);
117 void setSlot(uint32_t slot, Allocation *a);
118 void setVar(uint32_t slot, const void *val, size_t len);
119 void getVar(uint32_t slot, const void *val, size_t len);
120 void setVar(uint32_t slot, const void *val, size_t len, Element *e,
122 void setVarObj(uint32_t slot, ObjectBas
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsic.cpp34 void RsdCpuScriptIntrinsic::invokeFunction(uint32_t slot, const void *params, size_t paramLength) { argument
50 void RsdCpuScriptIntrinsic::setGlobalVar(uint32_t slot, const void *data, size_t dataLength) { argument
55 void RsdCpuScriptIntrinsic::setGlobalVarWithElemDims(uint32_t slot, const void *data, argument
62 void RsdCpuScriptIntrinsic::setGlobalBind(uint32_t slot, Allocation *data) { argument
67 void RsdCpuScriptIntrinsic::setGlobalObj(uint32_t slot, ObjectBase *data) { argument
76 void RsdCpuScriptIntrinsic::preLaunch(uint32_t slot, const Allocation ** ains, argument
82 void RsdCpuScriptIntrinsic::postLaunch(uint32_t slot, const Allocation ** ains, argument
88 void RsdCpuScriptIntrinsic::invokeForEach(uint32_t slot, argument
98 preLaunch(slot, ains, inLen, aout, usr, usrLen, sc);
102 mtls.fep.slot
115 forEachKernelSetup(uint32_t slot, MTLaunchStructForEach *mtls) argument
[all...]
H A DrsCpuIntrinsic.h31 void invokeFunction(uint32_t slot, const void * params, size_t paramLength) override;
34 void invokeForEach(uint32_t slot,
42 void forEachKernelSetup(uint32_t slot, MTLaunchStructForEach * mtls) override;
46 void preLaunch(uint32_t slot, const Allocation ** ains,
49 void postLaunch(uint32_t slot, const Allocation ** ains,
54 void setGlobalVar(uint32_t slot, const void * data, size_t dataLength) override;
55 void setGlobalVarWithElemDims(uint32_t slot, const void * data,
59 void setGlobalBind(uint32_t slot, Allocation *data) override;
60 void setGlobalObj(uint32_t slot, ObjectBase *data) override;
H A DrsCpuExecutable.h137 void* getFieldAddress(int slot) const { return mFieldAddress[slot]; }
139 bool getFieldIsObject(int slot) const { return mFieldIsObject[slot]; }
140 const char* getFieldName(int slot) const { return mFieldName[slot]; }
142 InvokeFunc_t getInvokeFunction(int slot) const { return mInvokeFunctions[slot]; }
144 ForEachFunc_t getForEachFunction(int slot) const { return mForEachFunctions[slot]; }
[all...]
H A DrsCpuScript.h45 void invokeFunction(uint32_t slot, const void *params, size_t paramLength) override;
47 virtual void preLaunch(uint32_t slot, const Allocation ** ains,
50 virtual void postLaunch(uint32_t slot, const Allocation ** ains,
55 void invokeForEach(uint32_t slot,
63 void invokeReduce(uint32_t slot,
71 void setGlobalVar(uint32_t slot, const void *data, size_t dataLength) override;
72 void getGlobalVar(uint32_t slot, void *data, size_t dataLength) override;
73 void setGlobalVarWithElemDims(uint32_t slot, const void *data, size_t dataLength,
76 void setGlobalBind(uint32_t slot, Allocation *data) override;
77 void setGlobalObj(uint32_t slot, ObjectBas
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_imdct_synth.cpp319 for (int32 slot = 1; slot < FILTERBANK_BANDS; slot += 6)
321 int32 temp1 = out[slot ];
322 int32 temp2 = out[slot+2];
323 int32 temp3 = out[slot+4];
324 out[slot ] = -temp1;
325 out[slot+2] = -temp2;
326 out[slot+4] = -temp3;
336 int32 slot; local
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DProgram.java95 * @param slot index of the constant input type to return
98 public Type getConstant(int slot) { argument
99 if (slot < 0 || slot >= mConstants.length) {
102 return mConstants[slot];
114 * Returns the type of texture at a given slot. e.g. 2D or Cube
115 * @param slot index of the texture input
118 public TextureType getTextureType(int slot) { argument
119 if ((slot < 0) || (slot >
131 getTextureName(int slot) argument
146 bindConstants(Allocation a, int slot) argument
165 bindTexture(Allocation va, int slot) argument
189 bindSampler(Sampler vs, int slot) argument
[all...]
H A DScript.java39 KernelID(long id, RenderScript rs, Script s, int slot, int sig) { argument
42 mSlot = slot;
52 protected KernelID createKernelID(int slot, int sig, Element ein, argument
54 KernelID k = mKIDs.get(slot);
59 long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
64 k = new KernelID(id, mRS, this, slot, sig);
65 mKIDs.put(slot, k);
80 InvokeID(long id, RenderScript rs, Script s, int slot) { argument
83 mSlot = slot;
91 protected InvokeID createInvokeID(int slot) { argument
118 FieldID(long id, RenderScript rs, Script s, int slot) argument
130 createFieldID(int slot, Element e) argument
151 invoke(int slot) argument
159 invoke(int slot, FieldPacker v) argument
171 forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) argument
180 forEach(int slot, Allocation ain, Allocation aout, FieldPacker v, LaunchOptions sc) argument
226 forEach(int slot, Allocation[] ains, Allocation aout, FieldPacker v) argument
236 forEach(int slot, Allocation[] ains, Allocation aout, FieldPacker v, LaunchOptions sc) argument
292 reduce(int slot, Allocation[] ains, Allocation aout, LaunchOptions sc) argument
352 bindAllocation(Allocation va, int slot) argument
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScript.java70 KernelID(long id, RenderScript rs, Script s, int slot, int sig) { argument
73 mSlot = slot;
83 * @param slot
90 protected KernelID createKernelID(int slot, int sig, Element ein, Element eout) { argument
91 KernelID k = mKIDs.get(slot);
96 long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig, mUseIncSupp);
101 k = new KernelID(id, mRS, this, slot, sig);
103 mKIDs.put(slot, k);
118 InvokeID(long id, RenderScript rs, Script s, int slot) { argument
121 mSlot = slot;
129 createInvokeID(int slot) argument
157 FieldID(long id, RenderScript rs, Script s, int slot) argument
173 createFieldID(int slot, Element e) argument
194 invoke(int slot) argument
204 invoke(int slot, FieldPacker v) argument
218 bindAllocation(Allocation va, int slot) argument
245 forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) argument
282 forEach(int slot, Allocation ain, Allocation aout, FieldPacker v, LaunchOptions sc) argument
324 forEach(int slot, Allocation[] ains, Allocation aout, FieldPacker v) argument
334 forEach(int slot, Allocation[] ains, Allocation aout, FieldPacker v, LaunchOptions sc) argument
390 reduce(int slot, Allocation[] ains, Allocation aout, LaunchOptions sc) argument
[all...]
/frameworks/rs/driver/
H A DrsdVertexArray.cpp66 void RsdVertexArray::logAttrib(uint32_t idx, uint32_t slot) const {
70 ALOGV("va %i: slot=%i name=%s buf=%i ptr=%p size=%i type=0x%x stride=0x%x norm=%i offset=0x%p",
71 idx, slot,
100 int32_t slot = sc->vtxAttribSlot(mAttribs[ct].name); local
102 logAttrib(ct, slot);
104 if (slot < 0 || slot >= (int32_t)maxAttrs) {
107 glEnableVertexAttribArray(slot);
108 state->mAttrsEnabled[slot] = true;
110 glVertexAttribPointer(slot,
[all...]
H A DrsdBcc.cpp71 uint32_t slot,
79 rsdScriptInvokeForEachMulti(rsc, s, slot, nullptr, 0, aout, usr, usrLen,
84 rsdScriptInvokeForEachMulti(rsc, s, slot, ains, 1, aout, usr, usrLen,
91 uint32_t slot,
100 cs->invokeForEach(slot, ains, inLen, aout, usr, usrLen, sc);
120 uint32_t slot,
124 cs->invokeFunction(slot, params, paramLength);
128 uint32_t slot,
133 cs->invokeReduce(slot, ains, inLen, aout, sc);
137 uint32_t slot, voi
69 rsdScriptInvokeForEach(const Context *rsc, Script *s, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, size_t usrLen, const RsScriptCall *sc) argument
89 rsdScriptInvokeForEachMulti(const Context *rsc, Script *s, uint32_t slot, const Allocation ** ains, size_t inLen, Allocation * aout, const void * usr, size_t usrLen, const RsScriptCall *sc) argument
119 rsdScriptInvokeFunction(const Context *dc, Script *s, uint32_t slot, const void *params, size_t paramLength) argument
127 rsdScriptInvokeReduce(const Context *dc, Script *s, uint32_t slot, const Allocation ** ains, size_t inLen, Allocation *aout, const RsScriptCall *sc) argument
136 rsdScriptSetGlobalVar(const Context *dc, const Script *s, uint32_t slot, void *data, size_t dataLength) argument
142 rsdScriptGetGlobalVar(const Context *dc, const Script *s, uint32_t slot, void *data, size_t dataLength) argument
149 rsdScriptSetGlobalVarWithElemDims(const Context *dc, const Script *s, uint32_t slot, void *data, size_t dataLength, const android::renderscript::Element *elem, const uint32_t *dims, size_t dimLength) argument
157 rsdScriptSetGlobalBind(const Context *dc, const Script *s, uint32_t slot, Allocation *data) argument
162 rsdScriptSetGlobalObj(const Context *dc, const Script *s, uint32_t slot, ObjectBase *data) argument
[all...]
H A DrsdBcc.h33 uint32_t slot,
39 uint32_t slot,
48 uint32_t slot,
56 uint32_t slot,
73 uint32_t slot, void *data, size_t dataLen);
76 uint32_t slot, void *data, size_t dataLen);
79 uint32_t slot, void *data,
86 uint32_t slot, android::renderscript::Allocation *data);
89 uint32_t slot, android::renderscript::ObjectBase *data);
93 uint32_t slot,
[all...]
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DKeepaliveTracker.java79 * All information about this keepalive is known at construction time except the slot number,
90 /** Keepalive slot. A small integer that identifies this keepalive among the ones handled
139 void notifyMessenger(int slot, int err) { argument
140 KeepaliveTracker.this.notifyMessenger(mMessenger, slot, err);
187 void start(int slot) { argument
190 mSlot = slot;
192 mNai.asyncChannel.sendMessage(CMD_START_PACKET_KEEPALIVE, slot, mInterval, mPacket);
217 void notifyMessenger(Messenger messenger, int slot, int err) { argument
220 message.arg1 = slot;
237 // Find the lowest-numbered free slot
267 handleStopKeepalive(NetworkAgentInfo nai, int slot, int reason) argument
[all...]
/frameworks/rs/cpp/
H A DScript.cpp25 void Script::invoke(uint32_t slot, const void *v, size_t len) const { argument
26 tryDispatch(mRS, RS::dispatch->ScriptInvokeV(mRS->getContext(), getID(), slot, v, len));
29 void Script::forEach(uint32_t slot, sp<const Allocation> ain, sp<const Allocation> aout, argument
36 tryDispatch(mRS, RS::dispatch->ScriptForEach(mRS->getContext(), getID(), slot, in_id, out_id, usr, usrLen, nullptr, 0));
43 void Script::bindAllocation(sp<Allocation> va, uint32_t slot) const {
44 tryDispatch(mRS, RS::dispatch->ScriptBindAllocation(mRS->getContext(), getID(), BaseObj::getObjID(va), slot));
/frameworks/native/libs/gui/tests/
H A DBufferQueue_test.cpp133 int slot; local
137 mProducer->dequeueBuffer(&slot, &fence, 0, 0, 0,
139 ASSERT_EQ(OK, mProducer->requestBuffer(slot, &buffer));
150 ASSERT_EQ(OK, mProducer->queueBuffer(slot, input, &output));
171 int slot; local
181 mProducer->dequeueBuffer(&slot, &fence, 1, 1, 0,
183 ASSERT_EQ(OK, mProducer->requestBuffer(slot, &buf));
184 ASSERT_EQ(OK, mProducer->queueBuffer(slot, qbi, &qbo));
189 mProducer->dequeueBuffer(&slot, &fence, 1, 1, 0,
191 ASSERT_EQ(OK, mProducer->requestBuffer(slot,
222 int slot; local
259 int slot; local
324 int slot; local
373 int slot; local
432 int slot; local
480 int slot; local
514 int slot; local
572 int slot; local
636 int slot; local
692 int slot; local
727 int slot = BufferQueue::INVALID_BUFFER_SLOT; local
754 int slot = BufferQueue::INVALID_BUFFER_SLOT; local
764 int slot = BufferQueue::INVALID_BUFFER_SLOT; local
785 int slot = BufferQueue::INVALID_BUFFER_SLOT; local
808 int slot = BufferQueue::INVALID_BUFFER_SLOT; local
[all...]
H A DStreamSplitter_test.cpp79 int slot; local
83 inputProducer->dequeueBuffer(&slot, &fence, 0, 0, 0,
85 ASSERT_EQ(OK, inputProducer->requestBuffer(slot, &buffer));
96 ASSERT_EQ(OK, inputProducer->queueBuffer(slot, qbInput, &qbOutput));
117 inputProducer->dequeueBuffer(&slot, &fence, 0, 0, 0,
151 int slot; local
155 inputProducer->dequeueBuffer(&slot, &fence, 0, 0, 0,
157 ASSERT_EQ(OK, inputProducer->requestBuffer(slot, &buffer));
168 ASSERT_EQ(OK, inputProducer->queueBuffer(slot, qbInput, &qbOutput));
192 inputProducer->dequeueBuffer(&slot,
215 int slot; local
[all...]
/frameworks/native/services/surfaceflinger/
H A DMonitoredProducer.cpp55 status_t MonitoredProducer::requestBuffer(int slot, sp<GraphicBuffer>* buf) { argument
56 return mProducer->requestBuffer(slot, buf);
68 status_t MonitoredProducer::dequeueBuffer(int* slot, sp<Fence>* fence, argument
70 return mProducer->dequeueBuffer(slot, fence, w, h, format, usage);
73 status_t MonitoredProducer::detachBuffer(int slot) { argument
74 return mProducer->detachBuffer(slot);
87 status_t MonitoredProducer::queueBuffer(int slot, const QueueBufferInput& input, argument
89 return mProducer->queueBuffer(slot, input, output);
92 status_t MonitoredProducer::cancelBuffer(int slot, const sp<Fence>& fence) { argument
93 return mProducer->cancelBuffer(slot, fenc
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_tv_TvUinputBridge.cpp84 uint32_t slot = mtSlots.markFirstUnmarkedBit(); local
85 slotsMap[pointerId] = slot;
86 return slot;
92 int slot = findSlot(pointerId); local
93 if (slot != SLOT_UNKNOWN) {
94 mtSlots.clearBit(slot);
224 int32_t slot = findSlot(pointerId); local
225 if (slot == SLOT_UNKNOWN) {
226 slot = assignSlot(pointerId);
228 if (slot !
240 int32_t slot = findSlot(pointerId); local
262 int32_t slot = SLOT_UNKNOWN; local
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListButtonsDiagonalAcrossItems.java52 final Slot slot = position == 0 ? Slot.Left :
55 parent.getContext(), desiredHeight, slot);

Completed in 418 milliseconds

123456