Searched defs:options (Results 51 - 75 of 149) sorted by relevance

123456

/frameworks/av/media/libstagefright/
H A DNuMediaExtractor.cpp380 MediaSource::ReadOptions options; local
382 options.setSeekTo(seekTimeUs, mode);
384 status_t err = info->mSource->read(&info->mSample, &options);
H A DWAVExtractor.cpp69 MediaBuffer **buffer, const ReadOptions *options = NULL);
401 MediaBuffer **out, const ReadOptions *options) {
406 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
400 read( MediaBuffer **out, const ReadOptions *options) argument
H A DCameraSource.cpp828 MediaBuffer **buffer, const ReadOptions *options) {
835 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
827 read( MediaBuffer **buffer, const ReadOptions *options) argument
H A DMP3Extractor.cpp225 MediaBuffer **buffer, const ReadOptions *options = NULL);
488 MediaBuffer **out, const ReadOptions *options) {
495 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
487 read( MediaBuffer **out, const ReadOptions *options) argument
H A DStagefrightMetadataRetriever.cpp182 MediaSource::ReadOptions options; local
200 options.setSeekTo(thumbNailTime, mode);
203 options.setSeekTo(frameTimeUs, mode);
255 err = source->read(&mediaBuffer, &options);
256 options.clearSeekTo();
/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2TSExtractor.cpp55 MediaBuffer **buffer, const ReadOptions *options = NULL);
90 MediaBuffer **out, const ReadOptions *options) {
95 if (mDoesSeek && options && options->getSeekTo(&seekTimeUs, &seekMode)) {
107 return mImpl->read(out, options);
89 read( MediaBuffer **out, const ReadOptions *options) argument
H A DMPEG2PSExtractor.cpp52 MediaBuffer **buffer, const ReadOptions *options);
83 MediaBuffer **buffer, const ReadOptions *options);
661 MediaBuffer **buffer, const ReadOptions *options) {
679 return mSource->read(buffer, options);
746 MediaBuffer **buffer, const ReadOptions *options) {
747 return mTrack->read(buffer, options);
660 read( MediaBuffer **buffer, const ReadOptions *options) argument
745 read( MediaBuffer **buffer, const ReadOptions *options) argument
/frameworks/base/core/java/android/app/
H A DPendingIntent.java296 * @param options Additional options for how the Activity should be started.
297 * May be null if there are no options.
304 @NonNull Intent intent, @Flags int flags, @Nullable Bundle options) {
316 flags, options, UserHandle.myUserId());
329 @NonNull Intent intent, int flags, Bundle options, UserHandle user) {
341 flags, options, user.getIdentifier());
444 @NonNull Intent[] intents, @Flags int flags, @Nullable Bundle options) {
456 null, null, requestCode, intents, resolvedTypes, flags, options,
470 @NonNull Intent[] intents, int flags, Bundle options, UserHandl
303 getActivity(Context context, int requestCode, @NonNull Intent intent, @Flags int flags, @Nullable Bundle options) argument
328 getActivityAsUser(Context context, int requestCode, @NonNull Intent intent, int flags, Bundle options, UserHandle user) argument
443 getActivities(Context context, int requestCode, @NonNull Intent[] intents, @Flags int flags, @Nullable Bundle options) argument
469 getActivitiesAsUser(Context context, int requestCode, @NonNull Intent[] intents, int flags, Bundle options, UserHandle user) argument
798 send(Context context, int code, @Nullable Intent intent, @Nullable OnFinished onFinished, @Nullable Handler handler, @Nullable String requiredPermission, @Nullable Bundle options) argument
[all...]
H A DVoiceInteractor.java167 boolean finished, PickOptionRequest.Option[] options, Bundle result) {
169 MSG_PICK_OPTION_RESULT, finished ? 1 : 0, request, options, result));
382 * Select a single option from multiple potential options with the user via the trusted system
422 * @param index The location of this option within the overall set of options.
517 * @param prompt Optional question to be asked of the user when the options are
519 * @param options The set of {@link Option}s the user is selecting from.
522 public PickOptionRequest(@Nullable Prompt prompt, Option[] options, argument
525 mOptions = options;
531 * @param prompt Optional question to be asked of the user when the options are
533 * @param options Th
537 PickOptionRequest(CharSequence prompt, Option[] options, Bundle extras) argument
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java241 * AppWidget options and causes a callback to the AppWidgetProvider.
244 * @param newOptions The bundle of options, in addition to the size information,
282 // We get the old options to see if the sizes have changed
306 * @param options The bundle of options information.
308 public void updateAppWidgetOptions(Bundle options) { argument
309 AppWidgetManager.getInstance(mContext).updateAppWidgetOptions(mAppWidgetId, options);
546 Bundle options = manager.getAppWidgetOptions(mAppWidgetId);
549 if (options.containsKey(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY)) {
550 int category = options
[all...]
H A DAppWidgetManager.java490 * @param options The options to associate with this widget
492 public void updateAppWidgetOptions(int appWidgetId, Bundle options) { argument
497 mService.updateAppWidgetOptions(mPackageName, appWidgetId, options);
513 * @return The options associated with the given widget instance.
825 * @param options Bundle containing options for the AppWidget. See also
830 public void bindAppWidgetId(int appWidgetId, ComponentName provider, Bundle options) { argument
834 bindAppWidgetIdIfAllowed(appWidgetId, Process.myUserHandle(), provider, options);
868 * @param options Bundl
873 bindAppWidgetIdIfAllowed(int appWidgetId, ComponentName provider, Bundle options) argument
897 bindAppWidgetIdIfAllowed(int appWidgetId, UserHandle user, ComponentName provider, Bundle options) argument
1071 bindAppWidgetIdIfAllowed(int appWidgetId, int profileId, ComponentName provider, Bundle options) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DXmlUtils.java62 convertValueToList(CharSequence value, String[] options, int defaultValue) argument
65 for (int i = 0; i < options.length; i++) {
66 if (value.equals(options[i]))
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
H A DBitmapRegionTileSource.java49 Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options); argument
89 public Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options) { argument
90 return mDecoder.decodeRegion(wantRegion, options);
121 public Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options) { argument
127 int sampleSize = Math.max(options.inSampleSize, 1);
221 public abstract Bitmap loadPreviewBitmap(BitmapFactory.Options options); argument
240 public Bitmap loadPreviewBitmap(BitmapFactory.Options options) { argument
241 return BitmapFactory.decodeFile(mPath, options);
289 public Bitmap loadPreviewBitmap(BitmapFactory.Options options) { argument
292 Bitmap b = BitmapFactory.decodeStream(is, null, options);
349 loadPreviewBitmap(BitmapFactory.Options options) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastRecord.java58 final BroadcastOptions options; // BroadcastOptions supplied by caller field in class:BroadcastRecord
114 if (options != null) {
115 pw.print(prefix); pw.print("options="); pw.println(options.toBundle());
212 options = _options;
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardServiceDelegate.java317 public void doKeyguardTimeout(Bundle options) { argument
319 mKeyguardService.doKeyguardTimeout(options);
/frameworks/base/tools/aapt2/
H A DTableFlattener.cpp244 TableFlattener::TableFlattener(Options options) argument
245 : mOptions(options) {
H A DXmlFlattener.cpp245 const FlattenOptions& options) :
247 mLogger(logger), mPackagePools(packagePools), mOptions(options) {
535 const FlattenOptions& options, BigBuffer* outBuffer) {
553 &logger, options);
239 LinkedXmlFlattener(BigBuffer* outBuffer, StringPool* pool, std::map<std::u16string, StringPool>* packagePools, FlatStringRefList* stringRefs, const std::u16string& defaultPackage, const std::shared_ptr<IResolver>& resolver, SourceLogger* logger, const FlattenOptions& options) argument
532 flattenAndLink(const Source& source, Node* root, const std::u16string& defaultPackage, const std::shared_ptr<IResolver>& resolver, const FlattenOptions& options, BigBuffer* outBuffer) argument
/frameworks/av/cmds/stagefright/
H A Dsf2.cpp471 MediaSource::ReadOptions options; local
473 options.setSeekTo(mSeekTimeUs);
476 status_t err = mSource->read(&inBuffer, &options);
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp601 MediaSource::ReadOptions options; local
627 options.setSeekTo(
630 if (seekSource->read(&buffer, &options) != OK) {
649 err = codec->read(&buffer, &options);
650 options.clearSeekTo();
/frameworks/base/core/java/android/print/
H A DPrintJobInfo.java164 /** Advanced printer specific options. */
570 * Gets the advanced options.
572 * @return The advanced options.
581 * Sets the advanced options.
583 * @param options The advanced options.
587 public void setAdvancedOptions(Bundle options) { argument
588 mAdvancedOptions = options;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DSystemServicesProxy.java375 /** Moves a task to the front with the specified activity options. */
669 ActivityOptions options) {
672 mIam.startActivityFromRecents(taskId, options == null ? null : options.toBundle());
668 startActivityFromRecents(Context context, int taskId, String taskName, ActivityOptions options) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarKeyguardViewManager.java106 public void show(Bundle options) { argument
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifParser.java31 * {@link #parse(InputStream, int)} with given options.
201 private ExifParser(InputStream inputStream, int options, ExifInterface iRef) argument
212 mOptions = options;
234 * Parses the the given InputStream with the given options
239 protected static ExifParser parse(InputStream inputStream, int options, ExifInterface iRef) argument
241 return new ExifParser(inputStream, options, iRef);
245 * Parses the the given InputStream with default options; that is, every IFD
/frameworks/base/services/core/java/com/android/server/location/
H A DFlpHardwareProvider.java298 private native void nativeStartBatching(int requestId, FusedBatchOptions options); argument
374 public void startBatching(int requestId, FusedBatchOptions options) {
375 nativeStartBatching(requestId, options);
384 public void updateBatchingOptions(int requestId, FusedBatchOptions options) {
385 nativeUpdateBatchingOptions(requestId, options);
/frameworks/base/tools/aidl/
H A Daidl.cpp3 #include "options.h"
591 exactly_one_interface(const char* filename, const document_item_type* items, const Options& options, argument
617 if (options.failOnParcelable) {
635 generate_dep_file(const Options& options, const document_item_type* items) argument
641 if (options.autoDepFile) {
642 string fileName = options.outputFileName + ".d";
645 to = fopen(options.depFileName.c_str(), "wb");
659 fprintf(to, "%s: \\\n", options.outputFileName.c_str());
664 fprintf(to, " %s %s\n", options.inputFileName.c_str(), slash);
693 generate_outputFileName2(const Options& options, cons argument
725 generate_outputFileName(const Options& options, const document_item_type* items) argument
937 compile_aidl(Options& options) argument
1067 preprocess_aidl(const Options& options) argument
1143 Options options; local
[all...]

Completed in 1051 milliseconds

123456