HomeSort by relevance Sort by last modified time
    Searched defs:mSlots (Results 1 - 14 of 14) sorted by null

  /frameworks/native/libs/gui/include/gui/
BufferQueueConsumer.h 177 // This references mCore->mSlots. Lock mCore->mMutex while accessing.
178 BufferQueueDefs::SlotsType& mSlots;
BufferQueueProducer.h 217 // This references mCore->mSlots. Lock mCore->mMutex while accessing.
218 BufferQueueDefs::SlotsType& mSlots;
ConsumerBase.h 222 // mSlots stores the buffers that have been allocated by the BufferQueue
229 Slot mSlots[BufferQueueDefs::NUM_BUFFER_SLOTS];
BufferQueueCore.h 140 // the information stored in mSlots
194 // mSlots is an array of buffer slots that must be mirrored on the producer
199 BufferQueueDefs::SlotsType mSlots;
Surface.h 304 // mSlots stores the buffers that have been allocated for each buffer slot.
310 BufferSlot mSlots[NUM_BUFFER_SLOTS];
  /external/libese/apps/weaver/card/src/com/android/weaver/core/
WeaverCore.java 29 private CoreSlots mSlots;
33 mSlots = new CoreSlots();
59 return (arg == 0) ? mSlots : null;
CoreSlots.java 32 private Slot[] mSlots;
36 mSlots = new Slot[NUM_SLOTS];
38 mSlots[i] = new Slot();
56 mSlots[slotId].write(key, keyOffset, value, valueOffset);
63 return mSlots[slotId].read(key, keyOffset, outValue, outOffset);
69 mSlots[slotId].eraseValue();
75 mSlots[i].erase();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBarIconList.java 25 protected ArrayList<String> mSlots = new ArrayList<>();
31 mSlots.add(slots[i]);
37 final int N = mSlots.size();
39 if (slot.equals(mSlots.get(i))) {
44 mSlots.add(0, slot);
50 return mSlots.size();
62 return mSlots.get(index);
80 final int N = mSlots.size();
83 pw.printf(" %2d: (%s) %s\n", i, mSlots.get(i), mIcons.get(i));
  /external/libese/apps/weaver/card/src/com/android/weaver/
Weaver.java 38 private Slots mSlots;
60 mSlots = null;
73 if (mSlots == null) {
79 mSlots = (Slots) JCSystem.getAppletShareableInterfaceObject(
81 if (mSlots == null) {
145 Util.setShort(buffer, (short) 2, mSlots.getNumSlots());
171 mSlots.write(slotId, buffer, WRITE_DATA_KEY_OFFSET, buffer, WRITE_DATA_VALUE_OFFSET);
198 final byte err = mSlots.read(slotId, buffer, READ_DATA_KEY_OFFSET, buffer, (short) 1);
225 mSlots.eraseValue(slotId);
238 mSlots.eraseAll()
    [all...]
  /frameworks/av/media/libstagefright/include/media/stagefright/
SurfaceMediaSource.h 162 // mSlots caches GraphicBuffers and frameNumbers from the buffer queue
163 SlotData mSlots[BufferQueue::NUM_BUFFER_SLOTS];
  /frameworks/base/rs/java/android/renderscript/
ProgramFragmentFixedFunction.java 159 Slot[] mSlots;
182 switch(mSlots[i].env) {
184 switch (mSlots[i].format) {
200 switch (mSlots[i].format) {
233 mSlots = new Slot[MAX_TEXTURE];
256 mSlots[slot] = new Slot(env, fmt);
295 if(mSlots[i] != null) {
  /frameworks/rs/
rsScript.h 157 ObjectBaseRef<Allocation> *mSlots;
  /packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
ClipStorage.java 73 private final File[] mSlots = new File[NUM_OF_SLOTS];
109 if (!mSlots[curSlot].exists()) {
114 if (mSlots[curSlot].list().length <= 1) {
140 assert(mSlots[pos] != null);
142 Files.deleteRecursively(mSlots[pos]);
143 mSlots[pos].mkdir();
144 assert(mSlots[pos].isDirectory());
161 String linkFileName = Integer.toString(mSlots[slot].list().length);
162 File link = new File(mSlots[slot], linkFileName);
179 assert(mSlots[pos] != null)
    [all...]
  /frameworks/native/services/inputflinger/
InputReader.h     [all...]

Completed in 3851 milliseconds