Searched defs:options (Results 26 - 50 of 124) sorted by relevance

12345

/frameworks/base/packages/Keyguard/test/SampleTrustAgent/src/com/android/trustagent/test/
H A DSampleTrustAgent.java93 public boolean onSetTrustAgentFeaturesEnabled(Bundle options) { argument
94 Log.v(TAG, "Policy options received: " + options.getStringArrayList(KEY_FEATURES));
95 // TODO: Handle options
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeLayoutParamsMapAttributes.java80 String[] options, int defaultValue) {
116 String[] options, int defaultValue) {
79 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
115 getAttributeListValue(int index, String[] options, int defaultValue) argument
/frameworks/compile/mclinker/include/mcld/
H A DLinkerConfig.h26 * options() - the general options
28 * attribute() - the attribute options
72 const GeneralOptions& options() const { return m_Options; } function in class:mcld::LinkerConfig
73 GeneralOptions& options() { return m_Options; } function in class:mcld::LinkerConfig
/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java37 /** Tunable parameter options for {@link #getNextTimeMillis}. */
88 * Parse scheduler options supplied in this string form:
98 * The default options: <code>backoff=0+5 max=86400 min=0 period=0</code><br>
102 * @param spec describing some or all scheduler options.
103 * @param options to update with parsed values.
104 * @return the options passed in (for convenience)
107 public static Options parseOptions(String spec, Options options) argument
117 options.backoffFixedMillis = parseSeconds(pieces[0]);
120 options.backoffIncrementalMillis = parseSeconds(pieces[1]);
123 options
151 getNextTimeMillis(Options options) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DActivityCompat.java40 * Invalidate the activity's options menu, if able.
43 * options menu was controlled primarily by the user's operation of
53 * <p>In Android 3.0+ the Action Bar forces the options menu to be built early
62 * activity state that should cause the options menu to be rebuilt. If the app
66 * If this method returns true the options menu was successfully invalidated.</p>
68 * @param activity Invalidate the options menu of this activity
82 * <p>In Android 4.1+ additional options were introduced to allow for more
90 * @param options Additional options for how the Activity should be started.
91 * May be null if there are no options
96 startActivity(Activity activity, Intent intent, @Nullable Bundle options) argument
124 startActivityForResult(Activity activity, Intent intent, int requestCode, @Nullable Bundle options) argument
[all...]
H A DTaskStackBuilder.java78 int flags, Bundle options);
83 int flags, Bundle options) {
92 int flags, Bundle options) {
103 int flags, Bundle options) {
108 intents, flags, options);
312 * @param options Additional options for how the Activity should be started.
315 public void startActivities(Bundle options) { argument
325 if (!ContextCompat.startActivities(mSourceContext, intents, options)) {
356 * @param options Additiona
77 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
82 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
91 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
102 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
360 getPendingIntent(int requestCode, int flags, Bundle options) argument
[all...]
/frameworks/av/media/libstagefright/
H A DAACExtractor.cpp50 MediaBuffer **buffer, const ReadOptions *options = NULL);
287 MediaBuffer **out, const ReadOptions *options) {
292 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
286 read( MediaBuffer **out, const ReadOptions *options) argument
H A DAMRExtractor.cpp48 MediaBuffer **buffer, const ReadOptions *options = NULL);
251 MediaBuffer **out, const ReadOptions *options) {
256 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
250 read( MediaBuffer **out, const ReadOptions *options) argument
H A DCameraSourceTimeLapse.cpp205 MediaBuffer **buffer, const ReadOptions *options) {
208 mLastReadStatus = CameraSource::read(buffer, options);
204 read( MediaBuffer **buffer, const ReadOptions *options) argument
H A DDRMExtractor.cpp47 MediaBuffer **buffer, const ReadOptions *options = NULL);
126 status_t DRMSource::read(MediaBuffer **buffer, const ReadOptions *options) { argument
129 if ((err = mOriginalMediaSource->read(buffer, options)) != OK) {
H A DJPEGSource.cpp111 MediaBuffer **out, const ReadOptions *options) {
116 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
110 read( MediaBuffer **out, const ReadOptions *options) argument
H A DAudioPlayer.cpp99 MediaSource::ReadOptions options; local
101 options.setSeekTo(mSeekTimeUs);
105 mFirstBufferResult = mSource->read(&mFirstBuffer, &options);
500 MediaSource::ReadOptions options; local
515 options.setSeekTo(mSeekTimeUs);
540 err = mSource->read(&mInputBuffer, &options);
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 DStagefrightMetadataRetriever.cpp182 MediaSource::ReadOptions options; local
199 options.setSeekTo(thumbNailTime, mode);
202 options.setSeekTo(frameTimeUs, mode);
211 err = decoder->read(&buffer, &options);
212 options.clearSeekTo();
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
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DAACEncoder.cpp216 MediaBuffer **out, const ReadOptions *options) {
223 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &mode));
245 if (mSource->read(&mInputBuffer, options) != OK) {
215 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2TSExtractor.cpp50 MediaBuffer **buffer, const ReadOptions *options = NULL);
85 MediaBuffer **out, const ReadOptions *options) {
90 if (mSeekable && options && options->getSeekTo(&seekTimeUs, &seekMode)) {
106 return mImpl->read(out, options);
84 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSRTSource.cpp69 const MediaSource::ReadOptions *options) {
71 status_t err = getText(options, &text, startTimeUs, endTimeUs);
214 const MediaSource::ReadOptions *options,
222 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
65 read( int64_t *startTimeUs, int64_t *endTimeUs, Parcel *parcel, const MediaSource::ReadOptions *options) argument
213 getText( const MediaSource::ReadOptions *options, AString *text, int64_t *startTimeUs, int64_t *endTimeUs) argument
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHost.java206 * an options bundle to be passed to the started activity.
221 int appWidgetId, int intentFlags, int requestCode, @Nullable Bundle options) {
227 options);
220 startAppWidgetConfigureActivityForResult(@onNull Activity activity, int appWidgetId, int intentFlags, int requestCode, @Nullable Bundle options) argument
H A DAppWidgetHostView.java243 * AppWidget options and causes a callback to the AppWidgetProvider.
246 * @param newOptions The bundle of options, in addition to the size information,
284 // We get the old options to see if the sizes have changed
308 * @param options The bundle of options information.
310 public void updateAppWidgetOptions(Bundle options) { argument
311 AppWidgetManager.getInstance(mContext).updateAppWidgetOptions(mAppWidgetId, options);
548 Bundle options = manager.getAppWidgetOptions(mAppWidgetId);
551 if (options.containsKey(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY)) {
552 int category = options
[all...]
/frameworks/base/media/java/android/media/
H A DThumbnailUtils.java105 BitmapFactory.Options options = new BitmapFactory.Options();
106 options.inSampleSize = 1;
107 options.inJustDecodeBounds = true;
108 BitmapFactory.decodeFileDescriptor(fd, null, options);
109 if (options.mCancel || options.outWidth == -1
110 || options.outHeight == -1) {
113 options.inSampleSize = computeSampleSize(
114 options, targetSize, maxPixels);
115 options
212 extractThumbnail( Bitmap source, int width, int height, int options) argument
250 computeSampleSize(BitmapFactory.Options options, int minSideLength, int maxNumOfPixels) argument
268 computeInitialSampleSize(BitmapFactory.Options options, int minSideLength, int maxNumOfPixels) argument
302 makeBitmap(int minSideLength, int maxNumOfPixels, Uri uri, ContentResolver cr, ParcelFileDescriptor pfd, BitmapFactory.Options options) argument
356 transform(Matrix scaler, Bitmap source, int targetWidth, int targetHeight, int options) argument
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardServiceWrapper.java169 public void doKeyguardTimeout(Bundle options) { argument
171 mService.doKeyguardTimeout(options);
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java55 final Bundle options; field in class:PendingIntentRecord.Key
76 options = _o;
202 int flagsMask, int flagsValues, Bundle options, IActivityContainer container) {
233 if (options == null) {
234 options = key.options;
235 } else if (key.options != null) {
236 Bundle opts = new Bundle(key.options);
237 opts.putAll(options);
238 options
199 sendInner(int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, String requiredPermission, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options, IActivityContainer container) argument
[all...]
/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp259 MediaBuffer **out, const ReadOptions *options) {
264 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
258 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/core/java/android/app/
H A DPendingIntent.java276 * @param options Additional options for how the Activity should be started.
277 * May be null if there are no options.
284 @NonNull Intent intent, @Flags int flags, @Nullable Bundle options) {
296 flags, options, UserHandle.myUserId());
309 @NonNull Intent intent, int flags, Bundle options, UserHandle user) {
321 flags, options, user.getIdentifier());
424 @NonNull Intent[] intents, @Flags int flags, @Nullable Bundle options) {
436 null, null, requestCode, intents, resolvedTypes, flags, options,
450 @NonNull Intent[] intents, int flags, Bundle options, UserHandl
283 getActivity(Context context, int requestCode, @NonNull Intent intent, @Flags int flags, @Nullable Bundle options) argument
308 getActivityAsUser(Context context, int requestCode, @NonNull Intent intent, int flags, Bundle options, UserHandle user) argument
423 getActivities(Context context, int requestCode, @NonNull Intent[] intents, @Flags int flags, @Nullable Bundle options) argument
449 getActivitiesAsUser(Context context, int requestCode, @NonNull Intent[] intents, int flags, Bundle options, UserHandle user) argument
[all...]

Completed in 1770 milliseconds

12345