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

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothTetheringDataTracker.java153 * begin using the named feature. The interpretation of {@code feature}
155 * @param feature the name of the feature to be used
160 * implementation+feature combination, except that the value {@code -1}
164 public int startUsingNetworkFeature(String feature, int callingPid, int callingUid) { argument
170 * using the named feature. The interpretation of {@code feature}
172 * @param feature the name of the feature tha
181 stopUsingNetworkFeature(String feature, int callingPid, int callingUid) argument
[all...]
/frameworks/base/core/java/android/net/
H A DEthernetDataTracker.java264 * begin using the named feature. The interpretation of {@code feature}
266 * @param feature the name of the feature to be used
271 * implementation+feature combination, except that the value {@code -1}
275 public int startUsingNetworkFeature(String feature, int callingPid, int callingUid) { argument
281 * using the named feature. The interpretation of {@code feature}
283 * @param feature the name of the feature tha
292 stopUsingNetworkFeature(String feature, int callingPid, int callingUid) argument
[all...]
H A DConnectivityManager.java434 * begin using the named feature. The interpretation of {@code feature}
437 * @param feature the name of the feature to be used
440 * implementation+feature combination, except that the value {@code -1}
443 public int startUsingNetworkFeature(int networkType, String feature) { argument
445 return mService.startUsingNetworkFeature(networkType, feature,
454 * using the named feature. The interpretation of {@code feature}
457 * @param feature th
463 stopUsingNetworkFeature(int networkType, String feature) argument
[all...]
/frameworks/base/core/java/android/view/
H A DWindow.java46 /** Flag for the "options panel" feature. This is enabled by default. */
48 /** Flag for the "no title" feature, turning off the title at the top
51 /** Flag for the progress indicator feature */
61 /** Flag for custom title. You cannot combine this feature with other title features. */
73 * feature is requested along with {@link #FEATURE_ACTION_BAR} it will be layered over
236 * time onCreatePanelMenu() is called for this feature.
854 * will be available. You can not turn off a feature once it is requested.
1026 * Set the value for a drawable feature of this window, from a resource
1032 * @param featureId The desired drawable feature to change, defined as a
1039 * Set the value for a drawable feature o
1184 hasFeature(int feature) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java911 FeatureUser(int type, String feature, IBinder binder) { argument
914 mFeature = feature;
953 public boolean isSameUser(int pid, int uid, int networkType, String feature) { argument
955 TextUtils.equals(mFeature, feature)) {
968 public int startUsingNetworkFeature(int networkType, String feature, argument
971 log("startUsingNetworkFeature for net " + networkType + ": " + feature);
979 FeatureUser f = new FeatureUser(networkType, feature, binder);
982 int usedNetworkType = convertFeatureToNetworkType(networkType, feature);
996 if (!TextUtils.equals(feature,Phone.FEATURE_ENABLE_DUN_ALWAYS)) {
1008 // In case there is no timer is specified for the feature,
1067 stopUsingNetworkFeature(int networkType, String feature) argument
2815 convertFeatureToNetworkType(int networkType, String feature) argument
[all...]

Completed in 108 milliseconds