Searched refs:slot (Results 101 - 109 of 109) sorted by relevance

12345

/frameworks/compile/libbcc/lib/Renderscript/
H A DRSInfoReader.cpp70 pResult.push(pItem.slot);
/frameworks/rs/
H A DrsContext.cpp825 void rsi_ContextBindSampler(Context *rsc, uint32_t slot, RsSampler vs) { argument
828 if (slot > RS_MAX_SAMPLER_SLOT) {
829 ALOGE("Invalid sampler slot");
833 s->bindToContext(&rsc->mStateSampler, slot);
/frameworks/rs/cpp/
H A DrsCppStructs.h1332 void forEach(uint32_t slot, sp<const Allocation> in, sp<const Allocation> out,
1334 void bindAllocation(sp<Allocation> va, uint32_t slot) const;
1337 void invoke(uint32_t slot, const void *v, size_t len) const;
1340 void invoke(uint32_t slot) const {
1341 invoke(slot, NULL, 0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1249 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { argument
1250 if (SPEW) Log.d(TAG, "addIcon slot=" + slot + " index=" + index + " viewIndex=" + viewIndex
1252 StatusBarIconView view = new StatusBarIconView(mContext, slot, null);
1256 view = new StatusBarIconView(mContext, slot, null);
1262 public void updateIcon(String slot, int index, int viewIndex, argument
1264 if (SPEW) Log.d(TAG, "updateIcon slot=" + slot + " index=" + index + " viewIndex=" + viewIndex
1272 public void removeIcon(String slot, int index, int viewIndex) { argument
1273 if (SPEW) Log.d(TAG, "removeIcon slot
[all...]
/frameworks/native/libs/gui/
H A DGLConsumer.cpp261 ST_LOGV("releaseTexImage: (slot=%d, mAttached=%d)", buf, mAttached);
264 // Do whatever sync ops we need to do before releasing the slot.
267 ST_LOGE("syncForReleaseLocked failed (slot=%d), err=%d", buf, err);
345 int slot = item->mBuf; local
346 mEglSlots[slot].mEglImage = new EglImage(item->mGraphicBuffer);
357 // buffer has reallocated the original buffer slot after this buffer
387 // Ensure we have a valid EglImageKHR for the slot, creating an EglImage
388 // if nessessary, for the gralloc buffer currently in the slot in
394 ST_LOGW("updateAndRelease: unable to createImage on display=%p slot=%d",
401 // Do whatever sync ops we need to do before releasing the old slot
[all...]
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp1918 int slot = mCaches.currentProgram->getAttrib("colors"); local
1919 if (slot >= 0) {
1920 glEnableVertexAttribArray(slot);
1921 glVertexAttribPointer(slot, 4, GL_FLOAT, GL_FALSE, stride, colors);
2193 int slot = mCaches.currentProgram->getAttrib("colors"); local
2194 if (slot >= 0) {
2195 glDisableVertexAttribArray(slot);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubscriptionController.java129 //FIXME this does not allow for multiple subs in a slot
412 * @param slotId the slot which the SIM is inserted
513 * @param slotId the slot which the SIM is inserted
603 // when we cross map modem or when multiple subs per slot.
893 * Return the subId for specified slot Id.
930 int slot = entry.getKey();
932 if (slotId == slot) {
/frameworks/native/services/inputflinger/
H A DInputReader.h758 RawAbsoluteAxisInfo slot; member in struct:android::RawPointerAxes
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp3741 void processSlot(MultiTouchInputMapper* mapper, int32_t slot);
3845 MultiTouchInputMapper* mapper, int32_t slot) {
3846 process(mapper, ARBITRARY_TIME, DEVICE_ID, EV_ABS, ABS_MT_SLOT, slot);
3844 processSlot( MultiTouchInputMapper* mapper, int32_t slot) argument

Completed in 284 milliseconds

12345