Searched defs:get (Results 1 - 25 of 310) sorted by path

1234567891011>>

/frameworks/av/camera/
H A DCameraParameters.cpp268 const char *CameraParameters::get(const char *key) const function in class:android::CameraParameters
278 const char *v = get(key);
286 const char *v = get(key);
358 const char *p = get(KEY_PREVIEW_SIZE);
366 const char *p = get(KEY_PREFERRED_PREVIEW_SIZE_FOR_VIDEO);
373 const char *previewSizesStr = get(KEY_SUPPORTED_PREVIEW_SIZES);
387 const char *p = get(KEY_VIDEO_SIZE);
394 const char *videoSizesStr = get(KEY_SUPPORTED_VIDEO_SIZES);
411 const char *p = get(KEY_PREVIEW_FPS_RANGE);
423 return get(KEY_PREVIEW_FORMA
[all...]
/frameworks/av/drm/common/
H A DDrmConstraints.cpp43 String8 DrmConstraints::get(const String8& key) const { function in class:DrmConstraints
H A DDrmInfo.cpp49 String8 DrmInfo::get(const String8& key) const { function in class:DrmInfo
H A DDrmInfoRequest.cpp46 String8 DrmInfoRequest::get(const String8& key) const { function in class:DrmInfoRequest
H A DDrmMetadata.cpp38 String8 DrmMetadata::get(const String8& key) const { function in class:DrmMetadata
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DSessionLibrary.cpp35 SessionLibrary* SessionLibrary::get() { function in class:clearkeydrm::SessionLibrary
/frameworks/av/include/media/stagefright/foundation/
H A DMutexed.h118 inline T& get() const { return mLocked ? mTreasure : *(T*)nullptr; } function in class:android::Mutexed::Locked
120 inline void set(T& o) const { get() = o; }
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp130 status_t AudioParameter::get(const String8& key, String8& value) function in class:android::AudioParameter
143 status_t result = get(key, str8);
159 status_t result = get(key, str8);
/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp166 bool get(TYPE& value, uint32_t pos) const { function in struct:android::MPEG4Writer::Track::ListTableEntries
512 CHECK(source.get() != NULL);
1778 // Otherwise, hold the lock until the existing chunks get written to the
1860 status_t err = mSource->start(meta.get());
2268 * the video track can get the updated drift time information
2349 mMeta = mSource->getFormat(); // get output format after format change
2384 meta_data = new MetaData(*buffer->meta_data().get());
3288 CHECK(mSttsTableEntries->get(duration, 1));
3316 CHECK(mCttsTableEntries->get(duration, 1));
/frameworks/av/services/audiopolicy/engineconfigurable/src/
H A DCollection.h92 T *get(Key key) const function in class:android::audio_policy::Collection
H A DInputSource.cpp63 audio_devices_t Element<audio_source_t>::get<audio_devices_t>() const function in class:android::audio_policy::Element
H A DStrategy.cpp60 audio_devices_t Element<routing_strategy>::get<audio_devices_t>() const function in class:android::audio_policy::Element
H A DStream.cpp59 routing_strategy Element<audio_stream_type_t>::get<routing_strategy>() const function in class:android::audio_policy::Element
77 audio_stream_type_t Element<audio_stream_type_t>::get<audio_stream_type_t>() const function in class:android::audio_policy::Element
H A DUsage.cpp48 routing_strategy Element<audio_usage_t>::get<routing_strategy>() const function in class:android::audio_policy::Element
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp925 String8 Parameters::get() const { function in class:android::camera2::Parameters
1230 newParams.get(CameraParameters::KEY_RECORDING_HINT) );
1250 fpsRange = newParams.get(CameraParameters::KEY_PREVIEW_FRAME_RATE);
1251 fpsSingle = newParams.get(CameraParameters::KEY_PREVIEW_FPS_RANGE);
1528 newParams.get(CameraParameters::KEY_GPS_LATITUDE);
1531 newParams.get(CameraParameters::KEY_GPS_LONGITUDE);
1533 newParams.get(CameraParameters::KEY_GPS_ALTITUDE);
1535 newParams.get(CameraParameters::KEY_GPS_TIMESTAMP);
1537 newParams.get(CameraParameters::KEY_GPS_PROCESSING_METHOD);
1581 newParams.get(CameraParameter
[all...]
/frameworks/av/services/camera/libcameraservice/utils/
H A DClientManager.h286 std::shared_ptr<ClientDescriptor<KEY, VALUE>> get(const KEY& key) const;
538 std::shared_ptr<ClientDescriptor<KEY, VALUE>> ClientManager<KEY, VALUE, LISTENER>::get( function in class:android::resource_policy::ClientManager
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java85 * <li>Get an instance of AccountManager using {@link #get(Context)}.
221 * Authenticators using 'customTokens' option will also get the UID of the
329 public static AccountManager get(Context context) { method in class:AccountManager
337 * should get an auth token instead.
1208 // signify that we were not able to get the authtoken.
1957 return get();
1959 return get(timeout, unit);
2139 return get();
2141 return get(timeout, unit);
2573 * get an
[all...]
/frameworks/base/core/java/android/app/
H A DActivity.java468 * <p>Sometimes you want to get a result back from an activity when it
1099 // so tell createDialog() not to do it, otherwise we get an exception
1829 ManagedCursor c = mManagedCursors.get(i);
2297 ManagedCursor mc = mManagedCursors.get(i);
2576 * activity and its views always get a first chance to receive and handle
2797 * DPAD key events, which then get sent back to the view hierarchy, and
2884 * activity that is stopped will not generally get window focus), you
3564 * Use {@link MenuItem#getMenuInfo()} to get extra information set by the
3729 ManagedDialog md = mManagedDialogs.get(id);
3768 final ManagedDialog md = mManagedDialogs.get(i
3930 takeKeyEvents(boolean get) argument
[all...]
H A DDialog.java673 * DPAD key events, which then get sent back to the view hierarchy, and
1120 * @param get true if the dialog should receive key events, false otherwise
1123 public void takeKeyEvents(boolean get) { argument
1124 mWindow.takeKeyEvents(get);
1337 ((OnDismissListener) msg.obj).onDismiss(mDialog.get());
1340 ((OnCancelListener) msg.obj).onCancel(mDialog.get());
1343 ((OnShowListener) msg.obj).onShow(mDialog.get());
/frameworks/base/core/java/android/content/
H A DContentValues.java236 * @param key the value to get
240 public Object get(String key) { method in class:ContentValues
241 return mValues.get(key);
247 * @param key the value to get
251 Object value = mValues.get(key);
258 * @param key the value to get
262 Object value = mValues.get(key);
283 * @param key the value to get
287 Object value = mValues.get(key);
308 * @param key the value to get
[all...]
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java62 public CharSequence get(int idx) { method in class:StringBlock
70 CharSequence res = mSparseStrings.get(idx);
414 // Should not get called, at least not by StaticLayout.
H A DThemedResourceCache.java87 public T get(long key, @Nullable Theme theme) { method in class:ThemedResourceCache
95 final WeakReference<T> themedEntry = themedEntries.get(key);
97 return themedEntry.get();
103 final WeakReference<T> unthemedEntry = unthemedEntries.get(key);
105 return unthemedEntry.get();
161 LongSparseArray<WeakReference<T>> cache = mThemedEntries.get(key);
222 if (ref == null || pruneEntryLocked(ref.get(), configChanges)) {
/frameworks/base/core/java/android/database/
H A DMatrixCursor.java64 private Object get(int column) { method in class:MatrixCursor
164 localData[start + i] = columnValues.get(i);
254 Object value = get(column);
261 Object value = get(column);
269 Object value = get(column);
277 Object value = get(column);
285 Object value = get(column);
293 Object value = get(column);
301 Object value = get(column);
307 return DatabaseUtils.getTypeOfObject(get(colum
[all...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java1166 Camera c = (Camera)((WeakReference)camera_ref).get();
1775 * the face leaves the field-of-view and comes back, it will get a new
2476 Log.e(TAG, "dump: " + k + "=" + mMap.get(k));
2493 flattened.append(mMap.get(k));
2575 Area area = areas.get(i);
2600 public String get(String key) { method in class:Camera.Parameters
2601 return mMap.get(key);
2611 return Integer.parseInt(mMap.get(key));
2649 String pair = get(KEY_PREVIEW_SIZE);
2660 String str = get(KEY_PREVIEW_SIZ
[all...]
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraCharacteristics.java47 * {@link CameraCharacteristics#get}.
49 * <p>For example, to get the stream configuration map:
51 * StreamConfigurationMap map = cameraCharacteristics.get(
59 * @see CameraCharacteristics#get
187 public <T> T get(Key<T> key) { method in class:CameraCharacteristics
188 return mProperties.get(key);
198 return (T) mProperties.get(key);
223 int[] filterTags = get(REQUEST_AVAILABLE_CHARACTERISTICS_KEYS);
255 int[] filterTags = get(REQUEST_AVAILABLE_REQUEST_KEYS);
287 int[] filterTags = get(REQUEST_AVAILABLE_RESULT_KEY
[all...]

Completed in 5639 milliseconds

1234567891011>>