Searched refs:feature (Results 1 - 25 of 55) sorted by path

123

/frameworks/base/
H A Dcompiled-classes-phone3954 android.telephony.ims.feature.IMMTelFeature
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java183 private static final String TAG_USES_FEATURE = "uses-feature";
184 private static final String TAG_FEATURE_GROUP = "feature-group";
549 boolean hasFeature(String feature); argument
565 @Override public boolean hasFeature(String feature) { argument
566 return mPm.hasSystemFeature(feature);
2261 if (innerTagName.equals("uses-feature")) {
2264 // any <uses-feature> declared are mandatory.
2268 Slog.w(TAG, "Unknown element under <feature-group>: " + innerTagName +
2856 // Only allow requesting this permission if the platform supports the given feature.
2861 // Only allow requesting this permission if the platform doesn't support the given feature
[all...]
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java1102 * begin using the named feature. The interpretation of {@code feature}
1111 * @param feature the name of the feature to be used
1114 * implementation+feature combination, except that the value {@code -1}
1124 public int startUsingNetworkFeature(int networkType, String feature) { argument
1126 NetworkCapabilities netCap = networkCapabilitiesForFeature(networkType, feature);
1129 feature);
1159 * using the named feature. The interpretation of {@code feature}
1181 stopUsingNetworkFeature(int networkType, String feature) argument
1196 networkCapabilitiesForFeature(int networkType, String feature) argument
[all...]
/frameworks/base/core/java/android/view/
H A DWindow.java62 /** Flag for the "options panel" feature. This is enabled by default. */
64 /** Flag for the "no title" feature, turning off the title at the top
69 * Flag for the progress indicator feature.
91 /** Flag for custom title. You cannot combine this feature with other title features. */
103 * feature is requested along with {@link #FEATURE_ACTION_BAR} it will be layered over
151 * Max value used as a feature ID
407 * time onCreatePanelMenu() is called for this feature.
1275 * will be available. You can not turn off a feature once it is requested.
1503 * Set the value for a drawable feature of this window, from a resource
1509 * @param featureId The desired drawable feature t
1680 hasFeature(int feature) argument
[all...]
/frameworks/base/libs/androidfw/tests/data/feature/
H A Dbuild23 aapt2 link -o feature.apk \
/frameworks/base/media/java/android/media/
H A DMediaFormat.java295 * video encoder does not support the intra refresh feature. Use the output format to
296 * verify that this feature was enabled.
584 * is ignored if the video encoder does not support the latency feature. Use the output
585 * format to verify that this feature was enabled and the actual value used by the encoder.
817 * feature name describing a required or optional feature for a codec capabilities
819 * The associated value is an integer, where non-0 value means the feature is
820 * requested to be present, while 0 value means the feature is requested to be not
828 public static final String KEY_FEATURE_ = "feature-";
880 * Returns whether a feature i
888 getFeatureEnabled(String feature) argument
944 setFeatureEnabled(String feature, boolean enabled) argument
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
H A DCameraBinderTestUtils.java71 final static public boolean isFeatureAvailable(Context context, String feature) { argument
75 if (f.name != null && f.name.equals(feature)) {
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
H A DSuggestionParser.java54 // If defined, only returns this suggestion if the feature is supported.
210 for (String feature : featuresRequired.split(",")) {
211 if (TextUtils.isEmpty(feature)) {
214 } else if (!mContext.getPackageManager().hasSystemFeature(feature)) {
215 Log.i(TAG, suggestion.title + " requires unavailable feature " + feature);
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java756 @Override public final boolean hasFeature(String feature) { argument
757 return PackageManagerService.this.hasSystemFeature(feature, 0);
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java51 import android.telephony.ims.feature.ImsFeature;
3510 * PackageManager.FEATURE_TELEPHONY system feature, which is available
4480 * feature or {@link null} if the service is not available. If an ImsServiceController is
4482 * feature updates.
4484 * @param feature The IMS Feature we are requesting, corresponding to {@link ImsFeature}.
4487 * @return {@link IImsServiceController} interface for the feature specified or {@link null} if
4491 public IImsServiceController getImsServiceControllerAndListen(int slotIndex, @Feature int feature, argument
4496 return telephony.getImsServiceControllerAndListen(slotIndex, feature, callback);
/frameworks/base/telephony/java/android/telephony/ims/
H A DImsService.java28 import android.telephony.ims.feature.ImsFeature;
29 import android.telephony.ims.feature.MMTelFeature;
30 import android.telephony.ims.feature.RcsFeature;
61 * defined below. In this example, the RCS_FEATURE feature is supported. -->
105 public void createImsFeature(int slotId, int feature, IImsFeatureStatusCallback c)
109 onCreateImsFeatureInternal(slotId, feature, c);
114 public void removeImsFeature(int slotId, int feature, IImsFeatureStatusCallback c)
118 onRemoveImsFeatureInternal(slotId, feature, c);
127 MMTelFeature feature = resolveMMTelFeature(slotId, featureType);
128 if (feature !
441 makeImsFeature(int slotId, int feature) argument
[all...]
H A DImsServiceProxy.java23 import android.telephony.ims.feature.IRcsFeature;
24 import android.telephony.ims.feature.ImsFeature;
64 public void imsFeatureCreated(int slotId, int feature) throws RemoteException {
65 // The feature has been re-enabled. This may happen when the service crashes.
67 if (!mIsAvailable && mSlotId == slotId && feature == mSupportedFeature) {
68 Log.i(LOG_TAG, "Feature enabled on slotId: " + slotId + " for feature: " +
69 feature);
76 public void imsFeatureRemoved(int slotId, int feature) throws RemoteException {
78 if (mIsAvailable && mSlotId == slotId && feature == mSupportedFeature) {
79 Log.i(LOG_TAG, "Feature disabled on slotId: " + slotId + " for feature
[all...]
H A DImsServiceProxyCompat.java23 import android.telephony.ims.feature.IMMTelFeature;
24 import android.telephony.ims.feature.ImsFeature;
180 throw new RemoteException("ImsServiceProxy is not available for that feature.");
/frameworks/base/telephony/java/android/telephony/ims/feature/
H A DIMMTelFeature.java17 package android.telephony.ims.feature;
35 * MMTel feature.
42 * Notifies the MMTel feature that you would like to start a session. This should always be
H A DIRcsFeature.java17 package android.telephony.ims.feature;
H A DImsFeature.java17 package android.telephony.ims.feature;
71 // Invalid feature value
156 Log.w(LOG_TAG, "Couldn't notify feature state: " + e.getMessage());
184 Log.w(LOG_TAG, "Couldn't notify feature state: " + e.getMessage());
215 * Called when the feature is being removed and must be cleaned up.
H A DMMTelFeature.java17 package android.telephony.ims.feature;
H A DRcsFeature.java17 package android.telephony.ims.feature;
/frameworks/base/telephony/java/android/telephony/ims/stub/
H A DImsConfigImplBase.java32 * Provides APIs to get/set the IMS service feature/capability/parameters.
35 * 2) Items configured by user. Mainly service feature class.
95 * Gets the value of the specified IMS feature item for specified network type.
96 * This operation gets the feature config value from the master storage (i.e. final
99 * @param feature as defined in com.android.ims.ImsConfig#FeatureConstants.
101 * @param listener feature value returned asynchronously through listener.
104 public void getFeatureValue(int feature, int network, ImsConfigListener listener) argument
109 * Sets the value for IMS feature item for specified network type.
113 * @param feature as defined in com.android.ims.ImsConfig#FeatureConstants.
119 public void setFeatureValue(int feature, in argument
[all...]
/frameworks/base/telephony/java/com/android/ims/
H A DImsConfig.java26 * Provides APIs to get/set the IMS service feature/capability/parameters.
29 * 2) Items configured by user. Mainly service feature class.
40 * Broadcast action: the feature enable status was changed
72 * Defines IMS service/capability feature constants.
510 * Defines IMS video quality feature value.
518 * Defines IMS feature value.
526 * Defines IMS feature value.
647 * Gets the value for IMS feature item for specified network type.
649 * @param feature, defined as in FeatureConstants.
651 * @param listener, provided to be notified for the feature o
656 getFeatureValue(int feature, int network, ImsConfigListener listener) argument
681 setFeatureValue(int feature, int network, int value, ImsConfigListener listener) argument
[all...]
H A DImsConfigListener.aidl25 * Notifies client the value of the get operation result on the feature config item.
28 * @param feature. as defined in com.android.ims.ImsConfig#FeatureConstants.
34 void onGetFeatureResponse(int feature, int network, int value, int status);
37 * Notifies client the set value operation result for feature config item.
43 * @param feature. as defined in com.android.ims.ImsConfig#FeatureConstants.
50 void onSetFeatureResponse(int feature, int network, int value, int status);
/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsConfig.aidl23 * Provides APIs to get/set the IMS service feature/capability/parameters.
26 * 2) Items configured by user. Mainly service feature class.
72 * Gets the value of the specified IMS feature item for specified network type.
73 * This operation gets the feature config value from the master storage (i.e. final
76 * @param feature. as defined in com.android.ims.ImsConfig#FeatureConstants.
78 * @param listener. feature value returned asynchronously through listener.
81 oneway void getFeatureValue(int feature, int network, ImsConfigListener listener);
84 * Sets the value for IMS feature item for specified network type.
88 * @param feature. as defined in com.android.ims.ImsConfig#FeatureConstants.
94 oneway void setFeatureValue(int feature, in
[all...]
H A DIImsServiceController.aidl39 void createImsFeature(int slotId, int feature, IImsFeatureStatusCallback c);
40 void removeImsFeature(int slotId, int feature, IImsFeatureStatusCallback c);
H A DIImsServiceFeatureListener.aidl21 * Callback to ImsManager when a feature changes in the ImsServiceController.
25 void imsFeatureCreated(int slotId, int feature);
26 void imsFeatureRemoved(int slotId, int feature);
27 void imsStatusChanged(int slotId, int feature, int status);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DITelephony.aidl773 * Get ImsServiceController binder from ImsResolver that corresponds to the subId and feature
777 IImsServiceController getImsServiceControllerAndListen(int slotIndex, int feature,

Completed in 682 milliseconds

123