Searched defs:filterTags (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/
H A DCameraCharacteristics.java242 int[] filterTags = get(REQUEST_AVAILABLE_CHARACTERISTICS_KEYS);
243 if (filterTags == null) {
249 getKeys(getClass(), getKeyClass(), this, filterTags));
274 int[] filterTags = get(REQUEST_AVAILABLE_REQUEST_KEYS);
275 if (filterTags == null) {
280 getAvailableKeyList(CaptureRequest.class, crKeyTyped, filterTags);
306 int[] filterTags = get(REQUEST_AVAILABLE_RESULT_KEYS);
307 if (filterTags == null) {
311 mAvailableResultKeys = getAvailableKeyList(CaptureResult.class, crKeyTyped, filterTags);
332 getAvailableKeyList(Class<?> metadataClass, Class<TKey> keyClass, int[] filterTags) { argument
[all...]
H A DCameraMetadata.java119 getKeys(thisClass, getKeyClass(), this, /*filterTags*/null));
131 * Optionally, if {@code filterTags} is not {@code null}, then filter out any keys
132 * whose native {@code tag} is not in {@code filterTags}. The {@code filterTags} array will be
140 int[] filterTags) {
149 if (filterTags != null) {
150 Arrays.sort(filterTags);
171 if (shouldKeyBeAdded(key, field, filterTags)) {
207 if (filterTags == null || Arrays.binarySearch(filterTags,
137 getKeys( Class<?> type, Class<TKey> keyClass, CameraMetadata<TKey> instance, int[] filterTags) argument
218 shouldKeyBeAdded(TKey key, Field field, int[] filterTags) argument
[all...]

Completed in 30 milliseconds