HomeSort by relevance Sort by last modified time
    Searched full:keys (Results 126 - 150 of 9707) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/tc_act/
tc_pedit.h 33 struct tc_pedit_key keys[0]; member in struct:tc_pedit_sel
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/tc_act/
tc_pedit.h 30 struct tc_pedit_key keys[0]; member in struct:tc_pedit_sel
  /system/update_engine/
WATCHLISTS 3 # Please keep these keys in alphabetical order.
  /packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
SoundSettingsTest.java 63 final List<String> keys = XmlTestUtils.getKeysFromPreferenceXml(context, xmlId); local
64 keys.addAll(XmlTestUtils.getKeysFromPreferenceXml(context,
66 // Add keys with hidden resources
67 keys.add("alarm_volume");
68 keys.add("ring_volume");
69 keys.add("notification_volume");
71 assertThat(keys).containsAllIn(niks);
  /tools/test/connectivity/acts/framework/acts/test_utils/wifi/aware/
aware_const.py 34 # ConfigRequest keys
44 # Publish & Subscribe Config keys
72 # WifiAwareAttachCallback & WifiAwareIdentityChangedListener events keys
91 # WifiAwareDiscoverySessionCallback events keys
112 # WifiAwareRangingListener events (RttManager.RttListener) keys
120 # Capabilities keys
154 # Callback keys (for 'adb shell cmd wifiaware native_cb get_cb_count')
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/
tbb_cert.c 45 .key = &keys[ROT_KEY],
52 .key = &keys[ROT_KEY],
59 .key = &keys[TRUSTED_WORLD_KEY],
66 .key = &keys[BL30_KEY],
73 .key = &keys[TRUSTED_WORLD_KEY],
80 .key = &keys[BL31_KEY],
87 .key = &keys[TRUSTED_WORLD_KEY],
94 .key = &keys[BL32_KEY],
101 .key = &keys[NON_TRUSTED_WORLD_KEY],
108 .key = &keys[BL33_KEY]
    [all...]
  /external/libvncserver/examples/
vncev.c 20 static char* keys[0x400]; variable
39 memset(keys,0,0x400*sizeof(char*));
56 if(keys[j&0x3ff]) {
57 char* x=(char*)malloc(1+strlen(keys[j&0x3ff])+1+strlen(buffer+strlen("#define ")));
58 strcpy(x,keys[j&0x3ff]);
61 free(keys[j&0x3ff]);
62 keys[j&0x3ff]=x;
64 keys[j&0x3ff] = strdup(buffer+strlen("#define "));
84 down?"down":"up",keys[k&0x3ff]?keys[k&0x3ff]:"",(unsigned int)k)
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/lib/
map_data_internal.h 16 // Map serializes into a struct which has two arrays as struct fields, the keys
45 object->keys, "null key array in map struct", validation_context) ||
46 !ValidateContainer(object->keys, validation_context,
59 if (object->keys.Get()->size() != object->values.Get()->size()) {
70 Pointer<Array_Data<Key>> keys; member in class:mojo::internal::Map_Data
  /external/lisa/
logging.conf 7 keys=root
18 # section and add the logger name to the logger:keys list.
23 keys=root,Target,AndroidTarget,android,LinuxTarget,ssh,TestEnv,LisaTest,Executor,Workload,RTApp,Benchmark,local_connection
109 keys=consoleHandler,fileHandler
129 keys=simpleFormatter
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getspecific/
1-1.c 32 pthread_key_t keys[NUM_OF_KEYS]; local
37 if (pthread_key_create(&keys[i], NULL) != 0) {
42 (keys[i], (void *)(long)(i + KEY_VALUE)) != 0) {
51 rc = pthread_getspecific(keys[i]);
58 if (pthread_key_delete(keys[i]) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_delete/
1-1.c 19 * 1. Create many keys, and do not specify and value to them (default is NULL)
20 * 2. Delete the keys with pthread_key_delete
35 pthread_key_t keys[NUM_OF_KEYS]; local
39 if (pthread_key_create(&keys[i], NULL) != 0) {
44 if (pthread_key_delete(keys[i]) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setspecific/
1-1.c 33 pthread_key_t keys[NUM_OF_KEYS]; local
38 if (pthread_key_create(&keys[i], NULL) != 0) {
43 (keys[i], (void *)(long)(i + KEY_VALUE)) != 0) {
54 rc = pthread_getspecific(keys[i]);
61 if (pthread_key_delete(keys[i]) != 0) {
  /external/wpa_supplicant_8/hostapd/logwatch/
hostapd 40 if (keys %hostapd) {
41 foreach my $iface (sort keys %hostapd) {
43 foreach my $mac (sort keys %{$hostapd{$iface}}) {
45 foreach my $layer (sort keys %{$hostapd{$iface}->{$mac}}) {
47 foreach my $details (sort keys %{$hostapd{$iface}->{$mac}->{$layer}}) {
  /libcore/ojluni/src/main/java/sun/net/www/
MessageHeader.java 45 private String keys[]; field in class:MessageHeader
63 joiner.add(keys[i]);
72 keys = null;
87 if (keys[i] == null)
91 if (k.equalsIgnoreCase(keys[i]))
100 if ((keys[i] == k) ||
101 (k != null && k.equalsIgnoreCase(keys[i])))
108 return keys[n];
131 if (keys[i] == null)
138 if (k.equalsIgnoreCase(keys[i])
    [all...]
  /external/ltp/pan/
scan.l 41 * input is seen (%Start keys + internal ones that only flag errors).
72 SYM keys=NULL; /* stored keywords */
107 /* remove any keys that exist right now */
108 if(keys != NULL)
109 sym_rm(keys, RM_KEY | RM_DATA);
110 /* start a new table of keys */
111 keys = sym_open(0, 0, 0);
123 sym_dump_s(keys, 0);
131 sym_put(alltags, "_RTS", (void *)keys, PUT_REPLACE);
132 keys = NULL
    [all...]
  /external/skia/tests/
DynamicHashTest.cpp 158 // should see all 3 unique keys when iterating over hash
160 int keys[3] = {0, 0, 0}; local
163 keys[count] = key;
168 ASSERT(keys[0] != keys[1]);
169 ASSERT(keys[0] != keys[2]);
170 ASSERT(keys[1] != keys[2]);
172 // should see 2 unique keys when iterating over hash that aren't
    [all...]
  /test/vts/utils/python/systrace/
systrace_utils.py 20 from vts.runners.host import keys
34 _TOGGLE_PARAM = keys.ConfigKeys.IKEY_ENABLE_SYSTRACE
36 keys.ConfigKeys.KEY_TESTBED_NAME,
37 keys.ConfigKeys.IKEY_ANDROID_DEVICE,
38 keys.ConfigKeys.IKEY_DATA_FILE_PATH,
39 keys.ConfigKeys.IKEY_SYSTRACE_REPORT_PATH,
40 keys.ConfigKeys.IKEY_SYSTRACE_REPORT_URL_PREFIX
42 _OPTIONAL_PARAMS = [keys.ConfigKeys.IKEY_SYSTRACE_PROCESS_NAME]
64 process_name = getattr(self, keys.ConfigKeys.IKEY_SYSTRACE_PROCESS_NAME, '')
66 data_file_path = getattr(self, keys.ConfigKeys.IKEY_DATA_FILE_PATH
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Table.java 29 * A collection that associates an ordered pair of keys, called a row key and a
34 * Map} whose keys are the columns. The reverse is also available, associating a
52 * @param <R> the type of the table row keys
53 * @param <C> the type of the table column keys
65 * row and column keys.
97 * Returns the value corresponding to the given row and column keys, or
133 * Associates the specified value with the specified keys. If the table
134 * already contained a mapping for those keys, the old value is replaced with
139 * @param value value to be associated with the specified keys
140 * @return the value previously associated with the keys, or {@code null} i
    [all...]
  /external/python/cpython2/Lib/idlelib/
ObjectBrowser.py 47 keys = dir(self.object)
49 for key in keys:
91 def keys(self): member in class:SequenceTreeItem
95 for key in self.keys():
107 def keys(self): member in class:DictTreeItem
108 keys = self.object.keys()
110 keys.sort()
113 return keys
  /frameworks/av/drm/mediacas/plugins/clearkey/tests/
ClearKeyFetcherTest.cpp 94 std::vector<KeyFetcher::KeyInfo> keys; local
95 EXPECT_EQ(OK, fetcher.ObtainKey(ecm_, &asset_id, &keys));
96 EXPECT_EQ(2, keys.size());
97 EXPECT_EQ(0, keys[0].key_id);
98 EXPECT_EQ(content_key_[0]->size(), keys[0].key_bytes->size());
100 keys[0].key_bytes->data(), content_key_[0]->size()));
101 EXPECT_EQ(1, keys[1].key_id);
102 EXPECT_EQ(content_key_[1]->size(), keys[1].key_bytes->size());
104 keys[1].key_bytes->data(), content_key_[1]->size()));
  /libcore/ojluni/src/main/java/java/util/
SortedMap.java 29 * A {@link Map} that further provides a <em>total ordering</em> on its keys.
31 * ordering} of its keys, or by a {@link Comparator} typically
38 * <p>All keys inserted into a sorted map must implement the {@code Comparable}
40 * such keys must be <em>mutually comparable</em>: {@code k1.compareTo(k2)} (or
42 * {@code ClassCastException} for any keys {@code k1} and {@code k2} in
54 * {@code compareTo} (or {@code compare}) method, so two keys that are
66 * sorted according to the natural ordering of its keys.</li>
71 * according to the keys' natural ordering.</li>
84 * is a map whose keys are strings. The following idiom obtains a view
85 * containing all of the key-value mappings in {@code m} whose keys ar
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewIconCache.java 97 /** Removes all the keys to applications that aren't in the passed in collection */
98 public void retainAllApps(ArrayList<ApplicationInfo> keys) {
100 for (ApplicationInfo info : keys) {
105 /** Removes all the keys to shortcuts that aren't in the passed in collection */
106 public void retainAllShortcuts(List<ResolveInfo> keys) {
108 for (ResolveInfo info : keys) {
113 /** Removes all the keys to widgets that aren't in the passed in collection */
114 public void retainAllAppWidgets(List<AppWidgetProviderInfo> keys) {
116 for (AppWidgetProviderInfo info : keys) {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/search/
DataIntegrityTest.java 38 // Aggregation of all keys
40 // Aggregation of the incorrectly duplicate keys
42 // Keys for a specific page
57 // Take class and get all keys
92 // Get keys from all Xml and check for duplicates.
94 // Get all keys to be indexed
97 // Find all already-existing keys.
99 // Keep list of offending duplicate keys.
101 // Add all keys to master key list.
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
ObjectBrowser.py 45 keys = dir(self.object)
47 for key in keys:
89 def keys(self): member in class:SequenceTreeItem
93 for key in self.keys():
105 def keys(self): member in class:DictTreeItem
106 keys = self.object.keys()
108 keys.sort()
111 return keys
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
ObjectBrowser.py 45 keys = dir(self.object)
47 for key in keys:
89 def keys(self): member in class:SequenceTreeItem
93 for key in self.keys():
105 def keys(self): member in class:DictTreeItem
106 keys = self.object.keys()
108 keys.sort()
111 return keys

Completed in 943 milliseconds

1 2 3 4 56 7 8 91011>>