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

1 2 3 4 56 7 8 91011>>

  /external/iproute2/tc/
m_pedit.c 134 sel->keys[hwm].val = tkey->val;
135 sel->keys[hwm].mask = tkey->mask;
136 sel->keys[hwm].off = tkey->off;
137 sel->keys[hwm].at = tkey->at;
138 sel->keys[hwm].offmask = tkey->offmask;
139 sel->keys[hwm].shift = tkey->shift;
465 struct tc_pedit_key keys[MAX_OFFS]; member in struct:__anon4501
569 fprintf(f, " pedit action %s keys %d\n ", action_n2a(sel->action, b1, sizeof (b1)),sel->nkeys);
580 struct tc_pedit_key *key = sel->keys;
590 fprintf(f, "\npedit %x keys %d is not LEGIT", sel->index,sel->nkeys)
    [all...]
  /external/qemu/android/skin/
keyset.c 21 # define D_ACTIVE VERBOSE_CHECK(keys)
27 # define D(...) VERBOSE_PRINT(keys,__VA_ARGS__)
410 char keys[24]; local
411 if (len+1 >= (int)sizeof(keys)) {
415 memcpy( keys, p, len );
416 keys[len] = 0;
417 if ( skin_key_symmod_from_str( keys, &sym, &mod ) < 0 ) {
418 D( "ignoring unknown keys '%s' for command '%s'",
419 keys, node->name );
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginView.h 84 attributeKeys:(NSArray *)keys
96 - (void)setAttributeKeys:(NSArray *)keys andValues:(NSArray *)values;
  /external/webkit/WebKitTools/Scripts/
add-include 111 for my $condition (sort keys %includes) {
130 for my $include (sort keys %{$includes}) {
detect-mismatched-virtual-const 132 for $sig (keys %signature_map) {
commit-log-editor 225 if (isGit() && scalar keys %changeLogSort == 0) {
241 for my $sortKey (sort keys %changeLogSort) {
243 if (keys %changeLogSort > 1) {
305 foreach my $key (keys %{$hashOfStrings}) {
  /external/webkit/WebKitTools/Scripts/webkitpy/
buildbot_unittest.py 89 self.assertEquals(builder.keys(), expected_parsing.keys())
  /frameworks/base/core/java/android/os/
TokenWatcher.java 119 Set<IBinder> keys = mTokens.keySet(); local
122 for (IBinder b: keys) {
  /frameworks/base/services/audioflinger/
A2dpAudioInterface.h 49 virtual String8 getParameters(const String8& keys);
95 virtual String8 getParameters(const String8& keys);
AudioDumpInterface.cpp 212 String8 AudioDumpInterface::getParameters(const String8& keys)
214 AudioParameter param = AudioParameter(keys);
218 // LOGV("getParameters %s", keys.string());
389 String8 AudioStreamOutDump::getParameters(const String8& keys)
391 if (mFinalStream != 0 ) return mFinalStream->getParameters(keys);
393 AudioParameter param = AudioParameter(keys);
546 String8 AudioStreamInDump::getParameters(const String8& keys)
548 if (mFinalStream != 0 ) return mFinalStream->getParameters(keys);
550 AudioParameter param = AudioParameter(keys);
AudioHardwareGeneric.h 57 virtual String8 getParameters(const String8& keys);
90 virtual String8 getParameters(const String8& keys);
AudioHardwareStub.h 43 virtual String8 getParameters(const String8& keys);
59 virtual String8 getParameters(const String8& keys);
  /hardware/msm7k/libaudio-qdsp5v2/
AudioHardware.h 68 virtual String8 getParameters(const String8& keys);
118 virtual String8 getParameters(const String8& keys);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherThread.java 40 CipherThread(String name, int[] keys, String[] modes, String[] paddings) {
42 keyLengthAr = keys;
  /libcore/luni/src/test/java/tests/api/java/util/
WeakHashMapTest.java 276 List keys = Arrays.asList(keyArray); local
284 assertTrue("Invalid map entry returned--bad key", keys
289 keys = null;
429 List keys = Arrays.asList(keyArray); local
433 assertEquals("Incorrect number of keys returned,", 100, keySet.size());
437 assertTrue("Invalid map entry returned--bad key", keys
440 keys = null;
452 assertEquals("Incorrect number of keys returned after gc,", 99, keySet
479 List keys = Arrays.asList(keyArray); local
483 assertEquals("Incorrect number of keys returned,", 100
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/
rsn.c 313 /* Configure keys from registry */
322 os_memoryCopy (hOs, &pRsn->keys[keyIndex], &pInitParam->keys[keyIndex], sizeof(securityKeys_t));
323 if (pRsn->keys[keyIndex].keyType != NULL_KEY)
357 /* Mark all keys as removed */
392 if (pRsn->wepDefaultKeys[keyIndex] /*pRsn->keys[keyIndex].encLen>0*/)
395 pRsn->keys[keyIndex].keyType = WEP_KEY;
397 status = pRsn->pMainSecSm->setKey (pRsn->pMainSecSm, &pRsn->keys[keyIndex]);
463 /* Set keys that need to be set */
469 { /* set default WEP keys */
    [all...]
  /external/webkit/WebKit/win/
WebHistoryItem.cpp 216 CFTypeRef keys[9]; local
220 keys[keyCount] = urlKey;
224 keys[keyCount] = lastVisitedDateKey;
228 keys[keyCount] = titleKey;
232 keys[keyCount] = visitCountKey;
237 keys[keyCount] = lastVisitWasFailureKey;
243 keys[keyCount] = lastVisitWasHTTPNonGetKey;
258 keys[keyCount] = redirectURLsKey;
273 keys[keyCount] = dailyVisitCountKey;
288 keys[keyCount] = weeklyVisitCountKey
    [all...]
  /libcore/luni/src/main/java/java/util/
Properties.java 51 * A {@code Properties} object is a {@code Hashtable} where the keys and values
76 * The default values for keys not found in this {@code Properties}
198 Enumeration<?> keys = propertyNames(); local
199 while (keys.hasMoreElements()) {
200 String key = (String) keys.nextElement();
234 Enumeration<?> keys = propertyNames(); local
235 while (keys.hasMoreElements()) {
236 String key = (String) keys.nextElement();
458 * Returns all of the property names (keys) in this {@code Properties} object.
463 return selected.keys();
483 Enumeration<?> keys = keys(); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
SelectorTest.java 139 * @tests java.nio.channels.Selector#keys()
144 method = "keys",
150 Set<SelectionKey> keySet = selector.keys();
151 Set<SelectionKey> keySet2 = selector.keys();
158 // Any attempt to modify keys will cause UnsupportedOperationException
183 selector.keys();
191 * @tests java.nio.channels.Selector#keys()
246 notes = "Verifies selectNow() method for Selector registered with SelectionKeys.OP_ACCEPT, SelectionKeys.OP_CONNECT, SelectionKeys.OP_READ, SelectionKeys.OP_WRITE keys.",
289 notes = "Verifies select() method for Selector registered with SelectionKeys.OP_ACCEPT, SelectionKeys.OP_CONNECT, SelectionKeys.OP_READ, SelectionKeys.OP_WRITE keys.",
318 notes = "Verifies select(long) method for Selector registered with SelectionKeys.OP_ACCEPT, SelectionKeys.OP_CONNECT, SelectionKeys.OP_READ, SelectionKeys.OP_WRITE keys and different timeout's values."
453 Set<SelectionKey> keys = selector.keys(); local
    [all...]
  /external/bluetooth/bluez/test/
test-discovery 12 for key in properties.keys():
  /external/guava/src/com/google/common/collect/
Multimap.java 33 * <p>The methods {@link #get}, {@link #keySet}, {@link #keys}, {@link #values},
54 * @param <K> the type of keys maintained by this multimap
185 * Returns the set of all keys, each appearing once in the returned set.
189 * @return the collection of distinct keys
194 * Returns a collection, which may contain duplicates, of all keys. The number
199 * @return a multiset with keys corresponding to the distinct keys of the
203 Multiset<K> keys(); method in interface:Multimap
  /external/openssl/include/openssl/
tls1.h 267 #define SSL_CTX_get_tlsext_ticket_keys(ctx, keys, keylen) \
268 SSL_CTX_ctrl((ctx),SSL_CTRL_GET_TLSEXT_TICKET_KEYS,(keylen),(keys))
269 #define SSL_CTX_set_tlsext_ticket_keys(ctx, keys, keylen) \
270 SSL_CTX_ctrl((ctx),SSL_CTRL_SET_TLSEXT_TICKET_KEYS,(keylen),(keys))
  /external/openssl/ssl/
tls1.h 267 #define SSL_CTX_get_tlsext_ticket_keys(ctx, keys, keylen) \
268 SSL_CTX_ctrl((ctx),SSL_CTRL_GET_TLSEXT_TICKET_KEYS,(keylen),(keys))
269 #define SSL_CTX_set_tlsext_ticket_keys(ctx, keys, keylen) \
270 SSL_CTX_ctrl((ctx),SSL_CTRL_SET_TLSEXT_TICKET_KEYS,(keylen),(keys))
  /external/qemu/android/utils/
debug.h 22 _VERBOSE_TAG(keys, "key bindings & presses") \
  /external/webkit/WebKit/mac/Storage/
WebDatabaseManager.mm 91 static id keys[3] = {WebDatabaseDisplayNameKey, WebDatabaseExpectedSizeKey, WebDatabaseUsageKey};
102 return [[[NSDictionary alloc] initWithObjects:objects forKeys:keys count:3] autorelease];

Completed in 807 milliseconds

1 2 3 4 56 7 8 91011>>