Searched refs:key (Results 1 - 25 of 5751) sorted by relevance

1234567891011>>

/macosx-10.10/Heimdal-398.1.2/lib/otp/
H A Dotp_print.c44 otp_checksum (OtpKey key) argument
50 sum += ((key[i] >> 0) & 0x03)
51 + ((key[i] >> 2) & 0x03)
52 + ((key[i] >> 4) & 0x03)
53 + ((key[i] >> 6) & 0x03);
59 otp_print_stddict (OtpKey key, char *str, size_t sz) argument
63 sum = otp_checksum (key);
66 std_dict[(key[0] << 3) | (key[1] >> 5)],
67 std_dict[((key[
75 otp_print_hex(OtpKey key, char *str, size_t sz) argument
84 otp_print_hex_extended(OtpKey key, char *str, size_t sz) argument
93 otp_print_stddict_extended(OtpKey key, char *str, size_t sz) argument
[all...]
/macosx-10.10/bind9-45.101/bind9/bin/tests/
H A Dndc.conf-include20 key "another-key" {
/macosx-10.10/xnu-2782.1.97/tools/lldbmacros/core/
H A Dcaching.py54 'key' : (valueobj, versno),
94 def GetStaticCacheData(key, default_value = None):
95 """ Get cached object based on key from the cache of static information.
97 key: str - a unique string identifying your data.
98 default_value : obj - an object that should be returned if key is not found.
104 key = str(key)
105 if key in _static_data:
106 return _static_data[key][0]
109 def SaveStaticCacheData(key, valu
[all...]
/macosx-10.10/postfix-255/postfix/src/postconf/
H A Dextract.awk98 for (key in int_vars)
99 print key
103 for (key in str_vars)
104 print key
108 for (key in str_fn_vars)
109 print key
113 for (key in raw_vars)
114 print key
118 for (key in bool_vars)
119 print key
[all...]
/macosx-10.10/apr-32/apr/apr/threadproc/netware/
H A Dthreadpriv.c20 apr_status_t apr_threadkey_private_create(apr_threadkey_t **key, argument
25 (*key) = (apr_threadkey_t *)apr_palloc(pool, sizeof(apr_threadkey_t));
26 if ((*key) == NULL) {
30 (*key)->pool = pool;
32 if ((stat = NXKeyCreate(NULL, dest, &(*key)->key)) == 0) {
38 apr_status_t apr_threadkey_private_get(void **new, apr_threadkey_t *key) argument
42 if ((stat = NXKeyGetValue(key->key, new)) == 0) {
50 apr_status_t apr_threadkey_private_set(void *priv, apr_threadkey_t *key) argument
61 apr_threadkey_private_delete(apr_threadkey_t *key) argument
70 apr_threadkey_data_get(void **data, const char *key, apr_threadkey_t *threadkey) argument
75 apr_threadkey_data_set(void *data, const char *key, apr_status_t (*cleanup) (void *), apr_threadkey_t *threadkey) argument
82 apr_os_threadkey_get(apr_os_threadkey_t *thekey, apr_threadkey_t *key) argument
89 apr_os_threadkey_put(apr_threadkey_t **key, apr_os_threadkey_t *thekey, apr_pool_t *pool) argument
[all...]
/macosx-10.10/apr-32/apr/apr/threadproc/os2/
H A Dthreadpriv.c25 APR_DECLARE(apr_status_t) apr_threadkey_private_create(apr_threadkey_t **key,
29 (*key) = (apr_threadkey_t *)apr_palloc(pool, sizeof(apr_threadkey_t));
31 if ((*key) == NULL) {
35 (*key)->pool = pool;
36 return APR_OS2_STATUS(DosAllocThreadLocalMemory(1, &((*key)->key)));
39 APR_DECLARE(apr_status_t) apr_threadkey_private_get(void **new, apr_threadkey_t *key)
41 (*new) = (void *)*(key->key);
45 APR_DECLARE(apr_status_t) apr_threadkey_private_set(void *priv, apr_threadkey_t *key)
[all...]
/macosx-10.10/apr-32/apr/apr/threadproc/win32/
H A Dthreadpriv.c24 APR_DECLARE(apr_status_t) apr_threadkey_private_create(apr_threadkey_t **key,
28 (*key) = (apr_threadkey_t *)apr_palloc(pool, sizeof(apr_threadkey_t));
29 if ((*key) == NULL) {
33 (*key)->pool = pool;
35 if (((*key)->key = TlsAlloc()) != 0xFFFFFFFF) {
42 apr_threadkey_t *key)
44 if (((*new) = TlsGetValue(key->key))) {
51 apr_threadkey_t *key)
[all...]
/macosx-10.10/apr-32/apr/apr/threadproc/beos/
H A Dthreadpriv.c23 APR_DECLARE(apr_status_t) apr_threadkey_private_create(apr_threadkey_t **key,
26 (*key) = (apr_threadkey_t *)apr_palloc(pool, sizeof(apr_threadkey_t));
27 if ((*key) == NULL) {
31 (*key)->pool = pool;
34 for ((*key)->key=0; (*key)->key < BEOS_MAX_DATAKEYS; (*key)->key
[all...]
/macosx-10.10/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread_getspecific.c85 dcethread_getspecific(dcethread_key key, void **value) argument
87 *value = pthread_getspecific(key);
93 dcethread_getspecific_throw(dcethread_key key, void **value) argument
95 DCETHREAD_WRAP_THROW(dcethread_getspecific(key, value));
H A Ddcethread_keycreate.c85 dcethread_keycreate(dcethread_key *key, void (*destructor)(void *value)) argument
87 return dcethread__set_errno(pthread_key_create(key, destructor));
91 dcethread_keycreate_throw(dcethread_key *key, void (*destructor)(void *value)) argument
93 DCETHREAD_WRAP_THROW(dcethread_keycreate(key, destructor));
H A Ddcethread_setspecific.c85 dcethread_setspecific(dcethread_key key, void *value) argument
87 return dcethread__set_errno(pthread_setspecific(key, value));
91 dcethread_setspecific_throw(dcethread_key key, void *value) argument
93 DCETHREAD_WRAP_THROW(dcethread_setspecific(key, value));
/macosx-10.10/keymgr-28/testcases/3464244/
H A D3464244.c3 extern void _keymgr_set_per_thread_data(unsigned int key, void *keydata) ;
/macosx-10.10/ksh-23/ksh/src/lib/libast/aso/
H A Dasolock.c33 asolock(unsigned int volatile* lock, unsigned int key, int type)
37 if (key)
41 return *lock == 0 ? 0 : asocasint(lock, key, 0) == key ? 0 : -1;
43 return *lock == key ? 0 : asocasint(lock, 0, key) == 0 ? 0 : -1;
45 if (*lock == key)
49 for (k = 0; asocasint(lock, 0, key) != 0; ASOLOOP(k));
/macosx-10.10/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/collections/test/
H A DTestEntity.java16 int key; field in class:TestEntity
19 TestEntity(int key, int value) { argument
21 this.key = key;
29 return e.key == key && e.value == value;
37 return key;
42 return "[key " + key + " value " + value + ']';
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Lib/Foundation/
H A D_functiondefines.py6 def NSLocalizedString(key, comment):
7 return NSBundle.mainBundle().localizedStringForKey_value_table_(key, '', None)
9 def NSLocalizedStringFromTable(key, tbl, comment):
10 return NSBundle.mainBundle().localizedStringForKey_value_table_(key, '', tbl)
12 def NSLocalizedStringFromTableInBundle(key, tbl, bundle, comment):
13 return bundle.localizedStringForKey_value_table_(key, '', tbl)
15 def NSLocalizedStringWithDefaultValue(key, tbl, bundle, val, comment):
16 return bundle.localizedStringForKey_value_table_(key, val, tbl)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Lib/Foundation/
H A D_functiondefines.py6 def NSLocalizedString(key, comment):
7 return NSBundle.mainBundle().localizedStringForKey_value_table_(key, '', None)
9 def NSLocalizedStringFromTable(key, tbl, comment):
10 return NSBundle.mainBundle().localizedStringForKey_value_table_(key, '', tbl)
12 def NSLocalizedStringFromTableInBundle(key, tbl, bundle, comment):
13 return bundle.localizedStringForKey_value_table_(key, '', tbl)
15 def NSLocalizedStringWithDefaultValue(key, tbl, bundle, val, comment):
16 return bundle.localizedStringForKey_value_table_(key, val, tbl)
/macosx-10.10/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dimportenv.pl7 local($tmp,$key) = '';
9 foreach $key (keys(%ENV)) {
10 $tmp .= "\$$key = \$ENV{'$key'};" if $key =~ /^[A-Za-z]\w*$/;
/macosx-10.10/ksh-23/ksh/src/lib/libast/astsa/
H A Daso.c27 asolock(unsigned int volatile* lock, unsigned int key, int type) argument
31 if (key)
37 if (*lock != key)
43 if (*lock != key)
47 *lock = key;
52 *lock = key;
/macosx-10.10/swig-12/Source/Swig/
H A Dwarn.c24 String *key; local
28 key = NewStringf("%s:%d", filename, line);
29 if (!Getattr(warnings, key)) {
31 Setattr(warnings, key, key);
33 Delete(key);
/macosx-10.10/xnu-2782.1.97/libsyscall/mach/servers/
H A Dkey_defs.h59 * An encrytion key.
72 #define KEY_IS_NULL(key) \
73 (((key).key_longs[0] == 0) && ((key).key_longs[1] == 0) \
74 && ((key).key_longs[2] == 0) && ((key).key_longs[3] == 0))
80 #define NTOH_KEY(key) { \
81 (key).key_longs[0] = ntohl((key).key_longs[0]); \
82 (key)
[all...]
/macosx-10.10/apr-32/apr/apr/threadproc/unix/
H A Dthreadpriv.c24 APR_DECLARE(apr_status_t) apr_threadkey_private_create(apr_threadkey_t **key,
28 (*key) = (apr_threadkey_t *)apr_pcalloc(pool, sizeof(apr_threadkey_t));
30 if ((*key) == NULL) {
34 (*key)->pool = pool;
36 return pthread_key_create(&(*key)->key, dest);
41 apr_threadkey_t *key)
44 if (pthread_getspecific(key->key,new))
47 (*new) = pthread_getspecific(key
[all...]
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/metadata/
H A Dclean.sh20 rm -f zsk.key ksk.key parent.ksk.key parent.zsk.key
21 rm -f pending.key rolling.key standby.key inact.key
22 rm -f prerev.key postrev.key oldstyl
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/cache/
H A Dasync.tcl43 method get {key donecmd} {
45 lappend mywaiting($key) $donecmd
50 if {[info exists mymiss($key)]} {
51 $self NotifyUnset 1 $key
53 } elseif {[info exists myhit($key)]} {
54 $self NotifySet 1 $key
59 # not. however, if a request for this key is already in flight
64 if {[llength $mywaiting($key)] > 1} return
66 # This is the first query for this key, ask the provider.
68 after idle [linsert $myprovider end get $key
[all...]
/macosx-10.10/Heimdal-398.1.2/appl/telnet/libtelnet/
H A Dencrypt.h66 #define VALIDKEY(key) ( key[0] | key[1] | key[2] | key[3] | \
67 key[4] | key[5] | key[6] | key[7])
/macosx-10.10/keymgr-28/
H A Dkeymgr.h48 extern void * _keymgr_get_per_thread_data (unsigned int key);
49 extern int _keymgr_set_per_thread_data (unsigned int key, void *keydata);
50 extern void *_keymgr_get_and_lock_processwide_ptr (unsigned int key);
51 extern int _keymgr_get_and_lock_processwide_ptr_2 (unsigned int key, void **);
52 extern int _keymgr_set_and_unlock_processwide_ptr (unsigned int key,
54 extern int _keymgr_unlock_processwide_ptr (unsigned int key);
55 extern int _keymgr_set_lockmode_processwide_ptr (unsigned int key,
57 extern unsigned int _keymgr_get_lockmode_processwide_ptr (unsigned int key);
58 extern int _keymgr_get_lock_count_processwide_ptr (unsigned int key);

Completed in 176 milliseconds

1234567891011>>