Searched defs:feature (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/base/telephony/java/android/telephony/ims/feature/
H A DIRcsFeature.java17 package android.telephony.ims.feature;
H A DRcsFeature.java17 package 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 DMMTelFeature.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.
/frameworks/base/tests/FeatureSplit/base/src/com/android/test/split/feature/
H A DActivityMain.java16 package com.android.test.split.feature;
/frameworks/base/tests/FeatureSplit/feature1/src/com/android/test/split/feature/one/
H A DOne.java16 package com.android.test.split.feature.one;
/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/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/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...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
H A DTestImsServiceControllerAdapter.java22 import android.telephony.ims.feature.ImsFeature;
48 public void createImsFeature(int slotId, int feature, IImsFeatureStatusCallback c) argument
50 TestImsServiceControllerAdapter.this.createImsFeature(slotId, feature);
55 public void removeImsFeature(int slotId, int feature, IImsFeatureStatusCallback c) argument
57 TestImsServiceControllerAdapter.this.removeImsFeature(slotId, feature);
170 public void createImsFeature(int subId, int feature) throws RemoteException { argument
174 public void removeImsFeature(int subId, int feature) throws RemoteException { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java204 public boolean supports(int feature) { argument
205 return feature <= LAST_SUPPORTED_FEATURE;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
H A DImsResolver.java34 import android.telephony.ims.feature.ImsFeature;
65 * {@link #getImsServiceControllerAndListen} on a per-slot and per feature basis.
299 * feature or {@link null} if the service is not available. If an ImsServiceController is
301 * feature updates.
303 * @param feature The IMS Feature we are requesting.
306 * @return {@link IImsServiceController} interface for the feature specified or {@link null} if
309 public IImsServiceController getImsServiceControllerAndListen(int slotId, int feature, argument
311 if (slotId < 0 || slotId >= mNumSlots || feature <= ImsFeature.INVALID
312 || feature >= ImsFeature.MAX) {
321 controller = services.get(feature);
330 putImsController(int slotId, int feature, ImsServiceController controller) argument
349 removeImsController(int slotId, int feature) argument
582 imsServiceFeatureCreated(int slotId, int feature, ImsServiceController controller) argument
591 imsServiceFeatureRemoved(int slotId, int feature, ImsServiceController controller) argument
[all...]
H A DImsServiceController.java47 * on each feature that the service supports. For each ImsFeature that is created,
49 * listener that the ImsService now supports that feature.
53 * {@link IImsServiceController#removeImsFeature} will be called for each feature that is
126 * has created or removed a new feature as well as the associated ImsServiceController.
130 * Called by ImsServiceController when a new feature has been created.
132 void imsServiceFeatureCreated(int slotId, int feature, ImsServiceController controller); argument
134 * Called by ImsServiceController when a new feature has been removed.
136 void imsServiceFeatureRemoved(int slotId, int feature, ImsServiceController controller); argument
163 // Set of a pair of slotId->feature
187 Log.i(LOG_TAG, "notifyImsFeatureStatus: slot=" + mSlotId + ", feature
387 sendImsFeatureCreatedCallback(int slot, int feature) argument
404 sendImsFeatureRemovedCallback(int slot, int feature) argument
421 sendImsFeatureStatusChanged(int slot, int feature, int status) argument
[all...]
/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/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...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DTelephonyMetrics.java828 * Write IMS feature settings changed event
831 * @param feature IMS feature
836 public void writeImsSetFeatureValue(int phoneId, int feature, int network, int value, argument
839 switch (feature) {
/frameworks/minikin/libs/minikin/
H A DLayout.cpp695 static hb_feature_t feature; local
701 if (hb_feature_from_string (start, p - start, &feature)
702 && feature.start == 0 && feature.end == (unsigned int) -1)
703 features->push_back(feature);
/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/tools/aapt/
H A DCommand.cpp486 * Represents a feature that has been automatically added due to
494 * Name of the implied feature.
504 * List of human-readable reasons for why this feature was implied.
514 * Whether the feature is required.
519 * What version of the feature is requested.
525 * Represents a <feature-group> tag in the AndroidManifest.xml
564 ImpliedFeature* feature = &impliedFeatures->editValueAt(idx); local
566 // A non-sdk 23 implied feature takes precedence.
567 if (feature->impliedBySdk23 && !sdk23) {
568 feature
583 const Feature& feature = grp.features[i]; local
[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/wifi/java/android/net/wifi/
H A DWifiManager.java1395 private boolean isFeatureSupported(int feature) { argument
1396 return (getSupportedFeatures() & feature) == feature;
1560 * Check if the Batched Scan feature is supported.
1812 * the caller has proper permissions. Callers can also use the LocalOnlyHotspot feature for a
/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/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/wilhelm/include/SLES/
H A DOpenSLES.h2747 SLuint32 feature; member in struct:SLEngineOption_

Completed in 1153 milliseconds

12