HomeSort by relevance Sort by last modified time
    Searched refs:mStreamMap (Results 1 - 5 of 5) sorted by null

  /frameworks/av/services/camera/libcameraservice/api2/
CameraDeviceClient.cpp 194 int idx = mStreamMap.indexOfKey(IInterface::asBinder(gbp));
205 int streamId = mStreamMap.valueAt(idx);
306 __FUNCTION__, mInputStream.configured ? 1 : 0, mStreamMap.size());
376 for (size_t i = 0; i < mStreamMap.size(); ++i) {
377 if (streamId == mStreamMap.valueAt(i)) {
412 mStreamMap.removeItemsAt(index);
459 ssize_t index = mStreamMap.indexOfKey(IInterface::asBinder(bufferProducer));
551 mStreamMap.add(binder, streamId);
601 // Can not add streamId to mStreamMap here, as the surface is deferred. Add it to
603 // relocated to mStreamMap
    [all...]
CameraDeviceClient.h 212 KeyedVector<sp<IBinder>, int> mStreamMap;
230 // as there are no surfaces available and can not be put into mStreamMap. Once the deferred
231 // Surface is configured, the stream id will be moved to mStreamMap.
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3BufferManager.h 290 KeyedVector<StreamId, wp<Camera3OutputStream>> mStreamMap;
Camera3BufferManager.cpp 117 mStreamMap.add(streamId, stream);
163 mStreamMap.removeItem(streamId);
292 mStreamMap.valueFor(firstOtherStreamId).promote();
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/ts/
TsParser.java 54 * Using a SparseArray removes the need to auto box the int key for mStreamMap
59 * mStreamMap is the only one called at such a high rate.
61 private final SparseArray<Stream> mStreamMap = new SparseArray<>();
174 if (mStreamMap.get(i.getTableTypePid()) != null) {
352 mStreamMap.put(pid, new SectionStream(pid));
375 Stream stream = mStreamMap.get(pid);

Completed in 294 milliseconds