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

123456789

/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposerBufferCache.cpp28 void HWComposerBufferCache::getHwcBuffer(int slot, argument
32 if (slot == BufferQueue::INVALID_BUFFER_SLOT || slot < 0) {
33 // default to slot 0
34 slot = 0;
37 if (static_cast<size_t>(slot) >= mBuffers.size()) {
38 mBuffers.resize(slot + 1);
41 *outSlot = slot;
43 if (mBuffers[slot] == buffer) {
50 mBuffers[slot]
[all...]
/frameworks/native/libs/gui/tests/
H A DBufferItemConsumer_test.cpp77 int slot; local
79 status_t ret = mProducer->dequeueBuffer(&slot, &outFence, kWidth, kHeight, 0, 0,
83 ALOGV("dequeueBuffer: slot=%d", slot);
85 ret = mProducer->requestBuffer(slot, &mBuffers[slot]);
88 *outSlot = slot;
91 void QueueBuffer(int slot) { argument
92 ALOGV("enqueueBuffer: slot=%d", slot);
111 ReleaseBuffer(int slot) argument
133 int slot; local
151 int slot; local
174 int slot; local
191 int slot; local
[all...]
/frameworks/rs/rsov/compiler/
H A DContext.cpp53 // Builds the lookup table from a variable name to its slot number
54 for (size_t slot = 0; slot < varCount; slot++) {
55 std::string varName(varNames[slot]);
56 mVarNameToSlot.insert(std::make_pair(varName, (uint32_t)slot));
61 for (size_t slot = 0; slot < kernelCount; slot++) {
62 mForEachNameToSlot.insert(std::make_pair(kernelNames[slot], slo
72 const uint32_t slot = getSlotForExportVar(varName); 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
149 rsi_ScriptKernelIDCreate(Context *rsc, RsScript vs, int slot, int sig) argument
155 rsi_ScriptInvokeIDCreate(Context *rsc, RsScript vs, uint32_t slot) argument
161 rsi_ScriptFieldIDCreate(Context *rsc, RsScript vs, int slot) argument
167 rsi_ScriptBindAllocation(Context * rsc, RsScript vs, RsAllocation va, uint32_t slot) argument
192 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
207 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
224 rsi_ScriptReduce(Context *rsc, RsScript vs, uint32_t slot, RsAllocation *vains, size_t inLen, RsAllocation vaout, const RsScriptCall *sc, size_t scLen) argument
236 rsi_ScriptInvoke(Context *rsc, RsScript vs, uint32_t slot) argument
242 rsi_ScriptInvokeData(Context *rsc, RsScript vs, uint32_t slot, void *data) argument
247 rsi_ScriptInvokeV(Context *rsc, RsScript vs, uint32_t slot, const void *data, size_t len) argument
252 rsi_ScriptSetVarI(Context *rsc, RsScript vs, uint32_t slot, int value) argument
257 rsi_ScriptSetVarObj(Context *rsc, RsScript vs, uint32_t slot, RsObjectBase value) argument
263 rsi_ScriptSetVarJ(Context *rsc, RsScript vs, uint32_t slot, int64_t value) argument
268 rsi_ScriptSetVarF(Context *rsc, RsScript vs, uint32_t slot, float value) argument
273 rsi_ScriptSetVarD(Context *rsc, RsScript vs, uint32_t slot, double value) argument
278 rsi_ScriptSetVarV(Context *rsc, RsScript vs, uint32_t slot, const void *data, size_t len) argument
283 rsi_ScriptGetVarV(Context *rsc, RsScript vs, uint32_t slot, void *data, size_t len) argument
288 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
212 rsi_ProgramBindConstants(Context *rsc, RsProgram vp, uint32_t slot, RsAllocation constants) argument
217 rsi_ProgramBindTexture(Context *rsc, RsProgram vpf, uint32_t slot, RsAllocation a) argument
222 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/native/libs/gui/
H A DBufferQueueCore.cpp204 void BufferQueueCore::clearBufferSlotLocked(int slot) { argument
205 BQ_LOGV("clearBufferSlotLocked: slot %d", slot);
207 mSlots[slot].mGraphicBuffer.clear();
208 mSlots[slot].mBufferState.reset();
209 mSlots[slot].mRequestBufferCalled = false;
210 mSlots[slot].mFrameNumber = 0;
211 mSlots[slot].mAcquireCalled = false;
212 mSlots[slot].mNeedsReallocation = true;
215 if (mSlots[slot]
278 int slot = mUnusedSlots.back(); local
291 auto slot = mFreeSlots.begin(); local
296 int slot = mFreeBuffers.back(); local
[all...]
H A DBufferHubProducer.cpp46 status_t BufferHubProducer::requestBuffer(int slot, sp<GraphicBuffer>* buf) { argument
47 ALOGV("requestBuffer: slot=%d", slot);
56 if (slot < 0 || slot >= max_buffer_count_) {
57 ALOGE("requestBuffer: slot index %d out of range [0, %d)", slot, max_buffer_count_);
59 } else if (!buffers_[slot].mBufferState.isDequeued()) {
60 ALOGE("requestBuffer: slot %d is not owned by the producer (state = %s)", slot,
159 size_t slot = 0; local
247 queueBuffer(int slot, const QueueBufferInput& input, QueueBufferOutput* output) argument
350 cancelBuffer(int slot, const sp<Fence>& fence) argument
643 size_t slot = status.get(); local
654 RemoveBuffer(size_t slot) argument
[all...]
H A DBufferQueueConsumer.cpp153 // Front buffer is still in mSlots, so mark the slot as free
201 int slot = BufferQueueCore::INVALID_BUFFER_SLOT; local
207 slot = mCore->mSharedBufferSlot;
211 outBuffer->mGraphicBuffer = mSlots[slot].mGraphicBuffer;
221 outBuffer->mSlot = slot;
222 outBuffer->mAcquireCalled = mSlots[slot].mAcquireCalled;
232 slot = front->mSlot;
236 ATRACE_BUFFER_INDEX(slot);
238 BQ_LOGV("acquireBuffer: acquiring { slot=%d/%" PRIu64 " buffer=%p }",
239 slot, outBuffe
284 detachBuffer(int slot) argument
364 auto slot = mCore->mFreeSlots.begin(); local
409 releaseBuffer(int slot, uint64_t frameNumber, const sp<Fence>& releaseFence, EGLDisplay eglDisplay, EGLSyncKHR eglFence) argument
[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.h46 void invokeFunction(uint32_t slot, const void * params, size_t paramLength) override;
49 void invokeForEach(uint32_t slot,
57 void forEachKernelSetup(uint32_t slot, MTLaunchStructForEach * mtls) override;
61 void preLaunch(uint32_t slot, const Allocation ** ains,
64 void postLaunch(uint32_t slot, const Allocation ** ains,
69 void setGlobalVar(uint32_t slot, const void * data, size_t dataLength) override;
70 void setGlobalVarWithElemDims(uint32_t slot, const void * data,
74 void setGlobalBind(uint32_t slot, Allocation *data) override;
75 void setGlobalObj(uint32_t slot, ObjectBase *data) override;
H A DrsCpuExecutable.h151 void* getFieldAddress(int slot) const { return mFieldAddress[slot]; }
153 bool getFieldIsObject(int slot) const { return mFieldIsObject[slot]; }
154 const char* getFieldName(int slot) const { return mFieldName[slot]; }
156 InvokeFunc_t getInvokeFunction(int slot) const { return mInvokeFunctions[slot]; }
158 ForEachFunc_t getForEachFunction(int slot) const { return mForEachFunctions[slot]; }
[all...]
/frameworks/native/libs/vr/libdvr/
H A Ddvr_buffer_queue.cpp64 write_buffers_[buffer->slot].reset(buffer);
74 size_t slot; local
85 producer_queue_->Dequeue(timeout, &slot, out_meta, &release_fence);
93 if (write_buffers_[slot] == nullptr) {
94 // Lazy initialization of a write_buffers_ slot. Note that a slot will
97 write_buffers_[slot] = std::make_unique<DvrWriteBuffer>();
98 write_buffers_[slot]->slot = slot;
179 size_t slot = static_cast<size_t>(write_buffer->slot); local
345 size_t slot; local
382 size_t slot = static_cast<size_t>(read_buffer->slot); local
[all...]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
H A DFakeStatusBarIconController.java44 public void setExternalIcon(String slot) { argument
49 public void setIcon(String slot, int resourceId, CharSequence contentDescription) { argument
54 public void setIcon(String slot, StatusBarIcon icon) { argument
59 public void setSignalIcon(String slot, WifiIconState state) { argument
63 public void setMobileIcons(String slot, List<MobileIconState> states) { argument
71 public void removeIcon(String slot, int tag) { argument
75 public void removeAllIconsForSlot(String slot) { argument
/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;
51 protected KernelID createKernelID(int slot, int sig, Element ein, argument
53 KernelID k = mKIDs.get(slot);
58 long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
63 k = new KernelID(id, mRS, this, slot, sig);
64 mKIDs.put(slot, k);
79 InvokeID(long id, RenderScript rs, Script s, int slot) { argument
82 mSlot = slot;
90 protected InvokeID createInvokeID(int slot) { argument
117 FieldID(long id, RenderScript rs, Script s, int slot) argument
128 createFieldID(int slot, Element e) argument
149 invoke(int slot) argument
157 invoke(int slot, FieldPacker v) argument
169 forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) argument
178 forEach(int slot, Allocation ain, Allocation aout, FieldPacker v, LaunchOptions sc) argument
224 forEach(int slot, Allocation[] ains, Allocation aout, FieldPacker v) argument
234 forEach(int slot, Allocation[] ains, Allocation aout, FieldPacker v, LaunchOptions sc) argument
290 reduce(int slot, Allocation[] ains, Allocation aout, LaunchOptions sc) argument
350 bindAllocation(Allocation va, int slot) argument
[all...]
/frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/
H A Dbuffer_hub_queue_client.h91 int GetBufferId(size_t slot) const {
92 return (slot < buffers_.size() && buffers_[slot]) ? buffers_[slot]->id()
96 std::shared_ptr<BufferHubBuffer> GetBuffer(size_t slot) const {
97 return buffers_[slot];
146 size_t slot);
150 virtual pdx::Status<void> RemoveBuffer(size_t slot);
162 size_t* slot);
167 pdx::Status<void> HandleBufferEvent(size_t slot, in
191 size_t slot; member in struct:android::dvr::BufferHubQueue::Entry
352 Enqueue(const std::shared_ptr<BufferProducer>& buffer, size_t slot, uint64_t index) argument
401 Dequeue( int timeout, size_t* slot, Meta* meta, pdx::LocalHandle* acquire_fence) argument
405 Dequeue( int timeout, size_t* slot, pdx::LocalHandle* acquire_fence) argument
[all...]
/frameworks/rs/support/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/native/libs/vr/libbufferhubqueue/
H A Dbuffer_hub_queue_client.cpp189 "slot=%d|",
213 Status<void> BufferHubQueue::HandleBufferEvent(size_t slot, int event_fd, argument
216 if (!buffers_[slot]) {
217 ALOGW("BufferHubQueue::HandleBufferEvent: Invalid buffer slot: %zu", slot);
221 auto status = buffers_[slot]->GetEventMask(poll_events);
230 "buffer|queue_id=%d;buffer_id=%d;slot=%zu;event_fd=%d;poll_events=%x;"
232 id(), buffers_[slot]->id(), slot, event_fd, poll_events, events);
235 return Enqueue({buffers_[slot], slo
280 AddBuffer( const std::shared_ptr<BufferHubBuffer>& buffer, size_t slot) argument
317 RemoveBuffer(size_t slot) argument
359 Dequeue(int timeout, size_t* slot) argument
514 AddBuffer( const std::shared_ptr<BufferProducer>& buffer, size_t slot) argument
527 RemoveBuffer(size_t slot) argument
539 Dequeue( int timeout, size_t* slot, LocalHandle* release_fence) argument
545 Dequeue( int timeout, size_t* slot, DvrNativeBufferMetadata* out_meta, pdx::LocalHandle* release_fence) argument
661 AddBuffer( const std::shared_ptr<BufferConsumer>& buffer, size_t slot) argument
668 Dequeue( int timeout, size_t* slot, void* meta, size_t user_metadata_size, LocalHandle* acquire_fence) argument
697 Dequeue( int timeout, size_t* slot, DvrNativeBufferMetadata* out_meta, pdx::LocalHandle* acquire_fence) argument
[all...]
/frameworks/native/libs/vr/libbufferhubqueue/tests/
H A Dbuffer_hub_queue_producer-test.cpp239 int slot = -1; local
242 ASSERT_NO_FATAL_FAILURE(DequeueBuffer(&slot));
246 ASSERT_EQ(NO_ERROR, mProducer->requestBuffer(slot, &buffer));
253 ASSERT_EQ(NO_ERROR, mProducer->queueBuffer(slot, input, &output));
267 EXPECT_EQ(BAD_VALUE, mProducer->queueBuffer(slot, input, &output));
270 // Test invalid slot number
278 EXPECT_EQ(BAD_VALUE, mProducer->queueBuffer(/*slot*/ -1, input, &output));
280 mProducer->queueBuffer(/*slot*/ 0xDEADBEEF, input, &output));
292 EXPECT_EQ(BAD_VALUE, mProducer->queueBuffer(/*slot*/ 0, input, &output));
297 int slot local
310 int slot = -1; local
329 int slot = -1; local
350 int slot = -1; local
368 int slot = -1; local
397 int slot = -1; local
445 int slot = -1; local
463 int slot = -1; local
474 int slot = -1; local
487 int slot = -1; local
505 int slot = -1; local
518 int slot = -1; local
[all...]
/frameworks/rs/driver/
H A DrsdVertexArray.cpp65 void RsdVertexArray::logAttrib(uint32_t idx, uint32_t slot) const {
69 ALOGV("va %i: slot=%i name=%s buf=%i ptr=%p size=%i type=0x%x stride=0x%x norm=%i offset=0x%p",
70 idx, slot,
99 int32_t slot = sc->vtxAttribSlot(mAttribs[ct].name); local
101 logAttrib(ct, slot);
103 if (slot < 0 || slot >= (int32_t)maxAttrs) {
106 glEnableVertexAttribArray(slot);
107 state->mAttrsEnabled[slot] = true;
109 glVertexAttribPointer(slot,
[all...]
H A DrsdBcc.cpp70 uint32_t slot,
78 rsdScriptInvokeForEachMulti(rsc, s, slot, nullptr, 0, aout, usr, usrLen,
83 rsdScriptInvokeForEachMulti(rsc, s, slot, ains, 1, aout, usr, usrLen,
90 uint32_t slot,
99 cs->invokeForEach(slot, ains, inLen, aout, usr, usrLen, sc);
119 uint32_t slot,
123 cs->invokeFunction(slot, params, paramLength);
127 uint32_t slot,
132 cs->invokeReduce(slot, ains, inLen, aout, sc);
136 uint32_t slot, voi
68 rsdScriptInvokeForEach(const Context *rsc, Script *s, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, size_t usrLen, const RsScriptCall *sc) argument
88 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
118 rsdScriptInvokeFunction(const Context *dc, Script *s, uint32_t slot, const void *params, size_t paramLength) argument
126 rsdScriptInvokeReduce(const Context *dc, Script *s, uint32_t slot, const Allocation ** ains, size_t inLen, Allocation *aout, const RsScriptCall *sc) argument
135 rsdScriptSetGlobalVar(const Context *dc, const Script *s, uint32_t slot, void *data, size_t dataLength) argument
141 rsdScriptGetGlobalVar(const Context *dc, const Script *s, uint32_t slot, void *data, size_t dataLength) argument
148 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
156 rsdScriptSetGlobalBind(const Context *dc, const Script *s, uint32_t slot, Allocation *data) argument
161 rsdScriptSetGlobalObj(const Context *dc, const Script *s, uint32_t slot, ObjectBase *data) argument
[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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarIconController.java55 * in that slot and not added as a sub slot.
61 public void setExternalIcon(String slot); argument
62 public void setIcon(String slot, int resourceId, CharSequence contentDescription); argument
63 public void setIcon(String slot, StatusBarIcon icon); argument
64 public void setSignalIcon(String slot, WifiIconState state); argument
65 public void setMobileIcons(String slot, List<MobileIconState> states); argument
66 public void setIconVisibility(String slot, boolean b); argument
68 * If you don't know what to pass for `tag`, either remove all icons for slot, or use
69 * TAG_PRIMARY to refer to the first icon at a given slot
71 removeIcon(String slot, int tag) argument
72 removeAllIconsForSlot(String slot) argument
105 onIconAdded(int index, String slot, boolean blocked, StatusBarIconHolder holder) argument
162 onIconAdded(int index, String slot, boolean blocked, StatusBarIconHolder holder) argument
235 onIconAdded(int index, String slot, boolean blocked, StatusBarIconHolder holder) argument
240 addHolder(int index, String slot, boolean blocked, StatusBarIconHolder holder) argument
257 addIcon(int index, String slot, boolean blocked, StatusBarIcon icon) argument
266 addSignalIcon(int index, String slot, WifiIconState state) argument
278 addMobileIcon(int index, String slot, MobileIconState state) argument
289 onCreateStatusBarIconView(String slot, boolean blocked) argument
293 onCreateStatusBarWifiView(String slot) argument
298 onCreateStatusBarMobileView(String slot) argument
[all...]

Completed in 363 milliseconds

123456789