/frameworks/base/telephony/java/com/android/ims/internal/uce/options/ |
H A D | OptionsCapInfo.aidl | 16 package com.android.ims.internal.uce.options;
|
H A D | OptionsCmdId.aidl | 17 package com.android.ims.internal.uce.options;
|
H A D | OptionsCmdStatus.aidl | 16 package com.android.ims.internal.uce.options;
|
H A D | OptionsSipResponse.aidl | 16 package com.android.ims.internal.uce.options;
|
H A D | IOptionsListener.aidl | 17 package com.android.ims.internal.uce.options; 19 import com.android.ims.internal.uce.options.OptionsSipResponse; 20 import com.android.ims.internal.uce.options.OptionsCapInfo; 21 import com.android.ims.internal.uce.options.OptionsCmdStatus;
|
/frameworks/support/compat/jellybean/android/support/v4/content/ |
H A D | ContextCompatJellybean.java | 25 public static void startActivities(Context context, Intent[] intents, Bundle options) { argument 26 context.startActivities(intents, options); 29 public static void startActivity(Context context, Intent intent, Bundle options) { argument 30 context.startActivity(intent, options);
|
/frameworks/ex/common/tests/src/com/android/common/ |
H A D | OperationSchedulerTest.java | 47 OperationScheduler.Options options = new OperationScheduler.Options(); 48 assertEquals(Long.MAX_VALUE, scheduler.getNextTimeMillis(options)); 54 assertEquals(beforeTrigger + 1000000, scheduler.getNextTimeMillis(options)); 58 assertEquals(beforeTrigger + 1000000, scheduler.getNextTimeMillis(options)); 60 assertEquals(beforeTrigger + 1500000, scheduler.getNextTimeMillis(options)); 64 assertEquals(Long.MAX_VALUE, scheduler.getNextTimeMillis(options)); 66 assertEquals(beforeTrigger + 1500000, scheduler.getNextTimeMillis(options)); 73 assertEquals(beforeTrigger + 1500000, scheduler.getNextTimeMillis(options)); 74 options.backoffFixedMillis = 1000000; 75 options [all...] |
/frameworks/rs/java/tests/Refocus/src/com/android/rs/test/ |
H A D | RenderScriptTask.java | 18 * {@code DepthOfFieldOptions options;} 20 * {@code Bitmap result = renderScriptTask.applyRefocusFilter(options);} 79 * @param options an object contains color image, depth map, focal depth, and 83 public Bitmap applyRefocusFilter(DepthOfFieldOptions options) { argument 87 prepareRefocusFilter(options); 115 * @param options an object contains color image, depth map, focal depth, and 118 private void prepareRefocusFilter(DepthOfFieldOptions options) { argument 120 options.rgbz.getDepthTransform(), options.focalDepth, 121 options [all...] |
/frameworks/support/media-compat/api24/android/support/v4/media/ |
H A D | MediaBrowserCompatApi24.java | 30 public static void subscribe(Object browserObj, String parentId, Bundle options, argument 32 ((MediaBrowser) browserObj).subscribe(parentId, options, 43 void onChildrenLoaded(@NonNull String parentId, List<?> children, @NonNull Bundle options); argument 44 void onError(@NonNull String parentId, @NonNull Bundle options); argument 55 List<MediaBrowser.MediaItem> children, @NonNull Bundle options) { 56 mSubscriptionCallback.onChildrenLoaded(parentId, children, options); 60 public void onError(@NonNull String parentId, @NonNull Bundle options) { argument 61 mSubscriptionCallback.onError(parentId, options); 54 onChildrenLoaded(@onNull String parentId, List<MediaBrowser.MediaItem> children, @NonNull Bundle options) argument
|
/frameworks/base/core/java/android/service/voice/ |
H A D | VoiceInteractionManagerInternal.java | 33 * @param options 35 public abstract void startLocalVoiceInteraction(IBinder callingActivity, Bundle options); argument
|
/frameworks/support/compat/jellybean/android/support/v4/app/ |
H A D | ActivityCompatJB.java | 25 public static void startActivityForResult(Activity activity, Intent intent, int requestCode, Bundle options) { argument 26 activity.startActivityForResult(intent, requestCode, options); 31 Bundle options) throws IntentSender.SendIntentException { 33 flagsValues, extraFlags, options); 29 startIntentSenderForResult(Activity activity, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
|
/frameworks/support/fragment/jellybean/android/support/v4/app/ |
H A D | BaseFragmentActivityJB.java | 40 @Nullable Bundle options) { 48 super.startActivityForResult(intent, requestCode, options); 54 Bundle options) throws IntentSender.SendIntentException { 63 extraFlags, options); 39 startActivityForResult(Intent intent, int requestCode, @Nullable Bundle options) argument 52 startIntentSenderForResult(IntentSender intent, int requestCode, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
|
/frameworks/base/tools/aapt2/flatten/ |
H A D | XmlFlattener.h | 40 XmlFlattener(BigBuffer* buffer, XmlFlattenerOptions options) : argument 41 mBuffer(buffer), mOptions(options) {
|
/frameworks/support/core-utils/jellybean/android/support/v4/app/ |
H A D | TaskStackBuilderJellybean.java | 27 Intent[] intents, int flags, Bundle options) { 28 return PendingIntent.getActivities(context, requestCode, intents, flags, options); 26 getActivitiesPendingIntent(Context context, int requestCode, Intent[] intents, int flags, Bundle options) argument
|
/frameworks/base/location/java/android/location/ |
H A D | FusedBatchOptions.java | 23 * A data class representing a set of options to configure batching sessions. 37 * Getters and setters for properties needed to hold the options. 120 FusedBatchOptions options = new FusedBatchOptions(); 121 options.setMaxPowerAllocationInMW(parcel.readDouble()); 122 options.setPeriodInNS(parcel.readLong()); 123 options.setSourceToUse(parcel.readInt()); 124 options.setFlag(parcel.readInt()); 125 options.setSmallestDisplacementMeters(parcel.readFloat()); 126 return options;
|
/frameworks/base/media/java/android/media/ |
H A D | ThumbnailUtils.java | 106 BitmapFactory.Options options = new BitmapFactory.Options(); 107 options.inSampleSize = 1; 108 options.inJustDecodeBounds = true; 109 BitmapFactory.decodeFileDescriptor(fd, null, options); 110 if (options.mCancel || options.outWidth == -1 111 || options.outHeight == -1) { 114 options.inSampleSize = computeSampleSize( 115 options, targetSize, maxPixels); 116 options 213 extractThumbnail( Bitmap source, int width, int height, int options) argument 251 computeSampleSize(BitmapFactory.Options options, int minSideLength, int maxNumOfPixels) argument 269 computeInitialSampleSize(BitmapFactory.Options options, int minSideLength, int maxNumOfPixels) argument 303 makeBitmap(int minSideLength, int maxNumOfPixels, Uri uri, ContentResolver cr, ParcelFileDescriptor pfd, BitmapFactory.Options options) argument 357 transform(Matrix scaler, Bitmap source, int targetWidth, int targetHeight, int options) argument [all...] |
/frameworks/base/core/java/android/accounts/ |
H A D | IAccountAuthenticator.aidl | 32 String authTokenType, in String[] requiredFeatures, in Bundle options); 38 in Bundle options); 44 String authTokenType, in Bundle options); 55 String authTokenType, in Bundle options); 92 String authTokenType, in String[] requiredFeatures, in Bundle options); 98 String authTokenType, in Bundle options);
|
/frameworks/compile/mclinker/lib/Target/ |
H A D | ELFDynamic.cpp | 95 if (m_Config.options().Bsymbolic()) 157 if (m_Config.options().hasOrigin()) 159 if (m_Config.options().Bsymbolic()) 161 if (m_Config.options().hasNow()) 169 if ((m_Config.options().hasNewDTags() && dt_flags != 0x0) || 176 if (m_Config.options().hasNow() || m_Config.options().hasLoadFltr() || 177 m_Config.options().hasOrigin() || m_Config.options().hasInterPose() || 178 m_Config.options() [all...] |
/frameworks/base/core/java/android/content/ |
H A D | IIntentSender.aidl | 26 IIntentReceiver finishedReceiver, String requiredPermission, in Bundle options);
|
/frameworks/base/core/java/com/android/server/ |
H A D | NetworkManagementSocketTagger.java | 67 final SocketTags options = threadSocketTags.get(); 70 + Integer.toHexString(options.statsTag) + ", statsUid=" + options.statsUid); 72 // TODO: skip tagging when options would be no-op 73 tagSocketFd(fd, options.statsTag, options.statsUid); 98 final SocketTags options = threadSocketTags.get(); 99 if (options.statsTag == -1 && options.statsUid == -1) return;
|
/frameworks/base/tools/aapt2/link/ |
H A D | ManifestFixer.h | 44 ManifestFixer(const ManifestFixerOptions& options) : mOptions(options) { argument
|
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/jdwp/ |
H A D | PreloadDebugeeWrapper.java | 27 public PreloadDebugeeWrapper(JPDATestOptions options, LogWriter writer) { argument 28 super(options, writer);
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
H A D | AArch64ELFDynamic.cpp | 26 if (config().options().hasNow()) { 37 if (config().options().hasNow()) {
|
/frameworks/compile/mclinker/unittests/ |
H A D | ELFBinaryReaderTest.cpp | 51 config.options().setBinaryInput(); 54 config.options().setBinaryInput(false);
|
/frameworks/ex/common/java/com/android/common/ |
H A D | OperationScheduler.java | 36 /** Tunable parameter options for {@link #getNextTimeMillis}. */ 87 * Parse scheduler options supplied in this string form: 97 * The default options: <code>backoff=0+5 max=86400 min=0 period=0</code><br> 101 * @param spec describing some or all scheduler options. 102 * @param options to update with parsed values. 103 * @return the options passed in (for convenience) 106 public static Options parseOptions(String spec, Options options) argument 116 options.backoffFixedMillis = parseSeconds(pieces[0]); 119 options.backoffIncrementalMillis = parseSeconds(pieces[1]); 122 options 150 getNextTimeMillis(Options options) argument [all...] |