Searched refs:options (Results 126 - 150 of 316) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/
H A DWAVExtractor.cpp71 MediaBuffer **buffer, const ReadOptions *options = NULL);
417 MediaBuffer **out, const ReadOptions *options) {
420 if (options != nullptr && options->getNonBlocking() && !mGroup->has_buffers()) {
426 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
416 read( MediaBuffer **out, const ReadOptions *options) argument
H A DAACExtractor.cpp50 MediaBuffer **buffer, const ReadOptions *options = NULL);
289 MediaBuffer **out, const ReadOptions *options) {
294 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
288 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/core/java/android/provider/
H A DMediaStore.java614 Cursor c, Uri baseUri, ContentResolver cr, BitmapFactory.Options options) {
623 pfdInput.getFileDescriptor(), null, options);
670 * @param options this is only used for MINI_KIND when decoding the Bitmap
676 BitmapFactory.Options options, Uri baseUri, boolean isVideo) {
704 bitmap = getMiniThumbFromFile(c, baseUri, cr, options);
736 bitmap = getMiniThumbFromFile(c, baseUri, cr, options);
1085 * @param options this is only used for MINI_KIND when decoding the Bitmap
1090 BitmapFactory.Options options) {
1092 InternalThumbnails.DEFAULT_GROUP_ID, kind, options,
1117 * @param options thi
613 getMiniThumbFromFile( Cursor c, Uri baseUri, ContentResolver cr, BitmapFactory.Options options) argument
675 getThumbnail(ContentResolver cr, long origId, long groupId, int kind, BitmapFactory.Options options, Uri baseUri, boolean isVideo) argument
1089 getThumbnail(ContentResolver cr, long origId, int kind, BitmapFactory.Options options) argument
1121 getThumbnail(ContentResolver cr, long origId, long groupId, int kind, BitmapFactory.Options options) argument
2146 getThumbnail(ContentResolver cr, long origId, int kind, BitmapFactory.Options options) argument
2165 getThumbnail(ContentResolver cr, long origId, long groupId, int kind, BitmapFactory.Options options) argument
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DWallpaperCropActivity.java555 BitmapFactory.Options options = new BitmapFactory.Options();
556 options.inJustDecodeBounds = true;
557 BitmapFactory.decodeStream(is, null, options);
559 if (options.outWidth != 0 && options.outHeight != 0) {
560 return new Point(options.outWidth, options.outHeight);
659 BitmapFactory.Options options = new BitmapFactory.Options();
661 options.inSampleSize = scaleDownSampleSize;
663 crop = decoder.decodeRegion(roundedTrueCrop, options);
[all...]
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp537 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
538 synthesizeCancelationEventsForAllConnectionsLocked(options);
544 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS, reason);
545 synthesizeCancelationEventsForAllConnectionsLocked(options);
547 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
548 synthesizeCancelationEventsForAllConnectionsLocked(options);
707 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS,
709 options.deviceId = entry->deviceId;
710 synthesizeCancelationEventsForAllConnectionsLocked(options);
866 CancelationOptions options(mod
2193 synthesizeCancelationEventsForAllConnectionsLocked( const CancelationOptions& options) argument
2201 synthesizeCancelationEventsForMonitorsLocked( const CancelationOptions& options) argument
2208 synthesizeCancelationEventsForInputChannelLocked( const sp<InputChannel>& channel, const CancelationOptions& options) argument
2217 synthesizeCancelationEventsForConnectionLocked( const sp<Connection>& connection, const CancelationOptions& options) argument
4269 synthesizeCancelationEvents(nsecs_t currentTime, Vector<EventEntry*>& outEvents, const CancelationOptions& options) argument
4342 shouldCancelKey(const KeyMemento& memento, const CancelationOptions& options) argument
4363 shouldCancelMotion(const MotionMemento& memento, const CancelationOptions& options) argument
[all...]
/frameworks/av/include/media/
H A DIMediaSource.h86 // Used to clear all non-persistent options for multiple buffer reads.
113 MediaBuffer **buffer, const ReadOptions *options = NULL) = 0;
125 // ReadOptions may be specified. Persistent options apply to all reads;
126 // non-persistent options (e.g. seek) apply only to the first read.
129 const ReadOptions *options = nullptr) = 0;
171 const ReadOptions * /* options = nullptr */) {
/frameworks/base/core/java/android/text/method/
H A DCharacterPickerDialog.java51 * <code>options</code> for insertion or replacement (depending on
55 Editable text, String options,
61 mOptions = options;
54 CharacterPickerDialog(Context context, View view, Editable text, String options, boolean insert) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardService.java175 public void doKeyguardTimeout(Bundle options) {
177 mKeyguardViewMediator.doKeyguardTimeout(options);
/frameworks/native/cmds/atrace/
H A Datrace.rc11 chown root shell /sys/kernel/debug/tracing/options/overwrite
12 chown root shell /sys/kernel/debug/tracing/options/print-tgid
36 chmod 0664 /sys/kernel/debug/tracing/options/overwrite
37 chmod 0664 /sys/kernel/debug/tracing/options/print-tgid
/frameworks/av/include/media/stagefright/
H A DAudioSource.h55 MediaBuffer **buffer, const ReadOptions *options = NULL);
H A DCameraSourceTimeLapse.h134 virtual status_t read(MediaBuffer **buffer, const ReadOptions *options = NULL);
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DAACEncoder.cpp216 MediaBuffer **out, const ReadOptions *options) {
221 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &mode));
243 if (mSource->read(&mInputBuffer, options) != OK) {
215 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.h42 MediaBuffer **buffer, const ReadOptions *options = NULL);
/frameworks/av/media/libstagefright/rtsp/
H A DVideoSource.h58 MediaBuffer **buffer, const MediaSource::ReadOptions *options) {
57 read( MediaBuffer **buffer, const MediaSource::ReadOptions *options) argument
/frameworks/base/include/android_runtime/
H A DAndroidRuntime.h67 void start(const char *classname, const Vector<String8>& options, bool zygote);
/frameworks/base/telephony/java/com/android/ims/internal/uce/options/
H A DOptionsCmdStatus.java17 package com.android.ims.internal.uce.options;
/frameworks/base/tests/TouchLatency/
H A Dgradlew.bat11 @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParser.java440 public int getAttributeListValue(int index, String[] options, int defaultValue) { argument
441 return mAttrib.getAttributeListValue(index, options, defaultValue);
446 String[] options, int defaultValue) {
447 return mAttrib.getAttributeListValue(namespace, attribute, options, defaultValue);
445 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
H A Dgradlew.bat11 @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
/frameworks/data-binding/compiler/
H A Dgradlew.bat11 @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
/frameworks/data-binding/developmentPlugins/
H A Dgradlew.bat11 @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
/frameworks/data-binding/integration-tests/App With Spaces/
H A Dgradlew.bat11 @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
/frameworks/data-binding/integration-tests/IndependentLibrary/
H A Dgradlew.bat11 @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
/frameworks/data-binding/integration-tests/MultiModuleTestApp/
H A Dgradlew.bat11 @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
/frameworks/data-binding/integration-tests/TestApp/
H A Dgradlew.bat11 @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.

Completed in 691 milliseconds

1234567891011>>