Searched refs:key (Results 176 - 200 of 5538) sorted by relevance

1234567891011>>

/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Dvi_mode.c152 _rl_vi_set_last (key, repeat, sign)
153 int key, repeat, sign;
155 _rl_vi_last_command = key;
163 rl_vi_start_inserting (key, repeat, sign)
164 int key, repeat, sign;
166 _rl_vi_set_last (key, repeat, sign);
167 rl_vi_insertion_mode (1, key);
232 rl_vi_undo (count, key)
233 int count, key;
235 return (rl_undo_command (count, key));
992 int key; local
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DForeignMultiKeyNullifier.java4 boolean nullifyForeignKey(SecondaryDatabase secondary, DatabaseEntry key, DatabaseEntry data, DatabaseEntry secKey) argument
H A DSecondaryKeyCreator.java15 The key creator object is specified by calling
24 DatabaseEntry key,
29 // DO HERE: Extract the secondary key from the primary key and
30 // data, and set the secondary key into the result parameter.
43 Creates a secondary key entry, given a primary key and data entry.
45 A secondary key may be derived from the primary key, primary data, or a
46 combination of the primary key an
70 createSecondaryKey(SecondaryDatabase secondary, DatabaseEntry key, DatabaseEntry data, DatabaseEntry result) argument
[all...]
/macosx-10.9.5/Libc-997.90.3/db/hash/FreeBSD/
H A Dhash_func.c57 * Assume that we've already split the bucket to which this key hashes,
71 const u_char *key; local
75 for (key = keyarg, h = 0; len--;)
76 h = h * PRIME1 ^ (*key++ - ' ');
91 const u_char *e, *key; local
95 key = keyarg;
96 e = key + len;
97 for (h = 0; key != e;) {
98 c = *key++;
99 if (!c && key >
120 const u_char *key; local
168 const u_char *key; local
[all...]
/macosx-10.9.5/SmartCardServices-55111/src/PCSC/
H A Ddriverparser.l30 \<key\>([A-Z]|[a-z]|[0-9]|[ \t])+\<\/key\> { evalToken(bptext, 1); }
/macosx-10.9.5/apache-786.1/httpd/modules/mappers/
H A Dmod_rewrite.h33 typedef char *(rewrite_mapfunc_t)(request_rec *r, char *key);
/macosx-10.9.5/configd-596.15/Plugins/common/
H A Dcache.c70 cache_SCDynamicStoreCopyValue(SCDynamicStoreRef store, CFStringRef key) argument
74 value = CFDictionaryGetValue(cached_set, key);
82 key)) {
83 // if we have "removed" the key
88 value = CFDictionaryGetValue(cached_keys, key);
94 value = SCDynamicStoreCopyValue(store, key);
96 CFDictionarySetValue(cached_keys, key, value);
105 cache_SCDynamicStoreSetValue(SCDynamicStoreRef store, CFStringRef key, CFPropertyListRef value) argument
111 key);
117 CFDictionarySetValue(cached_set, key, valu
124 cache_SCDynamicStoreRemoveValue(SCDynamicStoreRef store, CFStringRef key) argument
140 cache_SCDynamicStoreNotifyValue(SCDynamicStoreRef store, CFStringRef key) argument
[all...]
/macosx-10.9.5/eap8021x-180/EAP8021X.fproj/
H A DDESSupport.c36 set_odd_parity(unsigned char *key) argument
40 key[idx] = odd_parity[key[idx]];
59 static void MakeKey(const unsigned char *key, unsigned char *des_key) argument
61 des_key[0] = Get7Bits(key, 0);
62 des_key[1] = Get7Bits(key, 7);
63 des_key[2] = Get7Bits(key, 14);
64 des_key[3] = Get7Bits(key, 21);
65 des_key[4] = Get7Bits(key, 28);
66 des_key[5] = Get7Bits(key, 3
111 DesEncrypt(const unsigned char *clear, const unsigned char *key, unsigned char *cipher) argument
129 DesEncrypt(const unsigned char * clear, const unsigned char * key, unsigned char * cipher) argument
[all...]
/macosx-10.9.5/files-638.1.4/private/etc/
H A Dupdate-services.pl37 my $key = $2;
40 $prevserv = $key;
42 $names->{$key} = $1;
45 $descs->{$key} = $str;
94 foreach my $key (sort cmpproto keys(%iana_names)) {
95 if (not exists $local_names{$key}) {
96 push @additions, $key;
104 foreach my $key (sort cmpproto keys(%local_names)) {
105 if (not exists $iana_names{$key}) {;
106 push @deletions, $key;
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/-test-/st/update/
H A Dupdate.c5 update_func(st_data_t *key, st_data_t *value, st_data_t arg, int existing) argument
7 VALUE ret = rb_yield_values(existing ? 2 : 1, (VALUE)*key, (VALUE)*value);
20 test_st_update(VALUE self, VALUE key) argument
22 if (st_update(RHASH_TBL(self), (st_data_t)key, update_func, 0))
/macosx-10.9.5/ruby-104/ruby/lib/rexml/
H A Dattlistdecl.rb37 def [](key)
38 @pairs[key]
43 def include?(key)
44 @pairs.keys.include? key
47 # Iterate over the key/value pairs:
/macosx-10.9.5/swig-10/Lib/java/
H A Dstd_map.i40 const T& get(const K& key) throw (std::out_of_range) {
41 std::map<K,T >::iterator i = self->find(key);
45 throw std::out_of_range("key not found");
47 void set(const K& key, const T& x) {
48 (*self)[key] = x;
50 void del(const K& key) throw (std::out_of_range) {
51 std::map<K,T >::iterator i = self->find(key);
55 throw std::out_of_range("key not found");
57 bool has_key(const K& key) {
58 std::map<K,T >::iterator i = self->find(key);
[all...]
/macosx-10.9.5/swig-10/Lib/lua/
H A Dstd_map.i40 const T& get(const K& key) throw (std::out_of_range) {
41 std::map<K,T >::iterator i = self->find(key);
45 throw std::out_of_range("key not found");
47 void set(const K& key, const T& x) {
48 (*self)[key] = x;
50 void del(const K& key) throw (std::out_of_range) {
51 std::map<K,T >::iterator i = self->find(key);
55 throw std::out_of_range("key not found");
57 bool has_key(const K& key) {
58 std::map<K,T >::iterator i = self->find(key);
[all...]
/macosx-10.9.5/swig-10/Lib/ocaml/
H A Dstd_map.i35 T& get(const K& key) throw (std::out_of_range) {
36 std::map<K,T >::iterator i = self->find(key);
40 throw std::out_of_range("key not found");
42 void set(const K& key, const T& x) {
43 (*self)[key] = x;
45 void del(const K& key) throw (std::out_of_range) {
46 std::map<K,T >::iterator i = self->find(key);
50 throw std::out_of_range("key not found");
52 bool has_key(const K& key) {
53 std::map<K,T >::iterator i = self->find(key);
[all...]
/macosx-10.9.5/swig-10/Lib/perl5/
H A Dstd_map.i36 T& get(const K& key) throw (std::out_of_range) {
37 std::map<K,T >::iterator i = self->find(key);
41 throw std::out_of_range("key not found");
43 void set(const K& key, const T& x) {
44 (*self)[key] = x;
46 void del(const K& key) throw (std::out_of_range) {
47 std::map<K,T >::iterator i = self->find(key);
51 throw std::out_of_range("key not found");
53 bool has_key(const K& key) {
54 std::map<K,T >::iterator i = self->find(key);
[all...]
/macosx-10.9.5/swig-10/Lib/php/
H A Dstd_map.i37 T& get(const K& key) throw (std::out_of_range) {
38 std::map<K,T >::iterator i = self->find(key);
42 throw std::out_of_range("key not found");
44 void set(const K& key, const T& x) {
45 (*self)[key] = x;
47 void del(const K& key) throw (std::out_of_range) {
48 std::map<K,T >::iterator i = self->find(key);
52 throw std::out_of_range("key not found");
54 bool has_key(const K& key) {
55 std::map<K,T >::iterator i = self->find(key);
[all...]
/macosx-10.9.5/swig-10/Lib/tcl/
H A Dstd_map.i34 T& get(const K& key) throw (std::out_of_range) {
35 std::map<K,T >::iterator i = self->find(key);
39 throw std::out_of_range("key not found");
41 void set(const K& key, const T& x) {
42 (*self)[key] = x;
44 void del(const K& key) throw (std::out_of_range) {
45 std::map<K,T >::iterator i = self->find(key);
49 throw std::out_of_range("key not found");
51 bool has_key(const K& key) {
52 std::map<K,T >::iterator i = self->find(key);
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Drc2test.c42 const void *key; member in struct:__anon794
125 RC2_KEY key; local
131 RC2_set_key(&key, tests[i].keylen, tests[i].key, tests[i].bitsize);
134 RC2_encryptc(t, t, &key);
139 RC2_decryptc(t, t, &key);
148 RC2_set_key(&key, 16, cbc_key, 0);
150 RC2_cbc_encrypt(cbc_in_data, out, 32, &key, t, 1);
161 RC2_cbc_encrypt(out, out, 32, &key, t, 0);
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DLazyOperandValueProfile.cpp48 const LazyOperandValueProfileKey& key)
54 if (m_data->at(i).key() == key)
59 m_data->append(LazyOperandValueProfile(key));
72 m_map.add(data[i].key(), &data[i]);
78 const LazyOperandValueProfileKey& key) const
81 m_map.find(key);
90 const LazyOperandValueProfileKey& key) const
92 LazyOperandValueProfile* profile = getIfPresent(key);
47 add( const LazyOperandValueProfileKey& key) argument
/macosx-10.9.5/PowerManagement-420.90.1/pmconfigd/
H A DPMStore.c57 bool PMStoreSetValue(CFStringRef key, CFTypeRef value) argument
61 if (!key || !value || !gPMStore)
64 lastValue = CFDictionaryGetValue(gPMStore, key);
70 CFDictionarySetValue(gPMStore, key, value);
71 return SCDynamicStoreSetValue(gSCDynamicStore, key, value);
74 bool PMStoreRemoveValue(CFStringRef key) argument
76 if (key) {
77 CFDictionaryRemoveValue(gPMStore, key);
78 return SCDynamicStoreRemoveValue(gSCDynamicStore, key);
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_x509_cl/lib/
H A DLockedMap.h42 *lookupEntryLocked(KeyType key) argument
45 typename MapType::iterator it = mMap.find(key);
55 addEntry(ValueType &value, KeyType key) argument
58 mMap[key] = &value;
62 *lookupEntry(KeyType key) argument
65 return lookupEntryLocked(key);
69 removeEntry(KeyType key) argument
73 ValueType *value = lookupEntryLocked(key);
75 mMap.erase(key);
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/win32/
H A Dthread.c71 isc_thread_key_getspecific(isc_thread_key_t key) { argument
72 return(TlsGetValue(key));
76 isc_thread_key_setspecific(isc_thread_key_t key, void *value) { argument
77 return (TlsSetValue(key, value) ? 0 : GetLastError());
81 isc_thread_key_create(isc_thread_key_t *key, void (*func)(void *)) { argument
82 *key = TlsAlloc();
84 return ((*key != -1) ? 0 : GetLastError());
88 isc_thread_key_delete(isc_thread_key_t key) { argument
89 return (TlsFree(key) ? 0 : GetLastError());
/macosx-10.9.5/ntp-88/lib/isc/win32/
H A Dthread.c75 isc_thread_key_getspecific(isc_thread_key_t key) { argument
76 return(TlsGetValue(key));
80 isc_thread_key_setspecific(isc_thread_key_t key, void *value) { argument
81 return (TlsSetValue(key, value) ? 0 : GetLastError());
85 isc_thread_key_create(isc_thread_key_t *key, void (*func)(void *)) { argument
86 *key = TlsAlloc();
88 return ((*key != -1) ? 0 : GetLastError());
92 isc_thread_key_delete(isc_thread_key_t key) { argument
93 return (TlsFree(key) ? 0 : GetLastError());
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/virtchannel_transform/
H A Drot.tcl13 # Meta description The key byte is
18 # Meta description plus the key byte.
34 proc ::tcl::transform::rot {chan key} {
35 ::chan push $chan [rot::implementation new $key]
47 return [my Rot $data $key]
57 set key [expr {$thekey % 26}]
58 set ikey [expr {26 - $key}]
64 variable key ikey
68 method Rot {data key} {
78 [expr { (($dx - 65 + $key)
[all...]
/macosx-10.9.5/configd-596.15/Plugins/KernelEventMonitor/
H A Dev_dlil.c43 CFStringRef key; local
46 key = SCDynamicStoreKeyCreateNetworkInterfaceEntity(NULL,
51 return (key);
56 copy_entity(CFStringRef key) argument
61 dict = cache_SCDynamicStoreCopyValue(store, key);
82 CFStringRef key = NULL; local
85 key = create_interface_key(if_name);
86 newDict = copy_entity(key);
100 cache_SCDynamicStoreSetValue(store, key, newDict);
102 cache_SCDynamicStoreRemoveValue(store, key);
116 CFStringRef key; local
133 CFStringRef key = NULL; local
197 CFStringRef key; local
219 CFStringRef key; local
256 CFStringRef key; local
273 CFStringRef key; local
483 CFStringRef key; local
[all...]

Completed in 184 milliseconds

1234567891011>>