/test/vts/utils/python/web/ |
web_utils.py | 25 from vts.runners.host import keys 42 _TOGGLE_PARAM = keys.ConfigKeys.IKEY_ENABLE_WEB 44 keys.ConfigKeys.IKEY_DASHBOARD_POST_COMMAND, 45 keys.ConfigKeys.IKEY_SERVICE_JSON_PATH, 46 keys.ConfigKeys.KEY_TESTBED_NAME, keys.ConfigKeys.IKEY_BUILD, 47 keys.ConfigKeys.IKEY_ANDROID_DEVICE, keys.ConfigKeys.IKEY_ABI_NAME, 48 keys.ConfigKeys.IKEY_ABI_BITNESS 69 post_cmd = getattr(self, keys.ConfigKeys.IKEY_DASHBOARD_POST_COMMAND [all...] |
/external/protobuf/objectivec/ |
GPBDictionary.h | 55 forKeys:(const uint32_t [])keys 61 forKeys:(const uint32_t [])keys 90 forKeys:(const uint32_t [])keys 96 forKeys:(const uint32_t [])keys 125 forKeys:(const uint32_t [])keys 131 forKeys:(const uint32_t [])keys 160 forKeys:(const uint32_t [])keys 166 forKeys:(const uint32_t [])keys 195 forKeys:(const uint32_t [])keys 201 forKeys:(const uint32_t [])keys [all...] |
/external/ipsec-tools/src/racoon/doc/ |
README.plainrsa | 14 the keys. So, what all this means for the security administrator is 15 that the setup needs a pair of reasonably long keys for each host that 27 RSA keys for the host. There are only two parameters that you should 28 be concerned about: -b, which sets the number of bits for the keys, 31 seconds to generate keys that are 2048 bits long, and only slightly 32 longer to generate 4096-bit keys. Either key length should be 37 plainrsa-gen -b 2048 -f /var/tmp/boston.keys 40 includes both public and private keys. GUARD THIS FILE CAREFULLY, 50 Alternatively, you can also grab the first line of the boston.keys 66 your keys and place it in one directory and use the global directiv [all...] |
/libcore/ojluni/src/main/java/java/util/ |
NavigableMap.java | 47 * associated with keys respectively less than, less than or equal, 51 * {@link #higherKey} return only the associated keys. All of these 93 * @param <K> the type of keys maintained by this map 107 * with the keys currently in the map 109 * and this map does not permit null keys 121 * with the keys currently in the map 123 * and this map does not permit null keys 136 * with the keys currently in the map 138 * and this map does not permit null keys 150 * with the keys currently in the ma [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
MoreKeySpecTests.java | 83 assertInsertAdditionalMoreKeys("null more keys and null additons", 87 assertInsertAdditionalMoreKeys("null more keys and empty additons", 91 assertInsertAdditionalMoreKeys("empty more keys and null additons", 95 assertInsertAdditionalMoreKeys("empty more keys and empty additons", 100 assertInsertAdditionalMoreKeys("filter out empty more keys", 134 assertInsertAdditionalMoreKeys("2 more keys & null", 148 assertInsertAdditionalMoreKeys("2 more keys & 1 addtional & no marker", 152 assertInsertAdditionalMoreKeys("2 more keys & 2 addtionals & no marker", 166 assertInsertAdditionalMoreKeys("2 more keys & 1 additon & marker at middle", 171 // 1 marker & excess additional more keys [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyFactory2Test.java | 117 KeyPair keys = keyGen.generateKeyPair(); local 122 KeySpec privateKeySpec = fact.getKeySpec(keys.getPrivate(), 126 Arrays.toString(keys.getPrivate().getEncoded()), 128 privateKey = fact.generatePrivate(new PKCS8EncodedKeySpec(keys.getPrivate().getEncoded())); 130 Arrays.toString(keys.getPrivate().getEncoded()), 147 KeyPair keys = keyGen.generateKeyPair(); local 151 KeySpec publicKeySpec = fact.getKeySpec(keys.getPublic(), 158 Arrays.toString(keys.getPublic().getEncoded()), 239 KeyPair keys = keyGen.generateKeyPair(); local 243 KeySpec privateKeySpec = fact.getKeySpec(keys.getPrivate() 296 KeyPair keys = keyGen.generateKeyPair(); local [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ArrayTable.java | 42 * <p>The allowed row and column keys must be supplied when the table is 48 * keys and the number of supplied column keys. The {@code remove} and {@code 52 * <p>The ordering of the row and column keys provided when the table is 61 * <p>Null row keys or column keys are not permitted. 65 * lists of allowed keys and values. See the {@link #at}, {@link #set}, {@link 91 * @param rowKeys row keys that may be stored in the generated table 92 * @param columnKeys column keys that may be stored in the generated table 93 * @throws NullPointerException if any of the provided keys is nul [all...] |
ImmutableSortedMap.java | 36 * An immutable {@link SortedMap}. Does not permit null keys or values. 130 * natural ordering of their keys. 132 * @throws IllegalArgumentException if the two keys are equal according to 143 * natural ordering of their keys. 145 * @throws IllegalArgumentException if any two keys are equal according to 157 * natural ordering of their keys. 159 * @throws IllegalArgumentException if any two keys are equal according to 171 * natural ordering of their keys. 173 * @throws IllegalArgumentException if any two keys are equal according to 185 * by the natural ordering of the keys [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ArrayTable.java | 40 * <p>The allowed row and column keys must be supplied when the table is 46 * keys and the number of supplied column keys. The {@code remove} and {@code 50 * <p>The ordering of the row and column keys provided when the table is 59 * <p>Null row keys or column keys are not permitted. 63 * lists of allowed keys and values. See the {@link #at}, {@link #set}, {@link 89 * @param rowKeys row keys that may be stored in the generated table 90 * @param columnKeys column keys that may be stored in the generated table 91 * @throws NullPointerException if any of the provided keys is nul [all...] |
/frameworks/base/core/tests/coretests/src/android/util/ |
SparseLongArrayTest.java | 72 * Generates a sorted array of distinct and random keys 74 * @param size the number of keys to return in the array. Should be < (2^31)/1000. 75 * @return the array of keys 78 final int[] keys = new int[size]; local 79 keys[0] = -1 * mRandom.nextInt(size * 500); 81 keys[i] = keys[i - 1] + 1 + mRandom.nextInt(1000); 82 assertTrue(keys[i] > keys[i - 1]); 84 return keys; [all...] |
/libcore/ojluni/src/main/java/java/util/concurrent/ |
ConcurrentNavigableMap.java | 50 * @param <K> the type of keys maintained by this map 115 * Returns a {@link NavigableSet} view of the keys contained in this map. 116 * The set's iterator returns the keys in ascending order. 128 * @return a navigable set view of the keys in this map 133 * Returns a {@link NavigableSet} view of the keys contained in this map. 134 * The set's iterator returns the keys in ascending order. 148 * @return a navigable set view of the keys in this map 153 * Returns a reverse order {@link NavigableSet} view of the keys contained in this map. 154 * The set's iterator returns the keys in descending order. 166 * @return a reverse order navigable set view of the keys in this ma [all...] |
/packages/apps/Settings/src/com/android/settings/ |
EncryptionAndCredential.java | 206 final List<String> keys = super.getNonIndexableKeys(context); local 208 return keys; 213 keys.add(KEY_CREDENTIALS_MANAGER); 214 keys.add(KEY_RESET_CREDENTIALS); 215 keys.add(KEY_CREDENTIALS_INSTALL); 216 keys.add(KEY_CREDENTIAL_STORAGE_TYPE); 217 keys.add(KEY_USER_CREDENTIALS); 225 keys.addAll(getNonIndexableKeysFromXml( 230 keys.addAll(getNonIndexableKeysFromXml( 235 return keys; [all...] |
/system/sepolicy/ |
README | 46 * keys.conf 70 mac_permissions.xml to public keys found in pem files. This script takes 72 Details of the configuration file (keys.conf) can be found in the subsection 73 keys.conf. This tool is also responsible for stripping the comments and 76 keys.conf 77 The keys.conf file is used for controlling the mapping of "tags" found in 78 the mac_permissions.xml signature stanzas with actual public keys found in 89 to ones release keys. 92 organization and may need to extract the pem file for the insertkeys/keys.conf tools. 97 After extracting the pem, you can rename it, and configure keys.conf an [all...] |
/libcore/ojluni/src/main/java/java/nio/channels/ |
Selector.java | 49 * keys: 53 * <li><p> The <i>key set</i> contains the keys representing the current 55 * {@link #keys() keys} method. </p></li> 57 * <li><p> The <i>selected-key set</i> is the set of keys such that each 63 * <li><p> The <i>cancelled-key</i> set is the set of keys that have been 74 * register} method. Cancelled keys are removed from the key set during 83 * <a name="sks"></a><p> Keys are added to the selected-key set by selection 88 * set. Keys are never removed from the selected-key set in any other way; 90 * operations. Keys may not be added directly to the selected-key set. </p 259 public abstract Set<SelectionKey> keys(); method in class:Selector [all...] |
/packages/apps/Camera2/src/com/android/camera/ |
ButtonManager.java | 28 import com.android.camera.settings.Keys; 187 if (key.equals(Keys.KEY_FLASH_MODE)) { 189 Keys.KEY_FLASH_MODE); 191 } else if (key.equals(Keys.KEY_VIDEOCAMERA_FLASH_MODE)) { 193 Keys.KEY_VIDEOCAMERA_FLASH_MODE); 195 } else if (key.equals(Keys.KEY_HDR_PLUS_FLASH_MODE)) { 197 Keys.KEY_HDR_PLUS_FLASH_MODE); 199 } else if (key.equals(Keys.KEY_CAMERA_ID)) { 201 Keys.KEY_CAMERA_ID); 203 } else if (key.equals(Keys.KEY_CAMERA_HDR_PLUS)) [all...] |
/frameworks/base/core/tests/coretests/src/android/app/backup/ |
BackupDataTest.java | 49 private static final String[] KEYS = {KEY1, KEY2, KEY3, KEY4}; 104 for(int i = 0; i < KEYS.length; i++) { 105 writeEntity(bdo, KEYS[i], DATA[i].getBytes()); 114 readAndVerifyEntity(bdi, KEYS[count], DATA[count].getBytes()); 117 assertEquals("four entities in this stream", KEYS.length, count); 125 for(int i = 0; i < KEYS.length; i++) { 126 deleteEntity(bdo, KEYS[i]); 135 readAndVerifyDeletedEntity(bdi, KEYS[count]); 138 assertEquals("four deletes in this stream", KEYS.length, count); 148 deleteEntity(bdo, KEYS[i]); i++ [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
SampleElements.java | 93 SampleElements<K> keys, SampleElements<V> values) { 95 Helpers.mapEntry(keys.e0, values.e0), 96 Helpers.mapEntry(keys.e1, values.e1), 97 Helpers.mapEntry(keys.e2, values.e2), 98 Helpers.mapEntry(keys.e3, values.e3), 99 Helpers.mapEntry(keys.e4, values.e4));
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
SystemScope.java | 49 private Hashtable keys = new Hashtable(); field in class:SystemScope 96 return (Identity) keys.get(key); 113 if (key != null && keys.containsKey(key)) { 119 keys.put(key, identity); 145 contains = contains || keys.containsKey(key); 146 keys.remove(key);
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/ |
PersistableBundlable.java | 44 // Concatenated sorted keys should be good enough as a hash 45 List<String> keys = new ArrayList(toPersistableBundle().keySet()); local 46 Collections.sort(keys); 47 return TextUtils.join(",", keys).hashCode(); 83 Set<String> keys = obj1.keySet(); local 84 for (String key : keys) {
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/ |
EncryptionAndCredentialTest.java | 93 final List<String> keys = SEARCH_INDEX_DATA_PROVIDER.getNonIndexableKeys(mContext); local 95 assertThat(keys).containsExactlyElementsIn(expectedKeys); 107 final List<String> keys = SEARCH_INDEX_DATA_PROVIDER.getNonIndexableKeys(mContext); local 109 assertThat(keys).containsExactlyElementsIn(expectedKeys); 121 final List<String> keys = SEARCH_INDEX_DATA_PROVIDER.getNonIndexableKeys(mContext); local 123 assertThat(keys).containsExactlyElementsIn(expectedKeys);
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/ |
SystemUpdatePreferenceControllerTest.java | 67 final List<String> keys = new ArrayList<>(); local 73 mController.updateNonIndexableKeys(keys); 75 assertThat(keys).isEmpty(); 80 final List<String> keys = new ArrayList<>(); local 82 mController.updateNonIndexableKeys(keys); 84 assertThat(keys.size()).isEqualTo(1);
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/ |
SettingPrefControllerTest.java | 131 final List<String> keys = new ArrayList<>(); local 133 mController.updateNonIndexableKeys(keys); 135 assertThat(keys).isEmpty(); 141 final List<String> keys = new ArrayList<>(); local 143 mController.updateNonIndexableKeys(keys); 145 assertThat(keys).isNotEmpty();
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
KeyboardLayout.java | 74 * The x-coordinate for the top-left corner of the keys. 82 * The y-coordinate for the top-left corner of the keys. 89 * The widths of the keys which are smaller than the true hit-area due to the gaps 90 * between keys. The mostCommonKey(Width/Height) represents the true key width/height 98 * The heights of the keys which are smaller than the true hit-area due to the gaps 99 * between keys. The mostCommonKey(Width/Height) represents the true key width/height
|
/test/vts/testcases/template/binary_test/ |
binary_test.py | 25 from vts.runners.host import keys 69 keys.ConfigKeys.IKEY_DATA_FILE_PATH, 72 keys.ConfigKeys.IKEY_BINARY_TEST_SOURCE, 73 keys.ConfigKeys.IKEY_BINARY_TEST_WORKING_DIRECTORY, 74 keys.ConfigKeys.IKEY_BINARY_TEST_ENVP, 75 keys.ConfigKeys.IKEY_BINARY_TEST_ARGS, 76 keys.ConfigKeys.IKEY_BINARY_TEST_LD_LIBRARY_PATH, 77 keys.ConfigKeys.IKEY_BINARY_TEST_PROFILING_LIBRARY_PATH, 78 keys.ConfigKeys.IKEY_BINARY_TEST_DISABLE_FRAMEWORK, 79 keys.ConfigKeys.IKEY_BINARY_TEST_STOP_NATIVE_SERVERS [all...] |
/device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/ |
tbb_key.c | 34 * Keys used to establish the chain of trust 36 * The order of the keys must follow the enumeration specified in tbb_key.h 38 key_t keys[NUM_KEYS] = { variable
|