HomeSort by relevance Sort by last modified time
    Searched refs:features (Results 51 - 75 of 234) sorted by null

1 23 4 5 6 7 8 910

  /external/e2fsprogs/lib/ext2fs/
openfs.c 78 * features aren't supported.
89 __u32 features; local
203 features = fs->super->s_feature_incompat;
206 features &= !EXT2_LIB_SOFTSUPP_INCOMPAT;
208 if (features & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP) {
213 features = fs->super->s_feature_ro_compat;
216 features &= !EXT2_LIB_SOFTSUPP_RO_COMPAT;
219 (features & ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP)) {
  /frameworks/base/core/java/android/accounts/
AbstractAccountAuthenticator.java 120 String authTokenType, String[] features, Bundle options)
125 + ", features " + (features == null ? "[]" : Arrays.toString(features)));
131 accountType, authTokenType, features, options);
300 Account account, String[] features) throws RemoteException {
304 new AccountAuthenticatorResponse(response), account, features);
371 * @param requiredFeatures a String array of authenticator-specific features that the added
461 * Checks if the account supports all the specified authenticator specific features.
464 * @param features an array of features to check, will never be nul
    [all...]
IAccountAuthenticator.aidl 64 * specified features
67 in String[] features);
IAccountManager.aidl 34 void hasFeatures(in IAccountManagerResponse response, in Account account, in String[] features);
35 void getAccountsByFeatures(in IAccountManagerResponse response, String accountType, in String[] features);
  /external/bluetooth/bluez/tools/
hcitool.c 511 uint8_t cls[3], features[8]; local
738 if (hci_read_remote_features(dd, handle, features, 20000) == 0) {
739 char *tmp = lmp_featurestostr(features, "\t\t", 63);
740 printf("LMP features:\t0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x"
742 features[0], features[1],
743 features[2], features[3],
744 features[4], features[5]
833 uint8_t features[8], max_page = 0; local
    [all...]
  /external/webkit/WebKitTools/Scripts/
build-webkit 39 use webkitperl::features;
61 my @features = (
171 foreach (@features) {
188 foreach (@features) {
211 --minimal No optional features, unless explicitly enabled.
222 # Build usage text and options list from features
223 foreach (@features) {
257 foreach (@features) {
271 foreach (@features) {
320 foreach (@features) {
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/features/
FeatureSummaryActivity.java 25 package com.android.cts.verifier.features;
80 * A list of all features added in Eclair (API=7).
95 * A list of all features added in FroYo (API=8). Because we want to run on
124 // features
129 // get list of all features device thinks it has, & store in a HashMap
139 // roll over all known features & check whether device reports them
142 ArrayList<Feature> features = new ArrayList<Feature>(); local
145 Collections.addAll(features, ALL_ECLAIR_FEATURES);
148 Collections.addAll(features, ALL_FROYO_FEATURES);
150 for (Feature f : features) {
    [all...]