Searched refs:backingStore (Results 1 – 7 of 7) sorted by relevance
107 final MemoryIntArray backingStore = getBackingStoreLocked(key, in incrementGenerationInternal() local109 if (backingStore == null) { in incrementGenerationInternal()114 backingStore, /* createIfNotExist= */ false); in incrementGenerationInternal()118 final int generation = backingStore.get(index) + 1; in incrementGenerationInternal()119 backingStore.set(index, generation); in incrementGenerationInternal()156 final MemoryIntArray backingStore = getBackingStoreLocked(key, in addGenerationData() local158 if (backingStore == null) { in addGenerationData()164 backingStore, /* createIfNotExist= */ true); in addGenerationData()169 bundle.putParcelable(Settings.CALL_METHOD_TRACK_GENERATION_KEY, backingStore); in addGenerationData()171 bundle.putInt(Settings.CALL_METHOD_GENERATION_KEY, backingStore.get(index)); in addGenerationData()[all …]
29 static FrameBuffer2D create(BackingStore backingStore) { in create() argument30 assertCanCreate(backingStore); in create()31 return new FrameBuffer2D(backingStore); in create()34 FrameBuffer2D(BackingStore backingStore) { in FrameBuffer2D() argument35 super(backingStore); in FrameBuffer2D()38 static void assertCanCreate(BackingStore backingStore) { in assertCanCreate() argument39 FrameBuffer1D.assertCanCreate(backingStore); in assertCanCreate()40 int[] dimensions = backingStore.getDimensions(); in assertCanCreate()
57 static FrameBuffer1D create(BackingStore backingStore) { in create() argument58 assertCanCreate(backingStore); in create()59 return new FrameBuffer1D(backingStore); in create()62 FrameBuffer1D(BackingStore backingStore) { in FrameBuffer1D() argument63 super(backingStore); in FrameBuffer1D()64 updateLength(backingStore.getDimensions()); in FrameBuffer1D()67 static void assertCanCreate(BackingStore backingStore) { in assertCanCreate() argument68 FrameType type = backingStore.getFrameType(); in assertCanCreate()73 int[] dims = backingStore.getDimensions(); in assertCanCreate()
35 static FrameValue create(BackingStore backingStore) { in create() argument36 assertObjectBased(backingStore.getFrameType()); in create()37 return new FrameValue(backingStore); in create()40 FrameValue(BackingStore backingStore) { in FrameValue() argument41 super(backingStore); in FrameValue()
146 static FrameValues create(BackingStore backingStore) { in create() argument147 assertObjectBased(backingStore.getFrameType()); in create()148 return new FrameValues(backingStore); in create()151 FrameValues(BackingStore backingStore) { in FrameValues() argument152 super(backingStore); in FrameValues()
103 static FrameImage2D create(BackingStore backingStore) { in create() argument104 assertCanCreate(backingStore); in create()105 return new FrameImage2D(backingStore); in create()108 FrameImage2D(BackingStore backingStore) { in FrameImage2D() argument109 super(backingStore); in FrameImage2D()112 static void assertCanCreate(BackingStore backingStore) { in assertCanCreate() argument113 FrameBuffer2D.assertCanCreate(backingStore); in assertCanCreate()
170 Frame(BackingStore backingStore) { in Frame() argument171 mBackingStore = backingStore; in Frame()